pulumi-azuredevops 3.8.0a1741411388__py3-none-any.whl → 3.8.0a1742224403__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 +1 -0
- pulumi_azuredevops/_inputs.py +435 -26
- pulumi_azuredevops/build_definition.py +335 -0
- pulumi_azuredevops/get_build_definition.py +43 -1
- pulumi_azuredevops/get_client_config.py +61 -5
- pulumi_azuredevops/get_group_membership.py +131 -0
- pulumi_azuredevops/get_teams.py +2 -2
- pulumi_azuredevops/get_users.py +4 -0
- pulumi_azuredevops/outputs.py +546 -18
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/service_endpoint_azure_ecr.py +12 -12
- pulumi_azuredevops/service_endpoint_azure_rm.py +8 -0
- {pulumi_azuredevops-3.8.0a1741411388.dist-info → pulumi_azuredevops-3.8.0a1742224403.dist-info}/METADATA +1 -1
- {pulumi_azuredevops-3.8.0a1741411388.dist-info → pulumi_azuredevops-3.8.0a1742224403.dist-info}/RECORD +16 -15
- {pulumi_azuredevops-3.8.0a1741411388.dist-info → pulumi_azuredevops-3.8.0a1742224403.dist-info}/WHEEL +1 -1
- {pulumi_azuredevops-3.8.0a1741411388.dist-info → pulumi_azuredevops-3.8.0a1742224403.dist-info}/top_level.txt +0 -0
@@ -208,9 +208,9 @@ class _ServiceEndpointAzureEcrState:
|
|
208
208
|
:param pulumi.Input[str] resource_group: The resource group to which the container registry belongs.
|
209
209
|
: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.
|
210
210
|
:param pulumi.Input[str] service_endpoint_name: The name you will use to refer to this service connection in task inputs.
|
211
|
-
:param pulumi.Input[str] service_principal_id: The
|
212
|
-
:param pulumi.Input[str] workload_identity_federation_issuer: The issuer
|
213
|
-
:param pulumi.Input[str] workload_identity_federation_subject: The subject
|
211
|
+
:param pulumi.Input[str] service_principal_id: The Application(Client) ID of the Service Principal.
|
212
|
+
:param pulumi.Input[str] workload_identity_federation_issuer: The issuer if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`. This looks like `https://vstoken.dev.azure.com/00000000-0000-0000-0000-000000000000`, where the GUID is the Organization ID of your Azure DevOps Organisation.
|
213
|
+
:param pulumi.Input[str] workload_identity_federation_subject: The subject if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`. This looks like `sc://<organisation>/<project>/<service-connection-name>`.
|
214
214
|
"""
|
215
215
|
if app_object_id is not None:
|
216
216
|
pulumi.set(__self__, "app_object_id", app_object_id)
|
@@ -406,7 +406,7 @@ class _ServiceEndpointAzureEcrState:
|
|
406
406
|
@pulumi.getter(name="servicePrincipalId")
|
407
407
|
def service_principal_id(self) -> Optional[pulumi.Input[str]]:
|
408
408
|
"""
|
409
|
-
The
|
409
|
+
The Application(Client) ID of the Service Principal.
|
410
410
|
"""
|
411
411
|
return pulumi.get(self, "service_principal_id")
|
412
412
|
|
@@ -427,7 +427,7 @@ class _ServiceEndpointAzureEcrState:
|
|
427
427
|
@pulumi.getter(name="workloadIdentityFederationIssuer")
|
428
428
|
def workload_identity_federation_issuer(self) -> Optional[pulumi.Input[str]]:
|
429
429
|
"""
|
430
|
-
The issuer
|
430
|
+
The issuer if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`. This looks like `https://vstoken.dev.azure.com/00000000-0000-0000-0000-000000000000`, where the GUID is the Organization ID of your Azure DevOps Organisation.
|
431
431
|
"""
|
432
432
|
return pulumi.get(self, "workload_identity_federation_issuer")
|
433
433
|
|
@@ -439,7 +439,7 @@ class _ServiceEndpointAzureEcrState:
|
|
439
439
|
@pulumi.getter(name="workloadIdentityFederationSubject")
|
440
440
|
def workload_identity_federation_subject(self) -> Optional[pulumi.Input[str]]:
|
441
441
|
"""
|
442
|
-
The subject
|
442
|
+
The subject if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`. This looks like `sc://<organisation>/<project>/<service-connection-name>`.
|
443
443
|
"""
|
444
444
|
return pulumi.get(self, "workload_identity_federation_subject")
|
445
445
|
|
@@ -754,9 +754,9 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
754
754
|
:param pulumi.Input[str] resource_group: The resource group to which the container registry belongs.
|
755
755
|
: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.
|
756
756
|
:param pulumi.Input[str] service_endpoint_name: The name you will use to refer to this service connection in task inputs.
|
757
|
-
:param pulumi.Input[str] service_principal_id: The
|
758
|
-
:param pulumi.Input[str] workload_identity_federation_issuer: The issuer
|
759
|
-
:param pulumi.Input[str] workload_identity_federation_subject: The subject
|
757
|
+
:param pulumi.Input[str] service_principal_id: The Application(Client) ID of the Service Principal.
|
758
|
+
:param pulumi.Input[str] workload_identity_federation_issuer: The issuer if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`. This looks like `https://vstoken.dev.azure.com/00000000-0000-0000-0000-000000000000`, where the GUID is the Organization ID of your Azure DevOps Organisation.
|
759
|
+
:param pulumi.Input[str] workload_identity_federation_subject: The subject if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`. This looks like `sc://<organisation>/<project>/<service-connection-name>`.
|
760
760
|
"""
|
761
761
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
762
762
|
|
@@ -883,7 +883,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
883
883
|
@pulumi.getter(name="servicePrincipalId")
|
884
884
|
def service_principal_id(self) -> pulumi.Output[str]:
|
885
885
|
"""
|
886
|
-
The
|
886
|
+
The Application(Client) ID of the Service Principal.
|
887
887
|
"""
|
888
888
|
return pulumi.get(self, "service_principal_id")
|
889
889
|
|
@@ -896,7 +896,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
896
896
|
@pulumi.getter(name="workloadIdentityFederationIssuer")
|
897
897
|
def workload_identity_federation_issuer(self) -> pulumi.Output[str]:
|
898
898
|
"""
|
899
|
-
The issuer
|
899
|
+
The issuer if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`. This looks like `https://vstoken.dev.azure.com/00000000-0000-0000-0000-000000000000`, where the GUID is the Organization ID of your Azure DevOps Organisation.
|
900
900
|
"""
|
901
901
|
return pulumi.get(self, "workload_identity_federation_issuer")
|
902
902
|
|
@@ -904,7 +904,7 @@ class ServiceEndpointAzureEcr(pulumi.CustomResource):
|
|
904
904
|
@pulumi.getter(name="workloadIdentityFederationSubject")
|
905
905
|
def workload_identity_federation_subject(self) -> pulumi.Output[str]:
|
906
906
|
"""
|
907
|
-
The subject
|
907
|
+
The subject if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`. This looks like `sc://<organisation>/<project>/<service-connection-name>`.
|
908
908
|
"""
|
909
909
|
return pulumi.get(self, "workload_identity_federation_subject")
|
910
910
|
|
@@ -578,6 +578,10 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
|
|
578
578
|
"""
|
579
579
|
Manages Manual or Automatic Azure Resource Manager service endpoint within Azure DevOps.
|
580
580
|
|
581
|
+
~>**NOTE:**
|
582
|
+
If you receive an error message like:```Failed to obtain the Json Web Token(JWT) using service principal client ID. Exception message: A configuration issue is preventing authentication - check the error message from the server for details.```
|
583
|
+
You should check the secret of this Application or if you recently rotate the secret, wait a few minutes for Azure to propagate the secret.
|
584
|
+
|
581
585
|
## Requirements (Manual AzureRM Service Endpoint)
|
582
586
|
|
583
587
|
Before to create a service end point in Azure DevOps, you need to create a Service Principal in your Azure subscription.
|
@@ -781,6 +785,10 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
|
|
781
785
|
"""
|
782
786
|
Manages Manual or Automatic Azure Resource Manager service endpoint within Azure DevOps.
|
783
787
|
|
788
|
+
~>**NOTE:**
|
789
|
+
If you receive an error message like:```Failed to obtain the Json Web Token(JWT) using service principal client ID. Exception message: A configuration issue is preventing authentication - check the error message from the server for details.```
|
790
|
+
You should check the secret of this Application or if you recently rotate the secret, wait a few minutes for Azure to propagate the secret.
|
791
|
+
|
784
792
|
## Requirements (Manual AzureRM Service Endpoint)
|
785
793
|
|
786
794
|
Before to create a service end point in Azure DevOps, you need to create a Service Principal in your Azure subscription.
|
@@ -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
|
@@ -28,13 +28,14 @@ pulumi_azuredevops/feed_permission.py,sha256=pC3DF9GZw-o4OtPrrvtc9_SaFmZkR6U7mmo
|
|
28
28
|
pulumi_azuredevops/feed_retention_policy.py,sha256=3Sx5TBt62OsCMHAildZRXgMU_UBvwK2BauH_9Fv2Qn8,17481
|
29
29
|
pulumi_azuredevops/get_agent_queue.py,sha256=wsc-Vebn2Ie17MXV32-joWN2OzN-aAxdFOqZYdmorfk,6205
|
30
30
|
pulumi_azuredevops/get_area.py,sha256=HE_MlODm-HFhcAMWdtU6JgrQrhLwwJGBmYN5UE-SDaE,8881
|
31
|
-
pulumi_azuredevops/get_build_definition.py,sha256=
|
32
|
-
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
33
|
pulumi_azuredevops/get_descriptor.py,sha256=cWf6f3ugJULLPf_p6_BHrOXrSfO5bXjBhq70o0ZSl88,4837
|
34
34
|
pulumi_azuredevops/get_environment.py,sha256=yJJZieaTPx9JEXokImQzsTBMImOGBmPRtpP_WyrLH6o,7800
|
35
35
|
pulumi_azuredevops/get_feed.py,sha256=jYNvuftq2tsbV3uDPnVCKqRASZfLxwsyJjXn4SiyOsA,6294
|
36
36
|
pulumi_azuredevops/get_git_repository.py,sha256=dmh5lYyZYITDDN1fpAqpTFNs3TAi4d_sExezhGIYrS8,9585
|
37
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
|
38
39
|
pulumi_azuredevops/get_groups.py,sha256=gKVWkogAOgOvWS_9ppCMQ-KlebstmAZkOEGKUHdZ75E,5231
|
39
40
|
pulumi_azuredevops/get_identity_group.py,sha256=8Iru1ctYLKH5w7xw9zsRCIoYU1EseEoWBF8MHLOrpsI,6377
|
40
41
|
pulumi_azuredevops/get_identity_groups.py,sha256=EkMbq5QZgsRvP8CWFsENjGr7vmX7y8oyeZv2rls0zcQ,5470
|
@@ -55,9 +56,9 @@ pulumi_azuredevops/get_serviceendpoint_npm.py,sha256=oBX32cL_TfYHrE5Kbs3R2AO2Cdu
|
|
55
56
|
pulumi_azuredevops/get_serviceendpoint_sonarcloud.py,sha256=zl8K0LrBr1WmonjwjTW1eCwUDE1huC_nGq1_td8vOFo,7838
|
56
57
|
pulumi_azuredevops/get_storage_key.py,sha256=GRgeb0NX94Txo08BfZFUv832jtdSaFD33aPZyGKxA7M,4771
|
57
58
|
pulumi_azuredevops/get_team.py,sha256=tb9MJYOAqfuIOFRjDiwOKyrijsoaRpCz7vVIOS0jWrc,8419
|
58
|
-
pulumi_azuredevops/get_teams.py,sha256=
|
59
|
+
pulumi_azuredevops/get_teams.py,sha256=O83FCLlyutKIrVFttLpxbahWPBSBIOTEtwUF_luFQlc,6311
|
59
60
|
pulumi_azuredevops/get_user.py,sha256=p4R5ZYu1VRftziJ1iLEZ4N4CbKwPKiJD_SHzB2kGCtk,7376
|
60
|
-
pulumi_azuredevops/get_users.py,sha256=
|
61
|
+
pulumi_azuredevops/get_users.py,sha256=_z6zZ2q2WvhpdHINlJi4VKkkL2AvS6mCwwORnjJuKOw,9229
|
61
62
|
pulumi_azuredevops/get_variable_group.py,sha256=RPdUDTYtMu9Vu5CHqI0DdFybmqiEm0YR_jspRNioidI,8184
|
62
63
|
pulumi_azuredevops/git.py,sha256=T9RSx8e0merMuB7Mdite9GV7jUbpaurJ4CLFI4QNT2Y,22958
|
63
64
|
pulumi_azuredevops/git_permissions.py,sha256=RT0YX0cFm6Nr11gGK31fKXet_OPKrhC0Jf2wyrttABQ,42379
|
@@ -68,7 +69,7 @@ pulumi_azuredevops/group_entitlement.py,sha256=8Nk_fdtc4H5xRjV-GTPLSBBGDG0IgTz4D
|
|
68
69
|
pulumi_azuredevops/group_membership.py,sha256=OHCvLb_afAbp-SUcMSVyNjhcZZeqtkSq2ERFbCc4QkU,17158
|
69
70
|
pulumi_azuredevops/iterative_permissions.py,sha256=89CZFVT_b6psNJSfLmFzhpAWcyNFu4qh5zOffOWmjZk,20869
|
70
71
|
pulumi_azuredevops/library_permissions.py,sha256=5CdGyhxTpG-LwE94XVCvTfN7H1bzHF1OUJuRrDV1pmQ,18567
|
71
|
-
pulumi_azuredevops/outputs.py,sha256=
|
72
|
+
pulumi_azuredevops/outputs.py,sha256=jdng_7XYzjqZc-J-bOquPy2-Vj5I1viYWV3pNJZr0cw,241769
|
72
73
|
pulumi_azuredevops/pipeline_authorization.py,sha256=8NUSJ-IbnoFbEdyfAK4qWMfwe2wljwQZRlMiFLyai9o,24925
|
73
74
|
pulumi_azuredevops/pool.py,sha256=x_ALQSWHrbpfBGiePx6frk6GjgbuYBo6VtbJnVr4NMg,13811
|
74
75
|
pulumi_azuredevops/project.py,sha256=o2DQ0HdVub0NRAGVpA7w05Kcp3y9L05ipOArChcGsdM,26397
|
@@ -77,7 +78,7 @@ pulumi_azuredevops/project_permissions.py,sha256=bm3iBUeTtbusTceEDL2YkqyXn6VTXx5
|
|
77
78
|
pulumi_azuredevops/project_pipeline_settings.py,sha256=vqQeuzPSPrMRFN3aDq-pRFYmwlsrfLbzs8Y4rl5eb7w,26399
|
78
79
|
pulumi_azuredevops/project_tags.py,sha256=9s9Id1RqjP3rsXnmRzojCutVC9wY9i-nY2Z1hE4FRY0,10151
|
79
80
|
pulumi_azuredevops/provider.py,sha256=qqKeV3JDQU26YttRJ_P1mMV-1QbmcpT6wDn7kzhvb7I,29572
|
80
|
-
pulumi_azuredevops/pulumi-plugin.json,sha256=
|
81
|
+
pulumi_azuredevops/pulumi-plugin.json,sha256=Eu2a5wPZt89NiEfI3K6JaRohCNQXyYlYExGTM5XEljY,87
|
81
82
|
pulumi_azuredevops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
83
|
pulumi_azuredevops/queue.py,sha256=o4wwAW_pIBR7wDxGhNaGsLpWKGqqHIlztR99c_gSVm4,15192
|
83
84
|
pulumi_azuredevops/repository_policy_author_email_pattern.py,sha256=2x-PbyxE6rxiXE_OtAN20KfCiyNwWfaRJaHqd1QNv5g,21866
|
@@ -92,8 +93,8 @@ pulumi_azuredevops/securityrole_assignment.py,sha256=-ri2Cpily78xB1xcXeT7jyiQX-n
|
|
92
93
|
pulumi_azuredevops/service_endpoint_artifactory.py,sha256=2l6R2Su9NLgwS98PeKjclRy6Yvznfsjjzb7PNdU1GDE,23733
|
93
94
|
pulumi_azuredevops/service_endpoint_aws.py,sha256=Eg-EhuLJpNiozFLVxZviSflxt5vcwZwViL_YtcX_pHE,29235
|
94
95
|
pulumi_azuredevops/service_endpoint_azure_dev_ops.py,sha256=vNWFtD0k7B796QcUxQ-sJRKTwY1zFFbn4Q1XtxTWIUA,20285
|
95
|
-
pulumi_azuredevops/service_endpoint_azure_ecr.py,sha256=
|
96
|
-
pulumi_azuredevops/service_endpoint_azure_rm.py,sha256=
|
96
|
+
pulumi_azuredevops/service_endpoint_azure_ecr.py,sha256=7hOzEpVBtIxZtyn93VLyIuNSYBzz9QxOiAba-vmexTU,45873
|
97
|
+
pulumi_azuredevops/service_endpoint_azure_rm.py,sha256=IG4IPO2jCHyXevBinDw07aUSclyMjo1xEbyVjONO-pI,65998
|
97
98
|
pulumi_azuredevops/service_endpoint_bit_bucket.py,sha256=bvQ7ThOylAEspokrRYUiZzWnRv_e5TDJ8kkKI6HYkSw,16570
|
98
99
|
pulumi_azuredevops/service_endpoint_docker_registry.py,sha256=fg7aQQS5V8y0euuoAwOED37jEYbSaMfUuziF3urvIGg,25632
|
99
100
|
pulumi_azuredevops/service_endpoint_generic.py,sha256=CxwzHKgLTvRe7IQTX06NiHQ6ni2IHk5_onJ20ckk_jI,19691
|
@@ -146,7 +147,7 @@ pulumi_azuredevops/workitem.py,sha256=b4uOR8kZly1teKoNgLmtQp59iYU9F_E4WaNmtR7exQ
|
|
146
147
|
pulumi_azuredevops/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
147
148
|
pulumi_azuredevops/config/__init__.pyi,sha256=bhi-Wqoygl60BB8QnHwKCaPgXZrtNwoZFx1SqCKmkGw,2384
|
148
149
|
pulumi_azuredevops/config/vars.py,sha256=9lyVkQaBnkfIdLEfYMy4ObszQGUoSwNxcg7y_S7Yloc,4621
|
149
|
-
pulumi_azuredevops-3.8.
|
150
|
-
pulumi_azuredevops-3.8.
|
151
|
-
pulumi_azuredevops-3.8.
|
152
|
-
pulumi_azuredevops-3.8.
|
150
|
+
pulumi_azuredevops-3.8.0a1742224403.dist-info/METADATA,sha256=xOqXzG-O5tt9mUm5EEg1jTOlS0opksObwhs0sGBQdeA,2931
|
151
|
+
pulumi_azuredevops-3.8.0a1742224403.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
152
|
+
pulumi_azuredevops-3.8.0a1742224403.dist-info/top_level.txt,sha256=8XRS3pKzB2g--TmH4rHjGWlU-D7835DEQDV88pWf79Y,19
|
153
|
+
pulumi_azuredevops-3.8.0a1742224403.dist-info/RECORD,,
|
File without changes
|