pulumi-azuredevops 2.16.0a1710156155__py3-none-any.whl → 3.6.0a1736832240__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 +123 -174
- pulumi_azuredevops/_inputs.py +1742 -110
- 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 -71
- 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 -200
- 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 +49 -16
- pulumi_azuredevops/check_branch_control.py +139 -110
- pulumi_azuredevops/check_business_hours.py +137 -108
- pulumi_azuredevops/check_exclusive_lock.py +107 -30
- pulumi_azuredevops/check_required_template.py +96 -67
- pulumi_azuredevops/config/__init__.pyi +87 -0
- pulumi_azuredevops/config/vars.py +125 -0
- pulumi_azuredevops/elastic_pool.py +78 -26
- pulumi_azuredevops/environment.py +17 -10
- pulumi_azuredevops/environment_resource_kubernetes.py +534 -0
- 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 +55 -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 -99
- 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 -16
- pulumi_azuredevops/group_entitlement.py +5 -8
- pulumi_azuredevops/group_membership.py +57 -30
- pulumi_azuredevops/iterative_permissions.py +9 -6
- pulumi_azuredevops/library_permissions.py +451 -0
- pulumi_azuredevops/outputs.py +460 -56
- pulumi_azuredevops/pipeline_authorization.py +136 -47
- pulumi_azuredevops/pool.py +7 -6
- pulumi_azuredevops/project.py +19 -18
- pulumi_azuredevops/project_features.py +9 -8
- pulumi_azuredevops/project_permissions.py +9 -6
- pulumi_azuredevops/project_pipeline_settings.py +15 -12
- pulumi_azuredevops/provider.py +491 -2
- pulumi_azuredevops/pulumi-plugin.json +2 -1
- pulumi_azuredevops/queue.py +23 -24
- 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 -114
- pulumi_azuredevops/service_endpoint_bit_bucket.py +19 -18
- pulumi_azuredevops/service_endpoint_docker_registry.py +17 -16
- 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 -60
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +26 -23
- pulumi_azuredevops/{serviceendpoint/bit_bucket.py → service_endpoint_git_lab.py} +147 -100
- pulumi_azuredevops/service_endpoint_kubernetes.py +160 -17
- 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 -8
- pulumi_azuredevops/variable_group.py +91 -88
- pulumi_azuredevops/variable_group_permissions.py +517 -0
- 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-2.16.0a1710156155.dist-info → pulumi_azuredevops-3.6.0a1736832240.dist-info}/METADATA +9 -8
- pulumi_azuredevops-3.6.0a1736832240.dist-info/RECORD +140 -0
- {pulumi_azuredevops-2.16.0a1710156155.dist-info → pulumi_azuredevops-3.6.0a1736832240.dist-info}/WHEEL +1 -1
- pulumi_azuredevops/agent/__init__.py +0 -12
- pulumi_azuredevops/agent/get_pool.py +0 -155
- pulumi_azuredevops/agent/get_pools.py +0 -120
- pulumi_azuredevops/agent/outputs.py +0 -73
- pulumi_azuredevops/agent/pool.py +0 -342
- pulumi_azuredevops/agent/queue.py +0 -376
- pulumi_azuredevops/build/__init__.py +0 -10
- pulumi_azuredevops/build/_inputs.py +0 -1164
- pulumi_azuredevops/build/build_definition.py +0 -987
- pulumi_azuredevops/build/outputs.py +0 -1170
- pulumi_azuredevops/core/__init__.py +0 -13
- pulumi_azuredevops/core/get_client_config.py +0 -102
- pulumi_azuredevops/core/get_project.py +0 -194
- pulumi_azuredevops/core/get_projects.py +0 -166
- pulumi_azuredevops/core/outputs.py +0 -70
- pulumi_azuredevops/core/project.py +0 -538
- pulumi_azuredevops/core/project_features.py +0 -303
- pulumi_azuredevops/entitlement/__init__.py +0 -8
- pulumi_azuredevops/entitlement/user.py +0 -429
- pulumi_azuredevops/identities/__init__.py +0 -13
- pulumi_azuredevops/identities/_inputs.py +0 -42
- pulumi_azuredevops/identities/get_group.py +0 -185
- pulumi_azuredevops/identities/get_users.py +0 -257
- pulumi_azuredevops/identities/group.py +0 -632
- pulumi_azuredevops/identities/group_membership.py +0 -333
- pulumi_azuredevops/identities/outputs.py +0 -124
- pulumi_azuredevops/pipeline/__init__.py +0 -10
- pulumi_azuredevops/pipeline/_inputs.py +0 -175
- pulumi_azuredevops/pipeline/outputs.py +0 -175
- pulumi_azuredevops/pipeline/variable_group.py +0 -594
- pulumi_azuredevops/policy/__init__.py +0 -11
- pulumi_azuredevops/policy/_inputs.py +0 -382
- pulumi_azuredevops/policy/branch_policy_build_validation.py +0 -424
- pulumi_azuredevops/policy/branch_policy_min_reviewers.py +0 -406
- pulumi_azuredevops/policy/outputs.py +0 -397
- pulumi_azuredevops/repository/__init__.py +0 -11
- pulumi_azuredevops/repository/_inputs.py +0 -85
- pulumi_azuredevops/repository/get_repositories.py +0 -177
- pulumi_azuredevops/repository/git.py +0 -627
- pulumi_azuredevops/repository/outputs.py +0 -199
- pulumi_azuredevops/security/__init__.py +0 -8
- pulumi_azuredevops/security/resource_authorization.py +0 -404
- pulumi_azuredevops/serviceendpoint/__init__.py +0 -14
- pulumi_azuredevops/serviceendpoint/_inputs.py +0 -341
- pulumi_azuredevops/serviceendpoint/azure_rm.py +0 -1140
- pulumi_azuredevops/serviceendpoint/docker_registry.py +0 -595
- pulumi_azuredevops/serviceendpoint/git_hub.py +0 -489
- pulumi_azuredevops/serviceendpoint/kubernetes.py +0 -523
- pulumi_azuredevops/serviceendpoint/outputs.py +0 -370
- pulumi_azuredevops-2.16.0a1710156155.dist-info/RECORD +0 -171
- {pulumi_azuredevops-2.16.0a1710156155.dist-info → pulumi_azuredevops-3.6.0a1736832240.dist-info}/top_level.txt +0 -0
pulumi_azuredevops/_inputs.py
CHANGED
@@ -4,76 +4,188 @@
|
|
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
|
|
12
17
|
__all__ = [
|
13
18
|
'BranchPolicyAutoReviewersSettingsArgs',
|
19
|
+
'BranchPolicyAutoReviewersSettingsArgsDict',
|
14
20
|
'BranchPolicyAutoReviewersSettingsScopeArgs',
|
21
|
+
'BranchPolicyAutoReviewersSettingsScopeArgsDict',
|
15
22
|
'BranchPolicyBuildValidationSettingsArgs',
|
23
|
+
'BranchPolicyBuildValidationSettingsArgsDict',
|
16
24
|
'BranchPolicyBuildValidationSettingsScopeArgs',
|
25
|
+
'BranchPolicyBuildValidationSettingsScopeArgsDict',
|
17
26
|
'BranchPolicyCommentResolutionSettingsArgs',
|
27
|
+
'BranchPolicyCommentResolutionSettingsArgsDict',
|
18
28
|
'BranchPolicyCommentResolutionSettingsScopeArgs',
|
29
|
+
'BranchPolicyCommentResolutionSettingsScopeArgsDict',
|
19
30
|
'BranchPolicyMergeTypesSettingsArgs',
|
31
|
+
'BranchPolicyMergeTypesSettingsArgsDict',
|
20
32
|
'BranchPolicyMergeTypesSettingsScopeArgs',
|
33
|
+
'BranchPolicyMergeTypesSettingsScopeArgsDict',
|
21
34
|
'BranchPolicyMinReviewersSettingsArgs',
|
35
|
+
'BranchPolicyMinReviewersSettingsArgsDict',
|
22
36
|
'BranchPolicyMinReviewersSettingsScopeArgs',
|
37
|
+
'BranchPolicyMinReviewersSettingsScopeArgsDict',
|
23
38
|
'BranchPolicyStatusCheckSettingsArgs',
|
39
|
+
'BranchPolicyStatusCheckSettingsArgsDict',
|
24
40
|
'BranchPolicyStatusCheckSettingsScopeArgs',
|
41
|
+
'BranchPolicyStatusCheckSettingsScopeArgsDict',
|
25
42
|
'BranchPolicyWorkItemLinkingSettingsArgs',
|
43
|
+
'BranchPolicyWorkItemLinkingSettingsArgsDict',
|
26
44
|
'BranchPolicyWorkItemLinkingSettingsScopeArgs',
|
45
|
+
'BranchPolicyWorkItemLinkingSettingsScopeArgsDict',
|
46
|
+
'BuildDefinitionBuildCompletionTriggerArgs',
|
47
|
+
'BuildDefinitionBuildCompletionTriggerArgsDict',
|
48
|
+
'BuildDefinitionBuildCompletionTriggerBranchFilterArgs',
|
49
|
+
'BuildDefinitionBuildCompletionTriggerBranchFilterArgsDict',
|
27
50
|
'BuildDefinitionCiTriggerArgs',
|
51
|
+
'BuildDefinitionCiTriggerArgsDict',
|
28
52
|
'BuildDefinitionCiTriggerOverrideArgs',
|
53
|
+
'BuildDefinitionCiTriggerOverrideArgsDict',
|
29
54
|
'BuildDefinitionCiTriggerOverrideBranchFilterArgs',
|
55
|
+
'BuildDefinitionCiTriggerOverrideBranchFilterArgsDict',
|
30
56
|
'BuildDefinitionCiTriggerOverridePathFilterArgs',
|
57
|
+
'BuildDefinitionCiTriggerOverridePathFilterArgsDict',
|
31
58
|
'BuildDefinitionFeatureArgs',
|
59
|
+
'BuildDefinitionFeatureArgsDict',
|
32
60
|
'BuildDefinitionPullRequestTriggerArgs',
|
61
|
+
'BuildDefinitionPullRequestTriggerArgsDict',
|
33
62
|
'BuildDefinitionPullRequestTriggerForksArgs',
|
63
|
+
'BuildDefinitionPullRequestTriggerForksArgsDict',
|
34
64
|
'BuildDefinitionPullRequestTriggerOverrideArgs',
|
65
|
+
'BuildDefinitionPullRequestTriggerOverrideArgsDict',
|
35
66
|
'BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs',
|
67
|
+
'BuildDefinitionPullRequestTriggerOverrideBranchFilterArgsDict',
|
36
68
|
'BuildDefinitionPullRequestTriggerOverridePathFilterArgs',
|
69
|
+
'BuildDefinitionPullRequestTriggerOverridePathFilterArgsDict',
|
37
70
|
'BuildDefinitionRepositoryArgs',
|
71
|
+
'BuildDefinitionRepositoryArgsDict',
|
38
72
|
'BuildDefinitionScheduleArgs',
|
73
|
+
'BuildDefinitionScheduleArgsDict',
|
39
74
|
'BuildDefinitionScheduleBranchFilterArgs',
|
75
|
+
'BuildDefinitionScheduleBranchFilterArgsDict',
|
40
76
|
'BuildDefinitionVariableArgs',
|
77
|
+
'BuildDefinitionVariableArgsDict',
|
41
78
|
'CheckRequiredTemplateRequiredTemplateArgs',
|
79
|
+
'CheckRequiredTemplateRequiredTemplateArgsDict',
|
80
|
+
'FeedFeatureArgs',
|
81
|
+
'FeedFeatureArgsDict',
|
42
82
|
'GitInitializationArgs',
|
83
|
+
'GitInitializationArgsDict',
|
43
84
|
'ServiceEndpointArtifactoryAuthenticationBasicArgs',
|
85
|
+
'ServiceEndpointArtifactoryAuthenticationBasicArgsDict',
|
44
86
|
'ServiceEndpointArtifactoryAuthenticationTokenArgs',
|
87
|
+
'ServiceEndpointArtifactoryAuthenticationTokenArgsDict',
|
88
|
+
'ServiceEndpointAzureEcrCredentialsArgs',
|
89
|
+
'ServiceEndpointAzureEcrCredentialsArgsDict',
|
45
90
|
'ServiceEndpointAzureRMCredentialsArgs',
|
91
|
+
'ServiceEndpointAzureRMCredentialsArgsDict',
|
46
92
|
'ServiceEndpointAzureRMFeaturesArgs',
|
93
|
+
'ServiceEndpointAzureRMFeaturesArgsDict',
|
47
94
|
'ServiceEndpointGitHubAuthOauthArgs',
|
95
|
+
'ServiceEndpointGitHubAuthOauthArgsDict',
|
48
96
|
'ServiceEndpointGitHubAuthPersonalArgs',
|
97
|
+
'ServiceEndpointGitHubAuthPersonalArgsDict',
|
49
98
|
'ServiceEndpointGitHubEnterpriseAuthPersonalArgs',
|
99
|
+
'ServiceEndpointGitHubEnterpriseAuthPersonalArgsDict',
|
50
100
|
'ServiceEndpointKubernetesAzureSubscriptionArgs',
|
101
|
+
'ServiceEndpointKubernetesAzureSubscriptionArgsDict',
|
51
102
|
'ServiceEndpointKubernetesKubeconfigArgs',
|
103
|
+
'ServiceEndpointKubernetesKubeconfigArgsDict',
|
52
104
|
'ServiceEndpointKubernetesServiceAccountArgs',
|
105
|
+
'ServiceEndpointKubernetesServiceAccountArgsDict',
|
53
106
|
'ServiceEndpointPipelineAuthPersonalArgs',
|
107
|
+
'ServiceEndpointPipelineAuthPersonalArgsDict',
|
54
108
|
'ServiceEndpointServiceFabricAzureActiveDirectoryArgs',
|
109
|
+
'ServiceEndpointServiceFabricAzureActiveDirectoryArgsDict',
|
55
110
|
'ServiceEndpointServiceFabricCertificateArgs',
|
111
|
+
'ServiceEndpointServiceFabricCertificateArgsDict',
|
56
112
|
'ServiceEndpointServiceFabricNoneArgs',
|
113
|
+
'ServiceEndpointServiceFabricNoneArgsDict',
|
57
114
|
'ServiceendpointArgocdAuthenticationBasicArgs',
|
115
|
+
'ServiceendpointArgocdAuthenticationBasicArgsDict',
|
58
116
|
'ServiceendpointArgocdAuthenticationTokenArgs',
|
117
|
+
'ServiceendpointArgocdAuthenticationTokenArgsDict',
|
59
118
|
'ServiceendpointExternaltfsAuthPersonalArgs',
|
119
|
+
'ServiceendpointExternaltfsAuthPersonalArgsDict',
|
60
120
|
'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs',
|
121
|
+
'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict',
|
61
122
|
'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs',
|
123
|
+
'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict',
|
62
124
|
'ServiceendpointJfrogDistributionV2AuthenticationBasicArgs',
|
125
|
+
'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict',
|
63
126
|
'ServiceendpointJfrogDistributionV2AuthenticationTokenArgs',
|
127
|
+
'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict',
|
64
128
|
'ServiceendpointJfrogPlatformV2AuthenticationBasicArgs',
|
129
|
+
'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict',
|
65
130
|
'ServiceendpointJfrogPlatformV2AuthenticationTokenArgs',
|
131
|
+
'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict',
|
66
132
|
'ServiceendpointJfrogXrayV2AuthenticationBasicArgs',
|
133
|
+
'ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict',
|
67
134
|
'ServiceendpointJfrogXrayV2AuthenticationTokenArgs',
|
135
|
+
'ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict',
|
68
136
|
'ServiceendpointMavenAuthenticationBasicArgs',
|
137
|
+
'ServiceendpointMavenAuthenticationBasicArgsDict',
|
69
138
|
'ServiceendpointMavenAuthenticationTokenArgs',
|
139
|
+
'ServiceendpointMavenAuthenticationTokenArgsDict',
|
140
|
+
'ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgs',
|
141
|
+
'ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgsDict',
|
142
|
+
'ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgs',
|
143
|
+
'ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgsDict',
|
70
144
|
'ServicehookStorageQueuePipelinesRunStateChangedEventArgs',
|
145
|
+
'ServicehookStorageQueuePipelinesRunStateChangedEventArgsDict',
|
71
146
|
'ServicehookStorageQueuePipelinesStageStateChangedEventArgs',
|
147
|
+
'ServicehookStorageQueuePipelinesStageStateChangedEventArgsDict',
|
72
148
|
'VariableGroupKeyVaultArgs',
|
149
|
+
'VariableGroupKeyVaultArgsDict',
|
73
150
|
'VariableGroupVariableArgs',
|
151
|
+
'VariableGroupVariableArgsDict',
|
74
152
|
'GetUsersFeaturesArgs',
|
153
|
+
'GetUsersFeaturesArgsDict',
|
75
154
|
]
|
76
155
|
|
156
|
+
MYPY = False
|
157
|
+
|
158
|
+
if not MYPY:
|
159
|
+
class BranchPolicyAutoReviewersSettingsArgsDict(TypedDict):
|
160
|
+
auto_reviewer_ids: pulumi.Input[Sequence[pulumi.Input[str]]]
|
161
|
+
"""
|
162
|
+
Required reviewers ids. Supports multiples user Ids.
|
163
|
+
"""
|
164
|
+
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyAutoReviewersSettingsScopeArgsDict']]]
|
165
|
+
"""
|
166
|
+
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
167
|
+
"""
|
168
|
+
message: NotRequired[pulumi.Input[str]]
|
169
|
+
"""
|
170
|
+
Activity feed message, Message will appear in the activity feed of pull requests with automatically added reviewers.
|
171
|
+
"""
|
172
|
+
minimum_number_of_reviewers: NotRequired[pulumi.Input[int]]
|
173
|
+
"""
|
174
|
+
Minimum number of required reviewers. Defaults to `1`.
|
175
|
+
|
176
|
+
> **Note** Has to be greater than `0`. Can only be greater than `1` when attribute `auto_reviewer_ids` contains exactly one group! Only has an effect when attribute `blocking` is set to `true`.
|
177
|
+
"""
|
178
|
+
path_filters: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
179
|
+
"""
|
180
|
+
Filter path(s) on which the policy is applied. Supports absolute paths, wildcards and multiple paths. Example: /WebApp/Models/Data.cs, /WebApp/* or *.cs,/WebApp/Models/Data.cs;ClientApp/Models/Data.cs.
|
181
|
+
"""
|
182
|
+
submitter_can_vote: NotRequired[pulumi.Input[bool]]
|
183
|
+
"""
|
184
|
+
Controls whether or not the submitter's vote counts. Defaults to `false`.
|
185
|
+
"""
|
186
|
+
elif False:
|
187
|
+
BranchPolicyAutoReviewersSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
188
|
+
|
77
189
|
@pulumi.input_type
|
78
190
|
class BranchPolicyAutoReviewersSettingsArgs:
|
79
191
|
def __init__(__self__, *,
|
@@ -179,6 +291,23 @@ class BranchPolicyAutoReviewersSettingsArgs:
|
|
179
291
|
pulumi.set(self, "submitter_can_vote", value)
|
180
292
|
|
181
293
|
|
294
|
+
if not MYPY:
|
295
|
+
class BranchPolicyAutoReviewersSettingsScopeArgsDict(TypedDict):
|
296
|
+
match_type: NotRequired[pulumi.Input[str]]
|
297
|
+
"""
|
298
|
+
The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
299
|
+
"""
|
300
|
+
repository_id: NotRequired[pulumi.Input[str]]
|
301
|
+
"""
|
302
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type` is `DefaultBranch`, this should not be defined.
|
303
|
+
"""
|
304
|
+
repository_ref: NotRequired[pulumi.Input[str]]
|
305
|
+
"""
|
306
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
307
|
+
"""
|
308
|
+
elif False:
|
309
|
+
BranchPolicyAutoReviewersSettingsScopeArgsDict: TypeAlias = Mapping[str, Any]
|
310
|
+
|
182
311
|
@pulumi.input_type
|
183
312
|
class BranchPolicyAutoReviewersSettingsScopeArgs:
|
184
313
|
def __init__(__self__, *,
|
@@ -234,6 +363,44 @@ class BranchPolicyAutoReviewersSettingsScopeArgs:
|
|
234
363
|
pulumi.set(self, "repository_ref", value)
|
235
364
|
|
236
365
|
|
366
|
+
if not MYPY:
|
367
|
+
class BranchPolicyBuildValidationSettingsArgsDict(TypedDict):
|
368
|
+
build_definition_id: pulumi.Input[int]
|
369
|
+
"""
|
370
|
+
The ID of the build to monitor for the policy.
|
371
|
+
"""
|
372
|
+
display_name: pulumi.Input[str]
|
373
|
+
"""
|
374
|
+
The display name for the policy.
|
375
|
+
"""
|
376
|
+
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyBuildValidationSettingsScopeArgsDict']]]
|
377
|
+
"""
|
378
|
+
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
379
|
+
"""
|
380
|
+
filename_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
381
|
+
"""
|
382
|
+
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.
|
383
|
+
"""
|
384
|
+
manual_queue_only: NotRequired[pulumi.Input[bool]]
|
385
|
+
"""
|
386
|
+
If set to true, the build will need to be manually queued. Defaults to `false`
|
387
|
+
"""
|
388
|
+
queue_on_source_update_only: NotRequired[pulumi.Input[bool]]
|
389
|
+
"""
|
390
|
+
True if the build should queue on source updates only. Defaults to `true`.
|
391
|
+
"""
|
392
|
+
valid_duration: NotRequired[pulumi.Input[int]]
|
393
|
+
"""
|
394
|
+
The number of minutes for which the build is valid. If `0`, the build will not expire. Defaults to `720` (12 hours).
|
395
|
+
|
396
|
+
> **Note** Combine `valid_duration` and `queue_on_source_update_only` to set the build expiration.
|
397
|
+
1. Expire immediately when branch is updated: `valid_duration=0` and `queue_on_source_update_only=false`
|
398
|
+
2. Expire after a period of time : `valid_duration=360` and `queue_on_source_update_only=true`
|
399
|
+
3. Never expire: `valid_duration=0` and `queue_on_source_update_only=true`
|
400
|
+
"""
|
401
|
+
elif False:
|
402
|
+
BranchPolicyBuildValidationSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
403
|
+
|
237
404
|
@pulumi.input_type
|
238
405
|
class BranchPolicyBuildValidationSettingsArgs:
|
239
406
|
def __init__(__self__, *,
|
@@ -252,6 +419,11 @@ class BranchPolicyBuildValidationSettingsArgs:
|
|
252
419
|
:param pulumi.Input[bool] manual_queue_only: If set to true, the build will need to be manually queued. Defaults to `false`
|
253
420
|
:param pulumi.Input[bool] queue_on_source_update_only: True if the build should queue on source updates only. Defaults to `true`.
|
254
421
|
:param pulumi.Input[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).
|
422
|
+
|
423
|
+
> **Note** Combine `valid_duration` and `queue_on_source_update_only` to set the build expiration.
|
424
|
+
1. Expire immediately when branch is updated: `valid_duration=0` and `queue_on_source_update_only=false`
|
425
|
+
2. Expire after a period of time : `valid_duration=360` and `queue_on_source_update_only=true`
|
426
|
+
3. Never expire: `valid_duration=0` and `queue_on_source_update_only=true`
|
255
427
|
"""
|
256
428
|
pulumi.set(__self__, "build_definition_id", build_definition_id)
|
257
429
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -342,6 +514,11 @@ class BranchPolicyBuildValidationSettingsArgs:
|
|
342
514
|
def valid_duration(self) -> Optional[pulumi.Input[int]]:
|
343
515
|
"""
|
344
516
|
The number of minutes for which the build is valid. If `0`, the build will not expire. Defaults to `720` (12 hours).
|
517
|
+
|
518
|
+
> **Note** Combine `valid_duration` and `queue_on_source_update_only` to set the build expiration.
|
519
|
+
1. Expire immediately when branch is updated: `valid_duration=0` and `queue_on_source_update_only=false`
|
520
|
+
2. Expire after a period of time : `valid_duration=360` and `queue_on_source_update_only=true`
|
521
|
+
3. Never expire: `valid_duration=0` and `queue_on_source_update_only=true`
|
345
522
|
"""
|
346
523
|
return pulumi.get(self, "valid_duration")
|
347
524
|
|
@@ -350,6 +527,23 @@ class BranchPolicyBuildValidationSettingsArgs:
|
|
350
527
|
pulumi.set(self, "valid_duration", value)
|
351
528
|
|
352
529
|
|
530
|
+
if not MYPY:
|
531
|
+
class BranchPolicyBuildValidationSettingsScopeArgsDict(TypedDict):
|
532
|
+
match_type: NotRequired[pulumi.Input[str]]
|
533
|
+
"""
|
534
|
+
The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
535
|
+
"""
|
536
|
+
repository_id: NotRequired[pulumi.Input[str]]
|
537
|
+
"""
|
538
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type` is `DefaultBranch`, this should not be defined.
|
539
|
+
"""
|
540
|
+
repository_ref: NotRequired[pulumi.Input[str]]
|
541
|
+
"""
|
542
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
543
|
+
"""
|
544
|
+
elif False:
|
545
|
+
BranchPolicyBuildValidationSettingsScopeArgsDict: TypeAlias = Mapping[str, Any]
|
546
|
+
|
353
547
|
@pulumi.input_type
|
354
548
|
class BranchPolicyBuildValidationSettingsScopeArgs:
|
355
549
|
def __init__(__self__, *,
|
@@ -405,6 +599,15 @@ class BranchPolicyBuildValidationSettingsScopeArgs:
|
|
405
599
|
pulumi.set(self, "repository_ref", value)
|
406
600
|
|
407
601
|
|
602
|
+
if not MYPY:
|
603
|
+
class BranchPolicyCommentResolutionSettingsArgsDict(TypedDict):
|
604
|
+
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyCommentResolutionSettingsScopeArgsDict']]]
|
605
|
+
"""
|
606
|
+
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
607
|
+
"""
|
608
|
+
elif False:
|
609
|
+
BranchPolicyCommentResolutionSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
610
|
+
|
408
611
|
@pulumi.input_type
|
409
612
|
class BranchPolicyCommentResolutionSettingsArgs:
|
410
613
|
def __init__(__self__, *,
|
@@ -427,6 +630,23 @@ class BranchPolicyCommentResolutionSettingsArgs:
|
|
427
630
|
pulumi.set(self, "scopes", value)
|
428
631
|
|
429
632
|
|
633
|
+
if not MYPY:
|
634
|
+
class BranchPolicyCommentResolutionSettingsScopeArgsDict(TypedDict):
|
635
|
+
match_type: NotRequired[pulumi.Input[str]]
|
636
|
+
"""
|
637
|
+
The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
638
|
+
"""
|
639
|
+
repository_id: NotRequired[pulumi.Input[str]]
|
640
|
+
"""
|
641
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type` is `DefaultBranch`, this should not be defined.
|
642
|
+
"""
|
643
|
+
repository_ref: NotRequired[pulumi.Input[str]]
|
644
|
+
"""
|
645
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
646
|
+
"""
|
647
|
+
elif False:
|
648
|
+
BranchPolicyCommentResolutionSettingsScopeArgsDict: TypeAlias = Mapping[str, Any]
|
649
|
+
|
430
650
|
@pulumi.input_type
|
431
651
|
class BranchPolicyCommentResolutionSettingsScopeArgs:
|
432
652
|
def __init__(__self__, *,
|
@@ -482,6 +702,31 @@ class BranchPolicyCommentResolutionSettingsScopeArgs:
|
|
482
702
|
pulumi.set(self, "repository_ref", value)
|
483
703
|
|
484
704
|
|
705
|
+
if not MYPY:
|
706
|
+
class BranchPolicyMergeTypesSettingsArgsDict(TypedDict):
|
707
|
+
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyMergeTypesSettingsScopeArgsDict']]]
|
708
|
+
"""
|
709
|
+
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
710
|
+
"""
|
711
|
+
allow_basic_no_fast_forward: NotRequired[pulumi.Input[bool]]
|
712
|
+
"""
|
713
|
+
Allow basic merge with no fast forward. Defaults to `false`.
|
714
|
+
"""
|
715
|
+
allow_rebase_and_fast_forward: NotRequired[pulumi.Input[bool]]
|
716
|
+
"""
|
717
|
+
Allow rebase with fast forward. Defaults to `false`.
|
718
|
+
"""
|
719
|
+
allow_rebase_with_merge: NotRequired[pulumi.Input[bool]]
|
720
|
+
"""
|
721
|
+
Allow rebase with merge commit. Defaults to `false`.
|
722
|
+
"""
|
723
|
+
allow_squash: NotRequired[pulumi.Input[bool]]
|
724
|
+
"""
|
725
|
+
Allow squash merge. Defaults to `false`
|
726
|
+
"""
|
727
|
+
elif False:
|
728
|
+
BranchPolicyMergeTypesSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
729
|
+
|
485
730
|
@pulumi.input_type
|
486
731
|
class BranchPolicyMergeTypesSettingsArgs:
|
487
732
|
def __init__(__self__, *,
|
@@ -568,6 +813,23 @@ class BranchPolicyMergeTypesSettingsArgs:
|
|
568
813
|
pulumi.set(self, "allow_squash", value)
|
569
814
|
|
570
815
|
|
816
|
+
if not MYPY:
|
817
|
+
class BranchPolicyMergeTypesSettingsScopeArgsDict(TypedDict):
|
818
|
+
match_type: NotRequired[pulumi.Input[str]]
|
819
|
+
"""
|
820
|
+
The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
821
|
+
"""
|
822
|
+
repository_id: NotRequired[pulumi.Input[str]]
|
823
|
+
"""
|
824
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type` is `DefaultBranch`, this should not be defined.
|
825
|
+
"""
|
826
|
+
repository_ref: NotRequired[pulumi.Input[str]]
|
827
|
+
"""
|
828
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
829
|
+
"""
|
830
|
+
elif False:
|
831
|
+
BranchPolicyMergeTypesSettingsScopeArgsDict: TypeAlias = Mapping[str, Any]
|
832
|
+
|
571
833
|
@pulumi.input_type
|
572
834
|
class BranchPolicyMergeTypesSettingsScopeArgs:
|
573
835
|
def __init__(__self__, *,
|
@@ -623,6 +885,45 @@ class BranchPolicyMergeTypesSettingsScopeArgs:
|
|
623
885
|
pulumi.set(self, "repository_ref", value)
|
624
886
|
|
625
887
|
|
888
|
+
if not MYPY:
|
889
|
+
class BranchPolicyMinReviewersSettingsArgsDict(TypedDict):
|
890
|
+
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyMinReviewersSettingsScopeArgsDict']]]
|
891
|
+
"""
|
892
|
+
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.
|
893
|
+
"""
|
894
|
+
allow_completion_with_rejects_or_waits: NotRequired[pulumi.Input[bool]]
|
895
|
+
"""
|
896
|
+
Allow completion even if some reviewers vote to wait or reject. Defaults to `false`.
|
897
|
+
"""
|
898
|
+
last_pusher_cannot_approve: NotRequired[pulumi.Input[bool]]
|
899
|
+
"""
|
900
|
+
Prohibit the most recent pusher from approving their own changes. Defaults to `false`.
|
901
|
+
"""
|
902
|
+
on_last_iteration_require_vote: NotRequired[pulumi.Input[bool]]
|
903
|
+
"""
|
904
|
+
On last iteration require vote. Defaults to `false`.
|
905
|
+
"""
|
906
|
+
on_push_reset_all_votes: NotRequired[pulumi.Input[bool]]
|
907
|
+
"""
|
908
|
+
When new changes are pushed reset all code reviewer votes. Defaults to `false`.
|
909
|
+
|
910
|
+
> **Note:** If `on_push_reset_all_votes` is `true` then `on_push_reset_approved_votes` will be set to `true`. To enable `on_push_reset_approved_votes`, you need explicitly set `on_push_reset_all_votes` `false` or not configure.
|
911
|
+
"""
|
912
|
+
on_push_reset_approved_votes: NotRequired[pulumi.Input[bool]]
|
913
|
+
"""
|
914
|
+
When new changes are pushed reset all approval votes (does not reset votes to reject or wait). Defaults to `false`.
|
915
|
+
"""
|
916
|
+
reviewer_count: NotRequired[pulumi.Input[int]]
|
917
|
+
"""
|
918
|
+
The number of reviewers needed to approve.
|
919
|
+
"""
|
920
|
+
submitter_can_vote: NotRequired[pulumi.Input[bool]]
|
921
|
+
"""
|
922
|
+
Allow requesters to approve their own changes. Defaults to `false`.
|
923
|
+
"""
|
924
|
+
elif False:
|
925
|
+
BranchPolicyMinReviewersSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
926
|
+
|
626
927
|
@pulumi.input_type
|
627
928
|
class BranchPolicyMinReviewersSettingsArgs:
|
628
929
|
def __init__(__self__, *,
|
@@ -761,6 +1062,23 @@ class BranchPolicyMinReviewersSettingsArgs:
|
|
761
1062
|
pulumi.set(self, "submitter_can_vote", value)
|
762
1063
|
|
763
1064
|
|
1065
|
+
if not MYPY:
|
1066
|
+
class BranchPolicyMinReviewersSettingsScopeArgsDict(TypedDict):
|
1067
|
+
match_type: NotRequired[pulumi.Input[str]]
|
1068
|
+
"""
|
1069
|
+
The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
1070
|
+
"""
|
1071
|
+
repository_id: NotRequired[pulumi.Input[str]]
|
1072
|
+
"""
|
1073
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type` is `DefaultBranch`, this should not be defined.
|
1074
|
+
"""
|
1075
|
+
repository_ref: NotRequired[pulumi.Input[str]]
|
1076
|
+
"""
|
1077
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
1078
|
+
"""
|
1079
|
+
elif False:
|
1080
|
+
BranchPolicyMinReviewersSettingsScopeArgsDict: TypeAlias = Mapping[str, Any]
|
1081
|
+
|
764
1082
|
@pulumi.input_type
|
765
1083
|
class BranchPolicyMinReviewersSettingsScopeArgs:
|
766
1084
|
def __init__(__self__, *,
|
@@ -816,6 +1134,46 @@ class BranchPolicyMinReviewersSettingsScopeArgs:
|
|
816
1134
|
pulumi.set(self, "repository_ref", value)
|
817
1135
|
|
818
1136
|
|
1137
|
+
if not MYPY:
|
1138
|
+
class BranchPolicyStatusCheckSettingsArgsDict(TypedDict):
|
1139
|
+
name: pulumi.Input[str]
|
1140
|
+
"""
|
1141
|
+
The status name to check.
|
1142
|
+
"""
|
1143
|
+
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyStatusCheckSettingsScopeArgsDict']]]
|
1144
|
+
"""
|
1145
|
+
Controls which repositories and branches the policy will be enabled for. This block must be defined
|
1146
|
+
at least once.
|
1147
|
+
"""
|
1148
|
+
applicability: NotRequired[pulumi.Input[str]]
|
1149
|
+
"""
|
1150
|
+
Policy applicability. If policy `applicability` is `default`, apply unless "Not Applicable"
|
1151
|
+
status is posted to the pull request. If policy `applicability` is `conditional`, policy is applied only after a status
|
1152
|
+
is posted to the pull request.
|
1153
|
+
"""
|
1154
|
+
author_id: NotRequired[pulumi.Input[str]]
|
1155
|
+
"""
|
1156
|
+
The authorized user can post the status.
|
1157
|
+
"""
|
1158
|
+
display_name: NotRequired[pulumi.Input[str]]
|
1159
|
+
"""
|
1160
|
+
The display name.
|
1161
|
+
"""
|
1162
|
+
filename_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1163
|
+
"""
|
1164
|
+
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.
|
1165
|
+
"""
|
1166
|
+
genre: NotRequired[pulumi.Input[str]]
|
1167
|
+
"""
|
1168
|
+
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))
|
1169
|
+
"""
|
1170
|
+
invalidate_on_update: NotRequired[pulumi.Input[bool]]
|
1171
|
+
"""
|
1172
|
+
Reset status whenever there are new changes.
|
1173
|
+
"""
|
1174
|
+
elif False:
|
1175
|
+
BranchPolicyStatusCheckSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
1176
|
+
|
819
1177
|
@pulumi.input_type
|
820
1178
|
class BranchPolicyStatusCheckSettingsArgs:
|
821
1179
|
def __init__(__self__, *,
|
@@ -955,6 +1313,23 @@ class BranchPolicyStatusCheckSettingsArgs:
|
|
955
1313
|
pulumi.set(self, "invalidate_on_update", value)
|
956
1314
|
|
957
1315
|
|
1316
|
+
if not MYPY:
|
1317
|
+
class BranchPolicyStatusCheckSettingsScopeArgsDict(TypedDict):
|
1318
|
+
match_type: NotRequired[pulumi.Input[str]]
|
1319
|
+
"""
|
1320
|
+
The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
1321
|
+
"""
|
1322
|
+
repository_id: NotRequired[pulumi.Input[str]]
|
1323
|
+
"""
|
1324
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type` is `DefaultBranch`, this should not be defined.
|
1325
|
+
"""
|
1326
|
+
repository_ref: NotRequired[pulumi.Input[str]]
|
1327
|
+
"""
|
1328
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
1329
|
+
"""
|
1330
|
+
elif False:
|
1331
|
+
BranchPolicyStatusCheckSettingsScopeArgsDict: TypeAlias = Mapping[str, Any]
|
1332
|
+
|
958
1333
|
@pulumi.input_type
|
959
1334
|
class BranchPolicyStatusCheckSettingsScopeArgs:
|
960
1335
|
def __init__(__self__, *,
|
@@ -1010,6 +1385,15 @@ class BranchPolicyStatusCheckSettingsScopeArgs:
|
|
1010
1385
|
pulumi.set(self, "repository_ref", value)
|
1011
1386
|
|
1012
1387
|
|
1388
|
+
if not MYPY:
|
1389
|
+
class BranchPolicyWorkItemLinkingSettingsArgsDict(TypedDict):
|
1390
|
+
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyWorkItemLinkingSettingsScopeArgsDict']]]
|
1391
|
+
"""
|
1392
|
+
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1393
|
+
"""
|
1394
|
+
elif False:
|
1395
|
+
BranchPolicyWorkItemLinkingSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
1396
|
+
|
1013
1397
|
@pulumi.input_type
|
1014
1398
|
class BranchPolicyWorkItemLinkingSettingsArgs:
|
1015
1399
|
def __init__(__self__, *,
|
@@ -1032,6 +1416,23 @@ class BranchPolicyWorkItemLinkingSettingsArgs:
|
|
1032
1416
|
pulumi.set(self, "scopes", value)
|
1033
1417
|
|
1034
1418
|
|
1419
|
+
if not MYPY:
|
1420
|
+
class BranchPolicyWorkItemLinkingSettingsScopeArgsDict(TypedDict):
|
1421
|
+
match_type: NotRequired[pulumi.Input[str]]
|
1422
|
+
"""
|
1423
|
+
The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
1424
|
+
"""
|
1425
|
+
repository_id: NotRequired[pulumi.Input[str]]
|
1426
|
+
"""
|
1427
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type` is `DefaultBranch`, this should not be defined.
|
1428
|
+
"""
|
1429
|
+
repository_ref: NotRequired[pulumi.Input[str]]
|
1430
|
+
"""
|
1431
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type` is `Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type` is `Prefix`, this should be a ref path such as `refs/heads/releases`.
|
1432
|
+
"""
|
1433
|
+
elif False:
|
1434
|
+
BranchPolicyWorkItemLinkingSettingsScopeArgsDict: TypeAlias = Mapping[str, Any]
|
1435
|
+
|
1035
1436
|
@pulumi.input_type
|
1036
1437
|
class BranchPolicyWorkItemLinkingSettingsScopeArgs:
|
1037
1438
|
def __init__(__self__, *,
|
@@ -1087,66 +1488,209 @@ class BranchPolicyWorkItemLinkingSettingsScopeArgs:
|
|
1087
1488
|
pulumi.set(self, "repository_ref", value)
|
1088
1489
|
|
1089
1490
|
|
1491
|
+
if not MYPY:
|
1492
|
+
class BuildDefinitionBuildCompletionTriggerArgsDict(TypedDict):
|
1493
|
+
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionBuildCompletionTriggerBranchFilterArgsDict']]]
|
1494
|
+
"""
|
1495
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1496
|
+
"""
|
1497
|
+
build_definition_id: pulumi.Input[int]
|
1498
|
+
"""
|
1499
|
+
The ID of the build pipeline will be triggered.
|
1500
|
+
"""
|
1501
|
+
elif False:
|
1502
|
+
BuildDefinitionBuildCompletionTriggerArgsDict: TypeAlias = Mapping[str, Any]
|
1503
|
+
|
1090
1504
|
@pulumi.input_type
|
1091
|
-
class
|
1505
|
+
class BuildDefinitionBuildCompletionTriggerArgs:
|
1092
1506
|
def __init__(__self__, *,
|
1093
|
-
|
1094
|
-
|
1507
|
+
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionBuildCompletionTriggerBranchFilterArgs']]],
|
1508
|
+
build_definition_id: pulumi.Input[int]):
|
1095
1509
|
"""
|
1096
|
-
:param pulumi.Input['
|
1097
|
-
:param pulumi.Input[
|
1510
|
+
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionBuildCompletionTriggerBranchFilterArgs']]] branch_filters: The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1511
|
+
:param pulumi.Input[int] build_definition_id: The ID of the build pipeline will be triggered.
|
1098
1512
|
"""
|
1099
|
-
|
1100
|
-
|
1101
|
-
if use_yaml is not None:
|
1102
|
-
pulumi.set(__self__, "use_yaml", use_yaml)
|
1513
|
+
pulumi.set(__self__, "branch_filters", branch_filters)
|
1514
|
+
pulumi.set(__self__, "build_definition_id", build_definition_id)
|
1103
1515
|
|
1104
1516
|
@property
|
1105
|
-
@pulumi.getter
|
1106
|
-
def
|
1517
|
+
@pulumi.getter(name="branchFilters")
|
1518
|
+
def branch_filters(self) -> pulumi.Input[Sequence[pulumi.Input['BuildDefinitionBuildCompletionTriggerBranchFilterArgs']]]:
|
1107
1519
|
"""
|
1108
|
-
|
1520
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1109
1521
|
"""
|
1110
|
-
return pulumi.get(self, "
|
1522
|
+
return pulumi.get(self, "branch_filters")
|
1111
1523
|
|
1112
|
-
@
|
1113
|
-
def
|
1114
|
-
pulumi.set(self, "
|
1524
|
+
@branch_filters.setter
|
1525
|
+
def branch_filters(self, value: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionBuildCompletionTriggerBranchFilterArgs']]]):
|
1526
|
+
pulumi.set(self, "branch_filters", value)
|
1115
1527
|
|
1116
1528
|
@property
|
1117
|
-
@pulumi.getter(name="
|
1118
|
-
def
|
1529
|
+
@pulumi.getter(name="buildDefinitionId")
|
1530
|
+
def build_definition_id(self) -> pulumi.Input[int]:
|
1119
1531
|
"""
|
1120
|
-
|
1532
|
+
The ID of the build pipeline will be triggered.
|
1121
1533
|
"""
|
1122
|
-
return pulumi.get(self, "
|
1534
|
+
return pulumi.get(self, "build_definition_id")
|
1535
|
+
|
1536
|
+
@build_definition_id.setter
|
1537
|
+
def build_definition_id(self, value: pulumi.Input[int]):
|
1538
|
+
pulumi.set(self, "build_definition_id", value)
|
1123
1539
|
|
1124
|
-
@use_yaml.setter
|
1125
|
-
def use_yaml(self, value: Optional[pulumi.Input[bool]]):
|
1126
|
-
pulumi.set(self, "use_yaml", value)
|
1127
1540
|
|
1541
|
+
if not MYPY:
|
1542
|
+
class BuildDefinitionBuildCompletionTriggerBranchFilterArgsDict(TypedDict):
|
1543
|
+
excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1544
|
+
"""
|
1545
|
+
List of branch patterns to exclude.
|
1546
|
+
"""
|
1547
|
+
includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1548
|
+
"""
|
1549
|
+
List of branch patterns to include.
|
1550
|
+
"""
|
1551
|
+
elif False:
|
1552
|
+
BuildDefinitionBuildCompletionTriggerBranchFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1128
1553
|
|
1129
1554
|
@pulumi.input_type
|
1130
|
-
class
|
1555
|
+
class BuildDefinitionBuildCompletionTriggerBranchFilterArgs:
|
1131
1556
|
def __init__(__self__, *,
|
1132
|
-
|
1133
|
-
|
1134
|
-
max_concurrent_builds_per_branch: Optional[pulumi.Input[int]] = None,
|
1135
|
-
path_filters: Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverridePathFilterArgs']]]] = None,
|
1136
|
-
polling_interval: Optional[pulumi.Input[int]] = None,
|
1137
|
-
polling_job_id: Optional[pulumi.Input[str]] = None):
|
1138
|
-
"""
|
1139
|
-
:param pulumi.Input[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`.
|
1140
|
-
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverrideBranchFilterArgs']]] branch_filters: The branches to include and exclude from the trigger.
|
1141
|
-
:param pulumi.Input[int] max_concurrent_builds_per_branch: The number of max builds per branch. Defaults to `1`.
|
1142
|
-
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverridePathFilterArgs']]] path_filters: Specify file paths to include or exclude. Note that the wildcard syntax is different between branches/tags and file paths.
|
1143
|
-
:param pulumi.Input[int] polling_interval: How often the external repository is polled. Defaults to `0`.
|
1144
|
-
:param pulumi.Input[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.
|
1557
|
+
excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1558
|
+
includes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
1145
1559
|
"""
|
1560
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] excludes: List of branch patterns to exclude.
|
1561
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] includes: List of branch patterns to include.
|
1562
|
+
"""
|
1563
|
+
if excludes is not None:
|
1564
|
+
pulumi.set(__self__, "excludes", excludes)
|
1565
|
+
if includes is not None:
|
1566
|
+
pulumi.set(__self__, "includes", includes)
|
1567
|
+
|
1568
|
+
@property
|
1569
|
+
@pulumi.getter
|
1570
|
+
def excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1571
|
+
"""
|
1572
|
+
List of branch patterns to exclude.
|
1573
|
+
"""
|
1574
|
+
return pulumi.get(self, "excludes")
|
1575
|
+
|
1576
|
+
@excludes.setter
|
1577
|
+
def excludes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1578
|
+
pulumi.set(self, "excludes", value)
|
1579
|
+
|
1580
|
+
@property
|
1581
|
+
@pulumi.getter
|
1582
|
+
def includes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1583
|
+
"""
|
1584
|
+
List of branch patterns to include.
|
1585
|
+
"""
|
1586
|
+
return pulumi.get(self, "includes")
|
1587
|
+
|
1588
|
+
@includes.setter
|
1589
|
+
def includes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1590
|
+
pulumi.set(self, "includes", value)
|
1591
|
+
|
1592
|
+
|
1593
|
+
if not MYPY:
|
1594
|
+
class BuildDefinitionCiTriggerArgsDict(TypedDict):
|
1595
|
+
override: NotRequired[pulumi.Input['BuildDefinitionCiTriggerOverrideArgsDict']]
|
1596
|
+
"""
|
1597
|
+
Override the azure-pipeline file and use a this configuration for all builds.
|
1598
|
+
"""
|
1599
|
+
use_yaml: NotRequired[pulumi.Input[bool]]
|
1600
|
+
"""
|
1601
|
+
Use the azure-pipeline file for the build configuration. Defaults to `false`.
|
1602
|
+
"""
|
1603
|
+
elif False:
|
1604
|
+
BuildDefinitionCiTriggerArgsDict: TypeAlias = Mapping[str, Any]
|
1605
|
+
|
1606
|
+
@pulumi.input_type
|
1607
|
+
class BuildDefinitionCiTriggerArgs:
|
1608
|
+
def __init__(__self__, *,
|
1609
|
+
override: Optional[pulumi.Input['BuildDefinitionCiTriggerOverrideArgs']] = None,
|
1610
|
+
use_yaml: Optional[pulumi.Input[bool]] = None):
|
1611
|
+
"""
|
1612
|
+
:param pulumi.Input['BuildDefinitionCiTriggerOverrideArgs'] override: Override the azure-pipeline file and use a this configuration for all builds.
|
1613
|
+
:param pulumi.Input[bool] use_yaml: Use the azure-pipeline file for the build configuration. Defaults to `false`.
|
1614
|
+
"""
|
1615
|
+
if override is not None:
|
1616
|
+
pulumi.set(__self__, "override", override)
|
1617
|
+
if use_yaml is not None:
|
1618
|
+
pulumi.set(__self__, "use_yaml", use_yaml)
|
1619
|
+
|
1620
|
+
@property
|
1621
|
+
@pulumi.getter
|
1622
|
+
def override(self) -> Optional[pulumi.Input['BuildDefinitionCiTriggerOverrideArgs']]:
|
1623
|
+
"""
|
1624
|
+
Override the azure-pipeline file and use a this configuration for all builds.
|
1625
|
+
"""
|
1626
|
+
return pulumi.get(self, "override")
|
1627
|
+
|
1628
|
+
@override.setter
|
1629
|
+
def override(self, value: Optional[pulumi.Input['BuildDefinitionCiTriggerOverrideArgs']]):
|
1630
|
+
pulumi.set(self, "override", value)
|
1631
|
+
|
1632
|
+
@property
|
1633
|
+
@pulumi.getter(name="useYaml")
|
1634
|
+
def use_yaml(self) -> Optional[pulumi.Input[bool]]:
|
1635
|
+
"""
|
1636
|
+
Use the azure-pipeline file for the build configuration. Defaults to `false`.
|
1637
|
+
"""
|
1638
|
+
return pulumi.get(self, "use_yaml")
|
1639
|
+
|
1640
|
+
@use_yaml.setter
|
1641
|
+
def use_yaml(self, value: Optional[pulumi.Input[bool]]):
|
1642
|
+
pulumi.set(self, "use_yaml", value)
|
1643
|
+
|
1644
|
+
|
1645
|
+
if not MYPY:
|
1646
|
+
class BuildDefinitionCiTriggerOverrideArgsDict(TypedDict):
|
1647
|
+
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverrideBranchFilterArgsDict']]]
|
1648
|
+
"""
|
1649
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1650
|
+
"""
|
1651
|
+
batch: NotRequired[pulumi.Input[bool]]
|
1652
|
+
"""
|
1653
|
+
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`.
|
1654
|
+
"""
|
1655
|
+
max_concurrent_builds_per_branch: NotRequired[pulumi.Input[int]]
|
1656
|
+
"""
|
1657
|
+
The number of max builds per branch. Defaults to `1`.
|
1658
|
+
"""
|
1659
|
+
path_filters: NotRequired[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverridePathFilterArgsDict']]]]
|
1660
|
+
"""
|
1661
|
+
Specify file paths to include or exclude. Note that the wildcard syntax is different between branches/tags and file paths.
|
1662
|
+
"""
|
1663
|
+
polling_interval: NotRequired[pulumi.Input[int]]
|
1664
|
+
"""
|
1665
|
+
How often the external repository is polled. Defaults to `0`.
|
1666
|
+
"""
|
1667
|
+
polling_job_id: NotRequired[pulumi.Input[str]]
|
1668
|
+
"""
|
1669
|
+
This is the ID of the polling job that polls the external repository. Once the build definition is saved/updated, this value is set.
|
1670
|
+
"""
|
1671
|
+
elif False:
|
1672
|
+
BuildDefinitionCiTriggerOverrideArgsDict: TypeAlias = Mapping[str, Any]
|
1673
|
+
|
1674
|
+
@pulumi.input_type
|
1675
|
+
class BuildDefinitionCiTriggerOverrideArgs:
|
1676
|
+
def __init__(__self__, *,
|
1677
|
+
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverrideBranchFilterArgs']]],
|
1678
|
+
batch: Optional[pulumi.Input[bool]] = None,
|
1679
|
+
max_concurrent_builds_per_branch: Optional[pulumi.Input[int]] = None,
|
1680
|
+
path_filters: Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverridePathFilterArgs']]]] = None,
|
1681
|
+
polling_interval: Optional[pulumi.Input[int]] = None,
|
1682
|
+
polling_job_id: Optional[pulumi.Input[str]] = None):
|
1683
|
+
"""
|
1684
|
+
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverrideBranchFilterArgs']]] branch_filters: The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1685
|
+
:param pulumi.Input[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`.
|
1686
|
+
:param pulumi.Input[int] max_concurrent_builds_per_branch: The number of max builds per branch. Defaults to `1`.
|
1687
|
+
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverridePathFilterArgs']]] path_filters: Specify file paths to include or exclude. Note that the wildcard syntax is different between branches/tags and file paths.
|
1688
|
+
:param pulumi.Input[int] polling_interval: How often the external repository is polled. Defaults to `0`.
|
1689
|
+
:param pulumi.Input[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.
|
1690
|
+
"""
|
1691
|
+
pulumi.set(__self__, "branch_filters", branch_filters)
|
1146
1692
|
if batch is not None:
|
1147
1693
|
pulumi.set(__self__, "batch", batch)
|
1148
|
-
if branch_filters is not None:
|
1149
|
-
pulumi.set(__self__, "branch_filters", branch_filters)
|
1150
1694
|
if max_concurrent_builds_per_branch is not None:
|
1151
1695
|
pulumi.set(__self__, "max_concurrent_builds_per_branch", max_concurrent_builds_per_branch)
|
1152
1696
|
if path_filters is not None:
|
@@ -1156,6 +1700,18 @@ class BuildDefinitionCiTriggerOverrideArgs:
|
|
1156
1700
|
if polling_job_id is not None:
|
1157
1701
|
pulumi.set(__self__, "polling_job_id", polling_job_id)
|
1158
1702
|
|
1703
|
+
@property
|
1704
|
+
@pulumi.getter(name="branchFilters")
|
1705
|
+
def branch_filters(self) -> pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverrideBranchFilterArgs']]]:
|
1706
|
+
"""
|
1707
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1708
|
+
"""
|
1709
|
+
return pulumi.get(self, "branch_filters")
|
1710
|
+
|
1711
|
+
@branch_filters.setter
|
1712
|
+
def branch_filters(self, value: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverrideBranchFilterArgs']]]):
|
1713
|
+
pulumi.set(self, "branch_filters", value)
|
1714
|
+
|
1159
1715
|
@property
|
1160
1716
|
@pulumi.getter
|
1161
1717
|
def batch(self) -> Optional[pulumi.Input[bool]]:
|
@@ -1168,18 +1724,6 @@ class BuildDefinitionCiTriggerOverrideArgs:
|
|
1168
1724
|
def batch(self, value: Optional[pulumi.Input[bool]]):
|
1169
1725
|
pulumi.set(self, "batch", value)
|
1170
1726
|
|
1171
|
-
@property
|
1172
|
-
@pulumi.getter(name="branchFilters")
|
1173
|
-
def branch_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverrideBranchFilterArgs']]]]:
|
1174
|
-
"""
|
1175
|
-
The branches to include and exclude from the trigger.
|
1176
|
-
"""
|
1177
|
-
return pulumi.get(self, "branch_filters")
|
1178
|
-
|
1179
|
-
@branch_filters.setter
|
1180
|
-
def branch_filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionCiTriggerOverrideBranchFilterArgs']]]]):
|
1181
|
-
pulumi.set(self, "branch_filters", value)
|
1182
|
-
|
1183
1727
|
@property
|
1184
1728
|
@pulumi.getter(name="maxConcurrentBuildsPerBranch")
|
1185
1729
|
def max_concurrent_builds_per_branch(self) -> Optional[pulumi.Input[int]]:
|
@@ -1229,6 +1773,19 @@ class BuildDefinitionCiTriggerOverrideArgs:
|
|
1229
1773
|
pulumi.set(self, "polling_job_id", value)
|
1230
1774
|
|
1231
1775
|
|
1776
|
+
if not MYPY:
|
1777
|
+
class BuildDefinitionCiTriggerOverrideBranchFilterArgsDict(TypedDict):
|
1778
|
+
excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1779
|
+
"""
|
1780
|
+
List of branch patterns to exclude.
|
1781
|
+
"""
|
1782
|
+
includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1783
|
+
"""
|
1784
|
+
List of branch patterns to include.
|
1785
|
+
"""
|
1786
|
+
elif False:
|
1787
|
+
BuildDefinitionCiTriggerOverrideBranchFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1788
|
+
|
1232
1789
|
@pulumi.input_type
|
1233
1790
|
class BuildDefinitionCiTriggerOverrideBranchFilterArgs:
|
1234
1791
|
def __init__(__self__, *,
|
@@ -1268,6 +1825,19 @@ class BuildDefinitionCiTriggerOverrideBranchFilterArgs:
|
|
1268
1825
|
pulumi.set(self, "includes", value)
|
1269
1826
|
|
1270
1827
|
|
1828
|
+
if not MYPY:
|
1829
|
+
class BuildDefinitionCiTriggerOverridePathFilterArgsDict(TypedDict):
|
1830
|
+
excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1831
|
+
"""
|
1832
|
+
List of path patterns to exclude.
|
1833
|
+
"""
|
1834
|
+
includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1835
|
+
"""
|
1836
|
+
List of path patterns to include.
|
1837
|
+
"""
|
1838
|
+
elif False:
|
1839
|
+
BuildDefinitionCiTriggerOverridePathFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1840
|
+
|
1271
1841
|
@pulumi.input_type
|
1272
1842
|
class BuildDefinitionCiTriggerOverridePathFilterArgs:
|
1273
1843
|
def __init__(__self__, *,
|
@@ -1307,6 +1877,17 @@ class BuildDefinitionCiTriggerOverridePathFilterArgs:
|
|
1307
1877
|
pulumi.set(self, "includes", value)
|
1308
1878
|
|
1309
1879
|
|
1880
|
+
if not MYPY:
|
1881
|
+
class BuildDefinitionFeatureArgsDict(TypedDict):
|
1882
|
+
skip_first_run: NotRequired[pulumi.Input[bool]]
|
1883
|
+
"""
|
1884
|
+
Trigger the pipeline to run after the creation. Defaults to `true`.
|
1885
|
+
|
1886
|
+
> **Note** The first run(`skip_first_run = false`) will only be triggered on create. If the first run fails, the build definition will still be marked as successfully created. A warning message indicating the inability to run pipeline will be displayed.
|
1887
|
+
"""
|
1888
|
+
elif False:
|
1889
|
+
BuildDefinitionFeatureArgsDict: TypeAlias = Mapping[str, Any]
|
1890
|
+
|
1310
1891
|
@pulumi.input_type
|
1311
1892
|
class BuildDefinitionFeatureArgs:
|
1312
1893
|
def __init__(__self__, *,
|
@@ -1334,6 +1915,25 @@ class BuildDefinitionFeatureArgs:
|
|
1334
1915
|
pulumi.set(self, "skip_first_run", value)
|
1335
1916
|
|
1336
1917
|
|
1918
|
+
if not MYPY:
|
1919
|
+
class BuildDefinitionPullRequestTriggerArgsDict(TypedDict):
|
1920
|
+
forks: pulumi.Input['BuildDefinitionPullRequestTriggerForksArgsDict']
|
1921
|
+
"""
|
1922
|
+
Set permissions for Forked repositories.
|
1923
|
+
"""
|
1924
|
+
comment_required: NotRequired[pulumi.Input[str]]
|
1925
|
+
initial_branch: NotRequired[pulumi.Input[str]]
|
1926
|
+
override: NotRequired[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideArgsDict']]
|
1927
|
+
"""
|
1928
|
+
Override the azure-pipeline file and use this configuration for all builds.
|
1929
|
+
"""
|
1930
|
+
use_yaml: NotRequired[pulumi.Input[bool]]
|
1931
|
+
"""
|
1932
|
+
Use the azure-pipeline file for the build configuration. Defaults to `false`.
|
1933
|
+
"""
|
1934
|
+
elif False:
|
1935
|
+
BuildDefinitionPullRequestTriggerArgsDict: TypeAlias = Mapping[str, Any]
|
1936
|
+
|
1337
1937
|
@pulumi.input_type
|
1338
1938
|
class BuildDefinitionPullRequestTriggerArgs:
|
1339
1939
|
def __init__(__self__, *,
|
@@ -1412,6 +2012,19 @@ class BuildDefinitionPullRequestTriggerArgs:
|
|
1412
2012
|
pulumi.set(self, "use_yaml", value)
|
1413
2013
|
|
1414
2014
|
|
2015
|
+
if not MYPY:
|
2016
|
+
class BuildDefinitionPullRequestTriggerForksArgsDict(TypedDict):
|
2017
|
+
enabled: pulumi.Input[bool]
|
2018
|
+
"""
|
2019
|
+
Build pull requests from forks of this repository.
|
2020
|
+
"""
|
2021
|
+
share_secrets: pulumi.Input[bool]
|
2022
|
+
"""
|
2023
|
+
Make secrets available to builds of forks.
|
2024
|
+
"""
|
2025
|
+
elif False:
|
2026
|
+
BuildDefinitionPullRequestTriggerForksArgsDict: TypeAlias = Mapping[str, Any]
|
2027
|
+
|
1415
2028
|
@pulumi.input_type
|
1416
2029
|
class BuildDefinitionPullRequestTriggerForksArgs:
|
1417
2030
|
def __init__(__self__, *,
|
@@ -1449,24 +2062,52 @@ class BuildDefinitionPullRequestTriggerForksArgs:
|
|
1449
2062
|
pulumi.set(self, "share_secrets", value)
|
1450
2063
|
|
1451
2064
|
|
2065
|
+
if not MYPY:
|
2066
|
+
class BuildDefinitionPullRequestTriggerOverrideArgsDict(TypedDict):
|
2067
|
+
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgsDict']]]
|
2068
|
+
"""
|
2069
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
2070
|
+
"""
|
2071
|
+
auto_cancel: NotRequired[pulumi.Input[bool]]
|
2072
|
+
"""
|
2073
|
+
. Defaults to `true`.
|
2074
|
+
"""
|
2075
|
+
path_filters: NotRequired[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverridePathFilterArgsDict']]]]
|
2076
|
+
"""
|
2077
|
+
Specify file paths to include or exclude. Note that the wildcard syntax is different between branches/tags and file paths.
|
2078
|
+
"""
|
2079
|
+
elif False:
|
2080
|
+
BuildDefinitionPullRequestTriggerOverrideArgsDict: TypeAlias = Mapping[str, Any]
|
2081
|
+
|
1452
2082
|
@pulumi.input_type
|
1453
2083
|
class BuildDefinitionPullRequestTriggerOverrideArgs:
|
1454
2084
|
def __init__(__self__, *,
|
2085
|
+
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs']]],
|
1455
2086
|
auto_cancel: Optional[pulumi.Input[bool]] = None,
|
1456
|
-
branch_filters: Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs']]]] = None,
|
1457
2087
|
path_filters: Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverridePathFilterArgs']]]] = None):
|
1458
2088
|
"""
|
2089
|
+
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs']]] branch_filters: The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1459
2090
|
:param pulumi.Input[bool] auto_cancel: . Defaults to `true`.
|
1460
|
-
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs']]] branch_filters: The branches to include and exclude from the trigger.
|
1461
2091
|
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverridePathFilterArgs']]] path_filters: Specify file paths to include or exclude. Note that the wildcard syntax is different between branches/tags and file paths.
|
1462
2092
|
"""
|
2093
|
+
pulumi.set(__self__, "branch_filters", branch_filters)
|
1463
2094
|
if auto_cancel is not None:
|
1464
2095
|
pulumi.set(__self__, "auto_cancel", auto_cancel)
|
1465
|
-
if branch_filters is not None:
|
1466
|
-
pulumi.set(__self__, "branch_filters", branch_filters)
|
1467
2096
|
if path_filters is not None:
|
1468
2097
|
pulumi.set(__self__, "path_filters", path_filters)
|
1469
2098
|
|
2099
|
+
@property
|
2100
|
+
@pulumi.getter(name="branchFilters")
|
2101
|
+
def branch_filters(self) -> pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs']]]:
|
2102
|
+
"""
|
2103
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
2104
|
+
"""
|
2105
|
+
return pulumi.get(self, "branch_filters")
|
2106
|
+
|
2107
|
+
@branch_filters.setter
|
2108
|
+
def branch_filters(self, value: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs']]]):
|
2109
|
+
pulumi.set(self, "branch_filters", value)
|
2110
|
+
|
1470
2111
|
@property
|
1471
2112
|
@pulumi.getter(name="autoCancel")
|
1472
2113
|
def auto_cancel(self) -> Optional[pulumi.Input[bool]]:
|
@@ -1479,18 +2120,6 @@ class BuildDefinitionPullRequestTriggerOverrideArgs:
|
|
1479
2120
|
def auto_cancel(self, value: Optional[pulumi.Input[bool]]):
|
1480
2121
|
pulumi.set(self, "auto_cancel", value)
|
1481
2122
|
|
1482
|
-
@property
|
1483
|
-
@pulumi.getter(name="branchFilters")
|
1484
|
-
def branch_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs']]]]:
|
1485
|
-
"""
|
1486
|
-
The branches to include and exclude from the trigger.
|
1487
|
-
"""
|
1488
|
-
return pulumi.get(self, "branch_filters")
|
1489
|
-
|
1490
|
-
@branch_filters.setter
|
1491
|
-
def branch_filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs']]]]):
|
1492
|
-
pulumi.set(self, "branch_filters", value)
|
1493
|
-
|
1494
2123
|
@property
|
1495
2124
|
@pulumi.getter(name="pathFilters")
|
1496
2125
|
def path_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionPullRequestTriggerOverridePathFilterArgs']]]]:
|
@@ -1504,6 +2133,19 @@ class BuildDefinitionPullRequestTriggerOverrideArgs:
|
|
1504
2133
|
pulumi.set(self, "path_filters", value)
|
1505
2134
|
|
1506
2135
|
|
2136
|
+
if not MYPY:
|
2137
|
+
class BuildDefinitionPullRequestTriggerOverrideBranchFilterArgsDict(TypedDict):
|
2138
|
+
excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2139
|
+
"""
|
2140
|
+
List of branch patterns to exclude.
|
2141
|
+
"""
|
2142
|
+
includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2143
|
+
"""
|
2144
|
+
List of branch patterns to include.
|
2145
|
+
"""
|
2146
|
+
elif False:
|
2147
|
+
BuildDefinitionPullRequestTriggerOverrideBranchFilterArgsDict: TypeAlias = Mapping[str, Any]
|
2148
|
+
|
1507
2149
|
@pulumi.input_type
|
1508
2150
|
class BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs:
|
1509
2151
|
def __init__(__self__, *,
|
@@ -1543,6 +2185,19 @@ class BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs:
|
|
1543
2185
|
pulumi.set(self, "includes", value)
|
1544
2186
|
|
1545
2187
|
|
2188
|
+
if not MYPY:
|
2189
|
+
class BuildDefinitionPullRequestTriggerOverridePathFilterArgsDict(TypedDict):
|
2190
|
+
excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2191
|
+
"""
|
2192
|
+
List of path patterns to exclude.
|
2193
|
+
"""
|
2194
|
+
includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2195
|
+
"""
|
2196
|
+
List of path patterns to include.
|
2197
|
+
"""
|
2198
|
+
elif False:
|
2199
|
+
BuildDefinitionPullRequestTriggerOverridePathFilterArgsDict: TypeAlias = Mapping[str, Any]
|
2200
|
+
|
1546
2201
|
@pulumi.input_type
|
1547
2202
|
class BuildDefinitionPullRequestTriggerOverridePathFilterArgs:
|
1548
2203
|
def __init__(__self__, *,
|
@@ -1582,6 +2237,39 @@ class BuildDefinitionPullRequestTriggerOverridePathFilterArgs:
|
|
1582
2237
|
pulumi.set(self, "includes", value)
|
1583
2238
|
|
1584
2239
|
|
2240
|
+
if not MYPY:
|
2241
|
+
class BuildDefinitionRepositoryArgsDict(TypedDict):
|
2242
|
+
repo_id: pulumi.Input[str]
|
2243
|
+
"""
|
2244
|
+
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>`.
|
2245
|
+
"""
|
2246
|
+
repo_type: pulumi.Input[str]
|
2247
|
+
"""
|
2248
|
+
The repository type. Valid values: `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.
|
2249
|
+
"""
|
2250
|
+
yml_path: pulumi.Input[str]
|
2251
|
+
"""
|
2252
|
+
The path of the Yaml file describing the build definition.
|
2253
|
+
"""
|
2254
|
+
branch_name: NotRequired[pulumi.Input[str]]
|
2255
|
+
"""
|
2256
|
+
The branch name for which builds are triggered. Defaults to `master`.
|
2257
|
+
"""
|
2258
|
+
github_enterprise_url: NotRequired[pulumi.Input[str]]
|
2259
|
+
"""
|
2260
|
+
The Github Enterprise URL. Used if `repo_type` is `GithubEnterprise`.
|
2261
|
+
"""
|
2262
|
+
report_build_status: NotRequired[pulumi.Input[bool]]
|
2263
|
+
"""
|
2264
|
+
Report build status. Default is true.
|
2265
|
+
"""
|
2266
|
+
service_connection_id: NotRequired[pulumi.Input[str]]
|
2267
|
+
"""
|
2268
|
+
The service connection ID. Used if the `repo_type` is `GitHub` or `GitHubEnterprise`.
|
2269
|
+
"""
|
2270
|
+
elif False:
|
2271
|
+
BuildDefinitionRepositoryArgsDict: TypeAlias = Mapping[str, Any]
|
2272
|
+
|
1585
2273
|
@pulumi.input_type
|
1586
2274
|
class BuildDefinitionRepositoryArgs:
|
1587
2275
|
def __init__(__self__, *,
|
@@ -1691,26 +2379,200 @@ class BuildDefinitionRepositoryArgs:
|
|
1691
2379
|
"""
|
1692
2380
|
The service connection ID. Used if the `repo_type` is `GitHub` or `GitHubEnterprise`.
|
1693
2381
|
"""
|
1694
|
-
return pulumi.get(self, "service_connection_id")
|
1695
|
-
|
1696
|
-
@service_connection_id.setter
|
1697
|
-
def service_connection_id(self, value: Optional[pulumi.Input[str]]):
|
1698
|
-
pulumi.set(self, "service_connection_id", value)
|
1699
|
-
|
2382
|
+
return pulumi.get(self, "service_connection_id")
|
2383
|
+
|
2384
|
+
@service_connection_id.setter
|
2385
|
+
def service_connection_id(self, value: Optional[pulumi.Input[str]]):
|
2386
|
+
pulumi.set(self, "service_connection_id", value)
|
2387
|
+
|
2388
|
+
|
2389
|
+
if not MYPY:
|
2390
|
+
class BuildDefinitionScheduleArgsDict(TypedDict):
|
2391
|
+
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgsDict']]]
|
2392
|
+
"""
|
2393
|
+
block supports the following:
|
2394
|
+
"""
|
2395
|
+
days_to_builds: pulumi.Input[Sequence[pulumi.Input[str]]]
|
2396
|
+
"""
|
2397
|
+
When to build. Valid values: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
2398
|
+
"""
|
2399
|
+
schedule_job_id: NotRequired[pulumi.Input[str]]
|
2400
|
+
"""
|
2401
|
+
The ID of the schedule job
|
2402
|
+
"""
|
2403
|
+
schedule_only_with_changes: NotRequired[pulumi.Input[bool]]
|
2404
|
+
"""
|
2405
|
+
Schedule builds if the source or pipeline has changed. Defaults to `true`.
|
2406
|
+
"""
|
2407
|
+
start_hours: NotRequired[pulumi.Input[int]]
|
2408
|
+
"""
|
2409
|
+
Build start hour. Defaults to `0`. Valid values: `0 ~ 23`.
|
2410
|
+
"""
|
2411
|
+
start_minutes: NotRequired[pulumi.Input[int]]
|
2412
|
+
"""
|
2413
|
+
Build start minute. Defaults to `0`. Valid values: `0 ~ 59`.
|
2414
|
+
"""
|
2415
|
+
time_zone: NotRequired[pulumi.Input[str]]
|
2416
|
+
"""
|
2417
|
+
Build time zone. Defaults to `(UTC) Coordinated Universal Time`. Valid values:
|
2418
|
+
`(UTC-12:00) International Date Line West`,
|
2419
|
+
`(UTC-11:00) Coordinated Universal Time-11`,
|
2420
|
+
`(UTC-10:00) Aleutian Islands`,
|
2421
|
+
`(UTC-10:00) Hawaii`,
|
2422
|
+
`(UTC-09:30) Marquesas Islands`,
|
2423
|
+
`(UTC-09:00) Alaska`,
|
2424
|
+
`(UTC-09:00) Coordinated Universal Time-09`,
|
2425
|
+
`(UTC-08:00) Baja California`,
|
2426
|
+
`(UTC-08:00) Coordinated Universal Time-08`,
|
2427
|
+
`(UTC-08:00) Pacific Time (US &Canada)`,
|
2428
|
+
`(UTC-07:00) Arizona`,
|
2429
|
+
`(UTC-07:00) Chihuahua, La Paz, Mazatlan`,
|
2430
|
+
`(UTC-07:00) Mountain Time (US &Canada)`,
|
2431
|
+
`(UTC-07:00) Yukon`,
|
2432
|
+
`(UTC-06:00) Central America`,
|
2433
|
+
`(UTC-06:00) Central Time (US &Canada)`,
|
2434
|
+
`(UTC-06:00) Easter Island`,
|
2435
|
+
`(UTC-06:00) Guadalajara, Mexico City, Monterrey`,
|
2436
|
+
`(UTC-06:00) Saskatchewan`,
|
2437
|
+
`(UTC-05:00) Bogota, Lima, Quito, Rio Branco`,
|
2438
|
+
`(UTC-05:00) Chetumal`,
|
2439
|
+
`(UTC-05:00) Eastern Time (US &Canada)`,
|
2440
|
+
`(UTC-05:00) Haiti`,
|
2441
|
+
`(UTC-05:00) Havana`,
|
2442
|
+
`(UTC-05:00) Indiana (East)`,
|
2443
|
+
`(UTC-05:00) Turks and Caicos`,
|
2444
|
+
`(UTC-04:00) Asuncion`,
|
2445
|
+
`(UTC-04:00) Atlantic Time (Canada)`,
|
2446
|
+
`(UTC-04:00) Caracas`,
|
2447
|
+
`(UTC-04:00) Cuiaba`,
|
2448
|
+
`(UTC-04:00) Georgetown, La Paz, Manaus, San Juan`,
|
2449
|
+
`(UTC-04:00) Santiago`,
|
2450
|
+
`(UTC-03:30) Newfoundland`,
|
2451
|
+
`(UTC-03:00) Araguaina`,
|
2452
|
+
`(UTC-03:00) Brasilia`,
|
2453
|
+
`(UTC-03:00) Cayenne, Fortaleza`,
|
2454
|
+
`(UTC-03:00) City of Buenos Aires`,
|
2455
|
+
`(UTC-03:00) Greenland`,
|
2456
|
+
`(UTC-03:00) Montevideo`,
|
2457
|
+
`(UTC-03:00) Punta Arenas`,
|
2458
|
+
`(UTC-03:00) Saint Pierre and Miquelon`,
|
2459
|
+
`(UTC-03:00) Salvador`,
|
2460
|
+
`(UTC-02:00) Coordinated Universal Time-02`,
|
2461
|
+
`(UTC-02:00) Mid-Atlantic - Old`,
|
2462
|
+
`(UTC-01:00) Azores`,
|
2463
|
+
`(UTC-01:00) Cabo Verde Is.`,
|
2464
|
+
`(UTC) Coordinated Universal Time`,
|
2465
|
+
`(UTC+00:00) Dublin, Edinburgh, Lisbon, London`,
|
2466
|
+
`(UTC+00:00) Monrovia, Reykjavik`,
|
2467
|
+
`(UTC+00:00) Sao Tome`,
|
2468
|
+
`(UTC+01:00) Casablanca`,
|
2469
|
+
`(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna`,
|
2470
|
+
`(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague`,
|
2471
|
+
`(UTC+01:00) Brussels, Copenhagen, Madrid, Paris`,
|
2472
|
+
`(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb`,
|
2473
|
+
`(UTC+01:00) West Central Africa`,
|
2474
|
+
`(UTC+02:00) Amman`,
|
2475
|
+
`(UTC+02:00) Athens, Bucharest`,
|
2476
|
+
`(UTC+02:00) Beirut`,
|
2477
|
+
`(UTC+02:00) Cairo`,
|
2478
|
+
`(UTC+02:00) Chisinau`,
|
2479
|
+
`(UTC+02:00) Damascus`,
|
2480
|
+
`(UTC+02:00) Gaza, Hebron`,
|
2481
|
+
`(UTC+02:00) Harare, Pretoria`,
|
2482
|
+
`(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius`,
|
2483
|
+
`(UTC+02:00) Jerusalem`,
|
2484
|
+
`(UTC+02:00) Juba`,
|
2485
|
+
`(UTC+02:00) Kaliningrad`,
|
2486
|
+
`(UTC+02:00) Khartoum`,
|
2487
|
+
`(UTC+02:00) Tripoli`,
|
2488
|
+
`(UTC+02:00) Windhoek`,
|
2489
|
+
`(UTC+03:00) Baghdad`,
|
2490
|
+
`(UTC+03:00) Istanbul`,
|
2491
|
+
`(UTC+03:00) Kuwait, Riyadh`,
|
2492
|
+
`(UTC+03:00) Minsk`,
|
2493
|
+
`(UTC+03:00) Moscow, St. Petersburg`,
|
2494
|
+
`(UTC+03:00) Nairobi`,
|
2495
|
+
`(UTC+03:00) Volgograd`,
|
2496
|
+
`(UTC+03:30) Tehran`,
|
2497
|
+
`(UTC+04:00) Abu Dhabi, Muscat`,
|
2498
|
+
`(UTC+04:00) Astrakhan, Ulyanovsk`,
|
2499
|
+
`(UTC+04:00) Baku`,
|
2500
|
+
`(UTC+04:00) Izhevsk, Samara`,
|
2501
|
+
`(UTC+04:00) Port Louis`,
|
2502
|
+
`(UTC+04:00) Saratov`,
|
2503
|
+
`(UTC+04:00) Tbilisi`,
|
2504
|
+
`(UTC+04:00) Yerevan`,
|
2505
|
+
`(UTC+04:30) Kabul`,
|
2506
|
+
`(UTC+05:00) Ashgabat, Tashkent`,
|
2507
|
+
`(UTC+05:00) Ekaterinburg`,
|
2508
|
+
`(UTC+05:00) Islamabad, Karachi`,
|
2509
|
+
`(UTC+05:00) Qyzylorda`,
|
2510
|
+
`(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi`,
|
2511
|
+
`(UTC+05:30) Sri Jayawardenepura`,
|
2512
|
+
`(UTC+05:45) Kathmandu`,
|
2513
|
+
`(UTC+06:00) Astana`,
|
2514
|
+
`(UTC+06:00) Dhaka`,
|
2515
|
+
`(UTC+06:00) Omsk`,
|
2516
|
+
`(UTC+06:30) Yangon (Rangoon)`,
|
2517
|
+
`(UTC+07:00) Bangkok, Hanoi, Jakarta`,
|
2518
|
+
`(UTC+07:00) Barnaul, Gorno-Altaysk`,
|
2519
|
+
`(UTC+07:00) Hovd`,
|
2520
|
+
`(UTC+07:00) Krasnoyarsk`,
|
2521
|
+
`(UTC+07:00) Novosibirsk`,
|
2522
|
+
`(UTC+07:00) Tomsk`,
|
2523
|
+
`(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi`,
|
2524
|
+
`(UTC+08:00) Irkutsk`,
|
2525
|
+
`(UTC+08:00) Kuala Lumpur, Singapore`,
|
2526
|
+
`(UTC+08:00) Perth`,
|
2527
|
+
`(UTC+08:00) Taipei`,
|
2528
|
+
`(UTC+08:00) Ulaanbaatar`,
|
2529
|
+
`(UTC+08:45) Eucla`,
|
2530
|
+
`(UTC+09:00) Chita`,
|
2531
|
+
`(UTC+09:00) Osaka, Sapporo, Tokyo`,
|
2532
|
+
`(UTC+09:00) Pyongyang`,
|
2533
|
+
`(UTC+09:00) Seoul`,
|
2534
|
+
`(UTC+09:00) Yakutsk`,
|
2535
|
+
`(UTC+09:30) Adelaide`,
|
2536
|
+
`(UTC+09:30) Darwin`,
|
2537
|
+
`(UTC+10:00) Brisbane`,
|
2538
|
+
`(UTC+10:00) Canberra, Melbourne, Sydney`,
|
2539
|
+
`(UTC+10:00) Guam, Port Moresby`,
|
2540
|
+
`(UTC+10:00) Hobart`,
|
2541
|
+
`(UTC+10:00) Vladivostok`,
|
2542
|
+
`(UTC+10:30) Lord Howe Island`,
|
2543
|
+
`(UTC+11:00) Bougainville Island`,
|
2544
|
+
`(UTC+11:00) Chokurdakh`,
|
2545
|
+
`(UTC+11:00) Magadan`,
|
2546
|
+
`(UTC+11:00) Norfolk Island`,
|
2547
|
+
`(UTC+11:00) Sakhalin`,
|
2548
|
+
`(UTC+11:00) Solomon Is., New Caledonia`,
|
2549
|
+
`(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky`,
|
2550
|
+
`(UTC+12:00) Auckland, Wellington`,
|
2551
|
+
`(UTC+12:00) Coordinated Universal Time+12`,
|
2552
|
+
`(UTC+12:00) Fiji`,
|
2553
|
+
`(UTC+12:00) Petropavlovsk-Kamchatsky - Old`,
|
2554
|
+
`(UTC+12:45) Chatham Islands`,
|
2555
|
+
`(UTC+13:00) Coordinated Universal Time+13`,
|
2556
|
+
`(UTC+13:00) Nuku'alofa`,
|
2557
|
+
`(UTC+13:00) Samoa`,
|
2558
|
+
`(UTC+14:00) Kiritimati Island`.
|
2559
|
+
"""
|
2560
|
+
elif False:
|
2561
|
+
BuildDefinitionScheduleArgsDict: TypeAlias = Mapping[str, Any]
|
1700
2562
|
|
1701
2563
|
@pulumi.input_type
|
1702
2564
|
class BuildDefinitionScheduleArgs:
|
1703
2565
|
def __init__(__self__, *,
|
2566
|
+
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]],
|
1704
2567
|
days_to_builds: pulumi.Input[Sequence[pulumi.Input[str]]],
|
1705
|
-
branch_filters: Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]]] = None,
|
1706
2568
|
schedule_job_id: Optional[pulumi.Input[str]] = None,
|
1707
2569
|
schedule_only_with_changes: Optional[pulumi.Input[bool]] = None,
|
1708
2570
|
start_hours: Optional[pulumi.Input[int]] = None,
|
1709
2571
|
start_minutes: Optional[pulumi.Input[int]] = None,
|
1710
2572
|
time_zone: Optional[pulumi.Input[str]] = None):
|
1711
2573
|
"""
|
1712
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] days_to_builds: When to build. Valid values: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
1713
2574
|
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]] branch_filters: block supports the following:
|
2575
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] days_to_builds: When to build. Valid values: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
1714
2576
|
:param pulumi.Input[str] schedule_job_id: The ID of the schedule job
|
1715
2577
|
:param pulumi.Input[bool] schedule_only_with_changes: Schedule builds if the source or pipeline has changed. Defaults to `true`.
|
1716
2578
|
:param pulumi.Input[int] start_hours: Build start hour. Defaults to `0`. Valid values: `0 ~ 23`.
|
@@ -1858,9 +2720,8 @@ class BuildDefinitionScheduleArgs:
|
|
1858
2720
|
`(UTC+13:00) Samoa`,
|
1859
2721
|
`(UTC+14:00) Kiritimati Island`.
|
1860
2722
|
"""
|
2723
|
+
pulumi.set(__self__, "branch_filters", branch_filters)
|
1861
2724
|
pulumi.set(__self__, "days_to_builds", days_to_builds)
|
1862
|
-
if branch_filters is not None:
|
1863
|
-
pulumi.set(__self__, "branch_filters", branch_filters)
|
1864
2725
|
if schedule_job_id is not None:
|
1865
2726
|
pulumi.set(__self__, "schedule_job_id", schedule_job_id)
|
1866
2727
|
if schedule_only_with_changes is not None:
|
@@ -1872,6 +2733,18 @@ class BuildDefinitionScheduleArgs:
|
|
1872
2733
|
if time_zone is not None:
|
1873
2734
|
pulumi.set(__self__, "time_zone", time_zone)
|
1874
2735
|
|
2736
|
+
@property
|
2737
|
+
@pulumi.getter(name="branchFilters")
|
2738
|
+
def branch_filters(self) -> pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]]:
|
2739
|
+
"""
|
2740
|
+
block supports the following:
|
2741
|
+
"""
|
2742
|
+
return pulumi.get(self, "branch_filters")
|
2743
|
+
|
2744
|
+
@branch_filters.setter
|
2745
|
+
def branch_filters(self, value: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]]):
|
2746
|
+
pulumi.set(self, "branch_filters", value)
|
2747
|
+
|
1875
2748
|
@property
|
1876
2749
|
@pulumi.getter(name="daysToBuilds")
|
1877
2750
|
def days_to_builds(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
@@ -1884,18 +2757,6 @@ class BuildDefinitionScheduleArgs:
|
|
1884
2757
|
def days_to_builds(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
1885
2758
|
pulumi.set(self, "days_to_builds", value)
|
1886
2759
|
|
1887
|
-
@property
|
1888
|
-
@pulumi.getter(name="branchFilters")
|
1889
|
-
def branch_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]]]:
|
1890
|
-
"""
|
1891
|
-
block supports the following:
|
1892
|
-
"""
|
1893
|
-
return pulumi.get(self, "branch_filters")
|
1894
|
-
|
1895
|
-
@branch_filters.setter
|
1896
|
-
def branch_filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]]]):
|
1897
|
-
pulumi.set(self, "branch_filters", value)
|
1898
|
-
|
1899
2760
|
@property
|
1900
2761
|
@pulumi.getter(name="scheduleJobId")
|
1901
2762
|
def schedule_job_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -2098,6 +2959,19 @@ class BuildDefinitionScheduleArgs:
|
|
2098
2959
|
pulumi.set(self, "time_zone", value)
|
2099
2960
|
|
2100
2961
|
|
2962
|
+
if not MYPY:
|
2963
|
+
class BuildDefinitionScheduleBranchFilterArgsDict(TypedDict):
|
2964
|
+
excludes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2965
|
+
"""
|
2966
|
+
List of branch patterns to exclude.
|
2967
|
+
"""
|
2968
|
+
includes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2969
|
+
"""
|
2970
|
+
List of branch patterns to include.
|
2971
|
+
"""
|
2972
|
+
elif False:
|
2973
|
+
BuildDefinitionScheduleBranchFilterArgsDict: TypeAlias = Mapping[str, Any]
|
2974
|
+
|
2101
2975
|
@pulumi.input_type
|
2102
2976
|
class BuildDefinitionScheduleBranchFilterArgs:
|
2103
2977
|
def __init__(__self__, *,
|
@@ -2137,6 +3011,31 @@ class BuildDefinitionScheduleBranchFilterArgs:
|
|
2137
3011
|
pulumi.set(self, "includes", value)
|
2138
3012
|
|
2139
3013
|
|
3014
|
+
if not MYPY:
|
3015
|
+
class BuildDefinitionVariableArgsDict(TypedDict):
|
3016
|
+
name: pulumi.Input[str]
|
3017
|
+
"""
|
3018
|
+
The name of the variable.
|
3019
|
+
"""
|
3020
|
+
allow_override: NotRequired[pulumi.Input[bool]]
|
3021
|
+
"""
|
3022
|
+
True if the variable can be overridden. Defaults to `true`.
|
3023
|
+
"""
|
3024
|
+
is_secret: NotRequired[pulumi.Input[bool]]
|
3025
|
+
"""
|
3026
|
+
True if the variable is a secret. Defaults to `false`.
|
3027
|
+
"""
|
3028
|
+
secret_value: NotRequired[pulumi.Input[str]]
|
3029
|
+
"""
|
3030
|
+
The secret value of the variable. Used when `is_secret` set to `true`.
|
3031
|
+
"""
|
3032
|
+
value: NotRequired[pulumi.Input[str]]
|
3033
|
+
"""
|
3034
|
+
The value of the variable.
|
3035
|
+
"""
|
3036
|
+
elif False:
|
3037
|
+
BuildDefinitionVariableArgsDict: TypeAlias = Mapping[str, Any]
|
3038
|
+
|
2140
3039
|
@pulumi.input_type
|
2141
3040
|
class BuildDefinitionVariableArgs:
|
2142
3041
|
def __init__(__self__, *,
|
@@ -2223,6 +3122,27 @@ class BuildDefinitionVariableArgs:
|
|
2223
3122
|
pulumi.set(self, "value", value)
|
2224
3123
|
|
2225
3124
|
|
3125
|
+
if not MYPY:
|
3126
|
+
class CheckRequiredTemplateRequiredTemplateArgsDict(TypedDict):
|
3127
|
+
repository_name: pulumi.Input[str]
|
3128
|
+
"""
|
3129
|
+
The name of the repository storing the template.
|
3130
|
+
"""
|
3131
|
+
repository_ref: pulumi.Input[str]
|
3132
|
+
"""
|
3133
|
+
The branch in which the template will be referenced.
|
3134
|
+
"""
|
3135
|
+
template_path: pulumi.Input[str]
|
3136
|
+
"""
|
3137
|
+
The path to the template yaml.
|
3138
|
+
"""
|
3139
|
+
repository_type: NotRequired[pulumi.Input[str]]
|
3140
|
+
"""
|
3141
|
+
The type of the repository storing the template. Valid values: `azuregit`, `github`, `githubenterprise`, `bitbucket`. Defaults to `azuregit`.
|
3142
|
+
"""
|
3143
|
+
elif False:
|
3144
|
+
CheckRequiredTemplateRequiredTemplateArgsDict: TypeAlias = Mapping[str, Any]
|
3145
|
+
|
2226
3146
|
@pulumi.input_type
|
2227
3147
|
class CheckRequiredTemplateRequiredTemplateArgs:
|
2228
3148
|
def __init__(__self__, *,
|
@@ -2234,7 +3154,7 @@ class CheckRequiredTemplateRequiredTemplateArgs:
|
|
2234
3154
|
:param pulumi.Input[str] repository_name: The name of the repository storing the template.
|
2235
3155
|
:param pulumi.Input[str] repository_ref: The branch in which the template will be referenced.
|
2236
3156
|
:param pulumi.Input[str] template_path: The path to the template yaml.
|
2237
|
-
:param pulumi.Input[str] repository_type: The type of the repository storing the template. Valid values: `azuregit`, `github`, `bitbucket`. Defaults to `azuregit`.
|
3157
|
+
:param pulumi.Input[str] repository_type: The type of the repository storing the template. Valid values: `azuregit`, `github`, `githubenterprise`, `bitbucket`. Defaults to `azuregit`.
|
2238
3158
|
"""
|
2239
3159
|
pulumi.set(__self__, "repository_name", repository_name)
|
2240
3160
|
pulumi.set(__self__, "repository_ref", repository_ref)
|
@@ -2282,7 +3202,7 @@ class CheckRequiredTemplateRequiredTemplateArgs:
|
|
2282
3202
|
@pulumi.getter(name="repositoryType")
|
2283
3203
|
def repository_type(self) -> Optional[pulumi.Input[str]]:
|
2284
3204
|
"""
|
2285
|
-
The type of the repository storing the template. Valid values: `azuregit`, `github`, `bitbucket`. Defaults to `azuregit`.
|
3205
|
+
The type of the repository storing the template. Valid values: `azuregit`, `github`, `githubenterprise`, `bitbucket`. Defaults to `azuregit`.
|
2286
3206
|
"""
|
2287
3207
|
return pulumi.get(self, "repository_type")
|
2288
3208
|
|
@@ -2291,26 +3211,121 @@ class CheckRequiredTemplateRequiredTemplateArgs:
|
|
2291
3211
|
pulumi.set(self, "repository_type", value)
|
2292
3212
|
|
2293
3213
|
|
3214
|
+
if not MYPY:
|
3215
|
+
class FeedFeatureArgsDict(TypedDict):
|
3216
|
+
permanent_delete: NotRequired[pulumi.Input[bool]]
|
3217
|
+
"""
|
3218
|
+
Determines if Feed should be Permanently removed, Defaults to `false`
|
3219
|
+
"""
|
3220
|
+
restore: NotRequired[pulumi.Input[bool]]
|
3221
|
+
"""
|
3222
|
+
Determines if Feed should be Restored during creation (if possible), Defaults to `false`
|
3223
|
+
"""
|
3224
|
+
elif False:
|
3225
|
+
FeedFeatureArgsDict: TypeAlias = Mapping[str, Any]
|
3226
|
+
|
3227
|
+
@pulumi.input_type
|
3228
|
+
class FeedFeatureArgs:
|
3229
|
+
def __init__(__self__, *,
|
3230
|
+
permanent_delete: Optional[pulumi.Input[bool]] = None,
|
3231
|
+
restore: Optional[pulumi.Input[bool]] = None):
|
3232
|
+
"""
|
3233
|
+
:param pulumi.Input[bool] permanent_delete: Determines if Feed should be Permanently removed, Defaults to `false`
|
3234
|
+
:param pulumi.Input[bool] restore: Determines if Feed should be Restored during creation (if possible), Defaults to `false`
|
3235
|
+
"""
|
3236
|
+
if permanent_delete is not None:
|
3237
|
+
pulumi.set(__self__, "permanent_delete", permanent_delete)
|
3238
|
+
if restore is not None:
|
3239
|
+
pulumi.set(__self__, "restore", restore)
|
3240
|
+
|
3241
|
+
@property
|
3242
|
+
@pulumi.getter(name="permanentDelete")
|
3243
|
+
def permanent_delete(self) -> Optional[pulumi.Input[bool]]:
|
3244
|
+
"""
|
3245
|
+
Determines if Feed should be Permanently removed, Defaults to `false`
|
3246
|
+
"""
|
3247
|
+
return pulumi.get(self, "permanent_delete")
|
3248
|
+
|
3249
|
+
@permanent_delete.setter
|
3250
|
+
def permanent_delete(self, value: Optional[pulumi.Input[bool]]):
|
3251
|
+
pulumi.set(self, "permanent_delete", value)
|
3252
|
+
|
3253
|
+
@property
|
3254
|
+
@pulumi.getter
|
3255
|
+
def restore(self) -> Optional[pulumi.Input[bool]]:
|
3256
|
+
"""
|
3257
|
+
Determines if Feed should be Restored during creation (if possible), Defaults to `false`
|
3258
|
+
"""
|
3259
|
+
return pulumi.get(self, "restore")
|
3260
|
+
|
3261
|
+
@restore.setter
|
3262
|
+
def restore(self, value: Optional[pulumi.Input[bool]]):
|
3263
|
+
pulumi.set(self, "restore", value)
|
3264
|
+
|
3265
|
+
|
3266
|
+
if not MYPY:
|
3267
|
+
class GitInitializationArgsDict(TypedDict):
|
3268
|
+
init_type: pulumi.Input[str]
|
3269
|
+
"""
|
3270
|
+
The type of repository to create. Valid values: `Uninitialized`, `Clean` or `Import`.
|
3271
|
+
"""
|
3272
|
+
password: NotRequired[pulumi.Input[str]]
|
3273
|
+
"""
|
3274
|
+
The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
3275
|
+
|
3276
|
+
~>**Note**
|
3277
|
+
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3278
|
+
"""
|
3279
|
+
service_connection_id: NotRequired[pulumi.Input[str]]
|
3280
|
+
"""
|
3281
|
+
The ID of service connection used to authenticate to a private repository for import initialization. Conflicts with `username` and `password`.
|
3282
|
+
"""
|
3283
|
+
source_type: NotRequired[pulumi.Input[str]]
|
3284
|
+
"""
|
3285
|
+
Type of the source repository. Used if the `init_type` is `Import`. Valid values: `Git`.
|
3286
|
+
"""
|
3287
|
+
source_url: NotRequired[pulumi.Input[str]]
|
3288
|
+
"""
|
3289
|
+
The URL of the source repository. Used if the `init_type` is `Import`.
|
3290
|
+
"""
|
3291
|
+
username: NotRequired[pulumi.Input[str]]
|
3292
|
+
"""
|
3293
|
+
The username used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
3294
|
+
"""
|
3295
|
+
elif False:
|
3296
|
+
GitInitializationArgsDict: TypeAlias = Mapping[str, Any]
|
3297
|
+
|
2294
3298
|
@pulumi.input_type
|
2295
3299
|
class GitInitializationArgs:
|
2296
3300
|
def __init__(__self__, *,
|
2297
3301
|
init_type: pulumi.Input[str],
|
3302
|
+
password: Optional[pulumi.Input[str]] = None,
|
2298
3303
|
service_connection_id: Optional[pulumi.Input[str]] = None,
|
2299
3304
|
source_type: Optional[pulumi.Input[str]] = None,
|
2300
|
-
source_url: Optional[pulumi.Input[str]] = None
|
3305
|
+
source_url: Optional[pulumi.Input[str]] = None,
|
3306
|
+
username: Optional[pulumi.Input[str]] = None):
|
2301
3307
|
"""
|
2302
3308
|
:param pulumi.Input[str] init_type: The type of repository to create. Valid values: `Uninitialized`, `Clean` or `Import`.
|
2303
|
-
:param pulumi.Input[str]
|
3309
|
+
:param pulumi.Input[str] password: The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
3310
|
+
|
3311
|
+
~>**Note**
|
3312
|
+
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3313
|
+
:param pulumi.Input[str] service_connection_id: The ID of service connection used to authenticate to a private repository for import initialization. Conflicts with `username` and `password`.
|
2304
3314
|
:param pulumi.Input[str] source_type: Type of the source repository. Used if the `init_type` is `Import`. Valid values: `Git`.
|
2305
3315
|
:param pulumi.Input[str] source_url: The URL of the source repository. Used if the `init_type` is `Import`.
|
3316
|
+
:param pulumi.Input[str] username: The username used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
2306
3317
|
"""
|
2307
3318
|
pulumi.set(__self__, "init_type", init_type)
|
3319
|
+
if password is not None:
|
3320
|
+
pulumi.set(__self__, "password", password)
|
2308
3321
|
if service_connection_id is not None:
|
2309
3322
|
pulumi.set(__self__, "service_connection_id", service_connection_id)
|
2310
3323
|
if source_type is not None:
|
2311
3324
|
pulumi.set(__self__, "source_type", source_type)
|
2312
3325
|
if source_url is not None:
|
2313
3326
|
pulumi.set(__self__, "source_url", source_url)
|
3327
|
+
if username is not None:
|
3328
|
+
pulumi.set(__self__, "username", username)
|
2314
3329
|
|
2315
3330
|
@property
|
2316
3331
|
@pulumi.getter(name="initType")
|
@@ -2324,11 +3339,26 @@ class GitInitializationArgs:
|
|
2324
3339
|
def init_type(self, value: pulumi.Input[str]):
|
2325
3340
|
pulumi.set(self, "init_type", value)
|
2326
3341
|
|
3342
|
+
@property
|
3343
|
+
@pulumi.getter
|
3344
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
3345
|
+
"""
|
3346
|
+
The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
3347
|
+
|
3348
|
+
~>**Note**
|
3349
|
+
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3350
|
+
"""
|
3351
|
+
return pulumi.get(self, "password")
|
3352
|
+
|
3353
|
+
@password.setter
|
3354
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
3355
|
+
pulumi.set(self, "password", value)
|
3356
|
+
|
2327
3357
|
@property
|
2328
3358
|
@pulumi.getter(name="serviceConnectionId")
|
2329
3359
|
def service_connection_id(self) -> Optional[pulumi.Input[str]]:
|
2330
3360
|
"""
|
2331
|
-
The
|
3361
|
+
The ID of service connection used to authenticate to a private repository for import initialization. Conflicts with `username` and `password`.
|
2332
3362
|
"""
|
2333
3363
|
return pulumi.get(self, "service_connection_id")
|
2334
3364
|
|
@@ -2360,6 +3390,31 @@ class GitInitializationArgs:
|
|
2360
3390
|
def source_url(self, value: Optional[pulumi.Input[str]]):
|
2361
3391
|
pulumi.set(self, "source_url", value)
|
2362
3392
|
|
3393
|
+
@property
|
3394
|
+
@pulumi.getter
|
3395
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
3396
|
+
"""
|
3397
|
+
The username used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
3398
|
+
"""
|
3399
|
+
return pulumi.get(self, "username")
|
3400
|
+
|
3401
|
+
@username.setter
|
3402
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
3403
|
+
pulumi.set(self, "username", value)
|
3404
|
+
|
3405
|
+
|
3406
|
+
if not MYPY:
|
3407
|
+
class ServiceEndpointArtifactoryAuthenticationBasicArgsDict(TypedDict):
|
3408
|
+
password: pulumi.Input[str]
|
3409
|
+
"""
|
3410
|
+
The Artifactory password.
|
3411
|
+
"""
|
3412
|
+
username: pulumi.Input[str]
|
3413
|
+
"""
|
3414
|
+
The Artifactory user name.
|
3415
|
+
"""
|
3416
|
+
elif False:
|
3417
|
+
ServiceEndpointArtifactoryAuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
2363
3418
|
|
2364
3419
|
@pulumi.input_type
|
2365
3420
|
class ServiceEndpointArtifactoryAuthenticationBasicArgs:
|
@@ -2367,8 +3422,8 @@ class ServiceEndpointArtifactoryAuthenticationBasicArgs:
|
|
2367
3422
|
password: pulumi.Input[str],
|
2368
3423
|
username: pulumi.Input[str]):
|
2369
3424
|
"""
|
2370
|
-
:param pulumi.Input[str] password: Artifactory
|
2371
|
-
:param pulumi.Input[str] username: Artifactory
|
3425
|
+
:param pulumi.Input[str] password: The Artifactory password.
|
3426
|
+
:param pulumi.Input[str] username: The Artifactory user name.
|
2372
3427
|
"""
|
2373
3428
|
pulumi.set(__self__, "password", password)
|
2374
3429
|
pulumi.set(__self__, "username", username)
|
@@ -2377,7 +3432,7 @@ class ServiceEndpointArtifactoryAuthenticationBasicArgs:
|
|
2377
3432
|
@pulumi.getter
|
2378
3433
|
def password(self) -> pulumi.Input[str]:
|
2379
3434
|
"""
|
2380
|
-
Artifactory
|
3435
|
+
The Artifactory password.
|
2381
3436
|
"""
|
2382
3437
|
return pulumi.get(self, "password")
|
2383
3438
|
|
@@ -2389,7 +3444,7 @@ class ServiceEndpointArtifactoryAuthenticationBasicArgs:
|
|
2389
3444
|
@pulumi.getter
|
2390
3445
|
def username(self) -> pulumi.Input[str]:
|
2391
3446
|
"""
|
2392
|
-
Artifactory
|
3447
|
+
The Artifactory user name.
|
2393
3448
|
"""
|
2394
3449
|
return pulumi.get(self, "username")
|
2395
3450
|
|
@@ -2398,12 +3453,21 @@ class ServiceEndpointArtifactoryAuthenticationBasicArgs:
|
|
2398
3453
|
pulumi.set(self, "username", value)
|
2399
3454
|
|
2400
3455
|
|
3456
|
+
if not MYPY:
|
3457
|
+
class ServiceEndpointArtifactoryAuthenticationTokenArgsDict(TypedDict):
|
3458
|
+
token: pulumi.Input[str]
|
3459
|
+
"""
|
3460
|
+
The Artifactory access token.
|
3461
|
+
"""
|
3462
|
+
elif False:
|
3463
|
+
ServiceEndpointArtifactoryAuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
3464
|
+
|
2401
3465
|
@pulumi.input_type
|
2402
3466
|
class ServiceEndpointArtifactoryAuthenticationTokenArgs:
|
2403
3467
|
def __init__(__self__, *,
|
2404
3468
|
token: pulumi.Input[str]):
|
2405
3469
|
"""
|
2406
|
-
:param pulumi.Input[str] token:
|
3470
|
+
:param pulumi.Input[str] token: The Artifactory access token.
|
2407
3471
|
"""
|
2408
3472
|
pulumi.set(__self__, "token", token)
|
2409
3473
|
|
@@ -2411,7 +3475,7 @@ class ServiceEndpointArtifactoryAuthenticationTokenArgs:
|
|
2411
3475
|
@pulumi.getter
|
2412
3476
|
def token(self) -> pulumi.Input[str]:
|
2413
3477
|
"""
|
2414
|
-
|
3478
|
+
The Artifactory access token.
|
2415
3479
|
"""
|
2416
3480
|
return pulumi.get(self, "token")
|
2417
3481
|
|
@@ -2420,16 +3484,68 @@ class ServiceEndpointArtifactoryAuthenticationTokenArgs:
|
|
2420
3484
|
pulumi.set(self, "token", value)
|
2421
3485
|
|
2422
3486
|
|
3487
|
+
if not MYPY:
|
3488
|
+
class ServiceEndpointAzureEcrCredentialsArgsDict(TypedDict):
|
3489
|
+
serviceprincipalid: pulumi.Input[str]
|
3490
|
+
"""
|
3491
|
+
The service principal application Id
|
3492
|
+
"""
|
3493
|
+
elif False:
|
3494
|
+
ServiceEndpointAzureEcrCredentialsArgsDict: TypeAlias = Mapping[str, Any]
|
3495
|
+
|
3496
|
+
@pulumi.input_type
|
3497
|
+
class ServiceEndpointAzureEcrCredentialsArgs:
|
3498
|
+
def __init__(__self__, *,
|
3499
|
+
serviceprincipalid: pulumi.Input[str]):
|
3500
|
+
"""
|
3501
|
+
:param pulumi.Input[str] serviceprincipalid: The service principal application Id
|
3502
|
+
"""
|
3503
|
+
pulumi.set(__self__, "serviceprincipalid", serviceprincipalid)
|
3504
|
+
|
3505
|
+
@property
|
3506
|
+
@pulumi.getter
|
3507
|
+
def serviceprincipalid(self) -> pulumi.Input[str]:
|
3508
|
+
"""
|
3509
|
+
The service principal application Id
|
3510
|
+
"""
|
3511
|
+
return pulumi.get(self, "serviceprincipalid")
|
3512
|
+
|
3513
|
+
@serviceprincipalid.setter
|
3514
|
+
def serviceprincipalid(self, value: pulumi.Input[str]):
|
3515
|
+
pulumi.set(self, "serviceprincipalid", value)
|
3516
|
+
|
3517
|
+
|
3518
|
+
if not MYPY:
|
3519
|
+
class ServiceEndpointAzureRMCredentialsArgsDict(TypedDict):
|
3520
|
+
serviceprincipalid: pulumi.Input[str]
|
3521
|
+
"""
|
3522
|
+
The service principal application ID
|
3523
|
+
"""
|
3524
|
+
serviceprincipalcertificate: NotRequired[pulumi.Input[str]]
|
3525
|
+
"""
|
3526
|
+
The service principal certificate. This not required if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`.
|
3527
|
+
"""
|
3528
|
+
serviceprincipalkey: NotRequired[pulumi.Input[str]]
|
3529
|
+
"""
|
3530
|
+
The service principal secret. This not required if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`.
|
3531
|
+
"""
|
3532
|
+
elif False:
|
3533
|
+
ServiceEndpointAzureRMCredentialsArgsDict: TypeAlias = Mapping[str, Any]
|
3534
|
+
|
2423
3535
|
@pulumi.input_type
|
2424
3536
|
class ServiceEndpointAzureRMCredentialsArgs:
|
2425
3537
|
def __init__(__self__, *,
|
2426
3538
|
serviceprincipalid: pulumi.Input[str],
|
3539
|
+
serviceprincipalcertificate: Optional[pulumi.Input[str]] = None,
|
2427
3540
|
serviceprincipalkey: Optional[pulumi.Input[str]] = None):
|
2428
3541
|
"""
|
2429
|
-
:param pulumi.Input[str] serviceprincipalid: The service principal application
|
3542
|
+
:param pulumi.Input[str] serviceprincipalid: The service principal application ID
|
3543
|
+
:param pulumi.Input[str] serviceprincipalcertificate: The service principal certificate. This not required if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`.
|
2430
3544
|
:param pulumi.Input[str] serviceprincipalkey: The service principal secret. This not required if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`.
|
2431
3545
|
"""
|
2432
3546
|
pulumi.set(__self__, "serviceprincipalid", serviceprincipalid)
|
3547
|
+
if serviceprincipalcertificate is not None:
|
3548
|
+
pulumi.set(__self__, "serviceprincipalcertificate", serviceprincipalcertificate)
|
2433
3549
|
if serviceprincipalkey is not None:
|
2434
3550
|
pulumi.set(__self__, "serviceprincipalkey", serviceprincipalkey)
|
2435
3551
|
|
@@ -2437,7 +3553,7 @@ class ServiceEndpointAzureRMCredentialsArgs:
|
|
2437
3553
|
@pulumi.getter
|
2438
3554
|
def serviceprincipalid(self) -> pulumi.Input[str]:
|
2439
3555
|
"""
|
2440
|
-
The service principal application
|
3556
|
+
The service principal application ID
|
2441
3557
|
"""
|
2442
3558
|
return pulumi.get(self, "serviceprincipalid")
|
2443
3559
|
|
@@ -2445,6 +3561,18 @@ class ServiceEndpointAzureRMCredentialsArgs:
|
|
2445
3561
|
def serviceprincipalid(self, value: pulumi.Input[str]):
|
2446
3562
|
pulumi.set(self, "serviceprincipalid", value)
|
2447
3563
|
|
3564
|
+
@property
|
3565
|
+
@pulumi.getter
|
3566
|
+
def serviceprincipalcertificate(self) -> Optional[pulumi.Input[str]]:
|
3567
|
+
"""
|
3568
|
+
The service principal certificate. This not required if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`.
|
3569
|
+
"""
|
3570
|
+
return pulumi.get(self, "serviceprincipalcertificate")
|
3571
|
+
|
3572
|
+
@serviceprincipalcertificate.setter
|
3573
|
+
def serviceprincipalcertificate(self, value: Optional[pulumi.Input[str]]):
|
3574
|
+
pulumi.set(self, "serviceprincipalcertificate", value)
|
3575
|
+
|
2448
3576
|
@property
|
2449
3577
|
@pulumi.getter
|
2450
3578
|
def serviceprincipalkey(self) -> Optional[pulumi.Input[str]]:
|
@@ -2458,6 +3586,15 @@ class ServiceEndpointAzureRMCredentialsArgs:
|
|
2458
3586
|
pulumi.set(self, "serviceprincipalkey", value)
|
2459
3587
|
|
2460
3588
|
|
3589
|
+
if not MYPY:
|
3590
|
+
class ServiceEndpointAzureRMFeaturesArgsDict(TypedDict):
|
3591
|
+
validate: NotRequired[pulumi.Input[bool]]
|
3592
|
+
"""
|
3593
|
+
Whether or not to validate connection with Azure after create or update operations. Defaults to `false`
|
3594
|
+
"""
|
3595
|
+
elif False:
|
3596
|
+
ServiceEndpointAzureRMFeaturesArgsDict: TypeAlias = Mapping[str, Any]
|
3597
|
+
|
2461
3598
|
@pulumi.input_type
|
2462
3599
|
class ServiceEndpointAzureRMFeaturesArgs:
|
2463
3600
|
def __init__(__self__, *,
|
@@ -2481,6 +3618,12 @@ class ServiceEndpointAzureRMFeaturesArgs:
|
|
2481
3618
|
pulumi.set(self, "validate", value)
|
2482
3619
|
|
2483
3620
|
|
3621
|
+
if not MYPY:
|
3622
|
+
class ServiceEndpointGitHubAuthOauthArgsDict(TypedDict):
|
3623
|
+
oauth_configuration_id: pulumi.Input[str]
|
3624
|
+
elif False:
|
3625
|
+
ServiceEndpointGitHubAuthOauthArgsDict: TypeAlias = Mapping[str, Any]
|
3626
|
+
|
2484
3627
|
@pulumi.input_type
|
2485
3628
|
class ServiceEndpointGitHubAuthOauthArgs:
|
2486
3629
|
def __init__(__self__, *,
|
@@ -2497,6 +3640,15 @@ class ServiceEndpointGitHubAuthOauthArgs:
|
|
2497
3640
|
pulumi.set(self, "oauth_configuration_id", value)
|
2498
3641
|
|
2499
3642
|
|
3643
|
+
if not MYPY:
|
3644
|
+
class ServiceEndpointGitHubAuthPersonalArgsDict(TypedDict):
|
3645
|
+
personal_access_token: pulumi.Input[str]
|
3646
|
+
"""
|
3647
|
+
The Personal Access Token for GitHub.
|
3648
|
+
"""
|
3649
|
+
elif False:
|
3650
|
+
ServiceEndpointGitHubAuthPersonalArgsDict: TypeAlias = Mapping[str, Any]
|
3651
|
+
|
2500
3652
|
@pulumi.input_type
|
2501
3653
|
class ServiceEndpointGitHubAuthPersonalArgs:
|
2502
3654
|
def __init__(__self__, *,
|
@@ -2519,6 +3671,15 @@ class ServiceEndpointGitHubAuthPersonalArgs:
|
|
2519
3671
|
pulumi.set(self, "personal_access_token", value)
|
2520
3672
|
|
2521
3673
|
|
3674
|
+
if not MYPY:
|
3675
|
+
class ServiceEndpointGitHubEnterpriseAuthPersonalArgsDict(TypedDict):
|
3676
|
+
personal_access_token: pulumi.Input[str]
|
3677
|
+
"""
|
3678
|
+
The Personal Access Token for GitHub.
|
3679
|
+
"""
|
3680
|
+
elif False:
|
3681
|
+
ServiceEndpointGitHubEnterpriseAuthPersonalArgsDict: TypeAlias = Mapping[str, Any]
|
3682
|
+
|
2522
3683
|
@pulumi.input_type
|
2523
3684
|
class ServiceEndpointGitHubEnterpriseAuthPersonalArgs:
|
2524
3685
|
def __init__(__self__, *,
|
@@ -2541,6 +3702,43 @@ class ServiceEndpointGitHubEnterpriseAuthPersonalArgs:
|
|
2541
3702
|
pulumi.set(self, "personal_access_token", value)
|
2542
3703
|
|
2543
3704
|
|
3705
|
+
if not MYPY:
|
3706
|
+
class ServiceEndpointKubernetesAzureSubscriptionArgsDict(TypedDict):
|
3707
|
+
cluster_name: pulumi.Input[str]
|
3708
|
+
"""
|
3709
|
+
The name of the Kubernetes cluster.
|
3710
|
+
"""
|
3711
|
+
resourcegroup_id: pulumi.Input[str]
|
3712
|
+
"""
|
3713
|
+
The resource group name, to which the Kubernetes cluster is deployed.
|
3714
|
+
"""
|
3715
|
+
subscription_id: pulumi.Input[str]
|
3716
|
+
"""
|
3717
|
+
The id of the Azure subscription.
|
3718
|
+
"""
|
3719
|
+
subscription_name: pulumi.Input[str]
|
3720
|
+
"""
|
3721
|
+
The name of the Azure subscription.
|
3722
|
+
"""
|
3723
|
+
tenant_id: pulumi.Input[str]
|
3724
|
+
"""
|
3725
|
+
The id of the tenant used by the subscription.
|
3726
|
+
"""
|
3727
|
+
azure_environment: NotRequired[pulumi.Input[str]]
|
3728
|
+
"""
|
3729
|
+
Azure environment refers to whether the public cloud offering or domestic (government) clouds are being used. Currently, only the public cloud is supported. The value must be AzureCloud. This is also the default-value.
|
3730
|
+
"""
|
3731
|
+
cluster_admin: NotRequired[pulumi.Input[bool]]
|
3732
|
+
"""
|
3733
|
+
Set this option to allow use cluster admin credentials.
|
3734
|
+
"""
|
3735
|
+
namespace: NotRequired[pulumi.Input[str]]
|
3736
|
+
"""
|
3737
|
+
The Kubernetes namespace. Default value is "default".
|
3738
|
+
"""
|
3739
|
+
elif False:
|
3740
|
+
ServiceEndpointKubernetesAzureSubscriptionArgsDict: TypeAlias = Mapping[str, Any]
|
3741
|
+
|
2544
3742
|
@pulumi.input_type
|
2545
3743
|
class ServiceEndpointKubernetesAzureSubscriptionArgs:
|
2546
3744
|
def __init__(__self__, *,
|
@@ -2662,14 +3860,31 @@ class ServiceEndpointKubernetesAzureSubscriptionArgs:
|
|
2662
3860
|
@pulumi.getter
|
2663
3861
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
2664
3862
|
"""
|
2665
|
-
The Kubernetes namespace. Default value is "default".
|
3863
|
+
The Kubernetes namespace. Default value is "default".
|
3864
|
+
"""
|
3865
|
+
return pulumi.get(self, "namespace")
|
3866
|
+
|
3867
|
+
@namespace.setter
|
3868
|
+
def namespace(self, value: Optional[pulumi.Input[str]]):
|
3869
|
+
pulumi.set(self, "namespace", value)
|
3870
|
+
|
3871
|
+
|
3872
|
+
if not MYPY:
|
3873
|
+
class ServiceEndpointKubernetesKubeconfigArgsDict(TypedDict):
|
3874
|
+
kube_config: pulumi.Input[str]
|
3875
|
+
"""
|
3876
|
+
The content of the kubeconfig in yaml notation to be used to communicate with the API-Server of Kubernetes.
|
3877
|
+
"""
|
3878
|
+
accept_untrusted_certs: NotRequired[pulumi.Input[bool]]
|
3879
|
+
"""
|
3880
|
+
Set this option to allow clients to accept a self-signed certificate.
|
3881
|
+
"""
|
3882
|
+
cluster_context: NotRequired[pulumi.Input[str]]
|
2666
3883
|
"""
|
2667
|
-
|
2668
|
-
|
2669
|
-
|
2670
|
-
|
2671
|
-
pulumi.set(self, "namespace", value)
|
2672
|
-
|
3884
|
+
Context within the kubeconfig file that is to be used for identifying the cluster. Default value is the current-context set in kubeconfig.
|
3885
|
+
"""
|
3886
|
+
elif False:
|
3887
|
+
ServiceEndpointKubernetesKubeconfigArgsDict: TypeAlias = Mapping[str, Any]
|
2673
3888
|
|
2674
3889
|
@pulumi.input_type
|
2675
3890
|
class ServiceEndpointKubernetesKubeconfigArgs:
|
@@ -2725,17 +3940,38 @@ class ServiceEndpointKubernetesKubeconfigArgs:
|
|
2725
3940
|
pulumi.set(self, "cluster_context", value)
|
2726
3941
|
|
2727
3942
|
|
3943
|
+
if not MYPY:
|
3944
|
+
class ServiceEndpointKubernetesServiceAccountArgsDict(TypedDict):
|
3945
|
+
ca_cert: pulumi.Input[str]
|
3946
|
+
"""
|
3947
|
+
The certificate from a Kubernetes secret object.
|
3948
|
+
"""
|
3949
|
+
token: pulumi.Input[str]
|
3950
|
+
"""
|
3951
|
+
The token from a Kubernetes secret object.
|
3952
|
+
"""
|
3953
|
+
accept_untrusted_certs: NotRequired[pulumi.Input[bool]]
|
3954
|
+
"""
|
3955
|
+
Set this option to allow clients to accept a self-signed certificate. Defaults to `false`.
|
3956
|
+
"""
|
3957
|
+
elif False:
|
3958
|
+
ServiceEndpointKubernetesServiceAccountArgsDict: TypeAlias = Mapping[str, Any]
|
3959
|
+
|
2728
3960
|
@pulumi.input_type
|
2729
3961
|
class ServiceEndpointKubernetesServiceAccountArgs:
|
2730
3962
|
def __init__(__self__, *,
|
2731
3963
|
ca_cert: pulumi.Input[str],
|
2732
|
-
token: pulumi.Input[str]
|
3964
|
+
token: pulumi.Input[str],
|
3965
|
+
accept_untrusted_certs: Optional[pulumi.Input[bool]] = None):
|
2733
3966
|
"""
|
2734
3967
|
:param pulumi.Input[str] ca_cert: The certificate from a Kubernetes secret object.
|
2735
3968
|
:param pulumi.Input[str] token: The token from a Kubernetes secret object.
|
3969
|
+
:param pulumi.Input[bool] accept_untrusted_certs: Set this option to allow clients to accept a self-signed certificate. Defaults to `false`.
|
2736
3970
|
"""
|
2737
3971
|
pulumi.set(__self__, "ca_cert", ca_cert)
|
2738
3972
|
pulumi.set(__self__, "token", token)
|
3973
|
+
if accept_untrusted_certs is not None:
|
3974
|
+
pulumi.set(__self__, "accept_untrusted_certs", accept_untrusted_certs)
|
2739
3975
|
|
2740
3976
|
@property
|
2741
3977
|
@pulumi.getter(name="caCert")
|
@@ -2761,6 +3997,27 @@ class ServiceEndpointKubernetesServiceAccountArgs:
|
|
2761
3997
|
def token(self, value: pulumi.Input[str]):
|
2762
3998
|
pulumi.set(self, "token", value)
|
2763
3999
|
|
4000
|
+
@property
|
4001
|
+
@pulumi.getter(name="acceptUntrustedCerts")
|
4002
|
+
def accept_untrusted_certs(self) -> Optional[pulumi.Input[bool]]:
|
4003
|
+
"""
|
4004
|
+
Set this option to allow clients to accept a self-signed certificate. Defaults to `false`.
|
4005
|
+
"""
|
4006
|
+
return pulumi.get(self, "accept_untrusted_certs")
|
4007
|
+
|
4008
|
+
@accept_untrusted_certs.setter
|
4009
|
+
def accept_untrusted_certs(self, value: Optional[pulumi.Input[bool]]):
|
4010
|
+
pulumi.set(self, "accept_untrusted_certs", value)
|
4011
|
+
|
4012
|
+
|
4013
|
+
if not MYPY:
|
4014
|
+
class ServiceEndpointPipelineAuthPersonalArgsDict(TypedDict):
|
4015
|
+
personal_access_token: pulumi.Input[str]
|
4016
|
+
"""
|
4017
|
+
The Personal Access Token for Azure DevOps Pipeline. It also can be set with AZDO_PERSONAL_ACCESS_TOKEN environment variable.
|
4018
|
+
"""
|
4019
|
+
elif False:
|
4020
|
+
ServiceEndpointPipelineAuthPersonalArgsDict: TypeAlias = Mapping[str, Any]
|
2764
4021
|
|
2765
4022
|
@pulumi.input_type
|
2766
4023
|
class ServiceEndpointPipelineAuthPersonalArgs:
|
@@ -2784,6 +4041,31 @@ class ServiceEndpointPipelineAuthPersonalArgs:
|
|
2784
4041
|
pulumi.set(self, "personal_access_token", value)
|
2785
4042
|
|
2786
4043
|
|
4044
|
+
if not MYPY:
|
4045
|
+
class ServiceEndpointServiceFabricAzureActiveDirectoryArgsDict(TypedDict):
|
4046
|
+
password: pulumi.Input[str]
|
4047
|
+
"""
|
4048
|
+
Password for the Azure Active Directory account.
|
4049
|
+
"""
|
4050
|
+
server_certificate_lookup: pulumi.Input[str]
|
4051
|
+
"""
|
4052
|
+
Verification mode for the cluster. Possible values include `Thumbprint` or `CommonName`.
|
4053
|
+
"""
|
4054
|
+
username: pulumi.Input[str]
|
4055
|
+
"""
|
4056
|
+
Specify an Azure Active Directory account.
|
4057
|
+
"""
|
4058
|
+
server_certificate_common_name: NotRequired[pulumi.Input[str]]
|
4059
|
+
"""
|
4060
|
+
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 (',')
|
4061
|
+
"""
|
4062
|
+
server_certificate_thumbprint: NotRequired[pulumi.Input[str]]
|
4063
|
+
"""
|
4064
|
+
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 (',')
|
4065
|
+
"""
|
4066
|
+
elif False:
|
4067
|
+
ServiceEndpointServiceFabricAzureActiveDirectoryArgsDict: TypeAlias = Mapping[str, Any]
|
4068
|
+
|
2787
4069
|
@pulumi.input_type
|
2788
4070
|
class ServiceEndpointServiceFabricAzureActiveDirectoryArgs:
|
2789
4071
|
def __init__(__self__, *,
|
@@ -2868,6 +4150,31 @@ class ServiceEndpointServiceFabricAzureActiveDirectoryArgs:
|
|
2868
4150
|
pulumi.set(self, "server_certificate_thumbprint", value)
|
2869
4151
|
|
2870
4152
|
|
4153
|
+
if not MYPY:
|
4154
|
+
class ServiceEndpointServiceFabricCertificateArgsDict(TypedDict):
|
4155
|
+
client_certificate: pulumi.Input[str]
|
4156
|
+
"""
|
4157
|
+
Base64 encoding of the cluster's client certificate file.
|
4158
|
+
"""
|
4159
|
+
server_certificate_lookup: pulumi.Input[str]
|
4160
|
+
"""
|
4161
|
+
Verification mode for the cluster. Possible values include `Thumbprint` or `CommonName`.
|
4162
|
+
"""
|
4163
|
+
client_certificate_password: NotRequired[pulumi.Input[str]]
|
4164
|
+
"""
|
4165
|
+
Password for the certificate.
|
4166
|
+
"""
|
4167
|
+
server_certificate_common_name: NotRequired[pulumi.Input[str]]
|
4168
|
+
"""
|
4169
|
+
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 (',')
|
4170
|
+
"""
|
4171
|
+
server_certificate_thumbprint: NotRequired[pulumi.Input[str]]
|
4172
|
+
"""
|
4173
|
+
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 (',')
|
4174
|
+
"""
|
4175
|
+
elif False:
|
4176
|
+
ServiceEndpointServiceFabricCertificateArgsDict: TypeAlias = Mapping[str, Any]
|
4177
|
+
|
2871
4178
|
@pulumi.input_type
|
2872
4179
|
class ServiceEndpointServiceFabricCertificateArgs:
|
2873
4180
|
def __init__(__self__, *,
|
@@ -2953,6 +4260,19 @@ class ServiceEndpointServiceFabricCertificateArgs:
|
|
2953
4260
|
pulumi.set(self, "server_certificate_thumbprint", value)
|
2954
4261
|
|
2955
4262
|
|
4263
|
+
if not MYPY:
|
4264
|
+
class ServiceEndpointServiceFabricNoneArgsDict(TypedDict):
|
4265
|
+
cluster_spn: NotRequired[pulumi.Input[str]]
|
4266
|
+
"""
|
4267
|
+
Fully qualified domain SPN for gMSA account. This is applicable only if `unsecured` option is disabled.
|
4268
|
+
"""
|
4269
|
+
unsecured: NotRequired[pulumi.Input[bool]]
|
4270
|
+
"""
|
4271
|
+
Skip using windows security for authentication.
|
4272
|
+
"""
|
4273
|
+
elif False:
|
4274
|
+
ServiceEndpointServiceFabricNoneArgsDict: TypeAlias = Mapping[str, Any]
|
4275
|
+
|
2956
4276
|
@pulumi.input_type
|
2957
4277
|
class ServiceEndpointServiceFabricNoneArgs:
|
2958
4278
|
def __init__(__self__, *,
|
@@ -2992,6 +4312,19 @@ class ServiceEndpointServiceFabricNoneArgs:
|
|
2992
4312
|
pulumi.set(self, "unsecured", value)
|
2993
4313
|
|
2994
4314
|
|
4315
|
+
if not MYPY:
|
4316
|
+
class ServiceendpointArgocdAuthenticationBasicArgsDict(TypedDict):
|
4317
|
+
password: pulumi.Input[str]
|
4318
|
+
"""
|
4319
|
+
ArgoCD Password.
|
4320
|
+
"""
|
4321
|
+
username: pulumi.Input[str]
|
4322
|
+
"""
|
4323
|
+
ArgoCD Username.
|
4324
|
+
"""
|
4325
|
+
elif False:
|
4326
|
+
ServiceendpointArgocdAuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
4327
|
+
|
2995
4328
|
@pulumi.input_type
|
2996
4329
|
class ServiceendpointArgocdAuthenticationBasicArgs:
|
2997
4330
|
def __init__(__self__, *,
|
@@ -3029,6 +4362,15 @@ class ServiceendpointArgocdAuthenticationBasicArgs:
|
|
3029
4362
|
pulumi.set(self, "username", value)
|
3030
4363
|
|
3031
4364
|
|
4365
|
+
if not MYPY:
|
4366
|
+
class ServiceendpointArgocdAuthenticationTokenArgsDict(TypedDict):
|
4367
|
+
token: pulumi.Input[str]
|
4368
|
+
"""
|
4369
|
+
Authentication Token generated through ArgoCD.
|
4370
|
+
"""
|
4371
|
+
elif False:
|
4372
|
+
ServiceendpointArgocdAuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
4373
|
+
|
3032
4374
|
@pulumi.input_type
|
3033
4375
|
class ServiceendpointArgocdAuthenticationTokenArgs:
|
3034
4376
|
def __init__(__self__, *,
|
@@ -3051,6 +4393,15 @@ class ServiceendpointArgocdAuthenticationTokenArgs:
|
|
3051
4393
|
pulumi.set(self, "token", value)
|
3052
4394
|
|
3053
4395
|
|
4396
|
+
if not MYPY:
|
4397
|
+
class ServiceendpointExternaltfsAuthPersonalArgsDict(TypedDict):
|
4398
|
+
personal_access_token: pulumi.Input[str]
|
4399
|
+
"""
|
4400
|
+
The Personal Access Token for Azure DevOps Organization.
|
4401
|
+
"""
|
4402
|
+
elif False:
|
4403
|
+
ServiceendpointExternaltfsAuthPersonalArgsDict: TypeAlias = Mapping[str, Any]
|
4404
|
+
|
3054
4405
|
@pulumi.input_type
|
3055
4406
|
class ServiceendpointExternaltfsAuthPersonalArgs:
|
3056
4407
|
def __init__(__self__, *,
|
@@ -3073,6 +4424,19 @@ class ServiceendpointExternaltfsAuthPersonalArgs:
|
|
3073
4424
|
pulumi.set(self, "personal_access_token", value)
|
3074
4425
|
|
3075
4426
|
|
4427
|
+
if not MYPY:
|
4428
|
+
class ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict(TypedDict):
|
4429
|
+
password: pulumi.Input[str]
|
4430
|
+
"""
|
4431
|
+
Artifactory Password.
|
4432
|
+
"""
|
4433
|
+
username: pulumi.Input[str]
|
4434
|
+
"""
|
4435
|
+
Artifactory Username.
|
4436
|
+
"""
|
4437
|
+
elif False:
|
4438
|
+
ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
4439
|
+
|
3076
4440
|
@pulumi.input_type
|
3077
4441
|
class ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs:
|
3078
4442
|
def __init__(__self__, *,
|
@@ -3110,6 +4474,15 @@ class ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs:
|
|
3110
4474
|
pulumi.set(self, "username", value)
|
3111
4475
|
|
3112
4476
|
|
4477
|
+
if not MYPY:
|
4478
|
+
class ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict(TypedDict):
|
4479
|
+
token: pulumi.Input[str]
|
4480
|
+
"""
|
4481
|
+
Authentication Token generated through Artifactory.
|
4482
|
+
"""
|
4483
|
+
elif False:
|
4484
|
+
ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
4485
|
+
|
3113
4486
|
@pulumi.input_type
|
3114
4487
|
class ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs:
|
3115
4488
|
def __init__(__self__, *,
|
@@ -3132,6 +4505,19 @@ class ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs:
|
|
3132
4505
|
pulumi.set(self, "token", value)
|
3133
4506
|
|
3134
4507
|
|
4508
|
+
if not MYPY:
|
4509
|
+
class ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict(TypedDict):
|
4510
|
+
password: pulumi.Input[str]
|
4511
|
+
"""
|
4512
|
+
Artifactory Password.
|
4513
|
+
"""
|
4514
|
+
username: pulumi.Input[str]
|
4515
|
+
"""
|
4516
|
+
Artifactory Username.
|
4517
|
+
"""
|
4518
|
+
elif False:
|
4519
|
+
ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
4520
|
+
|
3135
4521
|
@pulumi.input_type
|
3136
4522
|
class ServiceendpointJfrogDistributionV2AuthenticationBasicArgs:
|
3137
4523
|
def __init__(__self__, *,
|
@@ -3169,6 +4555,15 @@ class ServiceendpointJfrogDistributionV2AuthenticationBasicArgs:
|
|
3169
4555
|
pulumi.set(self, "username", value)
|
3170
4556
|
|
3171
4557
|
|
4558
|
+
if not MYPY:
|
4559
|
+
class ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict(TypedDict):
|
4560
|
+
token: pulumi.Input[str]
|
4561
|
+
"""
|
4562
|
+
Authentication Token generated through Artifactory.
|
4563
|
+
"""
|
4564
|
+
elif False:
|
4565
|
+
ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
4566
|
+
|
3172
4567
|
@pulumi.input_type
|
3173
4568
|
class ServiceendpointJfrogDistributionV2AuthenticationTokenArgs:
|
3174
4569
|
def __init__(__self__, *,
|
@@ -3191,6 +4586,19 @@ class ServiceendpointJfrogDistributionV2AuthenticationTokenArgs:
|
|
3191
4586
|
pulumi.set(self, "token", value)
|
3192
4587
|
|
3193
4588
|
|
4589
|
+
if not MYPY:
|
4590
|
+
class ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict(TypedDict):
|
4591
|
+
password: pulumi.Input[str]
|
4592
|
+
"""
|
4593
|
+
Artifactory Password.
|
4594
|
+
"""
|
4595
|
+
username: pulumi.Input[str]
|
4596
|
+
"""
|
4597
|
+
Artifactory Username.
|
4598
|
+
"""
|
4599
|
+
elif False:
|
4600
|
+
ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
4601
|
+
|
3194
4602
|
@pulumi.input_type
|
3195
4603
|
class ServiceendpointJfrogPlatformV2AuthenticationBasicArgs:
|
3196
4604
|
def __init__(__self__, *,
|
@@ -3228,6 +4636,15 @@ class ServiceendpointJfrogPlatformV2AuthenticationBasicArgs:
|
|
3228
4636
|
pulumi.set(self, "username", value)
|
3229
4637
|
|
3230
4638
|
|
4639
|
+
if not MYPY:
|
4640
|
+
class ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict(TypedDict):
|
4641
|
+
token: pulumi.Input[str]
|
4642
|
+
"""
|
4643
|
+
Authentication Token generated through Artifactory.
|
4644
|
+
"""
|
4645
|
+
elif False:
|
4646
|
+
ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
4647
|
+
|
3231
4648
|
@pulumi.input_type
|
3232
4649
|
class ServiceendpointJfrogPlatformV2AuthenticationTokenArgs:
|
3233
4650
|
def __init__(__self__, *,
|
@@ -3250,6 +4667,19 @@ class ServiceendpointJfrogPlatformV2AuthenticationTokenArgs:
|
|
3250
4667
|
pulumi.set(self, "token", value)
|
3251
4668
|
|
3252
4669
|
|
4670
|
+
if not MYPY:
|
4671
|
+
class ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict(TypedDict):
|
4672
|
+
password: pulumi.Input[str]
|
4673
|
+
"""
|
4674
|
+
Artifactory Password.
|
4675
|
+
"""
|
4676
|
+
username: pulumi.Input[str]
|
4677
|
+
"""
|
4678
|
+
Artifactory Username.
|
4679
|
+
"""
|
4680
|
+
elif False:
|
4681
|
+
ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
4682
|
+
|
3253
4683
|
@pulumi.input_type
|
3254
4684
|
class ServiceendpointJfrogXrayV2AuthenticationBasicArgs:
|
3255
4685
|
def __init__(__self__, *,
|
@@ -3287,6 +4717,15 @@ class ServiceendpointJfrogXrayV2AuthenticationBasicArgs:
|
|
3287
4717
|
pulumi.set(self, "username", value)
|
3288
4718
|
|
3289
4719
|
|
4720
|
+
if not MYPY:
|
4721
|
+
class ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict(TypedDict):
|
4722
|
+
token: pulumi.Input[str]
|
4723
|
+
"""
|
4724
|
+
Authentication Token generated through Artifactory.
|
4725
|
+
"""
|
4726
|
+
elif False:
|
4727
|
+
ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
4728
|
+
|
3290
4729
|
@pulumi.input_type
|
3291
4730
|
class ServiceendpointJfrogXrayV2AuthenticationTokenArgs:
|
3292
4731
|
def __init__(__self__, *,
|
@@ -3309,6 +4748,19 @@ class ServiceendpointJfrogXrayV2AuthenticationTokenArgs:
|
|
3309
4748
|
pulumi.set(self, "token", value)
|
3310
4749
|
|
3311
4750
|
|
4751
|
+
if not MYPY:
|
4752
|
+
class ServiceendpointMavenAuthenticationBasicArgsDict(TypedDict):
|
4753
|
+
password: pulumi.Input[str]
|
4754
|
+
"""
|
4755
|
+
The password Maven Repository.
|
4756
|
+
"""
|
4757
|
+
username: pulumi.Input[str]
|
4758
|
+
"""
|
4759
|
+
The Username of the Maven Repository.
|
4760
|
+
"""
|
4761
|
+
elif False:
|
4762
|
+
ServiceendpointMavenAuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
4763
|
+
|
3312
4764
|
@pulumi.input_type
|
3313
4765
|
class ServiceendpointMavenAuthenticationBasicArgs:
|
3314
4766
|
def __init__(__self__, *,
|
@@ -3346,6 +4798,15 @@ class ServiceendpointMavenAuthenticationBasicArgs:
|
|
3346
4798
|
pulumi.set(self, "username", value)
|
3347
4799
|
|
3348
4800
|
|
4801
|
+
if not MYPY:
|
4802
|
+
class ServiceendpointMavenAuthenticationTokenArgsDict(TypedDict):
|
4803
|
+
token: pulumi.Input[str]
|
4804
|
+
"""
|
4805
|
+
Authentication Token generated through maven repository.
|
4806
|
+
"""
|
4807
|
+
elif False:
|
4808
|
+
ServiceendpointMavenAuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
4809
|
+
|
3349
4810
|
@pulumi.input_type
|
3350
4811
|
class ServiceendpointMavenAuthenticationTokenArgs:
|
3351
4812
|
def __init__(__self__, *,
|
@@ -3368,6 +4829,104 @@ class ServiceendpointMavenAuthenticationTokenArgs:
|
|
3368
4829
|
pulumi.set(self, "token", value)
|
3369
4830
|
|
3370
4831
|
|
4832
|
+
if not MYPY:
|
4833
|
+
class ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgsDict(TypedDict):
|
4834
|
+
password: pulumi.Input[str]
|
4835
|
+
"""
|
4836
|
+
The password of the marketplace.
|
4837
|
+
"""
|
4838
|
+
username: pulumi.Input[str]
|
4839
|
+
"""
|
4840
|
+
The username of the marketplace.
|
4841
|
+
"""
|
4842
|
+
elif False:
|
4843
|
+
ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
4844
|
+
|
4845
|
+
@pulumi.input_type
|
4846
|
+
class ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgs:
|
4847
|
+
def __init__(__self__, *,
|
4848
|
+
password: pulumi.Input[str],
|
4849
|
+
username: pulumi.Input[str]):
|
4850
|
+
"""
|
4851
|
+
:param pulumi.Input[str] password: The password of the marketplace.
|
4852
|
+
:param pulumi.Input[str] username: The username of the marketplace.
|
4853
|
+
"""
|
4854
|
+
pulumi.set(__self__, "password", password)
|
4855
|
+
pulumi.set(__self__, "username", username)
|
4856
|
+
|
4857
|
+
@property
|
4858
|
+
@pulumi.getter
|
4859
|
+
def password(self) -> pulumi.Input[str]:
|
4860
|
+
"""
|
4861
|
+
The password of the marketplace.
|
4862
|
+
"""
|
4863
|
+
return pulumi.get(self, "password")
|
4864
|
+
|
4865
|
+
@password.setter
|
4866
|
+
def password(self, value: pulumi.Input[str]):
|
4867
|
+
pulumi.set(self, "password", value)
|
4868
|
+
|
4869
|
+
@property
|
4870
|
+
@pulumi.getter
|
4871
|
+
def username(self) -> pulumi.Input[str]:
|
4872
|
+
"""
|
4873
|
+
The username of the marketplace.
|
4874
|
+
"""
|
4875
|
+
return pulumi.get(self, "username")
|
4876
|
+
|
4877
|
+
@username.setter
|
4878
|
+
def username(self, value: pulumi.Input[str]):
|
4879
|
+
pulumi.set(self, "username", value)
|
4880
|
+
|
4881
|
+
|
4882
|
+
if not MYPY:
|
4883
|
+
class ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgsDict(TypedDict):
|
4884
|
+
token: pulumi.Input[str]
|
4885
|
+
"""
|
4886
|
+
The Personal Access Token.
|
4887
|
+
"""
|
4888
|
+
elif False:
|
4889
|
+
ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
4890
|
+
|
4891
|
+
@pulumi.input_type
|
4892
|
+
class ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgs:
|
4893
|
+
def __init__(__self__, *,
|
4894
|
+
token: pulumi.Input[str]):
|
4895
|
+
"""
|
4896
|
+
:param pulumi.Input[str] token: The Personal Access Token.
|
4897
|
+
"""
|
4898
|
+
pulumi.set(__self__, "token", token)
|
4899
|
+
|
4900
|
+
@property
|
4901
|
+
@pulumi.getter
|
4902
|
+
def token(self) -> pulumi.Input[str]:
|
4903
|
+
"""
|
4904
|
+
The Personal Access Token.
|
4905
|
+
"""
|
4906
|
+
return pulumi.get(self, "token")
|
4907
|
+
|
4908
|
+
@token.setter
|
4909
|
+
def token(self, value: pulumi.Input[str]):
|
4910
|
+
pulumi.set(self, "token", value)
|
4911
|
+
|
4912
|
+
|
4913
|
+
if not MYPY:
|
4914
|
+
class ServicehookStorageQueuePipelinesRunStateChangedEventArgsDict(TypedDict):
|
4915
|
+
pipeline_id: NotRequired[pulumi.Input[str]]
|
4916
|
+
"""
|
4917
|
+
The pipeline ID that will generate an event. If not specified, all pipelines in the project will trigger the event.
|
4918
|
+
"""
|
4919
|
+
run_result_filter: NotRequired[pulumi.Input[str]]
|
4920
|
+
"""
|
4921
|
+
Which run result should generate an event. Only valid if published_event is `RunStateChanged`. If not specified, all results will trigger the event.
|
4922
|
+
"""
|
4923
|
+
run_state_filter: NotRequired[pulumi.Input[str]]
|
4924
|
+
"""
|
4925
|
+
Which run state should generate an event. Only valid if published_event is `RunStateChanged`. If not specified, all states will trigger the event.
|
4926
|
+
"""
|
4927
|
+
elif False:
|
4928
|
+
ServicehookStorageQueuePipelinesRunStateChangedEventArgsDict: TypeAlias = Mapping[str, Any]
|
4929
|
+
|
3371
4930
|
@pulumi.input_type
|
3372
4931
|
class ServicehookStorageQueuePipelinesRunStateChangedEventArgs:
|
3373
4932
|
def __init__(__self__, *,
|
@@ -3423,6 +4982,27 @@ class ServicehookStorageQueuePipelinesRunStateChangedEventArgs:
|
|
3423
4982
|
pulumi.set(self, "run_state_filter", value)
|
3424
4983
|
|
3425
4984
|
|
4985
|
+
if not MYPY:
|
4986
|
+
class ServicehookStorageQueuePipelinesStageStateChangedEventArgsDict(TypedDict):
|
4987
|
+
pipeline_id: NotRequired[pulumi.Input[str]]
|
4988
|
+
"""
|
4989
|
+
The pipeline ID that will generate an event.
|
4990
|
+
"""
|
4991
|
+
stage_name: NotRequired[pulumi.Input[str]]
|
4992
|
+
"""
|
4993
|
+
Which stage should generate an event. Only valid if published_event is `StageStateChanged`. If not specified, all stages will trigger the event.
|
4994
|
+
"""
|
4995
|
+
stage_result_filter: NotRequired[pulumi.Input[str]]
|
4996
|
+
"""
|
4997
|
+
Which stage result should generate an event. Only valid if published_event is `StageStateChanged`. If not specified, all results will trigger the event.
|
4998
|
+
"""
|
4999
|
+
stage_state_filter: NotRequired[pulumi.Input[str]]
|
5000
|
+
"""
|
5001
|
+
Which stage state should generate an event. Only valid if published_event is `StageStateChanged`. If not specified, all states will trigger the event.
|
5002
|
+
"""
|
5003
|
+
elif False:
|
5004
|
+
ServicehookStorageQueuePipelinesStageStateChangedEventArgsDict: TypeAlias = Mapping[str, Any]
|
5005
|
+
|
3426
5006
|
@pulumi.input_type
|
3427
5007
|
class ServicehookStorageQueuePipelinesStageStateChangedEventArgs:
|
3428
5008
|
def __init__(__self__, *,
|
@@ -3494,6 +5074,23 @@ class ServicehookStorageQueuePipelinesStageStateChangedEventArgs:
|
|
3494
5074
|
pulumi.set(self, "stage_state_filter", value)
|
3495
5075
|
|
3496
5076
|
|
5077
|
+
if not MYPY:
|
5078
|
+
class VariableGroupKeyVaultArgsDict(TypedDict):
|
5079
|
+
name: pulumi.Input[str]
|
5080
|
+
"""
|
5081
|
+
The name of the Azure key vault to link secrets from as variables.
|
5082
|
+
"""
|
5083
|
+
service_endpoint_id: pulumi.Input[str]
|
5084
|
+
"""
|
5085
|
+
The id of the Azure subscription endpoint to access the key vault.
|
5086
|
+
"""
|
5087
|
+
search_depth: NotRequired[pulumi.Input[int]]
|
5088
|
+
"""
|
5089
|
+
Set the Azure Key Vault Secret search depth. Defaults to `20`.
|
5090
|
+
"""
|
5091
|
+
elif False:
|
5092
|
+
VariableGroupKeyVaultArgsDict: TypeAlias = Mapping[str, Any]
|
5093
|
+
|
3497
5094
|
@pulumi.input_type
|
3498
5095
|
class VariableGroupKeyVaultArgs:
|
3499
5096
|
def __init__(__self__, *,
|
@@ -3547,6 +5144,30 @@ class VariableGroupKeyVaultArgs:
|
|
3547
5144
|
pulumi.set(self, "search_depth", value)
|
3548
5145
|
|
3549
5146
|
|
5147
|
+
if not MYPY:
|
5148
|
+
class VariableGroupVariableArgsDict(TypedDict):
|
5149
|
+
name: pulumi.Input[str]
|
5150
|
+
"""
|
5151
|
+
The key value used for the variable. Must be unique within the Variable Group.
|
5152
|
+
"""
|
5153
|
+
content_type: NotRequired[pulumi.Input[str]]
|
5154
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
5155
|
+
expires: NotRequired[pulumi.Input[str]]
|
5156
|
+
is_secret: NotRequired[pulumi.Input[bool]]
|
5157
|
+
"""
|
5158
|
+
A boolean flag describing if the variable value is sensitive. Defaults to `false`.
|
5159
|
+
"""
|
5160
|
+
secret_value: NotRequired[pulumi.Input[str]]
|
5161
|
+
"""
|
5162
|
+
The secret value of the variable. If omitted, it will default to empty string. Used when `is_secret` set to `true`.
|
5163
|
+
"""
|
5164
|
+
value: NotRequired[pulumi.Input[str]]
|
5165
|
+
"""
|
5166
|
+
The value of the variable. If omitted, it will default to empty string.
|
5167
|
+
"""
|
5168
|
+
elif False:
|
5169
|
+
VariableGroupVariableArgsDict: TypeAlias = Mapping[str, Any]
|
5170
|
+
|
3550
5171
|
@pulumi.input_type
|
3551
5172
|
class VariableGroupVariableArgs:
|
3552
5173
|
def __init__(__self__, *,
|
@@ -3653,6 +5274,17 @@ class VariableGroupVariableArgs:
|
|
3653
5274
|
pulumi.set(self, "value", value)
|
3654
5275
|
|
3655
5276
|
|
5277
|
+
if not MYPY:
|
5278
|
+
class GetUsersFeaturesArgsDict(TypedDict):
|
5279
|
+
concurrent_workers: NotRequired[int]
|
5280
|
+
"""
|
5281
|
+
Number of workers to process user data concurrently.
|
5282
|
+
|
5283
|
+
> **Note** Setting `concurrent_workers` to a value greater than 1 can greatly decrease the time it takes to read the data source.
|
5284
|
+
"""
|
5285
|
+
elif False:
|
5286
|
+
GetUsersFeaturesArgsDict: TypeAlias = Mapping[str, Any]
|
5287
|
+
|
3656
5288
|
@pulumi.input_type
|
3657
5289
|
class GetUsersFeaturesArgs:
|
3658
5290
|
def __init__(__self__, *,
|