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.
- pulumi_azuredevops/__init__.py +64 -0
- pulumi_azuredevops/_inputs.py +120 -117
- pulumi_azuredevops/area_permissions.py +49 -49
- pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
- pulumi_azuredevops/branch_policy_build_validation.py +7 -7
- pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
- pulumi_azuredevops/branch_policy_merge_types.py +7 -7
- pulumi_azuredevops/branch_policy_status_check.py +7 -7
- pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
- pulumi_azuredevops/build_definition.py +7 -7
- pulumi_azuredevops/check_branch_control.py +7 -7
- pulumi_azuredevops/check_business_hours.py +7 -7
- pulumi_azuredevops/check_exclusive_lock.py +7 -7
- pulumi_azuredevops/check_rest_api.py +986 -0
- pulumi_azuredevops/feed.py +8 -8
- pulumi_azuredevops/feed_permission.py +9 -9
- pulumi_azuredevops/feed_retention_policy.py +422 -0
- pulumi_azuredevops/get_agent_queue.py +2 -2
- pulumi_azuredevops/get_area.py +1 -1
- pulumi_azuredevops/get_client_config.py +3 -0
- pulumi_azuredevops/get_feed.py +4 -4
- pulumi_azuredevops/get_git_repository.py +8 -8
- pulumi_azuredevops/get_group.py +4 -4
- pulumi_azuredevops/get_groups.py +3 -3
- pulumi_azuredevops/get_identity_group.py +3 -0
- pulumi_azuredevops/get_identity_groups.py +1 -1
- pulumi_azuredevops/get_identity_users.py +5 -5
- pulumi_azuredevops/get_pool.py +14 -2
- pulumi_azuredevops/get_pools.py +3 -3
- pulumi_azuredevops/get_project.py +32 -0
- pulumi_azuredevops/get_projects.py +4 -4
- pulumi_azuredevops/get_repositories.py +7 -3
- pulumi_azuredevops/get_securityrole_definitions.py +4 -4
- pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
- pulumi_azuredevops/get_service_endpoint_github.py +6 -6
- pulumi_azuredevops/get_service_principal.py +153 -0
- pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
- pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
- pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
- pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
- pulumi_azuredevops/get_team.py +4 -3
- pulumi_azuredevops/get_teams.py +2 -3
- pulumi_azuredevops/get_users.py +5 -9
- pulumi_azuredevops/git.py +7 -7
- pulumi_azuredevops/git_permissions.py +14 -21
- pulumi_azuredevops/git_repository_file.py +7 -14
- pulumi_azuredevops/group.py +21 -7
- pulumi_azuredevops/group_entitlement.py +16 -20
- pulumi_azuredevops/group_membership.py +35 -50
- pulumi_azuredevops/iterative_permissions.py +34 -34
- pulumi_azuredevops/library_permissions.py +75 -75
- pulumi_azuredevops/outputs.py +129 -102
- pulumi_azuredevops/pipeline_authorization.py +7 -7
- pulumi_azuredevops/pool.py +4 -4
- pulumi_azuredevops/project.py +114 -63
- pulumi_azuredevops/project_features.py +87 -45
- pulumi_azuredevops/project_permissions.py +7 -7
- pulumi_azuredevops/project_pipeline_settings.py +28 -35
- pulumi_azuredevops/project_tags.py +263 -0
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/queue.py +7 -14
- pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
- pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
- pulumi_azuredevops/resource_authorization.py +35 -35
- pulumi_azuredevops/service_endpoint_artifactory.py +24 -18
- pulumi_azuredevops/service_endpoint_aws.py +2 -2
- pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -15
- pulumi_azuredevops/service_endpoint_azure_rm.py +25 -25
- pulumi_azuredevops/service_endpoint_bit_bucket.py +2 -2
- pulumi_azuredevops/service_endpoint_docker_registry.py +2 -2
- pulumi_azuredevops/service_endpoint_generic.py +2 -2
- pulumi_azuredevops/service_endpoint_generic_git.py +4 -8
- pulumi_azuredevops/service_endpoint_git_hub.py +15 -2
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +15 -2
- pulumi_azuredevops/service_endpoint_kubernetes.py +23 -23
- pulumi_azuredevops/service_endpoint_npm.py +4 -4
- pulumi_azuredevops/service_endpoint_pipeline.py +4 -4
- pulumi_azuredevops/service_endpoint_service_fabric.py +48 -9
- pulumi_azuredevops/service_endpoint_sonar_cloud.py +11 -11
- pulumi_azuredevops/service_endpoint_sonar_qube.py +11 -11
- pulumi_azuredevops/service_endpoint_ssh.py +2 -6
- pulumi_azuredevops/service_principal_entitlement.py +386 -0
- pulumi_azuredevops/serviceendpoint_argocd.py +2 -2
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +2 -2
- pulumi_azuredevops/serviceendpoint_checkmarx_one.py +627 -0
- pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +575 -0
- pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +674 -0
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +2 -2
- pulumi_azuredevops/serviceendpoint_externaltfs.py +63 -11
- pulumi_azuredevops/serviceendpoint_gcp_terraform.py +2 -2
- pulumi_azuredevops/serviceendpoint_incomingwebhook.py +2 -2
- pulumi_azuredevops/serviceendpoint_jenkins.py +2 -2
- pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_maven.py +2 -2
- pulumi_azuredevops/serviceendpoint_nexus.py +2 -2
- pulumi_azuredevops/serviceendpoint_nuget.py +2 -2
- pulumi_azuredevops/serviceendpoint_octopusdeploy.py +2 -2
- pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
- pulumi_azuredevops/serviceendpoint_snyk.py +2 -2
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +4 -6
- pulumi_azuredevops/servicehook_permissions.py +51 -51
- pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
- pulumi_azuredevops/tagging_permissions.py +49 -49
- pulumi_azuredevops/team.py +76 -56
- pulumi_azuredevops/team_administrators.py +83 -56
- pulumi_azuredevops/team_members.py +56 -49
- pulumi_azuredevops/variable_group.py +4 -2
- pulumi_azuredevops/variable_group_permissions.py +75 -75
- pulumi_azuredevops/wiki.py +15 -2
- pulumi_azuredevops/wiki_page.py +2 -2
- pulumi_azuredevops/work_item_query_permissions.py +7 -7
- {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/METADATA +1 -1
- pulumi_azuredevops-3.6.0a1737710622.dist-info/RECORD +148 -0
- pulumi_azuredevops-3.6.0a1737523387.dist-info/RECORD +0 -140
- {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/WHEEL +0 -0
- {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/top_level.txt +0 -0
pulumi_azuredevops/outputs.py
CHANGED
@@ -145,7 +145,7 @@ class BranchPolicyAutoReviewersSettings(dict):
|
|
145
145
|
submitter_can_vote: Optional[bool] = None):
|
146
146
|
"""
|
147
147
|
:param Sequence[str] auto_reviewer_ids: Required reviewers ids. Supports multiples user Ids.
|
148
|
-
:param Sequence['BranchPolicyAutoReviewersSettingsScopeArgs'] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
148
|
+
:param Sequence['BranchPolicyAutoReviewersSettingsScopeArgs'] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
149
149
|
:param str message: Activity feed message, Message will appear in the activity feed of pull requests with automatically added reviewers.
|
150
150
|
:param int minimum_number_of_reviewers: Minimum number of required reviewers. Defaults to `1`.
|
151
151
|
|
@@ -176,7 +176,7 @@ class BranchPolicyAutoReviewersSettings(dict):
|
|
176
176
|
@pulumi.getter
|
177
177
|
def scopes(self) -> Sequence['outputs.BranchPolicyAutoReviewersSettingsScope']:
|
178
178
|
"""
|
179
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
179
|
+
A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
180
180
|
"""
|
181
181
|
return pulumi.get(self, "scopes")
|
182
182
|
|
@@ -319,7 +319,7 @@ class BranchPolicyBuildValidationSettings(dict):
|
|
319
319
|
"""
|
320
320
|
:param int build_definition_id: The ID of the build to monitor for the policy.
|
321
321
|
:param str display_name: The display name for the policy.
|
322
|
-
:param Sequence['BranchPolicyBuildValidationSettingsScopeArgs'] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
322
|
+
:param Sequence['BranchPolicyBuildValidationSettingsScopeArgs'] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
323
323
|
:param Sequence[str] filename_patterns: If a path filter is set, the policy will only apply when files which match the filter are changes. Not setting this field means that the policy will always apply. You can specify absolute paths and wildcards. Example: `["/WebApp/Models/Data.cs", "/WebApp/*", "*.cs"]`. Paths prefixed with "!" are excluded. Example: `["/WebApp/*", "!/WebApp/Tests/*"]`. Order is significant.
|
324
324
|
:param bool manual_queue_only: If set to true, the build will need to be manually queued. Defaults to `false`
|
325
325
|
:param bool queue_on_source_update_only: True if the build should queue on source updates only. Defaults to `true`.
|
@@ -362,7 +362,7 @@ class BranchPolicyBuildValidationSettings(dict):
|
|
362
362
|
@pulumi.getter
|
363
363
|
def scopes(self) -> Sequence['outputs.BranchPolicyBuildValidationSettingsScope']:
|
364
364
|
"""
|
365
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
365
|
+
A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
366
366
|
"""
|
367
367
|
return pulumi.get(self, "scopes")
|
368
368
|
|
@@ -473,7 +473,7 @@ class BranchPolicyCommentResolutionSettings(dict):
|
|
473
473
|
def __init__(__self__, *,
|
474
474
|
scopes: Sequence['outputs.BranchPolicyCommentResolutionSettingsScope']):
|
475
475
|
"""
|
476
|
-
:param Sequence['BranchPolicyCommentResolutionSettingsScopeArgs'] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
476
|
+
:param Sequence['BranchPolicyCommentResolutionSettingsScopeArgs'] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
477
477
|
"""
|
478
478
|
pulumi.set(__self__, "scopes", scopes)
|
479
479
|
|
@@ -481,7 +481,7 @@ class BranchPolicyCommentResolutionSettings(dict):
|
|
481
481
|
@pulumi.getter
|
482
482
|
def scopes(self) -> Sequence['outputs.BranchPolicyCommentResolutionSettingsScope']:
|
483
483
|
"""
|
484
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
484
|
+
A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
485
485
|
"""
|
486
486
|
return pulumi.get(self, "scopes")
|
487
487
|
|
@@ -582,7 +582,7 @@ class BranchPolicyMergeTypesSettings(dict):
|
|
582
582
|
allow_rebase_with_merge: Optional[bool] = None,
|
583
583
|
allow_squash: Optional[bool] = None):
|
584
584
|
"""
|
585
|
-
:param Sequence['BranchPolicyMergeTypesSettingsScopeArgs'] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
585
|
+
:param Sequence['BranchPolicyMergeTypesSettingsScopeArgs'] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
586
586
|
:param bool allow_basic_no_fast_forward: Allow basic merge with no fast forward. Defaults to `false`.
|
587
587
|
:param bool allow_rebase_and_fast_forward: Allow rebase with fast forward. Defaults to `false`.
|
588
588
|
:param bool allow_rebase_with_merge: Allow rebase with merge commit. Defaults to `false`.
|
@@ -602,7 +602,7 @@ class BranchPolicyMergeTypesSettings(dict):
|
|
602
602
|
@pulumi.getter
|
603
603
|
def scopes(self) -> Sequence['outputs.BranchPolicyMergeTypesSettingsScope']:
|
604
604
|
"""
|
605
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
605
|
+
A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
606
606
|
"""
|
607
607
|
return pulumi.get(self, "scopes")
|
608
608
|
|
@@ -938,14 +938,16 @@ class BranchPolicyStatusCheckSettings(dict):
|
|
938
938
|
invalidate_on_update: Optional[bool] = None):
|
939
939
|
"""
|
940
940
|
:param str name: The status name to check.
|
941
|
-
:param Sequence['BranchPolicyStatusCheckSettingsScopeArgs'] scopes:
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
is posted to the pull request.
|
941
|
+
:param Sequence['BranchPolicyStatusCheckSettingsScopeArgs'] scopes: A `scope` block as defined below.
|
942
|
+
:param str applicability: Policy applicability. If policy `applicability=default`, apply unless "Not Applicable"
|
943
|
+
status is posted to the pull request. If policy `applicability=conditional`, policy is applied only after a status
|
944
|
+
is posted to the pull request. Possible values `default`, `conditional`. Defaults to `default`.
|
946
945
|
:param str author_id: The authorized user can post the status.
|
947
946
|
:param str display_name: The display name.
|
948
|
-
:param Sequence[str] filename_patterns: If a path filter is set, the policy will only apply when files which match the filter are
|
947
|
+
:param Sequence[str] filename_patterns: If a path filter is set, the policy will only apply when files which match the filter are changed. Not setting this field means that the policy is always applied.
|
948
|
+
|
949
|
+
~>**NOTE** 1. Specify absolute paths and wildcards. Example: `["/WebApp/Models/Data.cs", "/WebApp/*", "*.cs"]`.
|
950
|
+
<br> 2. Paths prefixed with "!" are excluded. Example: `["/WebApp/*", "!/WebApp/Tests/*"]`. Order is significant.
|
949
951
|
:param str genre: The genre of the status to check (see [Microsoft Documentation](https://docs.microsoft.com/en-us/azure/devops/repos/git/pull-request-status?view=azure-devops#status-policy))
|
950
952
|
:param bool invalidate_on_update: Reset status whenever there are new changes.
|
951
953
|
"""
|
@@ -976,8 +978,7 @@ class BranchPolicyStatusCheckSettings(dict):
|
|
976
978
|
@pulumi.getter
|
977
979
|
def scopes(self) -> Sequence['outputs.BranchPolicyStatusCheckSettingsScope']:
|
978
980
|
"""
|
979
|
-
|
980
|
-
at least once.
|
981
|
+
A `scope` block as defined below.
|
981
982
|
"""
|
982
983
|
return pulumi.get(self, "scopes")
|
983
984
|
|
@@ -985,9 +986,9 @@ class BranchPolicyStatusCheckSettings(dict):
|
|
985
986
|
@pulumi.getter
|
986
987
|
def applicability(self) -> Optional[str]:
|
987
988
|
"""
|
988
|
-
Policy applicability. If policy `applicability
|
989
|
-
status is posted to the pull request. If policy `applicability
|
990
|
-
is posted to the pull request.
|
989
|
+
Policy applicability. If policy `applicability=default`, apply unless "Not Applicable"
|
990
|
+
status is posted to the pull request. If policy `applicability=conditional`, policy is applied only after a status
|
991
|
+
is posted to the pull request. Possible values `default`, `conditional`. Defaults to `default`.
|
991
992
|
"""
|
992
993
|
return pulumi.get(self, "applicability")
|
993
994
|
|
@@ -1011,7 +1012,10 @@ class BranchPolicyStatusCheckSettings(dict):
|
|
1011
1012
|
@pulumi.getter(name="filenamePatterns")
|
1012
1013
|
def filename_patterns(self) -> Optional[Sequence[str]]:
|
1013
1014
|
"""
|
1014
|
-
If a path filter is set, the policy will only apply when files which match the filter are
|
1015
|
+
If a path filter is set, the policy will only apply when files which match the filter are changed. Not setting this field means that the policy is always applied.
|
1016
|
+
|
1017
|
+
~>**NOTE** 1. Specify absolute paths and wildcards. Example: `["/WebApp/Models/Data.cs", "/WebApp/*", "*.cs"]`.
|
1018
|
+
<br> 2. Paths prefixed with "!" are excluded. Example: `["/WebApp/*", "!/WebApp/Tests/*"]`. Order is significant.
|
1015
1019
|
"""
|
1016
1020
|
return pulumi.get(self, "filename_patterns")
|
1017
1021
|
|
@@ -1061,8 +1065,8 @@ class BranchPolicyStatusCheckSettingsScope(dict):
|
|
1061
1065
|
repository_ref: Optional[str] = None):
|
1062
1066
|
"""
|
1063
1067
|
:param str match_type: The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
1064
|
-
:param str repository_id: The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type
|
1065
|
-
:param str repository_ref: The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type
|
1068
|
+
:param str repository_id: The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type=DefaultBranch`, this should not be defined.
|
1069
|
+
:param str repository_ref: The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type=Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type=Prefix`, this should be a ref path such as `refs/heads/releases`.
|
1066
1070
|
"""
|
1067
1071
|
if match_type is not None:
|
1068
1072
|
pulumi.set(__self__, "match_type", match_type)
|
@@ -1083,7 +1087,7 @@ class BranchPolicyStatusCheckSettingsScope(dict):
|
|
1083
1087
|
@pulumi.getter(name="repositoryId")
|
1084
1088
|
def repository_id(self) -> Optional[str]:
|
1085
1089
|
"""
|
1086
|
-
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type
|
1090
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type=DefaultBranch`, this should not be defined.
|
1087
1091
|
"""
|
1088
1092
|
return pulumi.get(self, "repository_id")
|
1089
1093
|
|
@@ -1091,7 +1095,7 @@ class BranchPolicyStatusCheckSettingsScope(dict):
|
|
1091
1095
|
@pulumi.getter(name="repositoryRef")
|
1092
1096
|
def repository_ref(self) -> Optional[str]:
|
1093
1097
|
"""
|
1094
|
-
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type
|
1098
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type=Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type=Prefix`, this should be a ref path such as `refs/heads/releases`.
|
1095
1099
|
"""
|
1096
1100
|
return pulumi.get(self, "repository_ref")
|
1097
1101
|
|
@@ -1101,7 +1105,7 @@ class BranchPolicyWorkItemLinkingSettings(dict):
|
|
1101
1105
|
def __init__(__self__, *,
|
1102
1106
|
scopes: Sequence['outputs.BranchPolicyWorkItemLinkingSettingsScope']):
|
1103
1107
|
"""
|
1104
|
-
:param Sequence['BranchPolicyWorkItemLinkingSettingsScopeArgs'] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1108
|
+
:param Sequence['BranchPolicyWorkItemLinkingSettingsScopeArgs'] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1105
1109
|
"""
|
1106
1110
|
pulumi.set(__self__, "scopes", scopes)
|
1107
1111
|
|
@@ -1109,7 +1113,7 @@ class BranchPolicyWorkItemLinkingSettings(dict):
|
|
1109
1113
|
@pulumi.getter
|
1110
1114
|
def scopes(self) -> Sequence['outputs.BranchPolicyWorkItemLinkingSettingsScope']:
|
1111
1115
|
"""
|
1112
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1116
|
+
A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1113
1117
|
"""
|
1114
1118
|
return pulumi.get(self, "scopes")
|
1115
1119
|
|
@@ -1801,7 +1805,7 @@ class BuildDefinitionRepository(dict):
|
|
1801
1805
|
service_connection_id: Optional[str] = None):
|
1802
1806
|
"""
|
1803
1807
|
:param str repo_id: The id of the repository. For `TfsGit` repos, this is simply the ID of the repository. For `Github` repos, this will take the form of `<GitHub Org>/<Repo Name>`. For `Bitbucket` repos, this will take the form of `<Workspace ID>/<Repo Name>`.
|
1804
|
-
:param str repo_type: The repository type.
|
1808
|
+
:param str repo_type: The repository type. Possible values are: `GitHub` or `TfsGit` or `Bitbucket` or `GitHub Enterprise`. Defaults to `GitHub`. If `repo_type` is `GitHubEnterprise`, must use existing project and GitHub Enterprise service connection.
|
1805
1809
|
:param str yml_path: The path of the Yaml file describing the build definition.
|
1806
1810
|
:param str branch_name: The branch name for which builds are triggered. Defaults to `master`.
|
1807
1811
|
:param str github_enterprise_url: The Github Enterprise URL. Used if `repo_type` is `GithubEnterprise`.
|
@@ -1832,7 +1836,7 @@ class BuildDefinitionRepository(dict):
|
|
1832
1836
|
@pulumi.getter(name="repoType")
|
1833
1837
|
def repo_type(self) -> str:
|
1834
1838
|
"""
|
1835
|
-
The repository type.
|
1839
|
+
The repository type. Possible values are: `GitHub` or `TfsGit` or `Bitbucket` or `GitHub Enterprise`. Defaults to `GitHub`. If `repo_type` is `GitHubEnterprise`, must use existing project and GitHub Enterprise service connection.
|
1836
1840
|
"""
|
1837
1841
|
return pulumi.get(self, "repo_type")
|
1838
1842
|
|
@@ -1917,13 +1921,13 @@ class BuildDefinitionSchedule(dict):
|
|
1917
1921
|
start_minutes: Optional[int] = None,
|
1918
1922
|
time_zone: Optional[str] = None):
|
1919
1923
|
"""
|
1920
|
-
:param Sequence['BuildDefinitionScheduleBranchFilterArgs'] branch_filters: block
|
1921
|
-
:param Sequence[str] days_to_builds: When to build.
|
1924
|
+
:param Sequence['BuildDefinitionScheduleBranchFilterArgs'] branch_filters: A `branch_filter` block as defined below.
|
1925
|
+
:param Sequence[str] days_to_builds: When to build. Possible values are: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
1922
1926
|
:param str schedule_job_id: The ID of the schedule job
|
1923
1927
|
:param bool schedule_only_with_changes: Schedule builds if the source or pipeline has changed. Defaults to `true`.
|
1924
|
-
:param int start_hours: Build start hour.
|
1925
|
-
:param int start_minutes: Build start minute.
|
1926
|
-
:param str time_zone: Build time zone. Defaults to `(UTC) Coordinated Universal Time`.
|
1928
|
+
:param int start_hours: Build start hour. Possible values are: `0 ~ 23`. Defaults to `0`.
|
1929
|
+
:param int start_minutes: Build start minute. Possible values are: `0 ~ 59`. Defaults to `0`.
|
1930
|
+
:param str time_zone: Build time zone. Defaults to `(UTC) Coordinated Universal Time`. Possible values are:
|
1927
1931
|
`(UTC-12:00) International Date Line West`,
|
1928
1932
|
`(UTC-11:00) Coordinated Universal Time-11`,
|
1929
1933
|
`(UTC-10:00) Aleutian Islands`,
|
@@ -2083,7 +2087,7 @@ class BuildDefinitionSchedule(dict):
|
|
2083
2087
|
@pulumi.getter(name="branchFilters")
|
2084
2088
|
def branch_filters(self) -> Sequence['outputs.BuildDefinitionScheduleBranchFilter']:
|
2085
2089
|
"""
|
2086
|
-
block
|
2090
|
+
A `branch_filter` block as defined below.
|
2087
2091
|
"""
|
2088
2092
|
return pulumi.get(self, "branch_filters")
|
2089
2093
|
|
@@ -2091,7 +2095,7 @@ class BuildDefinitionSchedule(dict):
|
|
2091
2095
|
@pulumi.getter(name="daysToBuilds")
|
2092
2096
|
def days_to_builds(self) -> Sequence[str]:
|
2093
2097
|
"""
|
2094
|
-
When to build.
|
2098
|
+
When to build. Possible values are: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
2095
2099
|
"""
|
2096
2100
|
return pulumi.get(self, "days_to_builds")
|
2097
2101
|
|
@@ -2115,7 +2119,7 @@ class BuildDefinitionSchedule(dict):
|
|
2115
2119
|
@pulumi.getter(name="startHours")
|
2116
2120
|
def start_hours(self) -> Optional[int]:
|
2117
2121
|
"""
|
2118
|
-
Build start hour.
|
2122
|
+
Build start hour. Possible values are: `0 ~ 23`. Defaults to `0`.
|
2119
2123
|
"""
|
2120
2124
|
return pulumi.get(self, "start_hours")
|
2121
2125
|
|
@@ -2123,7 +2127,7 @@ class BuildDefinitionSchedule(dict):
|
|
2123
2127
|
@pulumi.getter(name="startMinutes")
|
2124
2128
|
def start_minutes(self) -> Optional[int]:
|
2125
2129
|
"""
|
2126
|
-
Build start minute.
|
2130
|
+
Build start minute. Possible values are: `0 ~ 59`. Defaults to `0`.
|
2127
2131
|
"""
|
2128
2132
|
return pulumi.get(self, "start_minutes")
|
2129
2133
|
|
@@ -2131,7 +2135,7 @@ class BuildDefinitionSchedule(dict):
|
|
2131
2135
|
@pulumi.getter(name="timeZone")
|
2132
2136
|
def time_zone(self) -> Optional[str]:
|
2133
2137
|
"""
|
2134
|
-
Build time zone. Defaults to `(UTC) Coordinated Universal Time`.
|
2138
|
+
Build time zone. Defaults to `(UTC) Coordinated Universal Time`. Possible values are:
|
2135
2139
|
`(UTC-12:00) International Date Line West`,
|
2136
2140
|
`(UTC-11:00) Coordinated Universal Time-11`,
|
2137
2141
|
`(UTC-10:00) Aleutian Islands`,
|
@@ -2429,7 +2433,7 @@ class CheckRequiredTemplateRequiredTemplate(dict):
|
|
2429
2433
|
:param str repository_name: The name of the repository storing the template.
|
2430
2434
|
:param str repository_ref: The branch in which the template will be referenced.
|
2431
2435
|
:param str template_path: The path to the template yaml.
|
2432
|
-
:param str repository_type: The type of the repository storing the template.
|
2436
|
+
:param str repository_type: The type of the repository storing the template. Possible values are: `azuregit`, `github`, `githubenterprise`, `bitbucket`. Defaults to `azuregit`.
|
2433
2437
|
"""
|
2434
2438
|
pulumi.set(__self__, "repository_name", repository_name)
|
2435
2439
|
pulumi.set(__self__, "repository_ref", repository_ref)
|
@@ -2465,7 +2469,7 @@ class CheckRequiredTemplateRequiredTemplate(dict):
|
|
2465
2469
|
@pulumi.getter(name="repositoryType")
|
2466
2470
|
def repository_type(self) -> Optional[str]:
|
2467
2471
|
"""
|
2468
|
-
The type of the repository storing the template.
|
2472
|
+
The type of the repository storing the template. Possible values are: `azuregit`, `github`, `githubenterprise`, `bitbucket`. Defaults to `azuregit`.
|
2469
2473
|
"""
|
2470
2474
|
return pulumi.get(self, "repository_type")
|
2471
2475
|
|
@@ -2554,8 +2558,7 @@ class GitInitialization(dict):
|
|
2554
2558
|
:param str init_type: The type of repository to create. Valid values: `Uninitialized`, `Clean` or `Import`.
|
2555
2559
|
:param str password: The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
2556
2560
|
|
2557
|
-
~>**Note**
|
2558
|
-
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
2561
|
+
~>**Note** At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
2559
2562
|
: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`.
|
2560
2563
|
:param str source_type: Type of the source repository. Used if the `init_type` is `Import`. Valid values: `Git`.
|
2561
2564
|
:param str source_url: The URL of the source repository. Used if the `init_type` is `Import`.
|
@@ -2587,8 +2590,7 @@ class GitInitialization(dict):
|
|
2587
2590
|
"""
|
2588
2591
|
The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
2589
2592
|
|
2590
|
-
~>**Note**
|
2591
|
-
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
2593
|
+
~>**Note** At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
2592
2594
|
"""
|
2593
2595
|
return pulumi.get(self, "password")
|
2594
2596
|
|
@@ -2631,8 +2633,8 @@ class ServiceEndpointArtifactoryAuthenticationBasic(dict):
|
|
2631
2633
|
password: str,
|
2632
2634
|
username: str):
|
2633
2635
|
"""
|
2634
|
-
:param str password: The Artifactory
|
2635
|
-
:param str username: The
|
2636
|
+
:param str password: The Password of the Artifactory.
|
2637
|
+
:param str username: The Username of the Artifactory.
|
2636
2638
|
"""
|
2637
2639
|
pulumi.set(__self__, "password", password)
|
2638
2640
|
pulumi.set(__self__, "username", username)
|
@@ -2641,7 +2643,7 @@ class ServiceEndpointArtifactoryAuthenticationBasic(dict):
|
|
2641
2643
|
@pulumi.getter
|
2642
2644
|
def password(self) -> str:
|
2643
2645
|
"""
|
2644
|
-
The Artifactory
|
2646
|
+
The Password of the Artifactory.
|
2645
2647
|
"""
|
2646
2648
|
return pulumi.get(self, "password")
|
2647
2649
|
|
@@ -2649,7 +2651,7 @@ class ServiceEndpointArtifactoryAuthenticationBasic(dict):
|
|
2649
2651
|
@pulumi.getter
|
2650
2652
|
def username(self) -> str:
|
2651
2653
|
"""
|
2652
|
-
The
|
2654
|
+
The Username of the Artifactory.
|
2653
2655
|
"""
|
2654
2656
|
return pulumi.get(self, "username")
|
2655
2657
|
|
@@ -2659,7 +2661,7 @@ class ServiceEndpointArtifactoryAuthenticationToken(dict):
|
|
2659
2661
|
def __init__(__self__, *,
|
2660
2662
|
token: str):
|
2661
2663
|
"""
|
2662
|
-
:param str token:
|
2664
|
+
:param str token: Authentication Token generated through Artifactory.
|
2663
2665
|
"""
|
2664
2666
|
pulumi.set(__self__, "token", token)
|
2665
2667
|
|
@@ -2667,7 +2669,7 @@ class ServiceEndpointArtifactoryAuthenticationToken(dict):
|
|
2667
2669
|
@pulumi.getter
|
2668
2670
|
def token(self) -> str:
|
2669
2671
|
"""
|
2670
|
-
|
2672
|
+
Authentication Token generated through Artifactory.
|
2671
2673
|
"""
|
2672
2674
|
return pulumi.get(self, "token")
|
2673
2675
|
|
@@ -2677,7 +2679,7 @@ class ServiceEndpointAzureEcrCredentials(dict):
|
|
2677
2679
|
def __init__(__self__, *,
|
2678
2680
|
serviceprincipalid: str):
|
2679
2681
|
"""
|
2680
|
-
:param str serviceprincipalid: The
|
2682
|
+
:param str serviceprincipalid: The ID of the Service Principal Application.
|
2681
2683
|
"""
|
2682
2684
|
pulumi.set(__self__, "serviceprincipalid", serviceprincipalid)
|
2683
2685
|
|
@@ -2685,7 +2687,7 @@ class ServiceEndpointAzureEcrCredentials(dict):
|
|
2685
2687
|
@pulumi.getter
|
2686
2688
|
def serviceprincipalid(self) -> str:
|
2687
2689
|
"""
|
2688
|
-
The
|
2690
|
+
The ID of the Service Principal Application.
|
2689
2691
|
"""
|
2690
2692
|
return pulumi.get(self, "serviceprincipalid")
|
2691
2693
|
|
@@ -3166,7 +3168,7 @@ class ServiceEndpointServiceFabricAzureActiveDirectory(dict):
|
|
3166
3168
|
server_certificate_thumbprint: Optional[str] = None):
|
3167
3169
|
"""
|
3168
3170
|
:param str password: Password for the Azure Active Directory account.
|
3169
|
-
:param str server_certificate_lookup: Verification mode for the cluster. Possible values
|
3171
|
+
:param str server_certificate_lookup: Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
3170
3172
|
:param str username: Specify an Azure Active Directory account.
|
3171
3173
|
:param str server_certificate_common_name: The common name(s) of the cluster's certificate(s). This is used to verify the identity of the cluster. This value overrides the publish profile. Separate multiple common names with a comma (',')
|
3172
3174
|
:param str server_certificate_thumbprint: The thumbprint(s) of the cluster's certificate(s). This is used to verify the identity of the cluster. This value overrides the publish profile. Separate multiple thumbprints with a comma (',')
|
@@ -3191,7 +3193,7 @@ class ServiceEndpointServiceFabricAzureActiveDirectory(dict):
|
|
3191
3193
|
@pulumi.getter(name="serverCertificateLookup")
|
3192
3194
|
def server_certificate_lookup(self) -> str:
|
3193
3195
|
"""
|
3194
|
-
Verification mode for the cluster. Possible values
|
3196
|
+
Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
3195
3197
|
"""
|
3196
3198
|
return pulumi.get(self, "server_certificate_lookup")
|
3197
3199
|
|
@@ -3255,7 +3257,7 @@ class ServiceEndpointServiceFabricCertificate(dict):
|
|
3255
3257
|
server_certificate_thumbprint: Optional[str] = None):
|
3256
3258
|
"""
|
3257
3259
|
:param str client_certificate: Base64 encoding of the cluster's client certificate file.
|
3258
|
-
:param str server_certificate_lookup: Verification mode for the cluster. Possible values
|
3260
|
+
:param str server_certificate_lookup: Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
3259
3261
|
:param str client_certificate_password: Password for the certificate.
|
3260
3262
|
:param str server_certificate_common_name: The common name(s) of the cluster's certificate(s). This is used to verify the identity of the cluster. This value overrides the publish profile. Separate multiple common names with a comma (',')
|
3261
3263
|
:param str server_certificate_thumbprint: The thumbprint(s) of the cluster's certificate(s). This is used to verify the identity of the cluster. This value overrides the publish profile. Separate multiple thumbprints with a comma (',')
|
@@ -3281,7 +3283,7 @@ class ServiceEndpointServiceFabricCertificate(dict):
|
|
3281
3283
|
@pulumi.getter(name="serverCertificateLookup")
|
3282
3284
|
def server_certificate_lookup(self) -> str:
|
3283
3285
|
"""
|
3284
|
-
Verification mode for the cluster. Possible values
|
3286
|
+
Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
3285
3287
|
"""
|
3286
3288
|
return pulumi.get(self, "server_certificate_lookup")
|
3287
3289
|
|
@@ -3364,8 +3366,8 @@ class ServiceendpointArgocdAuthenticationBasic(dict):
|
|
3364
3366
|
password: str,
|
3365
3367
|
username: str):
|
3366
3368
|
"""
|
3367
|
-
:param str password:
|
3368
|
-
:param str username:
|
3369
|
+
:param str password: The Password of the ArgoCD.
|
3370
|
+
:param str username: The Username of the ArgoCD.
|
3369
3371
|
"""
|
3370
3372
|
pulumi.set(__self__, "password", password)
|
3371
3373
|
pulumi.set(__self__, "username", username)
|
@@ -3374,7 +3376,7 @@ class ServiceendpointArgocdAuthenticationBasic(dict):
|
|
3374
3376
|
@pulumi.getter
|
3375
3377
|
def password(self) -> str:
|
3376
3378
|
"""
|
3377
|
-
|
3379
|
+
The Password of the ArgoCD.
|
3378
3380
|
"""
|
3379
3381
|
return pulumi.get(self, "password")
|
3380
3382
|
|
@@ -3382,7 +3384,7 @@ class ServiceendpointArgocdAuthenticationBasic(dict):
|
|
3382
3384
|
@pulumi.getter
|
3383
3385
|
def username(self) -> str:
|
3384
3386
|
"""
|
3385
|
-
|
3387
|
+
The Username of the ArgoCD.
|
3386
3388
|
"""
|
3387
3389
|
return pulumi.get(self, "username")
|
3388
3390
|
|
@@ -3446,8 +3448,8 @@ class ServiceendpointJfrogArtifactoryV2AuthenticationBasic(dict):
|
|
3446
3448
|
password: str,
|
3447
3449
|
username: str):
|
3448
3450
|
"""
|
3449
|
-
:param str password:
|
3450
|
-
:param str username:
|
3451
|
+
:param str password: The Password of the Artifactory.
|
3452
|
+
:param str username: The Username of the Artifactory.
|
3451
3453
|
"""
|
3452
3454
|
pulumi.set(__self__, "password", password)
|
3453
3455
|
pulumi.set(__self__, "username", username)
|
@@ -3456,7 +3458,7 @@ class ServiceendpointJfrogArtifactoryV2AuthenticationBasic(dict):
|
|
3456
3458
|
@pulumi.getter
|
3457
3459
|
def password(self) -> str:
|
3458
3460
|
"""
|
3459
|
-
|
3461
|
+
The Password of the Artifactory.
|
3460
3462
|
"""
|
3461
3463
|
return pulumi.get(self, "password")
|
3462
3464
|
|
@@ -3464,7 +3466,7 @@ class ServiceendpointJfrogArtifactoryV2AuthenticationBasic(dict):
|
|
3464
3466
|
@pulumi.getter
|
3465
3467
|
def username(self) -> str:
|
3466
3468
|
"""
|
3467
|
-
|
3469
|
+
The Username of the Artifactory.
|
3468
3470
|
"""
|
3469
3471
|
return pulumi.get(self, "username")
|
3470
3472
|
|
@@ -3493,8 +3495,8 @@ class ServiceendpointJfrogDistributionV2AuthenticationBasic(dict):
|
|
3493
3495
|
password: str,
|
3494
3496
|
username: str):
|
3495
3497
|
"""
|
3496
|
-
:param str password:
|
3497
|
-
:param str username:
|
3498
|
+
:param str password: The Password of the Artifactory.
|
3499
|
+
:param str username: The Username of the Artifactory.
|
3498
3500
|
"""
|
3499
3501
|
pulumi.set(__self__, "password", password)
|
3500
3502
|
pulumi.set(__self__, "username", username)
|
@@ -3503,7 +3505,7 @@ class ServiceendpointJfrogDistributionV2AuthenticationBasic(dict):
|
|
3503
3505
|
@pulumi.getter
|
3504
3506
|
def password(self) -> str:
|
3505
3507
|
"""
|
3506
|
-
|
3508
|
+
The Password of the Artifactory.
|
3507
3509
|
"""
|
3508
3510
|
return pulumi.get(self, "password")
|
3509
3511
|
|
@@ -3511,7 +3513,7 @@ class ServiceendpointJfrogDistributionV2AuthenticationBasic(dict):
|
|
3511
3513
|
@pulumi.getter
|
3512
3514
|
def username(self) -> str:
|
3513
3515
|
"""
|
3514
|
-
|
3516
|
+
The Username of the Artifactory.
|
3515
3517
|
"""
|
3516
3518
|
return pulumi.get(self, "username")
|
3517
3519
|
|
@@ -3521,7 +3523,7 @@ class ServiceendpointJfrogDistributionV2AuthenticationToken(dict):
|
|
3521
3523
|
def __init__(__self__, *,
|
3522
3524
|
token: str):
|
3523
3525
|
"""
|
3524
|
-
:param str token: Authentication Token generated through Artifactory.
|
3526
|
+
:param str token: The Authentication Token generated through Artifactory.
|
3525
3527
|
"""
|
3526
3528
|
pulumi.set(__self__, "token", token)
|
3527
3529
|
|
@@ -3529,7 +3531,7 @@ class ServiceendpointJfrogDistributionV2AuthenticationToken(dict):
|
|
3529
3531
|
@pulumi.getter
|
3530
3532
|
def token(self) -> str:
|
3531
3533
|
"""
|
3532
|
-
Authentication Token generated through Artifactory.
|
3534
|
+
The Authentication Token generated through Artifactory.
|
3533
3535
|
"""
|
3534
3536
|
return pulumi.get(self, "token")
|
3535
3537
|
|
@@ -3540,8 +3542,8 @@ class ServiceendpointJfrogPlatformV2AuthenticationBasic(dict):
|
|
3540
3542
|
password: str,
|
3541
3543
|
username: str):
|
3542
3544
|
"""
|
3543
|
-
:param str password:
|
3544
|
-
:param str username:
|
3545
|
+
:param str password: The Password of the Artifactory.
|
3546
|
+
:param str username: The Username of the Artifactory.
|
3545
3547
|
"""
|
3546
3548
|
pulumi.set(__self__, "password", password)
|
3547
3549
|
pulumi.set(__self__, "username", username)
|
@@ -3550,7 +3552,7 @@ class ServiceendpointJfrogPlatformV2AuthenticationBasic(dict):
|
|
3550
3552
|
@pulumi.getter
|
3551
3553
|
def password(self) -> str:
|
3552
3554
|
"""
|
3553
|
-
|
3555
|
+
The Password of the Artifactory.
|
3554
3556
|
"""
|
3555
3557
|
return pulumi.get(self, "password")
|
3556
3558
|
|
@@ -3558,7 +3560,7 @@ class ServiceendpointJfrogPlatformV2AuthenticationBasic(dict):
|
|
3558
3560
|
@pulumi.getter
|
3559
3561
|
def username(self) -> str:
|
3560
3562
|
"""
|
3561
|
-
|
3563
|
+
The Username of the Artifactory.
|
3562
3564
|
"""
|
3563
3565
|
return pulumi.get(self, "username")
|
3564
3566
|
|
@@ -3587,8 +3589,8 @@ class ServiceendpointJfrogXrayV2AuthenticationBasic(dict):
|
|
3587
3589
|
password: str,
|
3588
3590
|
username: str):
|
3589
3591
|
"""
|
3590
|
-
:param str password:
|
3591
|
-
:param str username:
|
3592
|
+
:param str password: The Password of the Artifactory.
|
3593
|
+
:param str username: The Username of the Artifactory.
|
3592
3594
|
"""
|
3593
3595
|
pulumi.set(__self__, "password", password)
|
3594
3596
|
pulumi.set(__self__, "username", username)
|
@@ -3597,7 +3599,7 @@ class ServiceendpointJfrogXrayV2AuthenticationBasic(dict):
|
|
3597
3599
|
@pulumi.getter
|
3598
3600
|
def password(self) -> str:
|
3599
3601
|
"""
|
3600
|
-
|
3602
|
+
The Password of the Artifactory.
|
3601
3603
|
"""
|
3602
3604
|
return pulumi.get(self, "password")
|
3603
3605
|
|
@@ -3605,7 +3607,7 @@ class ServiceendpointJfrogXrayV2AuthenticationBasic(dict):
|
|
3605
3607
|
@pulumi.getter
|
3606
3608
|
def username(self) -> str:
|
3607
3609
|
"""
|
3608
|
-
|
3610
|
+
The Username of the Artifactory.
|
3609
3611
|
"""
|
3610
3612
|
return pulumi.get(self, "username")
|
3611
3613
|
|
@@ -4033,7 +4035,7 @@ class GetAreaChildrenResult(dict):
|
|
4033
4035
|
project_id: str):
|
4034
4036
|
"""
|
4035
4037
|
:param bool has_children: Indicator if the child Area node has child nodes
|
4036
|
-
:param str id: The
|
4038
|
+
:param str id: The ID of the child Area node
|
4037
4039
|
:param str name: The name of the child Area node
|
4038
4040
|
:param str path: The path to the Area; _Format_: URL relative; if omitted, or value `"/"` is used, the root Area will be returned
|
4039
4041
|
:param str project_id: The project ID.
|
@@ -4056,7 +4058,7 @@ class GetAreaChildrenResult(dict):
|
|
4056
4058
|
@pulumi.getter
|
4057
4059
|
def id(self) -> str:
|
4058
4060
|
"""
|
4059
|
-
The
|
4061
|
+
The ID of the child Area node
|
4060
4062
|
"""
|
4061
4063
|
return pulumi.get(self, "id")
|
4062
4064
|
|
@@ -4127,7 +4129,7 @@ class GetBuildDefinitionCiTriggerOverrideResult(dict):
|
|
4127
4129
|
:param bool batch: If batch is 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.
|
4128
4130
|
:param Sequence['GetBuildDefinitionCiTriggerOverrideBranchFilterArgs'] branch_filters: A `branch_filter` block as defined above.
|
4129
4131
|
:param int max_concurrent_builds_per_branch: The number of max builds per branch.
|
4130
|
-
:param Sequence['GetBuildDefinitionCiTriggerOverridePathFilterArgs'] path_filters: block
|
4132
|
+
:param Sequence['GetBuildDefinitionCiTriggerOverridePathFilterArgs'] path_filters: The file paths to include or exclude. A `path_filter` block as defined above.
|
4131
4133
|
:param int polling_interval: How often the external repository is polled.
|
4132
4134
|
: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.
|
4133
4135
|
"""
|
@@ -4166,7 +4168,7 @@ class GetBuildDefinitionCiTriggerOverrideResult(dict):
|
|
4166
4168
|
@pulumi.getter(name="pathFilters")
|
4167
4169
|
def path_filters(self) -> Sequence['outputs.GetBuildDefinitionCiTriggerOverridePathFilterResult']:
|
4168
4170
|
"""
|
4169
|
-
block
|
4171
|
+
The file paths to include or exclude. A `path_filter` block as defined above.
|
4170
4172
|
"""
|
4171
4173
|
return pulumi.get(self, "path_filters")
|
4172
4174
|
|
@@ -4345,7 +4347,7 @@ class GetBuildDefinitionPullRequestTriggerOverrideResult(dict):
|
|
4345
4347
|
"""
|
4346
4348
|
:param bool auto_cancel: Should further updates to a PR cancel an in progress validation?
|
4347
4349
|
:param Sequence['GetBuildDefinitionPullRequestTriggerOverrideBranchFilterArgs'] branch_filters: A `branch_filter` block as defined above.
|
4348
|
-
:param Sequence['GetBuildDefinitionPullRequestTriggerOverridePathFilterArgs'] path_filters: block
|
4350
|
+
:param Sequence['GetBuildDefinitionPullRequestTriggerOverridePathFilterArgs'] path_filters: The file paths to include or exclude. A `path_filter` block as defined above.
|
4349
4351
|
"""
|
4350
4352
|
pulumi.set(__self__, "auto_cancel", auto_cancel)
|
4351
4353
|
pulumi.set(__self__, "branch_filters", branch_filters)
|
@@ -4371,7 +4373,7 @@ class GetBuildDefinitionPullRequestTriggerOverrideResult(dict):
|
|
4371
4373
|
@pulumi.getter(name="pathFilters")
|
4372
4374
|
def path_filters(self) -> Sequence['outputs.GetBuildDefinitionPullRequestTriggerOverridePathFilterResult']:
|
4373
4375
|
"""
|
4374
|
-
block
|
4376
|
+
The file paths to include or exclude. A `path_filter` block as defined above.
|
4375
4377
|
"""
|
4376
4378
|
return pulumi.get(self, "path_filters")
|
4377
4379
|
|
@@ -4709,7 +4711,7 @@ class GetGroupsGroupResult(dict):
|
|
4709
4711
|
"""
|
4710
4712
|
:param str descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations.
|
4711
4713
|
:param str domain: This represents the name of the container of origin for a graph member. (For MSA this is "Windows Live ID", for AD the name of the domain, for AAD the tenantID of the directory, for VSTS groups the ScopeId, etc)
|
4712
|
-
:param str id: The group
|
4714
|
+
:param str id: The ID of the group.
|
4713
4715
|
:param str origin: The type of source provider for the origin identifier (ex:AD, AAD, MSA)
|
4714
4716
|
:param str principal_name: This is the PrincipalName of this graph member from the source provider. The source provider may change this field over time and it is not guaranteed to be immutable for the life of the graph member by VSTS.
|
4715
4717
|
:param str url: This url is the full route to the source resource of this graph subject.
|
@@ -4753,7 +4755,7 @@ class GetGroupsGroupResult(dict):
|
|
4753
4755
|
@pulumi.getter
|
4754
4756
|
def id(self) -> str:
|
4755
4757
|
"""
|
4756
|
-
The group
|
4758
|
+
The ID of the group.
|
4757
4759
|
"""
|
4758
4760
|
return pulumi.get(self, "id")
|
4759
4761
|
|
@@ -4817,24 +4819,39 @@ class GetGroupsGroupResult(dict):
|
|
4817
4819
|
@pulumi.output_type
|
4818
4820
|
class GetIdentityGroupsGroupResult(dict):
|
4819
4821
|
def __init__(__self__, *,
|
4822
|
+
descriptor: str,
|
4820
4823
|
id: str,
|
4821
4824
|
name: str):
|
4822
4825
|
"""
|
4823
|
-
:param str
|
4826
|
+
:param str descriptor: The descriptor of the Identity Group.
|
4827
|
+
:param str id: The ID of the Identity Group.
|
4828
|
+
:param str name: This is the non-unique display name of the identity subject.
|
4824
4829
|
"""
|
4830
|
+
pulumi.set(__self__, "descriptor", descriptor)
|
4825
4831
|
pulumi.set(__self__, "id", id)
|
4826
4832
|
pulumi.set(__self__, "name", name)
|
4827
4833
|
|
4834
|
+
@property
|
4835
|
+
@pulumi.getter
|
4836
|
+
def descriptor(self) -> str:
|
4837
|
+
"""
|
4838
|
+
The descriptor of the Identity Group.
|
4839
|
+
"""
|
4840
|
+
return pulumi.get(self, "descriptor")
|
4841
|
+
|
4828
4842
|
@property
|
4829
4843
|
@pulumi.getter
|
4830
4844
|
def id(self) -> str:
|
4845
|
+
"""
|
4846
|
+
The ID of the Identity Group.
|
4847
|
+
"""
|
4831
4848
|
return pulumi.get(self, "id")
|
4832
4849
|
|
4833
4850
|
@property
|
4834
4851
|
@pulumi.getter
|
4835
4852
|
def name(self) -> str:
|
4836
4853
|
"""
|
4837
|
-
This is the non-unique display name of the identity subject.
|
4854
|
+
This is the non-unique display name of the identity subject.
|
4838
4855
|
"""
|
4839
4856
|
return pulumi.get(self, "name")
|
4840
4857
|
|
@@ -4849,7 +4866,7 @@ class GetIterationChildrenResult(dict):
|
|
4849
4866
|
project_id: str):
|
4850
4867
|
"""
|
4851
4868
|
:param bool has_children: Indicator if the child Iteration node has child nodes
|
4852
|
-
:param str id: The
|
4869
|
+
:param str id: The ID of the child Iteration node
|
4853
4870
|
:param str name: The name of the child Iteration node
|
4854
4871
|
:param str path: The path to the Iteration, _Format_: URL relative; if omitted, or value `"/"` is used, the root Iteration will be returned
|
4855
4872
|
:param str project_id: The project ID.
|
@@ -4872,7 +4889,7 @@ class GetIterationChildrenResult(dict):
|
|
4872
4889
|
@pulumi.getter
|
4873
4890
|
def id(self) -> str:
|
4874
4891
|
"""
|
4875
|
-
The
|
4892
|
+
The ID of the child Iteration node
|
4876
4893
|
"""
|
4877
4894
|
return pulumi.get(self, "id")
|
4878
4895
|
|
@@ -4912,7 +4929,8 @@ class GetPoolsAgentPoolResult(dict):
|
|
4912
4929
|
"""
|
4913
4930
|
:param bool auto_provision: Specifies whether or not a queue should be automatically provisioned for each project collection.
|
4914
4931
|
:param bool auto_update: Specifies whether or not agents within the pool should be automatically updated.
|
4915
|
-
:param
|
4932
|
+
:param int id: The ID of the agent pool.
|
4933
|
+
:param str name: The name of the agent pool.
|
4916
4934
|
:param str pool_type: Specifies whether the agent pool type is Automation or Deployment.
|
4917
4935
|
"""
|
4918
4936
|
pulumi.set(__self__, "auto_provision", auto_provision)
|
@@ -4940,13 +4958,16 @@ class GetPoolsAgentPoolResult(dict):
|
|
4940
4958
|
@property
|
4941
4959
|
@pulumi.getter
|
4942
4960
|
def id(self) -> int:
|
4961
|
+
"""
|
4962
|
+
The ID of the agent pool.
|
4963
|
+
"""
|
4943
4964
|
return pulumi.get(self, "id")
|
4944
4965
|
|
4945
4966
|
@property
|
4946
4967
|
@pulumi.getter
|
4947
4968
|
def name(self) -> str:
|
4948
4969
|
"""
|
4949
|
-
The name of the agent pool
|
4970
|
+
The name of the agent pool.
|
4950
4971
|
"""
|
4951
4972
|
return pulumi.get(self, "name")
|
4952
4973
|
|
@@ -4969,10 +4990,10 @@ class GetProjectsProjectResult(dict):
|
|
4969
4990
|
"""
|
4970
4991
|
:param str name: Name of the Project, if not specified all projects will be returned.
|
4971
4992
|
:param str project_id: The ID of the Project.
|
4972
|
-
:param str project_url: Url to the full version of the object.
|
4993
|
+
:param str project_url: The Url to the full version of the object.
|
4973
4994
|
:param str state: State of the Project, if not specified all projects will be returned. Valid values are `all`, `deleting`, `new`, `wellFormed`, `createPending`, `unchanged`,`deleted`.
|
4974
4995
|
|
4975
|
-
DataSource without specifying any arguments will return all projects.
|
4996
|
+
> **NOTE:** DataSource without specifying any arguments will return all projects.
|
4976
4997
|
"""
|
4977
4998
|
pulumi.set(__self__, "name", name)
|
4978
4999
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -4999,7 +5020,7 @@ class GetProjectsProjectResult(dict):
|
|
4999
5020
|
@pulumi.getter(name="projectUrl")
|
5000
5021
|
def project_url(self) -> str:
|
5001
5022
|
"""
|
5002
|
-
Url to the full version of the object.
|
5023
|
+
The Url to the full version of the object.
|
5003
5024
|
"""
|
5004
5025
|
return pulumi.get(self, "project_url")
|
5005
5026
|
|
@@ -5009,7 +5030,7 @@ class GetProjectsProjectResult(dict):
|
|
5009
5030
|
"""
|
5010
5031
|
State of the Project, if not specified all projects will be returned. Valid values are `all`, `deleting`, `new`, `wellFormed`, `createPending`, `unchanged`,`deleted`.
|
5011
5032
|
|
5012
|
-
DataSource without specifying any arguments will return all projects.
|
5033
|
+
> **NOTE:** DataSource without specifying any arguments will return all projects.
|
5013
5034
|
"""
|
5014
5035
|
return pulumi.get(self, "state")
|
5015
5036
|
|
@@ -5149,7 +5170,7 @@ class GetSecurityroleDefinitionsDefinitionResult(dict):
|
|
5149
5170
|
:param str name: The name of the Security Role Definition.
|
5150
5171
|
:param str scope: Name of the Scope for which Security Role Definitions will be returned.
|
5151
5172
|
|
5152
|
-
DataSource without specifying any arguments will return all projects.
|
5173
|
+
> **NOTE:** DataSource without specifying any arguments will return all projects.
|
5153
5174
|
:param int deny_permissions: The mask of the denied permissions of the Security Role Definition.
|
5154
5175
|
"""
|
5155
5176
|
pulumi.set(__self__, "allow_permissions", allow_permissions)
|
@@ -5207,7 +5228,7 @@ class GetSecurityroleDefinitionsDefinitionResult(dict):
|
|
5207
5228
|
"""
|
5208
5229
|
Name of the Scope for which Security Role Definitions will be returned.
|
5209
5230
|
|
5210
|
-
DataSource without specifying any arguments will return all projects.
|
5231
|
+
> **NOTE:** DataSource without specifying any arguments will return all projects.
|
5211
5232
|
"""
|
5212
5233
|
return pulumi.get(self, "scope")
|
5213
5234
|
|
@@ -5232,8 +5253,9 @@ class GetTeamsTeamResult(dict):
|
|
5232
5253
|
"""
|
5233
5254
|
:param Sequence[str] administrators: List of subject descriptors for `administrators` of the team.
|
5234
5255
|
:param str description: Team description.
|
5256
|
+
:param str id: The ID of the Team.
|
5235
5257
|
:param Sequence[str] members: List of subject descriptors for `members` of the team.
|
5236
|
-
:param str name:
|
5258
|
+
:param str name: The name of the team.
|
5237
5259
|
:param str project_id: The Project ID. If no project ID all teams of the organization will be returned.
|
5238
5260
|
"""
|
5239
5261
|
pulumi.set(__self__, "administrators", administrators)
|
@@ -5262,6 +5284,9 @@ class GetTeamsTeamResult(dict):
|
|
5262
5284
|
@property
|
5263
5285
|
@pulumi.getter
|
5264
5286
|
def id(self) -> str:
|
5287
|
+
"""
|
5288
|
+
The ID of the Team.
|
5289
|
+
"""
|
5265
5290
|
return pulumi.get(self, "id")
|
5266
5291
|
|
5267
5292
|
@property
|
@@ -5276,7 +5301,7 @@ class GetTeamsTeamResult(dict):
|
|
5276
5301
|
@pulumi.getter
|
5277
5302
|
def name(self) -> str:
|
5278
5303
|
"""
|
5279
|
-
|
5304
|
+
The name of the team.
|
5280
5305
|
"""
|
5281
5306
|
return pulumi.get(self, "name")
|
5282
5307
|
|
@@ -5325,9 +5350,10 @@ class GetUsersUserResult(dict):
|
|
5325
5350
|
"""
|
5326
5351
|
:param str descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations.
|
5327
5352
|
:param str display_name: This is the non-unique display name of the graph subject. To change this field, you must alter its value in the source provider.
|
5328
|
-
:param str id: The
|
5353
|
+
:param str id: The ID of the User.
|
5329
5354
|
:param str mail_address: The email address of record for a given graph member. This may be different than the principal name.
|
5330
5355
|
:param str origin: The type of source provider for the `origin_id` parameter (ex:AD, AAD, MSA) The supported origins are listed below.
|
5356
|
+
<pre>List of possible origins
|
5331
5357
|
:param str principal_name: The PrincipalName of this graph member from the source provider.
|
5332
5358
|
:param str origin_id: The unique identifier from the system of origin.
|
5333
5359
|
"""
|
@@ -5360,7 +5386,7 @@ class GetUsersUserResult(dict):
|
|
5360
5386
|
@pulumi.getter
|
5361
5387
|
def id(self) -> str:
|
5362
5388
|
"""
|
5363
|
-
The
|
5389
|
+
The ID of the User.
|
5364
5390
|
"""
|
5365
5391
|
return pulumi.get(self, "id")
|
5366
5392
|
|
@@ -5377,6 +5403,7 @@ class GetUsersUserResult(dict):
|
|
5377
5403
|
def origin(self) -> str:
|
5378
5404
|
"""
|
5379
5405
|
The type of source provider for the `origin_id` parameter (ex:AD, AAD, MSA) The supported origins are listed below.
|
5406
|
+
<pre>List of possible origins
|
5380
5407
|
"""
|
5381
5408
|
return pulumi.get(self, "origin")
|
5382
5409
|
|