pulumi-azuredevops 3.6.0a1737523387__py3-none-any.whl → 3.7.0a1738589303__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_azuredevops/__init__.py +64 -0
- pulumi_azuredevops/_inputs.py +120 -117
- pulumi_azuredevops/area_permissions.py +49 -49
- pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
- pulumi_azuredevops/branch_policy_build_validation.py +7 -7
- pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
- pulumi_azuredevops/branch_policy_merge_types.py +7 -7
- pulumi_azuredevops/branch_policy_status_check.py +7 -7
- pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
- pulumi_azuredevops/build_definition.py +7 -7
- pulumi_azuredevops/check_branch_control.py +7 -7
- pulumi_azuredevops/check_business_hours.py +7 -7
- pulumi_azuredevops/check_exclusive_lock.py +7 -7
- pulumi_azuredevops/check_rest_api.py +986 -0
- pulumi_azuredevops/feed.py +8 -8
- pulumi_azuredevops/feed_permission.py +9 -9
- pulumi_azuredevops/feed_retention_policy.py +422 -0
- pulumi_azuredevops/get_agent_queue.py +2 -2
- pulumi_azuredevops/get_area.py +1 -1
- pulumi_azuredevops/get_client_config.py +3 -0
- pulumi_azuredevops/get_feed.py +4 -4
- pulumi_azuredevops/get_git_repository.py +8 -8
- pulumi_azuredevops/get_group.py +4 -4
- pulumi_azuredevops/get_groups.py +3 -3
- pulumi_azuredevops/get_identity_group.py +3 -0
- pulumi_azuredevops/get_identity_groups.py +1 -1
- pulumi_azuredevops/get_identity_users.py +5 -5
- pulumi_azuredevops/get_pool.py +14 -2
- pulumi_azuredevops/get_pools.py +3 -3
- pulumi_azuredevops/get_project.py +32 -0
- pulumi_azuredevops/get_projects.py +4 -4
- pulumi_azuredevops/get_repositories.py +7 -3
- pulumi_azuredevops/get_securityrole_definitions.py +4 -4
- pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
- pulumi_azuredevops/get_service_endpoint_github.py +6 -6
- pulumi_azuredevops/get_service_principal.py +153 -0
- pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
- pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
- pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
- pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
- pulumi_azuredevops/get_team.py +4 -3
- pulumi_azuredevops/get_teams.py +2 -3
- pulumi_azuredevops/get_users.py +5 -9
- pulumi_azuredevops/git.py +7 -7
- pulumi_azuredevops/git_permissions.py +14 -21
- pulumi_azuredevops/git_repository_file.py +7 -14
- pulumi_azuredevops/group.py +21 -7
- pulumi_azuredevops/group_entitlement.py +16 -20
- pulumi_azuredevops/group_membership.py +35 -50
- pulumi_azuredevops/iterative_permissions.py +34 -34
- pulumi_azuredevops/library_permissions.py +75 -75
- pulumi_azuredevops/outputs.py +129 -102
- pulumi_azuredevops/pipeline_authorization.py +7 -7
- pulumi_azuredevops/pool.py +4 -4
- pulumi_azuredevops/project.py +114 -63
- pulumi_azuredevops/project_features.py +87 -45
- pulumi_azuredevops/project_permissions.py +7 -7
- pulumi_azuredevops/project_pipeline_settings.py +28 -35
- pulumi_azuredevops/project_tags.py +263 -0
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/queue.py +7 -14
- pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
- pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
- pulumi_azuredevops/resource_authorization.py +35 -35
- pulumi_azuredevops/service_endpoint_artifactory.py +24 -18
- pulumi_azuredevops/service_endpoint_aws.py +2 -2
- pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -15
- pulumi_azuredevops/service_endpoint_azure_rm.py +25 -25
- pulumi_azuredevops/service_endpoint_bit_bucket.py +2 -2
- pulumi_azuredevops/service_endpoint_docker_registry.py +2 -2
- pulumi_azuredevops/service_endpoint_generic.py +2 -2
- pulumi_azuredevops/service_endpoint_generic_git.py +4 -8
- pulumi_azuredevops/service_endpoint_git_hub.py +15 -2
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +15 -2
- pulumi_azuredevops/service_endpoint_kubernetes.py +23 -23
- pulumi_azuredevops/service_endpoint_npm.py +4 -4
- pulumi_azuredevops/service_endpoint_pipeline.py +4 -4
- pulumi_azuredevops/service_endpoint_service_fabric.py +48 -9
- pulumi_azuredevops/service_endpoint_sonar_cloud.py +11 -11
- pulumi_azuredevops/service_endpoint_sonar_qube.py +11 -11
- pulumi_azuredevops/service_endpoint_ssh.py +2 -6
- pulumi_azuredevops/service_principal_entitlement.py +386 -0
- pulumi_azuredevops/serviceendpoint_argocd.py +2 -2
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +2 -2
- pulumi_azuredevops/serviceendpoint_checkmarx_one.py +627 -0
- pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +575 -0
- pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +674 -0
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +2 -2
- pulumi_azuredevops/serviceendpoint_externaltfs.py +63 -11
- pulumi_azuredevops/serviceendpoint_gcp_terraform.py +2 -2
- pulumi_azuredevops/serviceendpoint_incomingwebhook.py +2 -2
- pulumi_azuredevops/serviceendpoint_jenkins.py +2 -2
- pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_maven.py +2 -2
- pulumi_azuredevops/serviceendpoint_nexus.py +2 -2
- pulumi_azuredevops/serviceendpoint_nuget.py +2 -2
- pulumi_azuredevops/serviceendpoint_octopusdeploy.py +2 -2
- pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
- pulumi_azuredevops/serviceendpoint_snyk.py +2 -2
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +4 -6
- pulumi_azuredevops/servicehook_permissions.py +51 -51
- pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
- pulumi_azuredevops/tagging_permissions.py +49 -49
- pulumi_azuredevops/team.py +76 -56
- pulumi_azuredevops/team_administrators.py +83 -56
- pulumi_azuredevops/team_members.py +56 -49
- pulumi_azuredevops/variable_group.py +4 -2
- pulumi_azuredevops/variable_group_permissions.py +75 -75
- pulumi_azuredevops/wiki.py +15 -2
- pulumi_azuredevops/wiki_page.py +2 -2
- pulumi_azuredevops/work_item_query_permissions.py +7 -7
- {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/METADATA +1 -1
- pulumi_azuredevops-3.7.0a1738589303.dist-info/RECORD +148 -0
- pulumi_azuredevops-3.6.0a1737523387.dist-info/RECORD +0 -140
- {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/WHEEL +0 -0
- {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/top_level.txt +0 -0
pulumi_azuredevops/_inputs.py
CHANGED
@@ -163,7 +163,7 @@ if not MYPY:
|
|
163
163
|
"""
|
164
164
|
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyAutoReviewersSettingsScopeArgsDict']]]
|
165
165
|
"""
|
166
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
166
|
+
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.
|
167
167
|
"""
|
168
168
|
message: NotRequired[pulumi.Input[str]]
|
169
169
|
"""
|
@@ -197,7 +197,7 @@ class BranchPolicyAutoReviewersSettingsArgs:
|
|
197
197
|
submitter_can_vote: Optional[pulumi.Input[bool]] = None):
|
198
198
|
"""
|
199
199
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] auto_reviewer_ids: Required reviewers ids. Supports multiples user Ids.
|
200
|
-
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyAutoReviewersSettingsScopeArgs']]] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
200
|
+
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyAutoReviewersSettingsScopeArgs']]] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
201
201
|
:param pulumi.Input[str] message: Activity feed message, Message will appear in the activity feed of pull requests with automatically added reviewers.
|
202
202
|
:param pulumi.Input[int] minimum_number_of_reviewers: Minimum number of required reviewers. Defaults to `1`.
|
203
203
|
|
@@ -232,7 +232,7 @@ class BranchPolicyAutoReviewersSettingsArgs:
|
|
232
232
|
@pulumi.getter
|
233
233
|
def scopes(self) -> pulumi.Input[Sequence[pulumi.Input['BranchPolicyAutoReviewersSettingsScopeArgs']]]:
|
234
234
|
"""
|
235
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
235
|
+
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.
|
236
236
|
"""
|
237
237
|
return pulumi.get(self, "scopes")
|
238
238
|
|
@@ -375,7 +375,7 @@ if not MYPY:
|
|
375
375
|
"""
|
376
376
|
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyBuildValidationSettingsScopeArgsDict']]]
|
377
377
|
"""
|
378
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
378
|
+
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.
|
379
379
|
"""
|
380
380
|
filename_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
381
381
|
"""
|
@@ -414,7 +414,7 @@ class BranchPolicyBuildValidationSettingsArgs:
|
|
414
414
|
"""
|
415
415
|
:param pulumi.Input[int] build_definition_id: The ID of the build to monitor for the policy.
|
416
416
|
:param pulumi.Input[str] display_name: The display name for the policy.
|
417
|
-
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyBuildValidationSettingsScopeArgs']]] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
417
|
+
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyBuildValidationSettingsScopeArgs']]] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
418
418
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] filename_patterns: If a path filter is set, the policy will only apply when files which match the filter are changes. Not setting this field means that the policy will always apply. You can specify absolute paths and wildcards. Example: `["/WebApp/Models/Data.cs", "/WebApp/*", "*.cs"]`. Paths prefixed with "!" are excluded. Example: `["/WebApp/*", "!/WebApp/Tests/*"]`. Order is significant.
|
419
419
|
:param pulumi.Input[bool] manual_queue_only: If set to true, the build will need to be manually queued. Defaults to `false`
|
420
420
|
:param pulumi.Input[bool] queue_on_source_update_only: True if the build should queue on source updates only. Defaults to `true`.
|
@@ -465,7 +465,7 @@ class BranchPolicyBuildValidationSettingsArgs:
|
|
465
465
|
@pulumi.getter
|
466
466
|
def scopes(self) -> pulumi.Input[Sequence[pulumi.Input['BranchPolicyBuildValidationSettingsScopeArgs']]]:
|
467
467
|
"""
|
468
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
468
|
+
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.
|
469
469
|
"""
|
470
470
|
return pulumi.get(self, "scopes")
|
471
471
|
|
@@ -603,7 +603,7 @@ if not MYPY:
|
|
603
603
|
class BranchPolicyCommentResolutionSettingsArgsDict(TypedDict):
|
604
604
|
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyCommentResolutionSettingsScopeArgsDict']]]
|
605
605
|
"""
|
606
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
606
|
+
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.
|
607
607
|
"""
|
608
608
|
elif False:
|
609
609
|
BranchPolicyCommentResolutionSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -613,7 +613,7 @@ class BranchPolicyCommentResolutionSettingsArgs:
|
|
613
613
|
def __init__(__self__, *,
|
614
614
|
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyCommentResolutionSettingsScopeArgs']]]):
|
615
615
|
"""
|
616
|
-
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyCommentResolutionSettingsScopeArgs']]] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
616
|
+
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyCommentResolutionSettingsScopeArgs']]] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
617
617
|
"""
|
618
618
|
pulumi.set(__self__, "scopes", scopes)
|
619
619
|
|
@@ -621,7 +621,7 @@ class BranchPolicyCommentResolutionSettingsArgs:
|
|
621
621
|
@pulumi.getter
|
622
622
|
def scopes(self) -> pulumi.Input[Sequence[pulumi.Input['BranchPolicyCommentResolutionSettingsScopeArgs']]]:
|
623
623
|
"""
|
624
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
624
|
+
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.
|
625
625
|
"""
|
626
626
|
return pulumi.get(self, "scopes")
|
627
627
|
|
@@ -706,7 +706,7 @@ if not MYPY:
|
|
706
706
|
class BranchPolicyMergeTypesSettingsArgsDict(TypedDict):
|
707
707
|
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyMergeTypesSettingsScopeArgsDict']]]
|
708
708
|
"""
|
709
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
709
|
+
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.
|
710
710
|
"""
|
711
711
|
allow_basic_no_fast_forward: NotRequired[pulumi.Input[bool]]
|
712
712
|
"""
|
@@ -736,7 +736,7 @@ class BranchPolicyMergeTypesSettingsArgs:
|
|
736
736
|
allow_rebase_with_merge: Optional[pulumi.Input[bool]] = None,
|
737
737
|
allow_squash: Optional[pulumi.Input[bool]] = None):
|
738
738
|
"""
|
739
|
-
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyMergeTypesSettingsScopeArgs']]] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
739
|
+
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyMergeTypesSettingsScopeArgs']]] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
740
740
|
:param pulumi.Input[bool] allow_basic_no_fast_forward: Allow basic merge with no fast forward. Defaults to `false`.
|
741
741
|
:param pulumi.Input[bool] allow_rebase_and_fast_forward: Allow rebase with fast forward. Defaults to `false`.
|
742
742
|
:param pulumi.Input[bool] allow_rebase_with_merge: Allow rebase with merge commit. Defaults to `false`.
|
@@ -756,7 +756,7 @@ class BranchPolicyMergeTypesSettingsArgs:
|
|
756
756
|
@pulumi.getter
|
757
757
|
def scopes(self) -> pulumi.Input[Sequence[pulumi.Input['BranchPolicyMergeTypesSettingsScopeArgs']]]:
|
758
758
|
"""
|
759
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
759
|
+
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.
|
760
760
|
"""
|
761
761
|
return pulumi.get(self, "scopes")
|
762
762
|
|
@@ -1142,14 +1142,13 @@ if not MYPY:
|
|
1142
1142
|
"""
|
1143
1143
|
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyStatusCheckSettingsScopeArgsDict']]]
|
1144
1144
|
"""
|
1145
|
-
|
1146
|
-
at least once.
|
1145
|
+
A `scope` block as defined below.
|
1147
1146
|
"""
|
1148
1147
|
applicability: NotRequired[pulumi.Input[str]]
|
1149
1148
|
"""
|
1150
|
-
Policy applicability. If policy `applicability
|
1151
|
-
status is posted to the pull request. If policy `applicability
|
1152
|
-
is posted to the pull request.
|
1149
|
+
Policy applicability. If policy `applicability=default`, apply unless "Not Applicable"
|
1150
|
+
status is posted to the pull request. If policy `applicability=conditional`, policy is applied only after a status
|
1151
|
+
is posted to the pull request. Possible values `default`, `conditional`. Defaults to `default`.
|
1153
1152
|
"""
|
1154
1153
|
author_id: NotRequired[pulumi.Input[str]]
|
1155
1154
|
"""
|
@@ -1161,7 +1160,10 @@ if not MYPY:
|
|
1161
1160
|
"""
|
1162
1161
|
filename_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1163
1162
|
"""
|
1164
|
-
If a path filter is set, the policy will only apply when files which match the filter are
|
1163
|
+
If a path filter is set, the policy will only apply when files which match the filter are changed. Not setting this field means that the policy is always applied.
|
1164
|
+
|
1165
|
+
~>**NOTE** 1. Specify absolute paths and wildcards. Example: `["/WebApp/Models/Data.cs", "/WebApp/*", "*.cs"]`.
|
1166
|
+
<br> 2. Paths prefixed with "!" are excluded. Example: `["/WebApp/*", "!/WebApp/Tests/*"]`. Order is significant.
|
1165
1167
|
"""
|
1166
1168
|
genre: NotRequired[pulumi.Input[str]]
|
1167
1169
|
"""
|
@@ -1187,14 +1189,16 @@ class BranchPolicyStatusCheckSettingsArgs:
|
|
1187
1189
|
invalidate_on_update: Optional[pulumi.Input[bool]] = None):
|
1188
1190
|
"""
|
1189
1191
|
:param pulumi.Input[str] name: The status name to check.
|
1190
|
-
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyStatusCheckSettingsScopeArgs']]] scopes:
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
is posted to the pull request.
|
1192
|
+
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyStatusCheckSettingsScopeArgs']]] scopes: A `scope` block as defined below.
|
1193
|
+
:param pulumi.Input[str] applicability: Policy applicability. If policy `applicability=default`, apply unless "Not Applicable"
|
1194
|
+
status is posted to the pull request. If policy `applicability=conditional`, policy is applied only after a status
|
1195
|
+
is posted to the pull request. Possible values `default`, `conditional`. Defaults to `default`.
|
1195
1196
|
:param pulumi.Input[str] author_id: The authorized user can post the status.
|
1196
1197
|
:param pulumi.Input[str] display_name: The display name.
|
1197
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] filename_patterns: If a path filter is set, the policy will only apply when files which match the filter are
|
1198
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] filename_patterns: If a path filter is set, the policy will only apply when files which match the filter are changed. Not setting this field means that the policy is always applied.
|
1199
|
+
|
1200
|
+
~>**NOTE** 1. Specify absolute paths and wildcards. Example: `["/WebApp/Models/Data.cs", "/WebApp/*", "*.cs"]`.
|
1201
|
+
<br> 2. Paths prefixed with "!" are excluded. Example: `["/WebApp/*", "!/WebApp/Tests/*"]`. Order is significant.
|
1198
1202
|
:param pulumi.Input[str] genre: The genre of the status to check (see [Microsoft Documentation](https://docs.microsoft.com/en-us/azure/devops/repos/git/pull-request-status?view=azure-devops#status-policy))
|
1199
1203
|
:param pulumi.Input[bool] invalidate_on_update: Reset status whenever there are new changes.
|
1200
1204
|
"""
|
@@ -1229,8 +1233,7 @@ class BranchPolicyStatusCheckSettingsArgs:
|
|
1229
1233
|
@pulumi.getter
|
1230
1234
|
def scopes(self) -> pulumi.Input[Sequence[pulumi.Input['BranchPolicyStatusCheckSettingsScopeArgs']]]:
|
1231
1235
|
"""
|
1232
|
-
|
1233
|
-
at least once.
|
1236
|
+
A `scope` block as defined below.
|
1234
1237
|
"""
|
1235
1238
|
return pulumi.get(self, "scopes")
|
1236
1239
|
|
@@ -1242,9 +1245,9 @@ class BranchPolicyStatusCheckSettingsArgs:
|
|
1242
1245
|
@pulumi.getter
|
1243
1246
|
def applicability(self) -> Optional[pulumi.Input[str]]:
|
1244
1247
|
"""
|
1245
|
-
Policy applicability. If policy `applicability
|
1246
|
-
status is posted to the pull request. If policy `applicability
|
1247
|
-
is posted to the pull request.
|
1248
|
+
Policy applicability. If policy `applicability=default`, apply unless "Not Applicable"
|
1249
|
+
status is posted to the pull request. If policy `applicability=conditional`, policy is applied only after a status
|
1250
|
+
is posted to the pull request. Possible values `default`, `conditional`. Defaults to `default`.
|
1248
1251
|
"""
|
1249
1252
|
return pulumi.get(self, "applicability")
|
1250
1253
|
|
@@ -1280,7 +1283,10 @@ class BranchPolicyStatusCheckSettingsArgs:
|
|
1280
1283
|
@pulumi.getter(name="filenamePatterns")
|
1281
1284
|
def filename_patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1282
1285
|
"""
|
1283
|
-
If a path filter is set, the policy will only apply when files which match the filter are
|
1286
|
+
If a path filter is set, the policy will only apply when files which match the filter are changed. Not setting this field means that the policy is always applied.
|
1287
|
+
|
1288
|
+
~>**NOTE** 1. Specify absolute paths and wildcards. Example: `["/WebApp/Models/Data.cs", "/WebApp/*", "*.cs"]`.
|
1289
|
+
<br> 2. Paths prefixed with "!" are excluded. Example: `["/WebApp/*", "!/WebApp/Tests/*"]`. Order is significant.
|
1284
1290
|
"""
|
1285
1291
|
return pulumi.get(self, "filename_patterns")
|
1286
1292
|
|
@@ -1321,11 +1327,11 @@ if not MYPY:
|
|
1321
1327
|
"""
|
1322
1328
|
repository_id: NotRequired[pulumi.Input[str]]
|
1323
1329
|
"""
|
1324
|
-
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type
|
1330
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type=DefaultBranch`, this should not be defined.
|
1325
1331
|
"""
|
1326
1332
|
repository_ref: NotRequired[pulumi.Input[str]]
|
1327
1333
|
"""
|
1328
|
-
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type
|
1334
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type=Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type=Prefix`, this should be a ref path such as `refs/heads/releases`.
|
1329
1335
|
"""
|
1330
1336
|
elif False:
|
1331
1337
|
BranchPolicyStatusCheckSettingsScopeArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1338,8 +1344,8 @@ class BranchPolicyStatusCheckSettingsScopeArgs:
|
|
1338
1344
|
repository_ref: Optional[pulumi.Input[str]] = None):
|
1339
1345
|
"""
|
1340
1346
|
:param pulumi.Input[str] match_type: The match type to use when applying the policy. Supported values are `Exact` (default), `Prefix` or `DefaultBranch`.
|
1341
|
-
:param pulumi.Input[str] repository_id: The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type
|
1342
|
-
:param pulumi.Input[str] repository_ref: The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type
|
1347
|
+
:param pulumi.Input[str] repository_id: The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type=DefaultBranch`, this should not be defined.
|
1348
|
+
:param pulumi.Input[str] repository_ref: The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type=Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type=Prefix`, this should be a ref path such as `refs/heads/releases`.
|
1343
1349
|
"""
|
1344
1350
|
if match_type is not None:
|
1345
1351
|
pulumi.set(__self__, "match_type", match_type)
|
@@ -1364,7 +1370,7 @@ class BranchPolicyStatusCheckSettingsScopeArgs:
|
|
1364
1370
|
@pulumi.getter(name="repositoryId")
|
1365
1371
|
def repository_id(self) -> Optional[pulumi.Input[str]]:
|
1366
1372
|
"""
|
1367
|
-
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type
|
1373
|
+
The repository ID. Needed only if the scope of the policy will be limited to a single repository. If `match_type=DefaultBranch`, this should not be defined.
|
1368
1374
|
"""
|
1369
1375
|
return pulumi.get(self, "repository_id")
|
1370
1376
|
|
@@ -1376,7 +1382,7 @@ class BranchPolicyStatusCheckSettingsScopeArgs:
|
|
1376
1382
|
@pulumi.getter(name="repositoryRef")
|
1377
1383
|
def repository_ref(self) -> Optional[pulumi.Input[str]]:
|
1378
1384
|
"""
|
1379
|
-
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type
|
1385
|
+
The ref pattern to use for the match when `match_type` other than `DefaultBranch`. If `match_type=Exact`, this should be a qualified ref such as `refs/heads/master`. If `match_type=Prefix`, this should be a ref path such as `refs/heads/releases`.
|
1380
1386
|
"""
|
1381
1387
|
return pulumi.get(self, "repository_ref")
|
1382
1388
|
|
@@ -1389,7 +1395,7 @@ if not MYPY:
|
|
1389
1395
|
class BranchPolicyWorkItemLinkingSettingsArgsDict(TypedDict):
|
1390
1396
|
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyWorkItemLinkingSettingsScopeArgsDict']]]
|
1391
1397
|
"""
|
1392
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1398
|
+
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.
|
1393
1399
|
"""
|
1394
1400
|
elif False:
|
1395
1401
|
BranchPolicyWorkItemLinkingSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1399,7 +1405,7 @@ class BranchPolicyWorkItemLinkingSettingsArgs:
|
|
1399
1405
|
def __init__(__self__, *,
|
1400
1406
|
scopes: pulumi.Input[Sequence[pulumi.Input['BranchPolicyWorkItemLinkingSettingsScopeArgs']]]):
|
1401
1407
|
"""
|
1402
|
-
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyWorkItemLinkingSettingsScopeArgs']]] scopes: Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1408
|
+
:param pulumi.Input[Sequence[pulumi.Input['BranchPolicyWorkItemLinkingSettingsScopeArgs']]] scopes: A `scope` block as defined below. Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1403
1409
|
"""
|
1404
1410
|
pulumi.set(__self__, "scopes", scopes)
|
1405
1411
|
|
@@ -1407,7 +1413,7 @@ class BranchPolicyWorkItemLinkingSettingsArgs:
|
|
1407
1413
|
@pulumi.getter
|
1408
1414
|
def scopes(self) -> pulumi.Input[Sequence[pulumi.Input['BranchPolicyWorkItemLinkingSettingsScopeArgs']]]:
|
1409
1415
|
"""
|
1410
|
-
Controls which repositories and branches the policy will be enabled for. This block must be defined at least once.
|
1416
|
+
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.
|
1411
1417
|
"""
|
1412
1418
|
return pulumi.get(self, "scopes")
|
1413
1419
|
|
@@ -2245,7 +2251,7 @@ if not MYPY:
|
|
2245
2251
|
"""
|
2246
2252
|
repo_type: pulumi.Input[str]
|
2247
2253
|
"""
|
2248
|
-
The repository type.
|
2254
|
+
The repository type. Possible values are: `GitHub` or `TfsGit` or `Bitbucket` or `GitHub Enterprise`. Defaults to `GitHub`. If `repo_type` is `GitHubEnterprise`, must use existing project and GitHub Enterprise service connection.
|
2249
2255
|
"""
|
2250
2256
|
yml_path: pulumi.Input[str]
|
2251
2257
|
"""
|
@@ -2282,7 +2288,7 @@ class BuildDefinitionRepositoryArgs:
|
|
2282
2288
|
service_connection_id: Optional[pulumi.Input[str]] = None):
|
2283
2289
|
"""
|
2284
2290
|
:param pulumi.Input[str] repo_id: The id of the repository. For `TfsGit` repos, this is simply the ID of the repository. For `Github` repos, this will take the form of `<GitHub Org>/<Repo Name>`. For `Bitbucket` repos, this will take the form of `<Workspace ID>/<Repo Name>`.
|
2285
|
-
:param pulumi.Input[str] repo_type: The repository type.
|
2291
|
+
:param pulumi.Input[str] repo_type: The repository type. Possible values are: `GitHub` or `TfsGit` or `Bitbucket` or `GitHub Enterprise`. Defaults to `GitHub`. If `repo_type` is `GitHubEnterprise`, must use existing project and GitHub Enterprise service connection.
|
2286
2292
|
:param pulumi.Input[str] yml_path: The path of the Yaml file describing the build definition.
|
2287
2293
|
:param pulumi.Input[str] branch_name: The branch name for which builds are triggered. Defaults to `master`.
|
2288
2294
|
:param pulumi.Input[str] github_enterprise_url: The Github Enterprise URL. Used if `repo_type` is `GithubEnterprise`.
|
@@ -2317,7 +2323,7 @@ class BuildDefinitionRepositoryArgs:
|
|
2317
2323
|
@pulumi.getter(name="repoType")
|
2318
2324
|
def repo_type(self) -> pulumi.Input[str]:
|
2319
2325
|
"""
|
2320
|
-
The repository type.
|
2326
|
+
The repository type. Possible values are: `GitHub` or `TfsGit` or `Bitbucket` or `GitHub Enterprise`. Defaults to `GitHub`. If `repo_type` is `GitHubEnterprise`, must use existing project and GitHub Enterprise service connection.
|
2321
2327
|
"""
|
2322
2328
|
return pulumi.get(self, "repo_type")
|
2323
2329
|
|
@@ -2390,11 +2396,11 @@ if not MYPY:
|
|
2390
2396
|
class BuildDefinitionScheduleArgsDict(TypedDict):
|
2391
2397
|
branch_filters: pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgsDict']]]
|
2392
2398
|
"""
|
2393
|
-
block
|
2399
|
+
A `branch_filter` block as defined below.
|
2394
2400
|
"""
|
2395
2401
|
days_to_builds: pulumi.Input[Sequence[pulumi.Input[str]]]
|
2396
2402
|
"""
|
2397
|
-
When to build.
|
2403
|
+
When to build. Possible values are: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
2398
2404
|
"""
|
2399
2405
|
schedule_job_id: NotRequired[pulumi.Input[str]]
|
2400
2406
|
"""
|
@@ -2406,15 +2412,15 @@ if not MYPY:
|
|
2406
2412
|
"""
|
2407
2413
|
start_hours: NotRequired[pulumi.Input[int]]
|
2408
2414
|
"""
|
2409
|
-
Build start hour.
|
2415
|
+
Build start hour. Possible values are: `0 ~ 23`. Defaults to `0`.
|
2410
2416
|
"""
|
2411
2417
|
start_minutes: NotRequired[pulumi.Input[int]]
|
2412
2418
|
"""
|
2413
|
-
Build start minute.
|
2419
|
+
Build start minute. Possible values are: `0 ~ 59`. Defaults to `0`.
|
2414
2420
|
"""
|
2415
2421
|
time_zone: NotRequired[pulumi.Input[str]]
|
2416
2422
|
"""
|
2417
|
-
Build time zone. Defaults to `(UTC) Coordinated Universal Time`.
|
2423
|
+
Build time zone. Defaults to `(UTC) Coordinated Universal Time`. Possible values are:
|
2418
2424
|
`(UTC-12:00) International Date Line West`,
|
2419
2425
|
`(UTC-11:00) Coordinated Universal Time-11`,
|
2420
2426
|
`(UTC-10:00) Aleutian Islands`,
|
@@ -2571,13 +2577,13 @@ class BuildDefinitionScheduleArgs:
|
|
2571
2577
|
start_minutes: Optional[pulumi.Input[int]] = None,
|
2572
2578
|
time_zone: Optional[pulumi.Input[str]] = None):
|
2573
2579
|
"""
|
2574
|
-
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]] branch_filters: block
|
2575
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] days_to_builds: When to build.
|
2580
|
+
:param pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]] branch_filters: A `branch_filter` block as defined below.
|
2581
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] days_to_builds: When to build. Possible values are: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
2576
2582
|
:param pulumi.Input[str] schedule_job_id: The ID of the schedule job
|
2577
2583
|
:param pulumi.Input[bool] schedule_only_with_changes: Schedule builds if the source or pipeline has changed. Defaults to `true`.
|
2578
|
-
:param pulumi.Input[int] start_hours: Build start hour.
|
2579
|
-
:param pulumi.Input[int] start_minutes: Build start minute.
|
2580
|
-
:param pulumi.Input[str] time_zone: Build time zone. Defaults to `(UTC) Coordinated Universal Time`.
|
2584
|
+
:param pulumi.Input[int] start_hours: Build start hour. Possible values are: `0 ~ 23`. Defaults to `0`.
|
2585
|
+
:param pulumi.Input[int] start_minutes: Build start minute. Possible values are: `0 ~ 59`. Defaults to `0`.
|
2586
|
+
:param pulumi.Input[str] time_zone: Build time zone. Defaults to `(UTC) Coordinated Universal Time`. Possible values are:
|
2581
2587
|
`(UTC-12:00) International Date Line West`,
|
2582
2588
|
`(UTC-11:00) Coordinated Universal Time-11`,
|
2583
2589
|
`(UTC-10:00) Aleutian Islands`,
|
@@ -2737,7 +2743,7 @@ class BuildDefinitionScheduleArgs:
|
|
2737
2743
|
@pulumi.getter(name="branchFilters")
|
2738
2744
|
def branch_filters(self) -> pulumi.Input[Sequence[pulumi.Input['BuildDefinitionScheduleBranchFilterArgs']]]:
|
2739
2745
|
"""
|
2740
|
-
block
|
2746
|
+
A `branch_filter` block as defined below.
|
2741
2747
|
"""
|
2742
2748
|
return pulumi.get(self, "branch_filters")
|
2743
2749
|
|
@@ -2749,7 +2755,7 @@ class BuildDefinitionScheduleArgs:
|
|
2749
2755
|
@pulumi.getter(name="daysToBuilds")
|
2750
2756
|
def days_to_builds(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
2751
2757
|
"""
|
2752
|
-
When to build.
|
2758
|
+
When to build. Possible values are: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
2753
2759
|
"""
|
2754
2760
|
return pulumi.get(self, "days_to_builds")
|
2755
2761
|
|
@@ -2785,7 +2791,7 @@ class BuildDefinitionScheduleArgs:
|
|
2785
2791
|
@pulumi.getter(name="startHours")
|
2786
2792
|
def start_hours(self) -> Optional[pulumi.Input[int]]:
|
2787
2793
|
"""
|
2788
|
-
Build start hour.
|
2794
|
+
Build start hour. Possible values are: `0 ~ 23`. Defaults to `0`.
|
2789
2795
|
"""
|
2790
2796
|
return pulumi.get(self, "start_hours")
|
2791
2797
|
|
@@ -2797,7 +2803,7 @@ class BuildDefinitionScheduleArgs:
|
|
2797
2803
|
@pulumi.getter(name="startMinutes")
|
2798
2804
|
def start_minutes(self) -> Optional[pulumi.Input[int]]:
|
2799
2805
|
"""
|
2800
|
-
Build start minute.
|
2806
|
+
Build start minute. Possible values are: `0 ~ 59`. Defaults to `0`.
|
2801
2807
|
"""
|
2802
2808
|
return pulumi.get(self, "start_minutes")
|
2803
2809
|
|
@@ -2809,7 +2815,7 @@ class BuildDefinitionScheduleArgs:
|
|
2809
2815
|
@pulumi.getter(name="timeZone")
|
2810
2816
|
def time_zone(self) -> Optional[pulumi.Input[str]]:
|
2811
2817
|
"""
|
2812
|
-
Build time zone. Defaults to `(UTC) Coordinated Universal Time`.
|
2818
|
+
Build time zone. Defaults to `(UTC) Coordinated Universal Time`. Possible values are:
|
2813
2819
|
`(UTC-12:00) International Date Line West`,
|
2814
2820
|
`(UTC-11:00) Coordinated Universal Time-11`,
|
2815
2821
|
`(UTC-10:00) Aleutian Islands`,
|
@@ -3138,7 +3144,7 @@ if not MYPY:
|
|
3138
3144
|
"""
|
3139
3145
|
repository_type: NotRequired[pulumi.Input[str]]
|
3140
3146
|
"""
|
3141
|
-
The type of the repository storing the template.
|
3147
|
+
The type of the repository storing the template. Possible values are: `azuregit`, `github`, `githubenterprise`, `bitbucket`. Defaults to `azuregit`.
|
3142
3148
|
"""
|
3143
3149
|
elif False:
|
3144
3150
|
CheckRequiredTemplateRequiredTemplateArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -3154,7 +3160,7 @@ class CheckRequiredTemplateRequiredTemplateArgs:
|
|
3154
3160
|
:param pulumi.Input[str] repository_name: The name of the repository storing the template.
|
3155
3161
|
:param pulumi.Input[str] repository_ref: The branch in which the template will be referenced.
|
3156
3162
|
:param pulumi.Input[str] template_path: The path to the template yaml.
|
3157
|
-
:param pulumi.Input[str] repository_type: The type of the repository storing the template.
|
3163
|
+
:param pulumi.Input[str] repository_type: The type of the repository storing the template. Possible values are: `azuregit`, `github`, `githubenterprise`, `bitbucket`. Defaults to `azuregit`.
|
3158
3164
|
"""
|
3159
3165
|
pulumi.set(__self__, "repository_name", repository_name)
|
3160
3166
|
pulumi.set(__self__, "repository_ref", repository_ref)
|
@@ -3202,7 +3208,7 @@ class CheckRequiredTemplateRequiredTemplateArgs:
|
|
3202
3208
|
@pulumi.getter(name="repositoryType")
|
3203
3209
|
def repository_type(self) -> Optional[pulumi.Input[str]]:
|
3204
3210
|
"""
|
3205
|
-
The type of the repository storing the template.
|
3211
|
+
The type of the repository storing the template. Possible values are: `azuregit`, `github`, `githubenterprise`, `bitbucket`. Defaults to `azuregit`.
|
3206
3212
|
"""
|
3207
3213
|
return pulumi.get(self, "repository_type")
|
3208
3214
|
|
@@ -3273,8 +3279,7 @@ if not MYPY:
|
|
3273
3279
|
"""
|
3274
3280
|
The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
3275
3281
|
|
3276
|
-
~>**Note**
|
3277
|
-
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3282
|
+
~>**Note** At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3278
3283
|
"""
|
3279
3284
|
service_connection_id: NotRequired[pulumi.Input[str]]
|
3280
3285
|
"""
|
@@ -3308,8 +3313,7 @@ class GitInitializationArgs:
|
|
3308
3313
|
:param pulumi.Input[str] init_type: The type of repository to create. Valid values: `Uninitialized`, `Clean` or `Import`.
|
3309
3314
|
:param pulumi.Input[str] password: The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
3310
3315
|
|
3311
|
-
~>**Note**
|
3312
|
-
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3316
|
+
~>**Note** At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3313
3317
|
: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`.
|
3314
3318
|
:param pulumi.Input[str] source_type: Type of the source repository. Used if the `init_type` is `Import`. Valid values: `Git`.
|
3315
3319
|
:param pulumi.Input[str] source_url: The URL of the source repository. Used if the `init_type` is `Import`.
|
@@ -3345,8 +3349,7 @@ class GitInitializationArgs:
|
|
3345
3349
|
"""
|
3346
3350
|
The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
3347
3351
|
|
3348
|
-
~>**Note**
|
3349
|
-
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3352
|
+
~>**Note** At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
3350
3353
|
"""
|
3351
3354
|
return pulumi.get(self, "password")
|
3352
3355
|
|
@@ -3407,11 +3410,11 @@ if not MYPY:
|
|
3407
3410
|
class ServiceEndpointArtifactoryAuthenticationBasicArgsDict(TypedDict):
|
3408
3411
|
password: pulumi.Input[str]
|
3409
3412
|
"""
|
3410
|
-
The Artifactory
|
3413
|
+
The Password of the Artifactory.
|
3411
3414
|
"""
|
3412
3415
|
username: pulumi.Input[str]
|
3413
3416
|
"""
|
3414
|
-
The
|
3417
|
+
The Username of the Artifactory.
|
3415
3418
|
"""
|
3416
3419
|
elif False:
|
3417
3420
|
ServiceEndpointArtifactoryAuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -3422,8 +3425,8 @@ class ServiceEndpointArtifactoryAuthenticationBasicArgs:
|
|
3422
3425
|
password: pulumi.Input[str],
|
3423
3426
|
username: pulumi.Input[str]):
|
3424
3427
|
"""
|
3425
|
-
:param pulumi.Input[str] password: The Artifactory
|
3426
|
-
:param pulumi.Input[str] username: The
|
3428
|
+
:param pulumi.Input[str] password: The Password of the Artifactory.
|
3429
|
+
:param pulumi.Input[str] username: The Username of the Artifactory.
|
3427
3430
|
"""
|
3428
3431
|
pulumi.set(__self__, "password", password)
|
3429
3432
|
pulumi.set(__self__, "username", username)
|
@@ -3432,7 +3435,7 @@ class ServiceEndpointArtifactoryAuthenticationBasicArgs:
|
|
3432
3435
|
@pulumi.getter
|
3433
3436
|
def password(self) -> pulumi.Input[str]:
|
3434
3437
|
"""
|
3435
|
-
The Artifactory
|
3438
|
+
The Password of the Artifactory.
|
3436
3439
|
"""
|
3437
3440
|
return pulumi.get(self, "password")
|
3438
3441
|
|
@@ -3444,7 +3447,7 @@ class ServiceEndpointArtifactoryAuthenticationBasicArgs:
|
|
3444
3447
|
@pulumi.getter
|
3445
3448
|
def username(self) -> pulumi.Input[str]:
|
3446
3449
|
"""
|
3447
|
-
The
|
3450
|
+
The Username of the Artifactory.
|
3448
3451
|
"""
|
3449
3452
|
return pulumi.get(self, "username")
|
3450
3453
|
|
@@ -3457,7 +3460,7 @@ if not MYPY:
|
|
3457
3460
|
class ServiceEndpointArtifactoryAuthenticationTokenArgsDict(TypedDict):
|
3458
3461
|
token: pulumi.Input[str]
|
3459
3462
|
"""
|
3460
|
-
|
3463
|
+
Authentication Token generated through Artifactory.
|
3461
3464
|
"""
|
3462
3465
|
elif False:
|
3463
3466
|
ServiceEndpointArtifactoryAuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -3467,7 +3470,7 @@ class ServiceEndpointArtifactoryAuthenticationTokenArgs:
|
|
3467
3470
|
def __init__(__self__, *,
|
3468
3471
|
token: pulumi.Input[str]):
|
3469
3472
|
"""
|
3470
|
-
:param pulumi.Input[str] token:
|
3473
|
+
:param pulumi.Input[str] token: Authentication Token generated through Artifactory.
|
3471
3474
|
"""
|
3472
3475
|
pulumi.set(__self__, "token", token)
|
3473
3476
|
|
@@ -3475,7 +3478,7 @@ class ServiceEndpointArtifactoryAuthenticationTokenArgs:
|
|
3475
3478
|
@pulumi.getter
|
3476
3479
|
def token(self) -> pulumi.Input[str]:
|
3477
3480
|
"""
|
3478
|
-
|
3481
|
+
Authentication Token generated through Artifactory.
|
3479
3482
|
"""
|
3480
3483
|
return pulumi.get(self, "token")
|
3481
3484
|
|
@@ -3488,7 +3491,7 @@ if not MYPY:
|
|
3488
3491
|
class ServiceEndpointAzureEcrCredentialsArgsDict(TypedDict):
|
3489
3492
|
serviceprincipalid: pulumi.Input[str]
|
3490
3493
|
"""
|
3491
|
-
The
|
3494
|
+
The ID of the Service Principal Application.
|
3492
3495
|
"""
|
3493
3496
|
elif False:
|
3494
3497
|
ServiceEndpointAzureEcrCredentialsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -3498,7 +3501,7 @@ class ServiceEndpointAzureEcrCredentialsArgs:
|
|
3498
3501
|
def __init__(__self__, *,
|
3499
3502
|
serviceprincipalid: pulumi.Input[str]):
|
3500
3503
|
"""
|
3501
|
-
:param pulumi.Input[str] serviceprincipalid: The
|
3504
|
+
:param pulumi.Input[str] serviceprincipalid: The ID of the Service Principal Application.
|
3502
3505
|
"""
|
3503
3506
|
pulumi.set(__self__, "serviceprincipalid", serviceprincipalid)
|
3504
3507
|
|
@@ -3506,7 +3509,7 @@ class ServiceEndpointAzureEcrCredentialsArgs:
|
|
3506
3509
|
@pulumi.getter
|
3507
3510
|
def serviceprincipalid(self) -> pulumi.Input[str]:
|
3508
3511
|
"""
|
3509
|
-
The
|
3512
|
+
The ID of the Service Principal Application.
|
3510
3513
|
"""
|
3511
3514
|
return pulumi.get(self, "serviceprincipalid")
|
3512
3515
|
|
@@ -4049,7 +4052,7 @@ if not MYPY:
|
|
4049
4052
|
"""
|
4050
4053
|
server_certificate_lookup: pulumi.Input[str]
|
4051
4054
|
"""
|
4052
|
-
Verification mode for the cluster. Possible values
|
4055
|
+
Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
4053
4056
|
"""
|
4054
4057
|
username: pulumi.Input[str]
|
4055
4058
|
"""
|
@@ -4076,7 +4079,7 @@ class ServiceEndpointServiceFabricAzureActiveDirectoryArgs:
|
|
4076
4079
|
server_certificate_thumbprint: Optional[pulumi.Input[str]] = None):
|
4077
4080
|
"""
|
4078
4081
|
:param pulumi.Input[str] password: Password for the Azure Active Directory account.
|
4079
|
-
:param pulumi.Input[str] server_certificate_lookup: Verification mode for the cluster. Possible values
|
4082
|
+
:param pulumi.Input[str] server_certificate_lookup: Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
4080
4083
|
:param pulumi.Input[str] username: Specify an Azure Active Directory account.
|
4081
4084
|
:param pulumi.Input[str] server_certificate_common_name: The common name(s) of the cluster's certificate(s). This is used to verify the identity of the cluster. This value overrides the publish profile. Separate multiple common names with a comma (',')
|
4082
4085
|
:param pulumi.Input[str] server_certificate_thumbprint: The thumbprint(s) of the cluster's certificate(s). This is used to verify the identity of the cluster. This value overrides the publish profile. Separate multiple thumbprints with a comma (',')
|
@@ -4105,7 +4108,7 @@ class ServiceEndpointServiceFabricAzureActiveDirectoryArgs:
|
|
4105
4108
|
@pulumi.getter(name="serverCertificateLookup")
|
4106
4109
|
def server_certificate_lookup(self) -> pulumi.Input[str]:
|
4107
4110
|
"""
|
4108
|
-
Verification mode for the cluster. Possible values
|
4111
|
+
Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
4109
4112
|
"""
|
4110
4113
|
return pulumi.get(self, "server_certificate_lookup")
|
4111
4114
|
|
@@ -4158,7 +4161,7 @@ if not MYPY:
|
|
4158
4161
|
"""
|
4159
4162
|
server_certificate_lookup: pulumi.Input[str]
|
4160
4163
|
"""
|
4161
|
-
Verification mode for the cluster. Possible values
|
4164
|
+
Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
4162
4165
|
"""
|
4163
4166
|
client_certificate_password: NotRequired[pulumi.Input[str]]
|
4164
4167
|
"""
|
@@ -4185,7 +4188,7 @@ class ServiceEndpointServiceFabricCertificateArgs:
|
|
4185
4188
|
server_certificate_thumbprint: Optional[pulumi.Input[str]] = None):
|
4186
4189
|
"""
|
4187
4190
|
:param pulumi.Input[str] client_certificate: Base64 encoding of the cluster's client certificate file.
|
4188
|
-
:param pulumi.Input[str] server_certificate_lookup: Verification mode for the cluster. Possible values
|
4191
|
+
:param pulumi.Input[str] server_certificate_lookup: Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
4189
4192
|
:param pulumi.Input[str] client_certificate_password: Password for the certificate.
|
4190
4193
|
:param pulumi.Input[str] server_certificate_common_name: The common name(s) of the cluster's certificate(s). This is used to verify the identity of the cluster. This value overrides the publish profile. Separate multiple common names with a comma (',')
|
4191
4194
|
:param pulumi.Input[str] server_certificate_thumbprint: The thumbprint(s) of the cluster's certificate(s). This is used to verify the identity of the cluster. This value overrides the publish profile. Separate multiple thumbprints with a comma (',')
|
@@ -4215,7 +4218,7 @@ class ServiceEndpointServiceFabricCertificateArgs:
|
|
4215
4218
|
@pulumi.getter(name="serverCertificateLookup")
|
4216
4219
|
def server_certificate_lookup(self) -> pulumi.Input[str]:
|
4217
4220
|
"""
|
4218
|
-
Verification mode for the cluster. Possible values
|
4221
|
+
Verification mode for the cluster. Possible values are: `Thumbprint`, `CommonName`.
|
4219
4222
|
"""
|
4220
4223
|
return pulumi.get(self, "server_certificate_lookup")
|
4221
4224
|
|
@@ -4316,11 +4319,11 @@ if not MYPY:
|
|
4316
4319
|
class ServiceendpointArgocdAuthenticationBasicArgsDict(TypedDict):
|
4317
4320
|
password: pulumi.Input[str]
|
4318
4321
|
"""
|
4319
|
-
|
4322
|
+
The Password of the ArgoCD.
|
4320
4323
|
"""
|
4321
4324
|
username: pulumi.Input[str]
|
4322
4325
|
"""
|
4323
|
-
|
4326
|
+
The Username of the ArgoCD.
|
4324
4327
|
"""
|
4325
4328
|
elif False:
|
4326
4329
|
ServiceendpointArgocdAuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4331,8 +4334,8 @@ class ServiceendpointArgocdAuthenticationBasicArgs:
|
|
4331
4334
|
password: pulumi.Input[str],
|
4332
4335
|
username: pulumi.Input[str]):
|
4333
4336
|
"""
|
4334
|
-
:param pulumi.Input[str] password:
|
4335
|
-
:param pulumi.Input[str] username:
|
4337
|
+
:param pulumi.Input[str] password: The Password of the ArgoCD.
|
4338
|
+
:param pulumi.Input[str] username: The Username of the ArgoCD.
|
4336
4339
|
"""
|
4337
4340
|
pulumi.set(__self__, "password", password)
|
4338
4341
|
pulumi.set(__self__, "username", username)
|
@@ -4341,7 +4344,7 @@ class ServiceendpointArgocdAuthenticationBasicArgs:
|
|
4341
4344
|
@pulumi.getter
|
4342
4345
|
def password(self) -> pulumi.Input[str]:
|
4343
4346
|
"""
|
4344
|
-
|
4347
|
+
The Password of the ArgoCD.
|
4345
4348
|
"""
|
4346
4349
|
return pulumi.get(self, "password")
|
4347
4350
|
|
@@ -4353,7 +4356,7 @@ class ServiceendpointArgocdAuthenticationBasicArgs:
|
|
4353
4356
|
@pulumi.getter
|
4354
4357
|
def username(self) -> pulumi.Input[str]:
|
4355
4358
|
"""
|
4356
|
-
|
4359
|
+
The Username of the ArgoCD.
|
4357
4360
|
"""
|
4358
4361
|
return pulumi.get(self, "username")
|
4359
4362
|
|
@@ -4428,11 +4431,11 @@ if not MYPY:
|
|
4428
4431
|
class ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict(TypedDict):
|
4429
4432
|
password: pulumi.Input[str]
|
4430
4433
|
"""
|
4431
|
-
|
4434
|
+
The Password of the Artifactory.
|
4432
4435
|
"""
|
4433
4436
|
username: pulumi.Input[str]
|
4434
4437
|
"""
|
4435
|
-
|
4438
|
+
The Username of the Artifactory.
|
4436
4439
|
"""
|
4437
4440
|
elif False:
|
4438
4441
|
ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4443,8 +4446,8 @@ class ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs:
|
|
4443
4446
|
password: pulumi.Input[str],
|
4444
4447
|
username: pulumi.Input[str]):
|
4445
4448
|
"""
|
4446
|
-
:param pulumi.Input[str] password:
|
4447
|
-
:param pulumi.Input[str] username:
|
4449
|
+
:param pulumi.Input[str] password: The Password of the Artifactory.
|
4450
|
+
:param pulumi.Input[str] username: The Username of the Artifactory.
|
4448
4451
|
"""
|
4449
4452
|
pulumi.set(__self__, "password", password)
|
4450
4453
|
pulumi.set(__self__, "username", username)
|
@@ -4453,7 +4456,7 @@ class ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs:
|
|
4453
4456
|
@pulumi.getter
|
4454
4457
|
def password(self) -> pulumi.Input[str]:
|
4455
4458
|
"""
|
4456
|
-
|
4459
|
+
The Password of the Artifactory.
|
4457
4460
|
"""
|
4458
4461
|
return pulumi.get(self, "password")
|
4459
4462
|
|
@@ -4465,7 +4468,7 @@ class ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs:
|
|
4465
4468
|
@pulumi.getter
|
4466
4469
|
def username(self) -> pulumi.Input[str]:
|
4467
4470
|
"""
|
4468
|
-
|
4471
|
+
The Username of the Artifactory.
|
4469
4472
|
"""
|
4470
4473
|
return pulumi.get(self, "username")
|
4471
4474
|
|
@@ -4509,11 +4512,11 @@ if not MYPY:
|
|
4509
4512
|
class ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict(TypedDict):
|
4510
4513
|
password: pulumi.Input[str]
|
4511
4514
|
"""
|
4512
|
-
|
4515
|
+
The Password of the Artifactory.
|
4513
4516
|
"""
|
4514
4517
|
username: pulumi.Input[str]
|
4515
4518
|
"""
|
4516
|
-
|
4519
|
+
The Username of the Artifactory.
|
4517
4520
|
"""
|
4518
4521
|
elif False:
|
4519
4522
|
ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4524,8 +4527,8 @@ class ServiceendpointJfrogDistributionV2AuthenticationBasicArgs:
|
|
4524
4527
|
password: pulumi.Input[str],
|
4525
4528
|
username: pulumi.Input[str]):
|
4526
4529
|
"""
|
4527
|
-
:param pulumi.Input[str] password:
|
4528
|
-
:param pulumi.Input[str] username:
|
4530
|
+
:param pulumi.Input[str] password: The Password of the Artifactory.
|
4531
|
+
:param pulumi.Input[str] username: The Username of the Artifactory.
|
4529
4532
|
"""
|
4530
4533
|
pulumi.set(__self__, "password", password)
|
4531
4534
|
pulumi.set(__self__, "username", username)
|
@@ -4534,7 +4537,7 @@ class ServiceendpointJfrogDistributionV2AuthenticationBasicArgs:
|
|
4534
4537
|
@pulumi.getter
|
4535
4538
|
def password(self) -> pulumi.Input[str]:
|
4536
4539
|
"""
|
4537
|
-
|
4540
|
+
The Password of the Artifactory.
|
4538
4541
|
"""
|
4539
4542
|
return pulumi.get(self, "password")
|
4540
4543
|
|
@@ -4546,7 +4549,7 @@ class ServiceendpointJfrogDistributionV2AuthenticationBasicArgs:
|
|
4546
4549
|
@pulumi.getter
|
4547
4550
|
def username(self) -> pulumi.Input[str]:
|
4548
4551
|
"""
|
4549
|
-
|
4552
|
+
The Username of the Artifactory.
|
4550
4553
|
"""
|
4551
4554
|
return pulumi.get(self, "username")
|
4552
4555
|
|
@@ -4559,7 +4562,7 @@ if not MYPY:
|
|
4559
4562
|
class ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict(TypedDict):
|
4560
4563
|
token: pulumi.Input[str]
|
4561
4564
|
"""
|
4562
|
-
Authentication Token generated through Artifactory.
|
4565
|
+
The Authentication Token generated through Artifactory.
|
4563
4566
|
"""
|
4564
4567
|
elif False:
|
4565
4568
|
ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4569,7 +4572,7 @@ class ServiceendpointJfrogDistributionV2AuthenticationTokenArgs:
|
|
4569
4572
|
def __init__(__self__, *,
|
4570
4573
|
token: pulumi.Input[str]):
|
4571
4574
|
"""
|
4572
|
-
:param pulumi.Input[str] token: Authentication Token generated through Artifactory.
|
4575
|
+
:param pulumi.Input[str] token: The Authentication Token generated through Artifactory.
|
4573
4576
|
"""
|
4574
4577
|
pulumi.set(__self__, "token", token)
|
4575
4578
|
|
@@ -4577,7 +4580,7 @@ class ServiceendpointJfrogDistributionV2AuthenticationTokenArgs:
|
|
4577
4580
|
@pulumi.getter
|
4578
4581
|
def token(self) -> pulumi.Input[str]:
|
4579
4582
|
"""
|
4580
|
-
Authentication Token generated through Artifactory.
|
4583
|
+
The Authentication Token generated through Artifactory.
|
4581
4584
|
"""
|
4582
4585
|
return pulumi.get(self, "token")
|
4583
4586
|
|
@@ -4590,11 +4593,11 @@ if not MYPY:
|
|
4590
4593
|
class ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict(TypedDict):
|
4591
4594
|
password: pulumi.Input[str]
|
4592
4595
|
"""
|
4593
|
-
|
4596
|
+
The Password of the Artifactory.
|
4594
4597
|
"""
|
4595
4598
|
username: pulumi.Input[str]
|
4596
4599
|
"""
|
4597
|
-
|
4600
|
+
The Username of the Artifactory.
|
4598
4601
|
"""
|
4599
4602
|
elif False:
|
4600
4603
|
ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4605,8 +4608,8 @@ class ServiceendpointJfrogPlatformV2AuthenticationBasicArgs:
|
|
4605
4608
|
password: pulumi.Input[str],
|
4606
4609
|
username: pulumi.Input[str]):
|
4607
4610
|
"""
|
4608
|
-
:param pulumi.Input[str] password:
|
4609
|
-
:param pulumi.Input[str] username:
|
4611
|
+
:param pulumi.Input[str] password: The Password of the Artifactory.
|
4612
|
+
:param pulumi.Input[str] username: The Username of the Artifactory.
|
4610
4613
|
"""
|
4611
4614
|
pulumi.set(__self__, "password", password)
|
4612
4615
|
pulumi.set(__self__, "username", username)
|
@@ -4615,7 +4618,7 @@ class ServiceendpointJfrogPlatformV2AuthenticationBasicArgs:
|
|
4615
4618
|
@pulumi.getter
|
4616
4619
|
def password(self) -> pulumi.Input[str]:
|
4617
4620
|
"""
|
4618
|
-
|
4621
|
+
The Password of the Artifactory.
|
4619
4622
|
"""
|
4620
4623
|
return pulumi.get(self, "password")
|
4621
4624
|
|
@@ -4627,7 +4630,7 @@ class ServiceendpointJfrogPlatformV2AuthenticationBasicArgs:
|
|
4627
4630
|
@pulumi.getter
|
4628
4631
|
def username(self) -> pulumi.Input[str]:
|
4629
4632
|
"""
|
4630
|
-
|
4633
|
+
The Username of the Artifactory.
|
4631
4634
|
"""
|
4632
4635
|
return pulumi.get(self, "username")
|
4633
4636
|
|
@@ -4671,11 +4674,11 @@ if not MYPY:
|
|
4671
4674
|
class ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict(TypedDict):
|
4672
4675
|
password: pulumi.Input[str]
|
4673
4676
|
"""
|
4674
|
-
|
4677
|
+
The Password of the Artifactory.
|
4675
4678
|
"""
|
4676
4679
|
username: pulumi.Input[str]
|
4677
4680
|
"""
|
4678
|
-
|
4681
|
+
The Username of the Artifactory.
|
4679
4682
|
"""
|
4680
4683
|
elif False:
|
4681
4684
|
ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4686,8 +4689,8 @@ class ServiceendpointJfrogXrayV2AuthenticationBasicArgs:
|
|
4686
4689
|
password: pulumi.Input[str],
|
4687
4690
|
username: pulumi.Input[str]):
|
4688
4691
|
"""
|
4689
|
-
:param pulumi.Input[str] password:
|
4690
|
-
:param pulumi.Input[str] username:
|
4692
|
+
:param pulumi.Input[str] password: The Password of the Artifactory.
|
4693
|
+
:param pulumi.Input[str] username: The Username of the Artifactory.
|
4691
4694
|
"""
|
4692
4695
|
pulumi.set(__self__, "password", password)
|
4693
4696
|
pulumi.set(__self__, "username", username)
|
@@ -4696,7 +4699,7 @@ class ServiceendpointJfrogXrayV2AuthenticationBasicArgs:
|
|
4696
4699
|
@pulumi.getter
|
4697
4700
|
def password(self) -> pulumi.Input[str]:
|
4698
4701
|
"""
|
4699
|
-
|
4702
|
+
The Password of the Artifactory.
|
4700
4703
|
"""
|
4701
4704
|
return pulumi.get(self, "password")
|
4702
4705
|
|
@@ -4708,7 +4711,7 @@ class ServiceendpointJfrogXrayV2AuthenticationBasicArgs:
|
|
4708
4711
|
@pulumi.getter
|
4709
4712
|
def username(self) -> pulumi.Input[str]:
|
4710
4713
|
"""
|
4711
|
-
|
4714
|
+
The Username of the Artifactory.
|
4712
4715
|
"""
|
4713
4716
|
return pulumi.get(self, "username")
|
4714
4717
|
|