pulumi-azuredevops 3.11.0a1756322646__py3-none-any.whl → 3.11.0a1756506129__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/config/__init__.pyi +4 -6
- pulumi_azuredevops/config/vars.py +4 -6
- pulumi_azuredevops/provider.py +16 -24
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- {pulumi_azuredevops-3.11.0a1756322646.dist-info → pulumi_azuredevops-3.11.0a1756506129.dist-info}/METADATA +1 -1
- {pulumi_azuredevops-3.11.0a1756322646.dist-info → pulumi_azuredevops-3.11.0a1756506129.dist-info}/RECORD +8 -8
- {pulumi_azuredevops-3.11.0a1756322646.dist-info → pulumi_azuredevops-3.11.0a1756506129.dist-info}/WHEEL +0 -0
- {pulumi_azuredevops-3.11.0a1756322646.dist-info → pulumi_azuredevops-3.11.0a1756506129.dist-info}/top_level.txt +0 -0
@@ -46,12 +46,12 @@ The path to a file containing the Client ID which should be used.
|
|
46
46
|
|
47
47
|
clientSecret: Optional[str]
|
48
48
|
"""
|
49
|
-
Client secret for authenticating to
|
49
|
+
Client secret for authenticating to a service principal.
|
50
50
|
"""
|
51
51
|
|
52
52
|
clientSecretPath: Optional[str]
|
53
53
|
"""
|
54
|
-
Path to a file containing a client secret for authenticating to
|
54
|
+
Path to a file containing a client secret for authenticating to a service principal.
|
55
55
|
"""
|
56
56
|
|
57
57
|
oidcAzureServiceConnectionId: Optional[str]
|
@@ -61,14 +61,12 @@ The Azure Pipelines Service Connection ID to use for authentication.
|
|
61
61
|
|
62
62
|
oidcRequestToken: Optional[str]
|
63
63
|
"""
|
64
|
-
The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID
|
65
|
-
Connect.
|
64
|
+
The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID Connect.
|
66
65
|
"""
|
67
66
|
|
68
67
|
oidcRequestUrl: Optional[str]
|
69
68
|
"""
|
70
|
-
The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal
|
71
|
-
using OpenID Connect.
|
69
|
+
The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal using OpenID Connect.
|
72
70
|
"""
|
73
71
|
|
74
72
|
oidcToken: Optional[str]
|
@@ -65,14 +65,14 @@ class _ExportableConfig(types.ModuleType):
|
|
65
65
|
@_builtins.property
|
66
66
|
def client_secret(self) -> Optional[str]:
|
67
67
|
"""
|
68
|
-
Client secret for authenticating to
|
68
|
+
Client secret for authenticating to a service principal.
|
69
69
|
"""
|
70
70
|
return __config__.get('clientSecret')
|
71
71
|
|
72
72
|
@_builtins.property
|
73
73
|
def client_secret_path(self) -> Optional[str]:
|
74
74
|
"""
|
75
|
-
Path to a file containing a client secret for authenticating to
|
75
|
+
Path to a file containing a client secret for authenticating to a service principal.
|
76
76
|
"""
|
77
77
|
return __config__.get('clientSecretPath')
|
78
78
|
|
@@ -86,16 +86,14 @@ class _ExportableConfig(types.ModuleType):
|
|
86
86
|
@_builtins.property
|
87
87
|
def oidc_request_token(self) -> Optional[str]:
|
88
88
|
"""
|
89
|
-
The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID
|
90
|
-
Connect.
|
89
|
+
The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID Connect.
|
91
90
|
"""
|
92
91
|
return __config__.get('oidcRequestToken')
|
93
92
|
|
94
93
|
@_builtins.property
|
95
94
|
def oidc_request_url(self) -> Optional[str]:
|
96
95
|
"""
|
97
|
-
The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal
|
98
|
-
using OpenID Connect.
|
96
|
+
The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal using OpenID Connect.
|
99
97
|
"""
|
100
98
|
return __config__.get('oidcRequestUrl')
|
101
99
|
|
pulumi_azuredevops/provider.py
CHANGED
@@ -46,13 +46,11 @@ class ProviderArgs:
|
|
46
46
|
:param pulumi.Input[_builtins.str] client_certificate_path: Path to a certificate to use to authenticate to the service principal.
|
47
47
|
:param pulumi.Input[_builtins.str] client_id: The service principal client id which should be used for AAD auth.
|
48
48
|
:param pulumi.Input[_builtins.str] client_id_file_path: The path to a file containing the Client ID which should be used.
|
49
|
-
:param pulumi.Input[_builtins.str] client_secret: Client secret for authenticating to
|
50
|
-
:param pulumi.Input[_builtins.str] client_secret_path: Path to a file containing a client secret for authenticating to
|
49
|
+
:param pulumi.Input[_builtins.str] client_secret: Client secret for authenticating to a service principal.
|
50
|
+
:param pulumi.Input[_builtins.str] client_secret_path: Path to a file containing a client secret for authenticating to a service principal.
|
51
51
|
:param pulumi.Input[_builtins.str] oidc_azure_service_connection_id: The Azure Pipelines Service Connection ID to use for authentication.
|
52
|
-
:param pulumi.Input[_builtins.str] oidc_request_token: The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID
|
53
|
-
|
54
|
-
:param pulumi.Input[_builtins.str] oidc_request_url: The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal
|
55
|
-
using OpenID Connect.
|
52
|
+
:param pulumi.Input[_builtins.str] oidc_request_token: The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID Connect.
|
53
|
+
:param pulumi.Input[_builtins.str] oidc_request_url: The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal using OpenID Connect.
|
56
54
|
:param pulumi.Input[_builtins.str] oidc_token: OIDC token to authenticate as a service principal.
|
57
55
|
:param pulumi.Input[_builtins.str] oidc_token_file_path: OIDC token from file to authenticate as a service principal.
|
58
56
|
:param pulumi.Input[_builtins.str] org_service_url: The url of the Azure DevOps instance which should be used.
|
@@ -179,7 +177,7 @@ class ProviderArgs:
|
|
179
177
|
@pulumi.getter(name="clientSecret")
|
180
178
|
def client_secret(self) -> Optional[pulumi.Input[_builtins.str]]:
|
181
179
|
"""
|
182
|
-
Client secret for authenticating to
|
180
|
+
Client secret for authenticating to a service principal.
|
183
181
|
"""
|
184
182
|
return pulumi.get(self, "client_secret")
|
185
183
|
|
@@ -191,7 +189,7 @@ class ProviderArgs:
|
|
191
189
|
@pulumi.getter(name="clientSecretPath")
|
192
190
|
def client_secret_path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
193
191
|
"""
|
194
|
-
Path to a file containing a client secret for authenticating to
|
192
|
+
Path to a file containing a client secret for authenticating to a service principal.
|
195
193
|
"""
|
196
194
|
return pulumi.get(self, "client_secret_path")
|
197
195
|
|
@@ -215,8 +213,7 @@ class ProviderArgs:
|
|
215
213
|
@pulumi.getter(name="oidcRequestToken")
|
216
214
|
def oidc_request_token(self) -> Optional[pulumi.Input[_builtins.str]]:
|
217
215
|
"""
|
218
|
-
The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID
|
219
|
-
Connect.
|
216
|
+
The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID Connect.
|
220
217
|
"""
|
221
218
|
return pulumi.get(self, "oidc_request_token")
|
222
219
|
|
@@ -228,8 +225,7 @@ class ProviderArgs:
|
|
228
225
|
@pulumi.getter(name="oidcRequestUrl")
|
229
226
|
def oidc_request_url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
230
227
|
"""
|
231
|
-
The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal
|
232
|
-
using OpenID Connect.
|
228
|
+
The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal using OpenID Connect.
|
233
229
|
"""
|
234
230
|
return pulumi.get(self, "oidc_request_url")
|
235
231
|
|
@@ -374,13 +370,11 @@ class Provider(pulumi.ProviderResource):
|
|
374
370
|
:param pulumi.Input[_builtins.str] client_certificate_path: Path to a certificate to use to authenticate to the service principal.
|
375
371
|
:param pulumi.Input[_builtins.str] client_id: The service principal client id which should be used for AAD auth.
|
376
372
|
:param pulumi.Input[_builtins.str] client_id_file_path: The path to a file containing the Client ID which should be used.
|
377
|
-
:param pulumi.Input[_builtins.str] client_secret: Client secret for authenticating to
|
378
|
-
:param pulumi.Input[_builtins.str] client_secret_path: Path to a file containing a client secret for authenticating to
|
373
|
+
:param pulumi.Input[_builtins.str] client_secret: Client secret for authenticating to a service principal.
|
374
|
+
:param pulumi.Input[_builtins.str] client_secret_path: Path to a file containing a client secret for authenticating to a service principal.
|
379
375
|
:param pulumi.Input[_builtins.str] oidc_azure_service_connection_id: The Azure Pipelines Service Connection ID to use for authentication.
|
380
|
-
:param pulumi.Input[_builtins.str] oidc_request_token: The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID
|
381
|
-
|
382
|
-
:param pulumi.Input[_builtins.str] oidc_request_url: The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal
|
383
|
-
using OpenID Connect.
|
376
|
+
:param pulumi.Input[_builtins.str] oidc_request_token: The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID Connect.
|
377
|
+
:param pulumi.Input[_builtins.str] oidc_request_url: The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal using OpenID Connect.
|
384
378
|
:param pulumi.Input[_builtins.str] oidc_token: OIDC token to authenticate as a service principal.
|
385
379
|
:param pulumi.Input[_builtins.str] oidc_token_file_path: OIDC token from file to authenticate as a service principal.
|
386
380
|
:param pulumi.Input[_builtins.str] org_service_url: The url of the Azure DevOps instance which should be used.
|
@@ -518,7 +512,7 @@ class Provider(pulumi.ProviderResource):
|
|
518
512
|
@pulumi.getter(name="clientSecret")
|
519
513
|
def client_secret(self) -> pulumi.Output[Optional[_builtins.str]]:
|
520
514
|
"""
|
521
|
-
Client secret for authenticating to
|
515
|
+
Client secret for authenticating to a service principal.
|
522
516
|
"""
|
523
517
|
return pulumi.get(self, "client_secret")
|
524
518
|
|
@@ -526,7 +520,7 @@ class Provider(pulumi.ProviderResource):
|
|
526
520
|
@pulumi.getter(name="clientSecretPath")
|
527
521
|
def client_secret_path(self) -> pulumi.Output[Optional[_builtins.str]]:
|
528
522
|
"""
|
529
|
-
Path to a file containing a client secret for authenticating to
|
523
|
+
Path to a file containing a client secret for authenticating to a service principal.
|
530
524
|
"""
|
531
525
|
return pulumi.get(self, "client_secret_path")
|
532
526
|
|
@@ -542,8 +536,7 @@ class Provider(pulumi.ProviderResource):
|
|
542
536
|
@pulumi.getter(name="oidcRequestToken")
|
543
537
|
def oidc_request_token(self) -> pulumi.Output[Optional[_builtins.str]]:
|
544
538
|
"""
|
545
|
-
The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID
|
546
|
-
Connect.
|
539
|
+
The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID Connect.
|
547
540
|
"""
|
548
541
|
return pulumi.get(self, "oidc_request_token")
|
549
542
|
|
@@ -551,8 +544,7 @@ class Provider(pulumi.ProviderResource):
|
|
551
544
|
@pulumi.getter(name="oidcRequestUrl")
|
552
545
|
def oidc_request_url(self) -> pulumi.Output[Optional[_builtins.str]]:
|
553
546
|
"""
|
554
|
-
The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal
|
555
|
-
using OpenID Connect.
|
547
|
+
The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal using OpenID Connect.
|
556
548
|
"""
|
557
549
|
return pulumi.get(self, "oidc_request_url")
|
558
550
|
|
@@ -80,8 +80,8 @@ pulumi_azuredevops/project_features.py,sha256=E_agNojL1R3XW6x5I9UAvyVG23a5bbYYBL
|
|
80
80
|
pulumi_azuredevops/project_permissions.py,sha256=c_q4Tsitk2VGsSvnPjwOCcLxqIRjGUP15ujXpH9pHH4,33333
|
81
81
|
pulumi_azuredevops/project_pipeline_settings.py,sha256=wuTbsSs3Hog_gjDFWA3kQChxQC5KojsPYItdHil0v5M,27676
|
82
82
|
pulumi_azuredevops/project_tags.py,sha256=n00a9M04nebYwPAzSXtrj6T4HNmFKXh_qY6i1e36Yfo,10554
|
83
|
-
pulumi_azuredevops/provider.py,sha256=
|
84
|
-
pulumi_azuredevops/pulumi-plugin.json,sha256=
|
83
|
+
pulumi_azuredevops/provider.py,sha256=aBaL19xN1DhIbLK8NXWbtLcQ3bYB3RSRCarOSBk7rko,32292
|
84
|
+
pulumi_azuredevops/pulumi-plugin.json,sha256=PRbiYEtziOSnuZ6PtMP-JcMx0s2r5DWlk3RX8OwwMOQ,88
|
85
85
|
pulumi_azuredevops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
86
|
pulumi_azuredevops/queue.py,sha256=Vgpiuj0N7u5R249RDjLs-JFHEhDs_fk8de5tCjcJZes,15753
|
87
87
|
pulumi_azuredevops/repository_policy_author_email_pattern.py,sha256=k7gOssM0fBlpnYvR8TybwF_4-rqNLN65856Ew7khsfg,22825
|
@@ -150,9 +150,9 @@ pulumi_azuredevops/wiki_page.py,sha256=JIAa_tmOLeBG6cSGxHo7SVIW2V_JsqaJGAm3X09o8
|
|
150
150
|
pulumi_azuredevops/work_item_query_permissions.py,sha256=EdHO2rxbPvflOdhO2Aw-WOyh1nPsYmm7KKltM40RpbA,26897
|
151
151
|
pulumi_azuredevops/workitem.py,sha256=-N4JwYjfiR7fWCEgWzzzZfVqYYqiYcGsdjNPs3eZo2s,33230
|
152
152
|
pulumi_azuredevops/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
153
|
-
pulumi_azuredevops/config/__init__.pyi,sha256=
|
154
|
-
pulumi_azuredevops/config/vars.py,sha256=
|
155
|
-
pulumi_azuredevops-3.11.
|
156
|
-
pulumi_azuredevops-3.11.
|
157
|
-
pulumi_azuredevops-3.11.
|
158
|
-
pulumi_azuredevops-3.11.
|
153
|
+
pulumi_azuredevops/config/__init__.pyi,sha256=tM0u8ZGZyQjhaLwk53JTGlIBkSZDhILu1MSLa6i5jPA,2635
|
154
|
+
pulumi_azuredevops/config/vars.py,sha256=p35UHuLnzyciPFZJuE7Kw66PdOGWCAWWU2VzyVXJ2Dw,4988
|
155
|
+
pulumi_azuredevops-3.11.0a1756506129.dist-info/METADATA,sha256=WHm43J4ipoY_zpUhyJ9jsQ3IWXzApUMyBzGPe8tlaX0,2935
|
156
|
+
pulumi_azuredevops-3.11.0a1756506129.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
157
|
+
pulumi_azuredevops-3.11.0a1756506129.dist-info/top_level.txt,sha256=8XRS3pKzB2g--TmH4rHjGWlU-D7835DEQDV88pWf79Y,19
|
158
|
+
pulumi_azuredevops-3.11.0a1756506129.dist-info/RECORD,,
|
File without changes
|
File without changes
|