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
@@ -26,7 +26,7 @@ class RepositoryPolicyMaxFileSizeArgs:
|
|
26
26
|
repository_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
27
27
|
"""
|
28
28
|
The set of arguments for constructing a RepositoryPolicyMaxFileSize resource.
|
29
|
-
:param pulumi.Input[int] max_file_size: Block pushes that contain new or updated files larger than this limit.
|
29
|
+
:param pulumi.Input[int] max_file_size: Block pushes that contain new or updated files larger than this limit. Possible values are: `1, 2, 5, 10, 50, 100, 200` (MB).
|
30
30
|
:param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
|
31
31
|
:param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
|
32
32
|
:param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
|
@@ -45,7 +45,7 @@ class RepositoryPolicyMaxFileSizeArgs:
|
|
45
45
|
@pulumi.getter(name="maxFileSize")
|
46
46
|
def max_file_size(self) -> pulumi.Input[int]:
|
47
47
|
"""
|
48
|
-
Block pushes that contain new or updated files larger than this limit.
|
48
|
+
Block pushes that contain new or updated files larger than this limit. Possible values are: `1, 2, 5, 10, 50, 100, 200` (MB).
|
49
49
|
"""
|
50
50
|
return pulumi.get(self, "max_file_size")
|
51
51
|
|
@@ -114,7 +114,7 @@ class _RepositoryPolicyMaxFileSizeState:
|
|
114
114
|
Input properties used for looking up and filtering RepositoryPolicyMaxFileSize resources.
|
115
115
|
:param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
|
116
116
|
:param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
|
117
|
-
:param pulumi.Input[int] max_file_size: Block pushes that contain new or updated files larger than this limit.
|
117
|
+
:param pulumi.Input[int] max_file_size: Block pushes that contain new or updated files larger than this limit. Possible values are: `1, 2, 5, 10, 50, 100, 200` (MB).
|
118
118
|
:param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
|
119
119
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] repository_ids: Control whether the policy is enabled for the repository or the project. If `repository_ids` not configured, the policy will be set to the project.
|
120
120
|
"""
|
@@ -157,7 +157,7 @@ class _RepositoryPolicyMaxFileSizeState:
|
|
157
157
|
@pulumi.getter(name="maxFileSize")
|
158
158
|
def max_file_size(self) -> Optional[pulumi.Input[int]]:
|
159
159
|
"""
|
160
|
-
Block pushes that contain new or updated files larger than this limit.
|
160
|
+
Block pushes that contain new or updated files larger than this limit. Possible values are: `1, 2, 5, 10, 50, 100, 200` (MB).
|
161
161
|
"""
|
162
162
|
return pulumi.get(self, "max_file_size")
|
163
163
|
|
@@ -266,7 +266,7 @@ class RepositoryPolicyMaxFileSize(pulumi.CustomResource):
|
|
266
266
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
267
267
|
:param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
|
268
268
|
:param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
|
269
|
-
:param pulumi.Input[int] max_file_size: Block pushes that contain new or updated files larger than this limit.
|
269
|
+
:param pulumi.Input[int] max_file_size: Block pushes that contain new or updated files larger than this limit. Possible values are: `1, 2, 5, 10, 50, 100, 200` (MB).
|
270
270
|
:param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
|
271
271
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] repository_ids: Control whether the policy is enabled for the repository or the project. If `repository_ids` not configured, the policy will be set to the project.
|
272
272
|
"""
|
@@ -399,7 +399,7 @@ class RepositoryPolicyMaxFileSize(pulumi.CustomResource):
|
|
399
399
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
400
400
|
:param pulumi.Input[bool] blocking: A flag indicating if the policy should be blocking. Defaults to `true`.
|
401
401
|
:param pulumi.Input[bool] enabled: A flag indicating if the policy should be enabled. Defaults to `true`.
|
402
|
-
:param pulumi.Input[int] max_file_size: Block pushes that contain new or updated files larger than this limit.
|
402
|
+
:param pulumi.Input[int] max_file_size: Block pushes that contain new or updated files larger than this limit. Possible values are: `1, 2, 5, 10, 50, 100, 200` (MB).
|
403
403
|
:param pulumi.Input[str] project_id: The ID of the project in which the policy will be created.
|
404
404
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] repository_ids: Control whether the policy is enabled for the repository or the project. If `repository_ids` not configured, the policy will be set to the project.
|
405
405
|
"""
|
@@ -434,7 +434,7 @@ class RepositoryPolicyMaxFileSize(pulumi.CustomResource):
|
|
434
434
|
@pulumi.getter(name="maxFileSize")
|
435
435
|
def max_file_size(self) -> pulumi.Output[int]:
|
436
436
|
"""
|
437
|
-
Block pushes that contain new or updated files larger than this limit.
|
437
|
+
Block pushes that contain new or updated files larger than this limit. Possible values are: `1, 2, 5, 10, 50, 100, 200` (MB).
|
438
438
|
"""
|
439
439
|
return pulumi.get(self, "max_file_size")
|
440
440
|
|
@@ -26,11 +26,11 @@ class ResourceAuthorizationArgs:
|
|
26
26
|
type: Optional[pulumi.Input[str]] = None):
|
27
27
|
"""
|
28
28
|
The set of arguments for constructing a ResourceAuthorization resource.
|
29
|
-
:param pulumi.Input[bool] authorized: Set to true to allow public access in the project.
|
30
|
-
:param pulumi.Input[str] project_id: The project ID or project name.
|
31
|
-
:param pulumi.Input[str] resource_id: The ID of the resource to authorize.
|
32
|
-
:param pulumi.Input[int] definition_id: The ID of the build definition to authorize.
|
33
|
-
:param pulumi.Input[str] type: The type of the resource to authorize.
|
29
|
+
:param pulumi.Input[bool] authorized: Set to true to allow public access in the project.
|
30
|
+
:param pulumi.Input[str] project_id: The project ID or project name.
|
31
|
+
:param pulumi.Input[str] resource_id: The ID of the resource to authorize.
|
32
|
+
:param pulumi.Input[int] definition_id: The ID of the build definition to authorize.
|
33
|
+
:param pulumi.Input[str] type: The type of the resource to authorize. Possible values: `endpoint`, `queue`, `variablegroup`. Defaults to value: `endpoint`.
|
34
34
|
"""
|
35
35
|
pulumi.set(__self__, "authorized", authorized)
|
36
36
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -44,7 +44,7 @@ class ResourceAuthorizationArgs:
|
|
44
44
|
@pulumi.getter
|
45
45
|
def authorized(self) -> pulumi.Input[bool]:
|
46
46
|
"""
|
47
|
-
Set to true to allow public access in the project.
|
47
|
+
Set to true to allow public access in the project.
|
48
48
|
"""
|
49
49
|
return pulumi.get(self, "authorized")
|
50
50
|
|
@@ -56,7 +56,7 @@ class ResourceAuthorizationArgs:
|
|
56
56
|
@pulumi.getter(name="projectId")
|
57
57
|
def project_id(self) -> pulumi.Input[str]:
|
58
58
|
"""
|
59
|
-
The project ID or project name.
|
59
|
+
The project ID or project name.
|
60
60
|
"""
|
61
61
|
return pulumi.get(self, "project_id")
|
62
62
|
|
@@ -68,7 +68,7 @@ class ResourceAuthorizationArgs:
|
|
68
68
|
@pulumi.getter(name="resourceId")
|
69
69
|
def resource_id(self) -> pulumi.Input[str]:
|
70
70
|
"""
|
71
|
-
The ID of the resource to authorize.
|
71
|
+
The ID of the resource to authorize.
|
72
72
|
"""
|
73
73
|
return pulumi.get(self, "resource_id")
|
74
74
|
|
@@ -80,7 +80,7 @@ class ResourceAuthorizationArgs:
|
|
80
80
|
@pulumi.getter(name="definitionId")
|
81
81
|
def definition_id(self) -> Optional[pulumi.Input[int]]:
|
82
82
|
"""
|
83
|
-
The ID of the build definition to authorize.
|
83
|
+
The ID of the build definition to authorize.
|
84
84
|
"""
|
85
85
|
return pulumi.get(self, "definition_id")
|
86
86
|
|
@@ -92,7 +92,7 @@ class ResourceAuthorizationArgs:
|
|
92
92
|
@pulumi.getter
|
93
93
|
def type(self) -> Optional[pulumi.Input[str]]:
|
94
94
|
"""
|
95
|
-
The type of the resource to authorize.
|
95
|
+
The type of the resource to authorize. Possible values: `endpoint`, `queue`, `variablegroup`. Defaults to value: `endpoint`.
|
96
96
|
"""
|
97
97
|
return pulumi.get(self, "type")
|
98
98
|
|
@@ -111,11 +111,11 @@ class _ResourceAuthorizationState:
|
|
111
111
|
type: Optional[pulumi.Input[str]] = None):
|
112
112
|
"""
|
113
113
|
Input properties used for looking up and filtering ResourceAuthorization resources.
|
114
|
-
:param pulumi.Input[bool] authorized: Set to true to allow public access in the project.
|
115
|
-
:param pulumi.Input[int] definition_id: The ID of the build definition to authorize.
|
116
|
-
:param pulumi.Input[str] project_id: The project ID or project name.
|
117
|
-
:param pulumi.Input[str] resource_id: The ID of the resource to authorize.
|
118
|
-
:param pulumi.Input[str] type: The type of the resource to authorize.
|
114
|
+
:param pulumi.Input[bool] authorized: Set to true to allow public access in the project.
|
115
|
+
:param pulumi.Input[int] definition_id: The ID of the build definition to authorize.
|
116
|
+
:param pulumi.Input[str] project_id: The project ID or project name.
|
117
|
+
:param pulumi.Input[str] resource_id: The ID of the resource to authorize.
|
118
|
+
:param pulumi.Input[str] type: The type of the resource to authorize. Possible values: `endpoint`, `queue`, `variablegroup`. Defaults to value: `endpoint`.
|
119
119
|
"""
|
120
120
|
if authorized is not None:
|
121
121
|
pulumi.set(__self__, "authorized", authorized)
|
@@ -132,7 +132,7 @@ class _ResourceAuthorizationState:
|
|
132
132
|
@pulumi.getter
|
133
133
|
def authorized(self) -> Optional[pulumi.Input[bool]]:
|
134
134
|
"""
|
135
|
-
Set to true to allow public access in the project.
|
135
|
+
Set to true to allow public access in the project.
|
136
136
|
"""
|
137
137
|
return pulumi.get(self, "authorized")
|
138
138
|
|
@@ -144,7 +144,7 @@ class _ResourceAuthorizationState:
|
|
144
144
|
@pulumi.getter(name="definitionId")
|
145
145
|
def definition_id(self) -> Optional[pulumi.Input[int]]:
|
146
146
|
"""
|
147
|
-
The ID of the build definition to authorize.
|
147
|
+
The ID of the build definition to authorize.
|
148
148
|
"""
|
149
149
|
return pulumi.get(self, "definition_id")
|
150
150
|
|
@@ -156,7 +156,7 @@ class _ResourceAuthorizationState:
|
|
156
156
|
@pulumi.getter(name="projectId")
|
157
157
|
def project_id(self) -> Optional[pulumi.Input[str]]:
|
158
158
|
"""
|
159
|
-
The project ID or project name.
|
159
|
+
The project ID or project name.
|
160
160
|
"""
|
161
161
|
return pulumi.get(self, "project_id")
|
162
162
|
|
@@ -168,7 +168,7 @@ class _ResourceAuthorizationState:
|
|
168
168
|
@pulumi.getter(name="resourceId")
|
169
169
|
def resource_id(self) -> Optional[pulumi.Input[str]]:
|
170
170
|
"""
|
171
|
-
The ID of the resource to authorize.
|
171
|
+
The ID of the resource to authorize.
|
172
172
|
"""
|
173
173
|
return pulumi.get(self, "resource_id")
|
174
174
|
|
@@ -180,7 +180,7 @@ class _ResourceAuthorizationState:
|
|
180
180
|
@pulumi.getter
|
181
181
|
def type(self) -> Optional[pulumi.Input[str]]:
|
182
182
|
"""
|
183
|
-
The type of the resource to authorize.
|
183
|
+
The type of the resource to authorize. Possible values: `endpoint`, `queue`, `variablegroup`. Defaults to value: `endpoint`.
|
184
184
|
"""
|
185
185
|
return pulumi.get(self, "type")
|
186
186
|
|
@@ -235,11 +235,11 @@ class ResourceAuthorization(pulumi.CustomResource):
|
|
235
235
|
|
236
236
|
:param str resource_name: The name of the resource.
|
237
237
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
238
|
-
:param pulumi.Input[bool] authorized: Set to true to allow public access in the project.
|
239
|
-
:param pulumi.Input[int] definition_id: The ID of the build definition to authorize.
|
240
|
-
:param pulumi.Input[str] project_id: The project ID or project name.
|
241
|
-
:param pulumi.Input[str] resource_id: The ID of the resource to authorize.
|
242
|
-
:param pulumi.Input[str] type: The type of the resource to authorize.
|
238
|
+
:param pulumi.Input[bool] authorized: Set to true to allow public access in the project.
|
239
|
+
:param pulumi.Input[int] definition_id: The ID of the build definition to authorize.
|
240
|
+
:param pulumi.Input[str] project_id: The project ID or project name.
|
241
|
+
:param pulumi.Input[str] resource_id: The ID of the resource to authorize.
|
242
|
+
:param pulumi.Input[str] type: The type of the resource to authorize. Possible values: `endpoint`, `queue`, `variablegroup`. Defaults to value: `endpoint`.
|
243
243
|
"""
|
244
244
|
...
|
245
245
|
@overload
|
@@ -344,11 +344,11 @@ class ResourceAuthorization(pulumi.CustomResource):
|
|
344
344
|
:param str resource_name: The unique name of the resulting resource.
|
345
345
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
346
346
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
347
|
-
:param pulumi.Input[bool] authorized: Set to true to allow public access in the project.
|
348
|
-
:param pulumi.Input[int] definition_id: The ID of the build definition to authorize.
|
349
|
-
:param pulumi.Input[str] project_id: The project ID or project name.
|
350
|
-
:param pulumi.Input[str] resource_id: The ID of the resource to authorize.
|
351
|
-
:param pulumi.Input[str] type: The type of the resource to authorize.
|
347
|
+
:param pulumi.Input[bool] authorized: Set to true to allow public access in the project.
|
348
|
+
:param pulumi.Input[int] definition_id: The ID of the build definition to authorize.
|
349
|
+
:param pulumi.Input[str] project_id: The project ID or project name.
|
350
|
+
:param pulumi.Input[str] resource_id: The ID of the resource to authorize.
|
351
|
+
:param pulumi.Input[str] type: The type of the resource to authorize. Possible values: `endpoint`, `queue`, `variablegroup`. Defaults to value: `endpoint`.
|
352
352
|
"""
|
353
353
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
354
354
|
|
@@ -365,7 +365,7 @@ class ResourceAuthorization(pulumi.CustomResource):
|
|
365
365
|
@pulumi.getter
|
366
366
|
def authorized(self) -> pulumi.Output[bool]:
|
367
367
|
"""
|
368
|
-
Set to true to allow public access in the project.
|
368
|
+
Set to true to allow public access in the project.
|
369
369
|
"""
|
370
370
|
return pulumi.get(self, "authorized")
|
371
371
|
|
@@ -373,7 +373,7 @@ class ResourceAuthorization(pulumi.CustomResource):
|
|
373
373
|
@pulumi.getter(name="definitionId")
|
374
374
|
def definition_id(self) -> pulumi.Output[Optional[int]]:
|
375
375
|
"""
|
376
|
-
The ID of the build definition to authorize.
|
376
|
+
The ID of the build definition to authorize.
|
377
377
|
"""
|
378
378
|
return pulumi.get(self, "definition_id")
|
379
379
|
|
@@ -381,7 +381,7 @@ class ResourceAuthorization(pulumi.CustomResource):
|
|
381
381
|
@pulumi.getter(name="projectId")
|
382
382
|
def project_id(self) -> pulumi.Output[str]:
|
383
383
|
"""
|
384
|
-
The project ID or project name.
|
384
|
+
The project ID or project name.
|
385
385
|
"""
|
386
386
|
return pulumi.get(self, "project_id")
|
387
387
|
|
@@ -389,7 +389,7 @@ class ResourceAuthorization(pulumi.CustomResource):
|
|
389
389
|
@pulumi.getter(name="resourceId")
|
390
390
|
def resource_id(self) -> pulumi.Output[str]:
|
391
391
|
"""
|
392
|
-
The ID of the resource to authorize.
|
392
|
+
The ID of the resource to authorize.
|
393
393
|
"""
|
394
394
|
return pulumi.get(self, "resource_id")
|
395
395
|
|
@@ -397,7 +397,7 @@ class ResourceAuthorization(pulumi.CustomResource):
|
|
397
397
|
@pulumi.getter
|
398
398
|
def type(self) -> pulumi.Output[Optional[str]]:
|
399
399
|
"""
|
400
|
-
The type of the resource to authorize.
|
400
|
+
The type of the resource to authorize. Possible values: `endpoint`, `queue`, `variablegroup`. Defaults to value: `endpoint`.
|
401
401
|
"""
|
402
402
|
return pulumi.get(self, "type")
|
403
403
|
|
@@ -34,8 +34,8 @@ class ServiceEndpointArtifactoryArgs:
|
|
34
34
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
35
35
|
:param pulumi.Input[str] url: URL of the Artifactory server to connect with.
|
36
36
|
|
37
|
-
|
38
|
-
|
37
|
+
_**Note: URL should not end in a slash character.**_
|
38
|
+
:param pulumi.Input['ServiceEndpointArtifactoryAuthenticationTokenArgs'] authentication_token: A `authentication_basic` block as defined below.
|
39
39
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
40
40
|
"""
|
41
41
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -80,8 +80,7 @@ class ServiceEndpointArtifactoryArgs:
|
|
80
80
|
"""
|
81
81
|
URL of the Artifactory server to connect with.
|
82
82
|
|
83
|
-
|
84
|
-
* either `authentication_token` or `authentication_basic` (one is required)
|
83
|
+
_**Note: URL should not end in a slash character.**_
|
85
84
|
"""
|
86
85
|
return pulumi.get(self, "url")
|
87
86
|
|
@@ -101,6 +100,9 @@ class ServiceEndpointArtifactoryArgs:
|
|
101
100
|
@property
|
102
101
|
@pulumi.getter(name="authenticationToken")
|
103
102
|
def authentication_token(self) -> Optional[pulumi.Input['ServiceEndpointArtifactoryAuthenticationTokenArgs']]:
|
103
|
+
"""
|
104
|
+
A `authentication_basic` block as defined below.
|
105
|
+
"""
|
104
106
|
return pulumi.get(self, "authentication_token")
|
105
107
|
|
106
108
|
@authentication_token.setter
|
@@ -141,13 +143,13 @@ class _ServiceEndpointArtifactoryState:
|
|
141
143
|
url: Optional[pulumi.Input[str]] = None):
|
142
144
|
"""
|
143
145
|
Input properties used for looking up and filtering ServiceEndpointArtifactory resources.
|
146
|
+
:param pulumi.Input['ServiceEndpointArtifactoryAuthenticationTokenArgs'] authentication_token: A `authentication_basic` block as defined below.
|
144
147
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
145
148
|
:param pulumi.Input[str] project_id: The ID of the project.
|
146
149
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
147
150
|
:param pulumi.Input[str] url: URL of the Artifactory server to connect with.
|
148
151
|
|
149
|
-
|
150
|
-
* either `authentication_token` or `authentication_basic` (one is required)
|
152
|
+
_**Note: URL should not end in a slash character.**_
|
151
153
|
"""
|
152
154
|
if authentication_basic is not None:
|
153
155
|
pulumi.set(__self__, "authentication_basic", authentication_basic)
|
@@ -176,6 +178,9 @@ class _ServiceEndpointArtifactoryState:
|
|
176
178
|
@property
|
177
179
|
@pulumi.getter(name="authenticationToken")
|
178
180
|
def authentication_token(self) -> Optional[pulumi.Input['ServiceEndpointArtifactoryAuthenticationTokenArgs']]:
|
181
|
+
"""
|
182
|
+
A `authentication_basic` block as defined below.
|
183
|
+
"""
|
179
184
|
return pulumi.get(self, "authentication_token")
|
180
185
|
|
181
186
|
@authentication_token.setter
|
@@ -233,8 +238,7 @@ class _ServiceEndpointArtifactoryState:
|
|
233
238
|
"""
|
234
239
|
URL of the Artifactory server to connect with.
|
235
240
|
|
236
|
-
|
237
|
-
* either `authentication_token` or `authentication_basic` (one is required)
|
241
|
+
_**Note: URL should not end in a slash character.**_
|
238
242
|
"""
|
239
243
|
return pulumi.get(self, "url")
|
240
244
|
|
@@ -257,7 +261,7 @@ class ServiceEndpointArtifactory(pulumi.CustomResource):
|
|
257
261
|
url: Optional[pulumi.Input[str]] = None,
|
258
262
|
__props__=None):
|
259
263
|
"""
|
260
|
-
Manages an Artifactory server endpoint within an Azure DevOps organization. Using this service endpoint requires you to first install [JFrog Artifactory Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-artifactory-vsts-extension).
|
264
|
+
Manages an JFrog Artifactory server endpoint within an Azure DevOps organization. Using this service endpoint requires you to first install [JFrog Artifactory Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-artifactory-vsts-extension).
|
261
265
|
|
262
266
|
## Example Usage
|
263
267
|
|
@@ -310,7 +314,7 @@ class ServiceEndpointArtifactory(pulumi.CustomResource):
|
|
310
314
|
|
311
315
|
## Import
|
312
316
|
|
313
|
-
Azure DevOps Service Endpoint
|
317
|
+
Azure DevOps JFrog Artifactory Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
|
314
318
|
|
315
319
|
```sh
|
316
320
|
$ pulumi import azuredevops:index/serviceEndpointArtifactory:ServiceEndpointArtifactory example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -318,13 +322,13 @@ class ServiceEndpointArtifactory(pulumi.CustomResource):
|
|
318
322
|
|
319
323
|
:param str resource_name: The name of the resource.
|
320
324
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
325
|
+
:param pulumi.Input[Union['ServiceEndpointArtifactoryAuthenticationTokenArgs', 'ServiceEndpointArtifactoryAuthenticationTokenArgsDict']] authentication_token: A `authentication_basic` block as defined below.
|
321
326
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
322
327
|
:param pulumi.Input[str] project_id: The ID of the project.
|
323
328
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
324
329
|
:param pulumi.Input[str] url: URL of the Artifactory server to connect with.
|
325
330
|
|
326
|
-
|
327
|
-
* either `authentication_token` or `authentication_basic` (one is required)
|
331
|
+
_**Note: URL should not end in a slash character.**_
|
328
332
|
"""
|
329
333
|
...
|
330
334
|
@overload
|
@@ -333,7 +337,7 @@ class ServiceEndpointArtifactory(pulumi.CustomResource):
|
|
333
337
|
args: ServiceEndpointArtifactoryArgs,
|
334
338
|
opts: Optional[pulumi.ResourceOptions] = None):
|
335
339
|
"""
|
336
|
-
Manages an Artifactory server endpoint within an Azure DevOps organization. Using this service endpoint requires you to first install [JFrog Artifactory Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-artifactory-vsts-extension).
|
340
|
+
Manages an JFrog Artifactory server endpoint within an Azure DevOps organization. Using this service endpoint requires you to first install [JFrog Artifactory Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-artifactory-vsts-extension).
|
337
341
|
|
338
342
|
## Example Usage
|
339
343
|
|
@@ -386,7 +390,7 @@ class ServiceEndpointArtifactory(pulumi.CustomResource):
|
|
386
390
|
|
387
391
|
## Import
|
388
392
|
|
389
|
-
Azure DevOps Service Endpoint
|
393
|
+
Azure DevOps JFrog Artifactory Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
|
390
394
|
|
391
395
|
```sh
|
392
396
|
$ pulumi import azuredevops:index/serviceEndpointArtifactory:ServiceEndpointArtifactory example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -460,13 +464,13 @@ class ServiceEndpointArtifactory(pulumi.CustomResource):
|
|
460
464
|
:param str resource_name: The unique name of the resulting resource.
|
461
465
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
462
466
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
467
|
+
:param pulumi.Input[Union['ServiceEndpointArtifactoryAuthenticationTokenArgs', 'ServiceEndpointArtifactoryAuthenticationTokenArgsDict']] authentication_token: A `authentication_basic` block as defined below.
|
463
468
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
464
469
|
:param pulumi.Input[str] project_id: The ID of the project.
|
465
470
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
466
471
|
:param pulumi.Input[str] url: URL of the Artifactory server to connect with.
|
467
472
|
|
468
|
-
|
469
|
-
* either `authentication_token` or `authentication_basic` (one is required)
|
473
|
+
_**Note: URL should not end in a slash character.**_
|
470
474
|
"""
|
471
475
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
472
476
|
|
@@ -489,6 +493,9 @@ class ServiceEndpointArtifactory(pulumi.CustomResource):
|
|
489
493
|
@property
|
490
494
|
@pulumi.getter(name="authenticationToken")
|
491
495
|
def authentication_token(self) -> pulumi.Output[Optional['outputs.ServiceEndpointArtifactoryAuthenticationToken']]:
|
496
|
+
"""
|
497
|
+
A `authentication_basic` block as defined below.
|
498
|
+
"""
|
492
499
|
return pulumi.get(self, "authentication_token")
|
493
500
|
|
494
501
|
@property
|
@@ -526,8 +533,7 @@ class ServiceEndpointArtifactory(pulumi.CustomResource):
|
|
526
533
|
"""
|
527
534
|
URL of the Artifactory server to connect with.
|
528
535
|
|
529
|
-
|
530
|
-
* either `authentication_token` or `authentication_basic` (one is required)
|
536
|
+
_**Note: URL should not end in a slash character.**_
|
531
537
|
"""
|
532
538
|
return pulumi.get(self, "url")
|
533
539
|
|
@@ -413,7 +413,7 @@ class ServiceEndpointAws(pulumi.CustomResource):
|
|
413
413
|
|
414
414
|
## Import
|
415
415
|
|
416
|
-
Azure DevOps Service Endpoint
|
416
|
+
Azure DevOps AWS Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
417
417
|
|
418
418
|
```sh
|
419
419
|
$ pulumi import azuredevops:index/serviceEndpointAws:ServiceEndpointAws azuredevops_serviceendpoint_aws.example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -467,7 +467,7 @@ class ServiceEndpointAws(pulumi.CustomResource):
|
|
467
467
|
|
468
468
|
## Import
|
469
469
|
|
470
|
-
Azure DevOps Service Endpoint
|
470
|
+
Azure DevOps AWS Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
471
471
|
|
472
472
|
```sh
|
473
473
|
$ pulumi import azuredevops:index/serviceEndpointAws:ServiceEndpointAws azuredevops_serviceendpoint_aws.example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -40,7 +40,7 @@ class ServiceEndpointAzureEcrArgs:
|
|
40
40
|
:param pulumi.Input[str] azurecr_subscription_name: The subscription name of the Azure targets.
|
41
41
|
:param pulumi.Input[str] project_id: The ID of the project.
|
42
42
|
:param pulumi.Input[str] service_endpoint_name: The name you will use to refer to this service connection in task inputs.
|
43
|
-
:param pulumi.Input['ServiceEndpointAzureEcrCredentialsArgs'] credentials: A `credentials` block.
|
43
|
+
:param pulumi.Input['ServiceEndpointAzureEcrCredentialsArgs'] credentials: A `credentials` block as defined below.
|
44
44
|
:param pulumi.Input[str] resource_group: The resource group to which the container registry belongs.
|
45
45
|
:param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility. `ManagedServiceIdentity` has not yet been implemented for this resource.
|
46
46
|
"""
|
@@ -146,7 +146,7 @@ class ServiceEndpointAzureEcrArgs:
|
|
146
146
|
@pulumi.getter
|
147
147
|
def credentials(self) -> Optional[pulumi.Input['ServiceEndpointAzureEcrCredentialsArgs']]:
|
148
148
|
"""
|
149
|
-
A `credentials` block.
|
149
|
+
A `credentials` block as defined below.
|
150
150
|
"""
|
151
151
|
return pulumi.get(self, "credentials")
|
152
152
|
|
@@ -215,7 +215,7 @@ class _ServiceEndpointAzureEcrState:
|
|
215
215
|
:param pulumi.Input[str] azurecr_spn_tenantid: The tenant id of the service principal.
|
216
216
|
:param pulumi.Input[str] azurecr_subscription_id: The subscription id of the Azure targets.
|
217
217
|
:param pulumi.Input[str] azurecr_subscription_name: The subscription name of the Azure targets.
|
218
|
-
:param pulumi.Input['ServiceEndpointAzureEcrCredentialsArgs'] credentials: A `credentials` block.
|
218
|
+
:param pulumi.Input['ServiceEndpointAzureEcrCredentialsArgs'] credentials: A `credentials` block as defined below.
|
219
219
|
:param pulumi.Input[str] project_id: The ID of the project.
|
220
220
|
:param pulumi.Input[str] resource_group: The resource group to which the container registry belongs.
|
221
221
|
:param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility. `ManagedServiceIdentity` has not yet been implemented for this resource.
|
@@ -349,7 +349,7 @@ class _ServiceEndpointAzureEcrState:
|
|
349
349
|
@pulumi.getter
|
350
350
|
def credentials(self) -> Optional[pulumi.Input['ServiceEndpointAzureEcrCredentialsArgs']]:
|
351
351
|
"""
|
352
|
-
A `credentials` block.
|
352
|
+
A `credentials` block as defined below.
|
353
353
|
"""
|
354
354
|
return pulumi.get(self, "credentials")
|
355
355
|
|
@@ -482,8 +482,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
482
482
|
|
483
483
|
## Example Usage
|
484
484
|
|
485
|
-
### Service Principal
|
486
|
-
|
485
|
+
### Authorize with Service Principal
|
487
486
|
```python
|
488
487
|
import pulumi
|
489
488
|
import pulumi_azuredevops as azuredevops
|
@@ -505,7 +504,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
505
504
|
azurecr_subscription_name="subscription name")
|
506
505
|
```
|
507
506
|
|
508
|
-
### WorkloadIdentityFederation
|
507
|
+
### Authorize with WorkloadIdentityFederation
|
509
508
|
|
510
509
|
```python
|
511
510
|
import pulumi
|
@@ -554,7 +553,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
554
553
|
|
555
554
|
## Import
|
556
555
|
|
557
|
-
Azure DevOps
|
556
|
+
Azure DevOps Azure Container Registry Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
558
557
|
|
559
558
|
```sh
|
560
559
|
$ pulumi import azuredevops:index/serviceEndpointAzureEcr:ServiceEndpointAzureEcr example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -566,7 +565,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
566
565
|
:param pulumi.Input[str] azurecr_spn_tenantid: The tenant id of the service principal.
|
567
566
|
:param pulumi.Input[str] azurecr_subscription_id: The subscription id of the Azure targets.
|
568
567
|
:param pulumi.Input[str] azurecr_subscription_name: The subscription name of the Azure targets.
|
569
|
-
:param pulumi.Input[Union['ServiceEndpointAzureEcrCredentialsArgs', 'ServiceEndpointAzureEcrCredentialsArgsDict']] credentials: A `credentials` block.
|
568
|
+
:param pulumi.Input[Union['ServiceEndpointAzureEcrCredentialsArgs', 'ServiceEndpointAzureEcrCredentialsArgsDict']] credentials: A `credentials` block as defined below.
|
570
569
|
:param pulumi.Input[str] project_id: The ID of the project.
|
571
570
|
:param pulumi.Input[str] resource_group: The resource group to which the container registry belongs.
|
572
571
|
:param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility. `ManagedServiceIdentity` has not yet been implemented for this resource.
|
@@ -583,8 +582,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
583
582
|
|
584
583
|
## Example Usage
|
585
584
|
|
586
|
-
### Service Principal
|
587
|
-
|
585
|
+
### Authorize with Service Principal
|
588
586
|
```python
|
589
587
|
import pulumi
|
590
588
|
import pulumi_azuredevops as azuredevops
|
@@ -606,7 +604,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
606
604
|
azurecr_subscription_name="subscription name")
|
607
605
|
```
|
608
606
|
|
609
|
-
### WorkloadIdentityFederation
|
607
|
+
### Authorize with WorkloadIdentityFederation
|
610
608
|
|
611
609
|
```python
|
612
610
|
import pulumi
|
@@ -655,7 +653,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
655
653
|
|
656
654
|
## Import
|
657
655
|
|
658
|
-
Azure DevOps
|
656
|
+
Azure DevOps Azure Container Registry Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
659
657
|
|
660
658
|
```sh
|
661
659
|
$ pulumi import azuredevops:index/serviceEndpointAzureEcr:ServiceEndpointAzureEcr example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -765,7 +763,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
765
763
|
:param pulumi.Input[str] azurecr_spn_tenantid: The tenant id of the service principal.
|
766
764
|
:param pulumi.Input[str] azurecr_subscription_id: The subscription id of the Azure targets.
|
767
765
|
:param pulumi.Input[str] azurecr_subscription_name: The subscription name of the Azure targets.
|
768
|
-
:param pulumi.Input[Union['ServiceEndpointAzureEcrCredentialsArgs', 'ServiceEndpointAzureEcrCredentialsArgsDict']] credentials: A `credentials` block.
|
766
|
+
:param pulumi.Input[Union['ServiceEndpointAzureEcrCredentialsArgs', 'ServiceEndpointAzureEcrCredentialsArgsDict']] credentials: A `credentials` block as defined below.
|
769
767
|
:param pulumi.Input[str] project_id: The ID of the project.
|
770
768
|
:param pulumi.Input[str] resource_group: The resource group to which the container registry belongs.
|
771
769
|
:param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility. `ManagedServiceIdentity` has not yet been implemented for this resource.
|
@@ -854,7 +852,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
854
852
|
@pulumi.getter
|
855
853
|
def credentials(self) -> pulumi.Output[Optional['outputs.ServiceEndpointAzureEcrCredentials']]:
|
856
854
|
"""
|
857
|
-
A `credentials` block.
|
855
|
+
A `credentials` block as defined below.
|
858
856
|
"""
|
859
857
|
return pulumi.get(self, "credentials")
|
860
858
|
|