pulumi-azuredevops 3.7.0a1741238592__py3-none-any.whl → 3.8.0__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 +13 -0
- pulumi_azuredevops/_inputs.py +435 -26
- pulumi_azuredevops/build_definition.py +335 -0
- pulumi_azuredevops/dashboard.py +475 -0
- pulumi_azuredevops/feed_retention_policy.py +0 -22
- pulumi_azuredevops/get_build_definition.py +43 -1
- pulumi_azuredevops/get_client_config.py +61 -5
- pulumi_azuredevops/get_descriptor.py +133 -0
- pulumi_azuredevops/get_group_membership.py +131 -0
- pulumi_azuredevops/get_identity_group.py +20 -6
- pulumi_azuredevops/get_identity_groups.py +2 -2
- pulumi_azuredevops/get_identity_users.py +19 -5
- pulumi_azuredevops/get_storage_key.py +133 -0
- pulumi_azuredevops/get_teams.py +2 -2
- pulumi_azuredevops/get_user.py +193 -0
- pulumi_azuredevops/get_users.py +4 -0
- pulumi_azuredevops/outputs.py +558 -19
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/service_endpoint_artifactory.py +1 -15
- pulumi_azuredevops/service_endpoint_aws.py +1 -15
- pulumi_azuredevops/service_endpoint_azure_dev_ops.py +1 -15
- pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -27
- pulumi_azuredevops/service_endpoint_azure_rm.py +9 -15
- pulumi_azuredevops/service_endpoint_bit_bucket.py +1 -15
- pulumi_azuredevops/service_endpoint_docker_registry.py +1 -15
- pulumi_azuredevops/service_endpoint_generic.py +1 -15
- pulumi_azuredevops/service_endpoint_generic_git.py +1 -15
- pulumi_azuredevops/service_endpoint_git_hub.py +1 -15
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +1 -15
- pulumi_azuredevops/service_endpoint_git_lab.py +1 -15
- pulumi_azuredevops/service_endpoint_kubernetes.py +1 -15
- pulumi_azuredevops/service_endpoint_npm.py +1 -15
- pulumi_azuredevops/service_endpoint_pipeline.py +1 -15
- pulumi_azuredevops/service_endpoint_service_fabric.py +1 -15
- pulumi_azuredevops/service_endpoint_sonar_cloud.py +1 -15
- pulumi_azuredevops/service_endpoint_sonar_qube.py +1 -15
- pulumi_azuredevops/service_endpoint_ssh.py +1 -15
- pulumi_azuredevops/serviceendpoint_argocd.py +1 -15
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_one.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +1 -15
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +1 -15
- pulumi_azuredevops/serviceendpoint_externaltfs.py +1 -15
- pulumi_azuredevops/serviceendpoint_gcp_terraform.py +1 -15
- pulumi_azuredevops/serviceendpoint_incomingwebhook.py +1 -15
- pulumi_azuredevops/serviceendpoint_jenkins.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_maven.py +1 -15
- pulumi_azuredevops/serviceendpoint_nexus.py +1 -15
- pulumi_azuredevops/serviceendpoint_nuget.py +1 -15
- pulumi_azuredevops/serviceendpoint_octopusdeploy.py +1 -15
- pulumi_azuredevops/serviceendpoint_snyk.py +1 -15
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +1 -15
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/METADATA +1 -1
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/RECORD +61 -56
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/WHEEL +1 -1
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/top_level.txt +0 -0
@@ -26,7 +26,6 @@ class ServiceendpointVisualstudiomarketplaceArgs:
|
|
26
26
|
url: pulumi.Input[str],
|
27
27
|
authentication_basic: Optional[pulumi.Input['ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgs']] = None,
|
28
28
|
authentication_token: Optional[pulumi.Input['ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgs']] = None,
|
29
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
29
|
description: Optional[pulumi.Input[str]] = None):
|
31
30
|
"""
|
32
31
|
The set of arguments for constructing a ServiceendpointVisualstudiomarketplace resource.
|
@@ -45,8 +44,6 @@ class ServiceendpointVisualstudiomarketplaceArgs:
|
|
45
44
|
pulumi.set(__self__, "authentication_basic", authentication_basic)
|
46
45
|
if authentication_token is not None:
|
47
46
|
pulumi.set(__self__, "authentication_token", authentication_token)
|
48
|
-
if authorization is not None:
|
49
|
-
pulumi.set(__self__, "authorization", authorization)
|
50
47
|
if description is not None:
|
51
48
|
pulumi.set(__self__, "description", description)
|
52
49
|
|
@@ -112,15 +109,6 @@ class ServiceendpointVisualstudiomarketplaceArgs:
|
|
112
109
|
def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgs']]):
|
113
110
|
pulumi.set(self, "authentication_token", value)
|
114
111
|
|
115
|
-
@property
|
116
|
-
@pulumi.getter
|
117
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
118
|
-
return pulumi.get(self, "authorization")
|
119
|
-
|
120
|
-
@authorization.setter
|
121
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
122
|
-
pulumi.set(self, "authorization", value)
|
123
|
-
|
124
112
|
@property
|
125
113
|
@pulumi.getter
|
126
114
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -254,7 +242,6 @@ class ServiceendpointVisualstudiomarketplace(pulumi.CustomResource):
|
|
254
242
|
opts: Optional[pulumi.ResourceOptions] = None,
|
255
243
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgs', 'ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgsDict']]] = None,
|
256
244
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgs', 'ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgsDict']]] = None,
|
257
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
258
245
|
description: Optional[pulumi.Input[str]] = None,
|
259
246
|
project_id: Optional[pulumi.Input[str]] = None,
|
260
247
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -415,7 +402,6 @@ class ServiceendpointVisualstudiomarketplace(pulumi.CustomResource):
|
|
415
402
|
opts: Optional[pulumi.ResourceOptions] = None,
|
416
403
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgs', 'ServiceendpointVisualstudiomarketplaceAuthenticationBasicArgsDict']]] = None,
|
417
404
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgs', 'ServiceendpointVisualstudiomarketplaceAuthenticationTokenArgsDict']]] = None,
|
418
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
419
405
|
description: Optional[pulumi.Input[str]] = None,
|
420
406
|
project_id: Optional[pulumi.Input[str]] = None,
|
421
407
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -431,7 +417,6 @@ class ServiceendpointVisualstudiomarketplace(pulumi.CustomResource):
|
|
431
417
|
|
432
418
|
__props__.__dict__["authentication_basic"] = authentication_basic
|
433
419
|
__props__.__dict__["authentication_token"] = authentication_token
|
434
|
-
__props__.__dict__["authorization"] = authorization
|
435
420
|
__props__.__dict__["description"] = description
|
436
421
|
if project_id is None and not opts.urn:
|
437
422
|
raise TypeError("Missing required property 'project_id'")
|
@@ -442,6 +427,7 @@ class ServiceendpointVisualstudiomarketplace(pulumi.CustomResource):
|
|
442
427
|
if url is None and not opts.urn:
|
443
428
|
raise TypeError("Missing required property 'url'")
|
444
429
|
__props__.__dict__["url"] = url
|
430
|
+
__props__.__dict__["authorization"] = None
|
445
431
|
super(ServiceendpointVisualstudiomarketplace, __self__).__init__(
|
446
432
|
'azuredevops:index/serviceendpointVisualstudiomarketplace:ServiceendpointVisualstudiomarketplace',
|
447
433
|
resource_name,
|
@@ -1,5 +1,5 @@
|
|
1
|
-
pulumi_azuredevops/__init__.py,sha256=
|
2
|
-
pulumi_azuredevops/_inputs.py,sha256=
|
1
|
+
pulumi_azuredevops/__init__.py,sha256=a584W8vCu6U5hh5c-gwz0MgTdc1kC5sBZ7xSy_wtiy0,28213
|
2
|
+
pulumi_azuredevops/_inputs.py,sha256=5NSUvmAwz3gpTLw0GZQTxzqTvH_tpCyssGLqdJbpSHM,248872
|
3
3
|
pulumi_azuredevops/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
4
4
|
pulumi_azuredevops/area_permissions.py,sha256=j6re_QZJvTEpN_5xPYi0VVhE9mRrl6JqqgmGI7CTrJ4,23434
|
5
5
|
pulumi_azuredevops/branch_policy_auto_reviewers.py,sha256=Nih-V9JI1nunk64RsuBO9h1a1Jap1gZfsSoyNlDZ91s,17296
|
@@ -9,7 +9,7 @@ pulumi_azuredevops/branch_policy_merge_types.py,sha256=mL-TBynDHDRtgSbkeUg1ZP4wx
|
|
9
9
|
pulumi_azuredevops/branch_policy_min_reviewers.py,sha256=J6MWjn5Oaj6V5ZOwnpDyvu_7FQ-NxWcRjAhgjXVjnEk,17274
|
10
10
|
pulumi_azuredevops/branch_policy_status_check.py,sha256=5wMdjGC8YvCClVFKLGZmTtYuSGYHabiOnt5KG2lsVHM,17584
|
11
11
|
pulumi_azuredevops/branch_policy_work_item_linking.py,sha256=BeWRSit-VNDpFhzatLquMLu4VFJs13XnAAFpUIFxCig,16952
|
12
|
-
pulumi_azuredevops/build_definition.py,sha256=
|
12
|
+
pulumi_azuredevops/build_definition.py,sha256=gjGgFPc22BMT7zOHpfoxd9bdUDqFMLezsQk0bxS9JDo,68468
|
13
13
|
pulumi_azuredevops/build_definition_permissions.py,sha256=EUfXGoA5k5JxUdXZxEFe18Wmi0_4UoHCZpfOQzyli3g,32195
|
14
14
|
pulumi_azuredevops/build_folder.py,sha256=VrzjjGk0I7MyxfAzDp5H4NGr7cOpJLeusDfY2hc4nhw,11069
|
15
15
|
pulumi_azuredevops/build_folder_permissions.py,sha256=qvwQ_kREhq2iWNZ19nHWGoyqmwXxk9eQV7P8p1Zhd1s,30376
|
@@ -19,24 +19,27 @@ pulumi_azuredevops/check_business_hours.py,sha256=6ujQoSnSHBtEICZQCi0dWU_ZCsqrmF
|
|
19
19
|
pulumi_azuredevops/check_exclusive_lock.py,sha256=TJhWp5i9lvobLAb8KtS1bGQgAuD81AP2MsnxPJ9s23o,20455
|
20
20
|
pulumi_azuredevops/check_required_template.py,sha256=vVBVpixPIJZ5Rj_6WC0kiju-aiCyAwFeQELzzijDDII,21492
|
21
21
|
pulumi_azuredevops/check_rest_api.py,sha256=b54oJ-sdQUNsP2TqEF6XIMQEul6i9HGKwyJrzahE6qc,47214
|
22
|
+
pulumi_azuredevops/dashboard.py,sha256=-vgO5_01o2hRmIUeeohDWikdKkegHMwPVSicDj3bGB8,18675
|
22
23
|
pulumi_azuredevops/elastic_pool.py,sha256=48eZ_sBtQR3uk9HCPSBr_k7xGV6O6WNLNZfasenHfRM,34874
|
23
24
|
pulumi_azuredevops/environment.py,sha256=2krtu3G-2B8LgE6MU2e-0rJPc4r3-4tTuw4e4thUlZg,11563
|
24
25
|
pulumi_azuredevops/environment_resource_kubernetes.py,sha256=clK1IXGcXhLrkjGx7aEo1mnsR4mR-pnqMUnMadp2b8M,22266
|
25
26
|
pulumi_azuredevops/feed.py,sha256=Dr8sykO27segz7JZPPHs8VOfht0u9SVSDj-g0Hn9ltc,14580
|
26
27
|
pulumi_azuredevops/feed_permission.py,sha256=pC3DF9GZw-o4OtPrrvtc9_SaFmZkR6U7mmocfZz5W6U,17279
|
27
|
-
pulumi_azuredevops/feed_retention_policy.py,sha256=
|
28
|
+
pulumi_azuredevops/feed_retention_policy.py,sha256=3Sx5TBt62OsCMHAildZRXgMU_UBvwK2BauH_9Fv2Qn8,17481
|
28
29
|
pulumi_azuredevops/get_agent_queue.py,sha256=wsc-Vebn2Ie17MXV32-joWN2OzN-aAxdFOqZYdmorfk,6205
|
29
30
|
pulumi_azuredevops/get_area.py,sha256=HE_MlODm-HFhcAMWdtU6JgrQrhLwwJGBmYN5UE-SDaE,8881
|
30
|
-
pulumi_azuredevops/get_build_definition.py,sha256=
|
31
|
-
pulumi_azuredevops/get_client_config.py,sha256=
|
31
|
+
pulumi_azuredevops/get_build_definition.py,sha256=ZpZNFIWhYv8tV5Yts_RAbTQYqHiWVSlFBulxrqPFZXI,13225
|
32
|
+
pulumi_azuredevops/get_client_config.py,sha256=4YZ5k5XcxqmlkyVT_-f1r2EN0rhEQeg9oCZWbxRpU4g,5657
|
33
|
+
pulumi_azuredevops/get_descriptor.py,sha256=cWf6f3ugJULLPf_p6_BHrOXrSfO5bXjBhq70o0ZSl88,4837
|
32
34
|
pulumi_azuredevops/get_environment.py,sha256=yJJZieaTPx9JEXokImQzsTBMImOGBmPRtpP_WyrLH6o,7800
|
33
35
|
pulumi_azuredevops/get_feed.py,sha256=jYNvuftq2tsbV3uDPnVCKqRASZfLxwsyJjXn4SiyOsA,6294
|
34
36
|
pulumi_azuredevops/get_git_repository.py,sha256=dmh5lYyZYITDDN1fpAqpTFNs3TAi4d_sExezhGIYrS8,9585
|
35
37
|
pulumi_azuredevops/get_group.py,sha256=iDFTfuDLGCiAo1ruiAX_3qj2V3rtrS8ACcp-_dhgcDE,8244
|
38
|
+
pulumi_azuredevops/get_group_membership.py,sha256=So-40fRHxugydnZ_vFn0i1L_-6Tr_FCFM3H8k8Bz9lQ,4853
|
36
39
|
pulumi_azuredevops/get_groups.py,sha256=gKVWkogAOgOvWS_9ppCMQ-KlebstmAZkOEGKUHdZ75E,5231
|
37
|
-
pulumi_azuredevops/get_identity_group.py,sha256=
|
38
|
-
pulumi_azuredevops/get_identity_groups.py,sha256=
|
39
|
-
pulumi_azuredevops/get_identity_users.py,sha256=
|
40
|
+
pulumi_azuredevops/get_identity_group.py,sha256=8Iru1ctYLKH5w7xw9zsRCIoYU1EseEoWBF8MHLOrpsI,6377
|
41
|
+
pulumi_azuredevops/get_identity_groups.py,sha256=EkMbq5QZgsRvP8CWFsENjGr7vmX7y8oyeZv2rls0zcQ,5470
|
42
|
+
pulumi_azuredevops/get_identity_users.py,sha256=iLrD1zwS5bsAIaoKkO8JdtgGu3qcOPC1YaNL5NcgKTU,5684
|
40
43
|
pulumi_azuredevops/get_iteration.py,sha256=1C1KZMB887oY9UuDJlgcKFfnnqL61y6xQAJg2OxorfA,9352
|
41
44
|
pulumi_azuredevops/get_pool.py,sha256=esZCi97Qfg3JGFI1oaknHeF_b86YjMQayir9qaD_mIM,6091
|
42
45
|
pulumi_azuredevops/get_pools.py,sha256=VdPmQpsKmXXG_TOfhXNlMa8FNy3s9-WuY_qG-defMsU,4552
|
@@ -51,9 +54,11 @@ pulumi_azuredevops/get_serviceendpoint_azurecr.py,sha256=KaloPhbMgNGS1y8FRgwDYjF
|
|
51
54
|
pulumi_azuredevops/get_serviceendpoint_bitbucket.py,sha256=lCgP9xSuhlSkVD96e0And7tosC05XDs9pe01aZdefEI,9407
|
52
55
|
pulumi_azuredevops/get_serviceendpoint_npm.py,sha256=oBX32cL_TfYHrE5Kbs3R2AO2CduPUrkRpKWdFucX9VY,8053
|
53
56
|
pulumi_azuredevops/get_serviceendpoint_sonarcloud.py,sha256=zl8K0LrBr1WmonjwjTW1eCwUDE1huC_nGq1_td8vOFo,7838
|
57
|
+
pulumi_azuredevops/get_storage_key.py,sha256=GRgeb0NX94Txo08BfZFUv832jtdSaFD33aPZyGKxA7M,4771
|
54
58
|
pulumi_azuredevops/get_team.py,sha256=tb9MJYOAqfuIOFRjDiwOKyrijsoaRpCz7vVIOS0jWrc,8419
|
55
|
-
pulumi_azuredevops/get_teams.py,sha256=
|
56
|
-
pulumi_azuredevops/
|
59
|
+
pulumi_azuredevops/get_teams.py,sha256=O83FCLlyutKIrVFttLpxbahWPBSBIOTEtwUF_luFQlc,6311
|
60
|
+
pulumi_azuredevops/get_user.py,sha256=p4R5ZYu1VRftziJ1iLEZ4N4CbKwPKiJD_SHzB2kGCtk,7376
|
61
|
+
pulumi_azuredevops/get_users.py,sha256=_z6zZ2q2WvhpdHINlJi4VKkkL2AvS6mCwwORnjJuKOw,9229
|
57
62
|
pulumi_azuredevops/get_variable_group.py,sha256=RPdUDTYtMu9Vu5CHqI0DdFybmqiEm0YR_jspRNioidI,8184
|
58
63
|
pulumi_azuredevops/git.py,sha256=T9RSx8e0merMuB7Mdite9GV7jUbpaurJ4CLFI4QNT2Y,22958
|
59
64
|
pulumi_azuredevops/git_permissions.py,sha256=RT0YX0cFm6Nr11gGK31fKXet_OPKrhC0Jf2wyrttABQ,42379
|
@@ -64,7 +69,7 @@ pulumi_azuredevops/group_entitlement.py,sha256=8Nk_fdtc4H5xRjV-GTPLSBBGDG0IgTz4D
|
|
64
69
|
pulumi_azuredevops/group_membership.py,sha256=OHCvLb_afAbp-SUcMSVyNjhcZZeqtkSq2ERFbCc4QkU,17158
|
65
70
|
pulumi_azuredevops/iterative_permissions.py,sha256=89CZFVT_b6psNJSfLmFzhpAWcyNFu4qh5zOffOWmjZk,20869
|
66
71
|
pulumi_azuredevops/library_permissions.py,sha256=5CdGyhxTpG-LwE94XVCvTfN7H1bzHF1OUJuRrDV1pmQ,18567
|
67
|
-
pulumi_azuredevops/outputs.py,sha256=
|
72
|
+
pulumi_azuredevops/outputs.py,sha256=jdng_7XYzjqZc-J-bOquPy2-Vj5I1viYWV3pNJZr0cw,241769
|
68
73
|
pulumi_azuredevops/pipeline_authorization.py,sha256=8NUSJ-IbnoFbEdyfAK4qWMfwe2wljwQZRlMiFLyai9o,24925
|
69
74
|
pulumi_azuredevops/pool.py,sha256=x_ALQSWHrbpfBGiePx6frk6GjgbuYBo6VtbJnVr4NMg,13811
|
70
75
|
pulumi_azuredevops/project.py,sha256=o2DQ0HdVub0NRAGVpA7w05Kcp3y9L05ipOArChcGsdM,26397
|
@@ -73,7 +78,7 @@ pulumi_azuredevops/project_permissions.py,sha256=bm3iBUeTtbusTceEDL2YkqyXn6VTXx5
|
|
73
78
|
pulumi_azuredevops/project_pipeline_settings.py,sha256=vqQeuzPSPrMRFN3aDq-pRFYmwlsrfLbzs8Y4rl5eb7w,26399
|
74
79
|
pulumi_azuredevops/project_tags.py,sha256=9s9Id1RqjP3rsXnmRzojCutVC9wY9i-nY2Z1hE4FRY0,10151
|
75
80
|
pulumi_azuredevops/provider.py,sha256=qqKeV3JDQU26YttRJ_P1mMV-1QbmcpT6wDn7kzhvb7I,29572
|
76
|
-
pulumi_azuredevops/pulumi-plugin.json,sha256=
|
81
|
+
pulumi_azuredevops/pulumi-plugin.json,sha256=20xhKpnfT4t_cHKvMjwShzYThXvxvuPld-ayLgTq9OI,70
|
77
82
|
pulumi_azuredevops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
83
|
pulumi_azuredevops/queue.py,sha256=o4wwAW_pIBR7wDxGhNaGsLpWKGqqHIlztR99c_gSVm4,15192
|
79
84
|
pulumi_azuredevops/repository_policy_author_email_pattern.py,sha256=2x-PbyxE6rxiXE_OtAN20KfCiyNwWfaRJaHqd1QNv5g,21866
|
@@ -85,47 +90,47 @@ pulumi_azuredevops/repository_policy_max_path_length.py,sha256=s9AVR92Us62hcdozu
|
|
85
90
|
pulumi_azuredevops/repository_policy_reserved_names.py,sha256=NkQXOGhOESa5erBXk-vAc3rCKn_8umLUO2JTADWIqwE,17753
|
86
91
|
pulumi_azuredevops/resource_authorization.py,sha256=fpmm48xZbnV3SqWQEAap0Li_J6Cc8eVWNuEfnB_Re5M,16895
|
87
92
|
pulumi_azuredevops/securityrole_assignment.py,sha256=-ri2Cpily78xB1xcXeT7jyiQX-naJ2ki7GjQvE5eClM,12254
|
88
|
-
pulumi_azuredevops/service_endpoint_artifactory.py,sha256=
|
89
|
-
pulumi_azuredevops/service_endpoint_aws.py,sha256=
|
90
|
-
pulumi_azuredevops/service_endpoint_azure_dev_ops.py,sha256=
|
91
|
-
pulumi_azuredevops/service_endpoint_azure_ecr.py,sha256=
|
92
|
-
pulumi_azuredevops/service_endpoint_azure_rm.py,sha256=
|
93
|
-
pulumi_azuredevops/service_endpoint_bit_bucket.py,sha256=
|
94
|
-
pulumi_azuredevops/service_endpoint_docker_registry.py,sha256=
|
95
|
-
pulumi_azuredevops/service_endpoint_generic.py,sha256=
|
96
|
-
pulumi_azuredevops/service_endpoint_generic_git.py,sha256=
|
97
|
-
pulumi_azuredevops/service_endpoint_git_hub.py,sha256=
|
98
|
-
pulumi_azuredevops/service_endpoint_git_hub_enterprise.py,sha256=
|
99
|
-
pulumi_azuredevops/service_endpoint_git_lab.py,sha256=
|
100
|
-
pulumi_azuredevops/service_endpoint_kubernetes.py,sha256=
|
101
|
-
pulumi_azuredevops/service_endpoint_npm.py,sha256=
|
102
|
-
pulumi_azuredevops/service_endpoint_pipeline.py,sha256=
|
103
|
-
pulumi_azuredevops/service_endpoint_service_fabric.py,sha256=
|
104
|
-
pulumi_azuredevops/service_endpoint_sonar_cloud.py,sha256=
|
105
|
-
pulumi_azuredevops/service_endpoint_sonar_qube.py,sha256=
|
106
|
-
pulumi_azuredevops/service_endpoint_ssh.py,sha256=
|
93
|
+
pulumi_azuredevops/service_endpoint_artifactory.py,sha256=2l6R2Su9NLgwS98PeKjclRy6Yvznfsjjzb7PNdU1GDE,23733
|
94
|
+
pulumi_azuredevops/service_endpoint_aws.py,sha256=Eg-EhuLJpNiozFLVxZviSflxt5vcwZwViL_YtcX_pHE,29235
|
95
|
+
pulumi_azuredevops/service_endpoint_azure_dev_ops.py,sha256=vNWFtD0k7B796QcUxQ-sJRKTwY1zFFbn4Q1XtxTWIUA,20285
|
96
|
+
pulumi_azuredevops/service_endpoint_azure_ecr.py,sha256=7hOzEpVBtIxZtyn93VLyIuNSYBzz9QxOiAba-vmexTU,45873
|
97
|
+
pulumi_azuredevops/service_endpoint_azure_rm.py,sha256=IG4IPO2jCHyXevBinDw07aUSclyMjo1xEbyVjONO-pI,65998
|
98
|
+
pulumi_azuredevops/service_endpoint_bit_bucket.py,sha256=bvQ7ThOylAEspokrRYUiZzWnRv_e5TDJ8kkKI6HYkSw,16570
|
99
|
+
pulumi_azuredevops/service_endpoint_docker_registry.py,sha256=fg7aQQS5V8y0euuoAwOED37jEYbSaMfUuziF3urvIGg,25632
|
100
|
+
pulumi_azuredevops/service_endpoint_generic.py,sha256=CxwzHKgLTvRe7IQTX06NiHQ6ni2IHk5_onJ20ckk_jI,19691
|
101
|
+
pulumi_azuredevops/service_endpoint_generic_git.py,sha256=JnD7-R3OjMxobk-c3EKJZ0vbW3Ww7MrFv6vRb_opKSw,23183
|
102
|
+
pulumi_azuredevops/service_endpoint_git_hub.py,sha256=wQ3oJ4rc8b3MdFe52IitF0ASOb4Bm8Wc1ClYsqi7dpY,21432
|
103
|
+
pulumi_azuredevops/service_endpoint_git_hub_enterprise.py,sha256=x7mMdzL_kTmkLyAtuN4OfqpJRPAClgg9SduK0zXS0tQ,18413
|
104
|
+
pulumi_azuredevops/service_endpoint_git_lab.py,sha256=V48FplU6cTFSN05_dgKfMnZSNSgqjuxZomnoJd8JOOY,18813
|
105
|
+
pulumi_azuredevops/service_endpoint_kubernetes.py,sha256=ezCKRGxHI_2TpxmH0Hcpp0w--a1k9G1KHIJ6IevTpoU,32315
|
106
|
+
pulumi_azuredevops/service_endpoint_npm.py,sha256=0kdF8kxD5yzFNSTewP_EWDEfKttURrIF3amtfNGHhwE,17547
|
107
|
+
pulumi_azuredevops/service_endpoint_pipeline.py,sha256=d5dCxAFwi9Of9X-uGFZmZn9B5TkVK6ieKdbMRr5mydo,19434
|
108
|
+
pulumi_azuredevops/service_endpoint_service_fabric.py,sha256=ONM36YwMt9PiCkbDJXKMpLTO8-vJZU3dbW1LqDNm5Ko,26280
|
109
|
+
pulumi_azuredevops/service_endpoint_sonar_cloud.py,sha256=VSa7JO6WHBmuT-CKydYl95yQO-3izvxjKroRr-hzNWc,16269
|
110
|
+
pulumi_azuredevops/service_endpoint_sonar_qube.py,sha256=GlbgP-sHU5JK7rQwMP0KAZ38V-BjxyUlJTyAQTElsjo,18011
|
111
|
+
pulumi_azuredevops/service_endpoint_ssh.py,sha256=uykgLXaxI6z5ingvBuC-IkfFj1UzVE1x0gFhykRHHHM,22239
|
107
112
|
pulumi_azuredevops/service_principal_entitlement.py,sha256=DcAJHpRDkuUklWSrfP9XdYSRbB_CBm_w9Dp2i-FkjC4,19284
|
108
|
-
pulumi_azuredevops/serviceendpoint_argocd.py,sha256=
|
109
|
-
pulumi_azuredevops/serviceendpoint_azure_service_bus.py,sha256=
|
110
|
-
pulumi_azuredevops/serviceendpoint_checkmarx_one.py,sha256=
|
111
|
-
pulumi_azuredevops/serviceendpoint_checkmarx_sast.py,sha256=
|
112
|
-
pulumi_azuredevops/serviceendpoint_checkmarx_sca.py,sha256=
|
113
|
-
pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py,sha256=
|
114
|
-
pulumi_azuredevops/serviceendpoint_externaltfs.py,sha256=
|
115
|
-
pulumi_azuredevops/serviceendpoint_gcp_terraform.py,sha256=
|
116
|
-
pulumi_azuredevops/serviceendpoint_incomingwebhook.py,sha256=
|
117
|
-
pulumi_azuredevops/serviceendpoint_jenkins.py,sha256=
|
118
|
-
pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py,sha256=
|
119
|
-
pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py,sha256=
|
120
|
-
pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py,sha256=
|
121
|
-
pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py,sha256=
|
122
|
-
pulumi_azuredevops/serviceendpoint_maven.py,sha256=
|
123
|
-
pulumi_azuredevops/serviceendpoint_nexus.py,sha256=
|
124
|
-
pulumi_azuredevops/serviceendpoint_nuget.py,sha256=
|
125
|
-
pulumi_azuredevops/serviceendpoint_octopusdeploy.py,sha256=
|
113
|
+
pulumi_azuredevops/serviceendpoint_argocd.py,sha256=JUCxTrzPQEJ_7Pd-VXM55Du9w0aQYf0FLUiELfxRU8E,25046
|
114
|
+
pulumi_azuredevops/serviceendpoint_azure_service_bus.py,sha256=CBKhDW_a2FXYRV0m6E-sctRjI2w3PrJTJHrg8kfty1o,17460
|
115
|
+
pulumi_azuredevops/serviceendpoint_checkmarx_one.py,sha256=hwxENE_ct2f3Y5rE2uAlHVMtIpkiLNV5GbcCE02dkS4,26640
|
116
|
+
pulumi_azuredevops/serviceendpoint_checkmarx_sast.py,sha256=21zdNX90j_27Z5u9baXFmrae86pXim7-CVV9rpI3qJM,25522
|
117
|
+
pulumi_azuredevops/serviceendpoint_checkmarx_sca.py,sha256=IzW8zi8hjXhJ6zUZBAtengOWnd_Cd7Q7yPwgq2eNgL0,26892
|
118
|
+
pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py,sha256=PzunP8vcGSV6WcdlzkdNBPdmY2bzVP7fpA--5_aTQWQ,26279
|
119
|
+
pulumi_azuredevops/serviceendpoint_externaltfs.py,sha256=3fi9rDKAfBsEktlOuaBTvPcjbS80GG0BwlJLJVMhQZI,18883
|
120
|
+
pulumi_azuredevops/serviceendpoint_gcp_terraform.py,sha256=qBWXIYqIheM5zll4ovcKe9EmPTySbBmsSMxqh3wxVn0,23903
|
121
|
+
pulumi_azuredevops/serviceendpoint_incomingwebhook.py,sha256=2KWXKxaJe1udrsU1GS6RN0COcdmXk49XbSznfj1K3TU,20335
|
122
|
+
pulumi_azuredevops/serviceendpoint_jenkins.py,sha256=FO4U9geY9kw09iyDi1XNPzWURpzscx81j7Wdi12E0Wo,22309
|
123
|
+
pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py,sha256=yh3C3SFZYqVou8dmuS83oBkZuRnQ5GgKbaBA-bm-_4A,25320
|
124
|
+
pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py,sha256=1SXfKsNjmT0twREx9k9srvyl1QdYGQq8sIMi00P1wa4,25398
|
125
|
+
pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py,sha256=A3WdUpPzGUvbGepos_iYmUKv0muX27c5ZCZCXKkGj1k,25062
|
126
|
+
pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py,sha256=qkNp6173_ngJ67HXNUHUfhO_FPKywsE7EeVyYWyKT9Y,24776
|
127
|
+
pulumi_azuredevops/serviceendpoint_maven.py,sha256=HdjD0wZij-SElc3t_rL0fn5U4U_aXNa6ozQu3KpUKTI,26064
|
128
|
+
pulumi_azuredevops/serviceendpoint_nexus.py,sha256=zpdxRNqVyrWvJ9WyzeaTm8Li0KwaHJkyRK9tfu4aiQQ,19969
|
129
|
+
pulumi_azuredevops/serviceendpoint_nuget.py,sha256=__03gb7ebFsAKPpWLHA341VTqfhkE_JcfApwcSYEpkE,25119
|
130
|
+
pulumi_azuredevops/serviceendpoint_octopusdeploy.py,sha256=4y7RcNHiF58JMG1_TVUlya4kFGiOavSe0M5vPYLeyBY,19353
|
126
131
|
pulumi_azuredevops/serviceendpoint_permissions.py,sha256=2V61gJXmoW31GAlmT8LR8KFhNKKzcRD6OlllQF4e4JM,23289
|
127
|
-
pulumi_azuredevops/serviceendpoint_snyk.py,sha256=
|
128
|
-
pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py,sha256=
|
132
|
+
pulumi_azuredevops/serviceendpoint_snyk.py,sha256=74RASIcW6mFV_upC4sQZfKfUtrORTCCMOi68Zg-REo8,17195
|
133
|
+
pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py,sha256=9PJnIhlyYQ590-iCPnZTSU5OWRyF-S_yIqzORDPXhdg,25334
|
129
134
|
pulumi_azuredevops/servicehook_permissions.py,sha256=UxQVuCg4p0DNfe0W8Nde7Qo_MbYhRZyvW_TF-NYFlvg,18081
|
130
135
|
pulumi_azuredevops/servicehook_storage_queue_pipelines.py,sha256=wbxgsqfG0pnvk-FiwyAQYq2Ly6EH68QdjFuu0EDqoKo,30911
|
131
136
|
pulumi_azuredevops/tagging_permissions.py,sha256=K_v_RpQzh8RKDulfF3FsFlHN3TQCTi_57fZ_Q20Vf2Y,18242
|
@@ -142,7 +147,7 @@ pulumi_azuredevops/workitem.py,sha256=b4uOR8kZly1teKoNgLmtQp59iYU9F_E4WaNmtR7exQ
|
|
142
147
|
pulumi_azuredevops/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
143
148
|
pulumi_azuredevops/config/__init__.pyi,sha256=bhi-Wqoygl60BB8QnHwKCaPgXZrtNwoZFx1SqCKmkGw,2384
|
144
149
|
pulumi_azuredevops/config/vars.py,sha256=9lyVkQaBnkfIdLEfYMy4ObszQGUoSwNxcg7y_S7Yloc,4621
|
145
|
-
pulumi_azuredevops-3.
|
146
|
-
pulumi_azuredevops-3.
|
147
|
-
pulumi_azuredevops-3.
|
148
|
-
pulumi_azuredevops-3.
|
150
|
+
pulumi_azuredevops-3.8.0.dist-info/METADATA,sha256=o2bdUOY_69h4-8zQrFwT1uQBBTzWZO2CBaOp4Y1L2HQ,2920
|
151
|
+
pulumi_azuredevops-3.8.0.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
152
|
+
pulumi_azuredevops-3.8.0.dist-info/top_level.txt,sha256=8XRS3pKzB2g--TmH4rHjGWlU-D7835DEQDV88pWf79Y,19
|
153
|
+
pulumi_azuredevops-3.8.0.dist-info/RECORD,,
|
{pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/top_level.txt
RENAMED
File without changes
|