pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.1.0a1726492828__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.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/alloydb/_inputs.py +94 -0
  3. pulumi_gcp/alloydb/cluster.py +94 -1
  4. pulumi_gcp/alloydb/outputs.py +79 -0
  5. pulumi_gcp/assuredworkloads/workload.py +135 -16
  6. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  7. pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
  8. pulumi_gcp/bigquery/_inputs.py +33 -0
  9. pulumi_gcp/bigquery/data_transfer_config.py +134 -6
  10. pulumi_gcp/bigquery/outputs.py +36 -0
  11. pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
  12. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
  13. pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
  14. pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
  15. pulumi_gcp/bigtable/_inputs.py +21 -1
  16. pulumi_gcp/bigtable/outputs.py +13 -1
  17. pulumi_gcp/bigtable/table.py +34 -0
  18. pulumi_gcp/certificateauthority/authority.py +14 -7
  19. pulumi_gcp/certificatemanager/__init__.py +1 -0
  20. pulumi_gcp/certificatemanager/certificate.py +28 -0
  21. pulumi_gcp/certificatemanager/get_certificates.py +150 -0
  22. pulumi_gcp/certificatemanager/outputs.py +322 -0
  23. pulumi_gcp/cloudbuild/_inputs.py +6 -6
  24. pulumi_gcp/cloudbuild/outputs.py +4 -4
  25. pulumi_gcp/cloudrun/_inputs.py +6 -12
  26. pulumi_gcp/cloudrun/outputs.py +8 -16
  27. pulumi_gcp/cloudrunv2/_inputs.py +72 -15
  28. pulumi_gcp/cloudrunv2/outputs.py +82 -16
  29. pulumi_gcp/cloudrunv2/service.py +50 -4
  30. pulumi_gcp/cloudtasks/_inputs.py +630 -0
  31. pulumi_gcp/cloudtasks/outputs.py +479 -0
  32. pulumi_gcp/cloudtasks/queue.py +238 -0
  33. pulumi_gcp/compute/_inputs.py +129 -9
  34. pulumi_gcp/compute/get_instance.py +1 -1
  35. pulumi_gcp/compute/health_check.py +114 -0
  36. pulumi_gcp/compute/instance.py +86 -4
  37. pulumi_gcp/compute/instance_template.py +66 -0
  38. pulumi_gcp/compute/interconnect.py +28 -21
  39. pulumi_gcp/compute/node_template.py +93 -0
  40. pulumi_gcp/compute/outputs.py +108 -6
  41. pulumi_gcp/compute/target_https_proxy.py +28 -0
  42. pulumi_gcp/container/_inputs.py +140 -3
  43. pulumi_gcp/container/attached_cluster.py +7 -7
  44. pulumi_gcp/container/outputs.py +174 -2
  45. pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
  46. pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
  47. pulumi_gcp/databasemigrationservice/outputs.py +109 -87
  48. pulumi_gcp/dataloss/_inputs.py +353 -1
  49. pulumi_gcp/dataloss/outputs.py +274 -3
  50. pulumi_gcp/dataproc/_inputs.py +27 -27
  51. pulumi_gcp/dataproc/outputs.py +18 -18
  52. pulumi_gcp/datastream/_inputs.py +69 -1
  53. pulumi_gcp/datastream/outputs.py +44 -2
  54. pulumi_gcp/datastream/stream.py +194 -7
  55. pulumi_gcp/discoveryengine/_inputs.py +188 -0
  56. pulumi_gcp/discoveryengine/data_store.py +14 -14
  57. pulumi_gcp/discoveryengine/outputs.py +153 -1
  58. pulumi_gcp/firebase/database_instance.py +7 -7
  59. pulumi_gcp/gkehub/_inputs.py +25 -1
  60. pulumi_gcp/gkehub/feature_membership.py +12 -6
  61. pulumi_gcp/gkehub/outputs.py +17 -1
  62. pulumi_gcp/iam/_inputs.py +196 -0
  63. pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
  64. pulumi_gcp/iam/outputs.py +295 -0
  65. pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
  66. pulumi_gcp/kms/__init__.py +2 -0
  67. pulumi_gcp/kms/autokey_config.py +10 -2
  68. pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
  69. pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
  70. pulumi_gcp/kms/outputs.py +164 -0
  71. pulumi_gcp/netapp/active_directory.py +6 -6
  72. pulumi_gcp/netapp/backup.py +6 -6
  73. pulumi_gcp/netapp/backup_policy.py +6 -6
  74. pulumi_gcp/netapp/backup_vault.py +6 -6
  75. pulumi_gcp/netapp/storage_pool.py +4 -4
  76. pulumi_gcp/netapp/volume.py +7 -0
  77. pulumi_gcp/networkconnectivity/_inputs.py +21 -1
  78. pulumi_gcp/networkconnectivity/outputs.py +15 -1
  79. pulumi_gcp/networkconnectivity/spoke.py +8 -0
  80. pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
  81. pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
  82. pulumi_gcp/organizations/get_project.py +13 -3
  83. pulumi_gcp/organizations/project.py +88 -3
  84. pulumi_gcp/parallelstore/instance.py +121 -121
  85. pulumi_gcp/projects/iam_member_remove.py +26 -0
  86. pulumi_gcp/projects/usage_export_bucket.py +38 -0
  87. pulumi_gcp/pubsub/_inputs.py +40 -0
  88. pulumi_gcp/pubsub/outputs.py +51 -1
  89. pulumi_gcp/pubsub/subscription.py +6 -0
  90. pulumi_gcp/pulumi-plugin.json +1 -1
  91. pulumi_gcp/redis/_inputs.py +419 -0
  92. pulumi_gcp/redis/cluster.py +123 -0
  93. pulumi_gcp/redis/outputs.py +315 -0
  94. pulumi_gcp/securitycenter/__init__.py +2 -0
  95. pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
  96. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
  97. pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
  98. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/RECORD +101 -95
  100. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/WHEEL +1 -1
  101. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/top_level.txt +0 -0
@@ -17,6 +17,22 @@ from .. import _utilities
17
17
  __all__ = [
18
18
  'QueueAppEngineRoutingOverrideArgs',
19
19
  'QueueAppEngineRoutingOverrideArgsDict',
20
+ 'QueueHttpTargetArgs',
21
+ 'QueueHttpTargetArgsDict',
22
+ 'QueueHttpTargetHeaderOverrideArgs',
23
+ 'QueueHttpTargetHeaderOverrideArgsDict',
24
+ 'QueueHttpTargetHeaderOverrideHeaderArgs',
25
+ 'QueueHttpTargetHeaderOverrideHeaderArgsDict',
26
+ 'QueueHttpTargetOauthTokenArgs',
27
+ 'QueueHttpTargetOauthTokenArgsDict',
28
+ 'QueueHttpTargetOidcTokenArgs',
29
+ 'QueueHttpTargetOidcTokenArgsDict',
30
+ 'QueueHttpTargetUriOverrideArgs',
31
+ 'QueueHttpTargetUriOverrideArgsDict',
32
+ 'QueueHttpTargetUriOverridePathOverrideArgs',
33
+ 'QueueHttpTargetUriOverridePathOverrideArgsDict',
34
+ 'QueueHttpTargetUriOverrideQueryOverrideArgs',
35
+ 'QueueHttpTargetUriOverrideQueryOverrideArgsDict',
20
36
  'QueueIamBindingConditionArgs',
21
37
  'QueueIamBindingConditionArgsDict',
22
38
  'QueueIamMemberConditionArgs',
@@ -135,6 +151,620 @@ class QueueAppEngineRoutingOverrideArgs:
135
151
  pulumi.set(self, "version", value)
136
152
 
137
153
 
154
+ if not MYPY:
155
+ class QueueHttpTargetArgsDict(TypedDict):
156
+ header_overrides: NotRequired[pulumi.Input[Sequence[pulumi.Input['QueueHttpTargetHeaderOverrideArgsDict']]]]
157
+ """
158
+ HTTP target headers.
159
+ This map contains the header field names and values.
160
+ Headers will be set when running the CreateTask and/or BufferTask.
161
+ These headers represent a subset of the headers that will be configured for the task's HTTP request.
162
+ Some HTTP request headers will be ignored or replaced.
163
+ Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values.
164
+ The size of the headers must be less than 80KB. Queue-level headers to override headers of all the tasks in the queue.
165
+ Structure is documented below.
166
+ """
167
+ http_method: NotRequired[pulumi.Input[str]]
168
+ """
169
+ The HTTP method to use for the request.
170
+ When specified, it overrides HttpRequest for the task.
171
+ Note that if the value is set to GET the body of the task will be ignored at execution time.
172
+ Possible values are: `HTTP_METHOD_UNSPECIFIED`, `POST`, `GET`, `HEAD`, `PUT`, `DELETE`, `PATCH`, `OPTIONS`.
173
+ """
174
+ oauth_token: NotRequired[pulumi.Input['QueueHttpTargetOauthTokenArgsDict']]
175
+ """
176
+ If specified, an OAuth token is generated and attached as the Authorization header in the HTTP request.
177
+ This type of authorization should generally be used only when calling Google APIs hosted on *.googleapis.com.
178
+ Note that both the service account email and the scope MUST be specified when using the queue-level authorization override.
179
+ Structure is documented below.
180
+ """
181
+ oidc_token: NotRequired[pulumi.Input['QueueHttpTargetOidcTokenArgsDict']]
182
+ """
183
+ If specified, an OIDC token is generated and attached as an Authorization header in the HTTP request.
184
+ This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
185
+ Note that both the service account email and the audience MUST be specified when using the queue-level authorization override.
186
+ Structure is documented below.
187
+ """
188
+ uri_override: NotRequired[pulumi.Input['QueueHttpTargetUriOverrideArgsDict']]
189
+ """
190
+ URI override.
191
+ When specified, overrides the execution URI for all the tasks in the queue.
192
+ Structure is documented below.
193
+ """
194
+ elif False:
195
+ QueueHttpTargetArgsDict: TypeAlias = Mapping[str, Any]
196
+
197
+ @pulumi.input_type
198
+ class QueueHttpTargetArgs:
199
+ def __init__(__self__, *,
200
+ header_overrides: Optional[pulumi.Input[Sequence[pulumi.Input['QueueHttpTargetHeaderOverrideArgs']]]] = None,
201
+ http_method: Optional[pulumi.Input[str]] = None,
202
+ oauth_token: Optional[pulumi.Input['QueueHttpTargetOauthTokenArgs']] = None,
203
+ oidc_token: Optional[pulumi.Input['QueueHttpTargetOidcTokenArgs']] = None,
204
+ uri_override: Optional[pulumi.Input['QueueHttpTargetUriOverrideArgs']] = None):
205
+ """
206
+ :param pulumi.Input[Sequence[pulumi.Input['QueueHttpTargetHeaderOverrideArgs']]] header_overrides: HTTP target headers.
207
+ This map contains the header field names and values.
208
+ Headers will be set when running the CreateTask and/or BufferTask.
209
+ These headers represent a subset of the headers that will be configured for the task's HTTP request.
210
+ Some HTTP request headers will be ignored or replaced.
211
+ Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values.
212
+ The size of the headers must be less than 80KB. Queue-level headers to override headers of all the tasks in the queue.
213
+ Structure is documented below.
214
+ :param pulumi.Input[str] http_method: The HTTP method to use for the request.
215
+ When specified, it overrides HttpRequest for the task.
216
+ Note that if the value is set to GET the body of the task will be ignored at execution time.
217
+ Possible values are: `HTTP_METHOD_UNSPECIFIED`, `POST`, `GET`, `HEAD`, `PUT`, `DELETE`, `PATCH`, `OPTIONS`.
218
+ :param pulumi.Input['QueueHttpTargetOauthTokenArgs'] oauth_token: If specified, an OAuth token is generated and attached as the Authorization header in the HTTP request.
219
+ This type of authorization should generally be used only when calling Google APIs hosted on *.googleapis.com.
220
+ Note that both the service account email and the scope MUST be specified when using the queue-level authorization override.
221
+ Structure is documented below.
222
+ :param pulumi.Input['QueueHttpTargetOidcTokenArgs'] oidc_token: If specified, an OIDC token is generated and attached as an Authorization header in the HTTP request.
223
+ This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
224
+ Note that both the service account email and the audience MUST be specified when using the queue-level authorization override.
225
+ Structure is documented below.
226
+ :param pulumi.Input['QueueHttpTargetUriOverrideArgs'] uri_override: URI override.
227
+ When specified, overrides the execution URI for all the tasks in the queue.
228
+ Structure is documented below.
229
+ """
230
+ if header_overrides is not None:
231
+ pulumi.set(__self__, "header_overrides", header_overrides)
232
+ if http_method is not None:
233
+ pulumi.set(__self__, "http_method", http_method)
234
+ if oauth_token is not None:
235
+ pulumi.set(__self__, "oauth_token", oauth_token)
236
+ if oidc_token is not None:
237
+ pulumi.set(__self__, "oidc_token", oidc_token)
238
+ if uri_override is not None:
239
+ pulumi.set(__self__, "uri_override", uri_override)
240
+
241
+ @property
242
+ @pulumi.getter(name="headerOverrides")
243
+ def header_overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['QueueHttpTargetHeaderOverrideArgs']]]]:
244
+ """
245
+ HTTP target headers.
246
+ This map contains the header field names and values.
247
+ Headers will be set when running the CreateTask and/or BufferTask.
248
+ These headers represent a subset of the headers that will be configured for the task's HTTP request.
249
+ Some HTTP request headers will be ignored or replaced.
250
+ Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values.
251
+ The size of the headers must be less than 80KB. Queue-level headers to override headers of all the tasks in the queue.
252
+ Structure is documented below.
253
+ """
254
+ return pulumi.get(self, "header_overrides")
255
+
256
+ @header_overrides.setter
257
+ def header_overrides(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['QueueHttpTargetHeaderOverrideArgs']]]]):
258
+ pulumi.set(self, "header_overrides", value)
259
+
260
+ @property
261
+ @pulumi.getter(name="httpMethod")
262
+ def http_method(self) -> Optional[pulumi.Input[str]]:
263
+ """
264
+ The HTTP method to use for the request.
265
+ When specified, it overrides HttpRequest for the task.
266
+ Note that if the value is set to GET the body of the task will be ignored at execution time.
267
+ Possible values are: `HTTP_METHOD_UNSPECIFIED`, `POST`, `GET`, `HEAD`, `PUT`, `DELETE`, `PATCH`, `OPTIONS`.
268
+ """
269
+ return pulumi.get(self, "http_method")
270
+
271
+ @http_method.setter
272
+ def http_method(self, value: Optional[pulumi.Input[str]]):
273
+ pulumi.set(self, "http_method", value)
274
+
275
+ @property
276
+ @pulumi.getter(name="oauthToken")
277
+ def oauth_token(self) -> Optional[pulumi.Input['QueueHttpTargetOauthTokenArgs']]:
278
+ """
279
+ If specified, an OAuth token is generated and attached as the Authorization header in the HTTP request.
280
+ This type of authorization should generally be used only when calling Google APIs hosted on *.googleapis.com.
281
+ Note that both the service account email and the scope MUST be specified when using the queue-level authorization override.
282
+ Structure is documented below.
283
+ """
284
+ return pulumi.get(self, "oauth_token")
285
+
286
+ @oauth_token.setter
287
+ def oauth_token(self, value: Optional[pulumi.Input['QueueHttpTargetOauthTokenArgs']]):
288
+ pulumi.set(self, "oauth_token", value)
289
+
290
+ @property
291
+ @pulumi.getter(name="oidcToken")
292
+ def oidc_token(self) -> Optional[pulumi.Input['QueueHttpTargetOidcTokenArgs']]:
293
+ """
294
+ If specified, an OIDC token is generated and attached as an Authorization header in the HTTP request.
295
+ This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
296
+ Note that both the service account email and the audience MUST be specified when using the queue-level authorization override.
297
+ Structure is documented below.
298
+ """
299
+ return pulumi.get(self, "oidc_token")
300
+
301
+ @oidc_token.setter
302
+ def oidc_token(self, value: Optional[pulumi.Input['QueueHttpTargetOidcTokenArgs']]):
303
+ pulumi.set(self, "oidc_token", value)
304
+
305
+ @property
306
+ @pulumi.getter(name="uriOverride")
307
+ def uri_override(self) -> Optional[pulumi.Input['QueueHttpTargetUriOverrideArgs']]:
308
+ """
309
+ URI override.
310
+ When specified, overrides the execution URI for all the tasks in the queue.
311
+ Structure is documented below.
312
+ """
313
+ return pulumi.get(self, "uri_override")
314
+
315
+ @uri_override.setter
316
+ def uri_override(self, value: Optional[pulumi.Input['QueueHttpTargetUriOverrideArgs']]):
317
+ pulumi.set(self, "uri_override", value)
318
+
319
+
320
+ if not MYPY:
321
+ class QueueHttpTargetHeaderOverrideArgsDict(TypedDict):
322
+ header: pulumi.Input['QueueHttpTargetHeaderOverrideHeaderArgsDict']
323
+ """
324
+ Header embodying a key and a value.
325
+ Structure is documented below.
326
+ """
327
+ elif False:
328
+ QueueHttpTargetHeaderOverrideArgsDict: TypeAlias = Mapping[str, Any]
329
+
330
+ @pulumi.input_type
331
+ class QueueHttpTargetHeaderOverrideArgs:
332
+ def __init__(__self__, *,
333
+ header: pulumi.Input['QueueHttpTargetHeaderOverrideHeaderArgs']):
334
+ """
335
+ :param pulumi.Input['QueueHttpTargetHeaderOverrideHeaderArgs'] header: Header embodying a key and a value.
336
+ Structure is documented below.
337
+ """
338
+ pulumi.set(__self__, "header", header)
339
+
340
+ @property
341
+ @pulumi.getter
342
+ def header(self) -> pulumi.Input['QueueHttpTargetHeaderOverrideHeaderArgs']:
343
+ """
344
+ Header embodying a key and a value.
345
+ Structure is documented below.
346
+ """
347
+ return pulumi.get(self, "header")
348
+
349
+ @header.setter
350
+ def header(self, value: pulumi.Input['QueueHttpTargetHeaderOverrideHeaderArgs']):
351
+ pulumi.set(self, "header", value)
352
+
353
+
354
+ if not MYPY:
355
+ class QueueHttpTargetHeaderOverrideHeaderArgsDict(TypedDict):
356
+ key: pulumi.Input[str]
357
+ """
358
+ The Key of the header.
359
+ """
360
+ value: pulumi.Input[str]
361
+ """
362
+ The Value of the header.
363
+ """
364
+ elif False:
365
+ QueueHttpTargetHeaderOverrideHeaderArgsDict: TypeAlias = Mapping[str, Any]
366
+
367
+ @pulumi.input_type
368
+ class QueueHttpTargetHeaderOverrideHeaderArgs:
369
+ def __init__(__self__, *,
370
+ key: pulumi.Input[str],
371
+ value: pulumi.Input[str]):
372
+ """
373
+ :param pulumi.Input[str] key: The Key of the header.
374
+ :param pulumi.Input[str] value: The Value of the header.
375
+ """
376
+ pulumi.set(__self__, "key", key)
377
+ pulumi.set(__self__, "value", value)
378
+
379
+ @property
380
+ @pulumi.getter
381
+ def key(self) -> pulumi.Input[str]:
382
+ """
383
+ The Key of the header.
384
+ """
385
+ return pulumi.get(self, "key")
386
+
387
+ @key.setter
388
+ def key(self, value: pulumi.Input[str]):
389
+ pulumi.set(self, "key", value)
390
+
391
+ @property
392
+ @pulumi.getter
393
+ def value(self) -> pulumi.Input[str]:
394
+ """
395
+ The Value of the header.
396
+ """
397
+ return pulumi.get(self, "value")
398
+
399
+ @value.setter
400
+ def value(self, value: pulumi.Input[str]):
401
+ pulumi.set(self, "value", value)
402
+
403
+
404
+ if not MYPY:
405
+ class QueueHttpTargetOauthTokenArgsDict(TypedDict):
406
+ service_account_email: pulumi.Input[str]
407
+ """
408
+ Service account email to be used for generating OAuth token.
409
+ The service account must be within the same project as the queue.
410
+ The caller must have iam.serviceAccounts.actAs permission for the service account.
411
+ """
412
+ scope: NotRequired[pulumi.Input[str]]
413
+ """
414
+ OAuth scope to be used for generating OAuth access token.
415
+ If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
416
+ """
417
+ elif False:
418
+ QueueHttpTargetOauthTokenArgsDict: TypeAlias = Mapping[str, Any]
419
+
420
+ @pulumi.input_type
421
+ class QueueHttpTargetOauthTokenArgs:
422
+ def __init__(__self__, *,
423
+ service_account_email: pulumi.Input[str],
424
+ scope: Optional[pulumi.Input[str]] = None):
425
+ """
426
+ :param pulumi.Input[str] service_account_email: Service account email to be used for generating OAuth token.
427
+ The service account must be within the same project as the queue.
428
+ The caller must have iam.serviceAccounts.actAs permission for the service account.
429
+ :param pulumi.Input[str] scope: OAuth scope to be used for generating OAuth access token.
430
+ If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
431
+ """
432
+ pulumi.set(__self__, "service_account_email", service_account_email)
433
+ if scope is not None:
434
+ pulumi.set(__self__, "scope", scope)
435
+
436
+ @property
437
+ @pulumi.getter(name="serviceAccountEmail")
438
+ def service_account_email(self) -> pulumi.Input[str]:
439
+ """
440
+ Service account email to be used for generating OAuth token.
441
+ The service account must be within the same project as the queue.
442
+ The caller must have iam.serviceAccounts.actAs permission for the service account.
443
+ """
444
+ return pulumi.get(self, "service_account_email")
445
+
446
+ @service_account_email.setter
447
+ def service_account_email(self, value: pulumi.Input[str]):
448
+ pulumi.set(self, "service_account_email", value)
449
+
450
+ @property
451
+ @pulumi.getter
452
+ def scope(self) -> Optional[pulumi.Input[str]]:
453
+ """
454
+ OAuth scope to be used for generating OAuth access token.
455
+ If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
456
+ """
457
+ return pulumi.get(self, "scope")
458
+
459
+ @scope.setter
460
+ def scope(self, value: Optional[pulumi.Input[str]]):
461
+ pulumi.set(self, "scope", value)
462
+
463
+
464
+ if not MYPY:
465
+ class QueueHttpTargetOidcTokenArgsDict(TypedDict):
466
+ service_account_email: pulumi.Input[str]
467
+ """
468
+ Service account email to be used for generating OIDC token.
469
+ The service account must be within the same project as the queue.
470
+ The caller must have iam.serviceAccounts.actAs permission for the service account.
471
+ """
472
+ audience: NotRequired[pulumi.Input[str]]
473
+ """
474
+ Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
475
+ """
476
+ elif False:
477
+ QueueHttpTargetOidcTokenArgsDict: TypeAlias = Mapping[str, Any]
478
+
479
+ @pulumi.input_type
480
+ class QueueHttpTargetOidcTokenArgs:
481
+ def __init__(__self__, *,
482
+ service_account_email: pulumi.Input[str],
483
+ audience: Optional[pulumi.Input[str]] = None):
484
+ """
485
+ :param pulumi.Input[str] service_account_email: Service account email to be used for generating OIDC token.
486
+ The service account must be within the same project as the queue.
487
+ The caller must have iam.serviceAccounts.actAs permission for the service account.
488
+ :param pulumi.Input[str] audience: Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
489
+ """
490
+ pulumi.set(__self__, "service_account_email", service_account_email)
491
+ if audience is not None:
492
+ pulumi.set(__self__, "audience", audience)
493
+
494
+ @property
495
+ @pulumi.getter(name="serviceAccountEmail")
496
+ def service_account_email(self) -> pulumi.Input[str]:
497
+ """
498
+ Service account email to be used for generating OIDC token.
499
+ The service account must be within the same project as the queue.
500
+ The caller must have iam.serviceAccounts.actAs permission for the service account.
501
+ """
502
+ return pulumi.get(self, "service_account_email")
503
+
504
+ @service_account_email.setter
505
+ def service_account_email(self, value: pulumi.Input[str]):
506
+ pulumi.set(self, "service_account_email", value)
507
+
508
+ @property
509
+ @pulumi.getter
510
+ def audience(self) -> Optional[pulumi.Input[str]]:
511
+ """
512
+ Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
513
+ """
514
+ return pulumi.get(self, "audience")
515
+
516
+ @audience.setter
517
+ def audience(self, value: Optional[pulumi.Input[str]]):
518
+ pulumi.set(self, "audience", value)
519
+
520
+
521
+ if not MYPY:
522
+ class QueueHttpTargetUriOverrideArgsDict(TypedDict):
523
+ host: NotRequired[pulumi.Input[str]]
524
+ """
525
+ Host override.
526
+ When specified, replaces the host part of the task URL.
527
+ For example, if the task URL is "https://www.google.com", and host value
528
+ is set to "example.net", the overridden URI will be changed to "https://example.net".
529
+ Host value cannot be an empty string (INVALID_ARGUMENT).
530
+ """
531
+ path_override: NotRequired[pulumi.Input['QueueHttpTargetUriOverridePathOverrideArgsDict']]
532
+ """
533
+ URI path.
534
+ When specified, replaces the existing path of the task URL.
535
+ Setting the path value to an empty string clears the URI path segment.
536
+ Structure is documented below.
537
+ """
538
+ port: NotRequired[pulumi.Input[str]]
539
+ """
540
+ Port override.
541
+ When specified, replaces the port part of the task URI.
542
+ For instance, for a URI http://www.google.com/foo and port=123, the overridden URI becomes http://www.google.com:123/foo.
543
+ Note that the port value must be a positive integer.
544
+ Setting the port to 0 (Zero) clears the URI port.
545
+ """
546
+ query_override: NotRequired[pulumi.Input['QueueHttpTargetUriOverrideQueryOverrideArgsDict']]
547
+ """
548
+ URI query.
549
+ When specified, replaces the query part of the task URI. Setting the query value to an empty string clears the URI query segment.
550
+ Structure is documented below.
551
+ """
552
+ scheme: NotRequired[pulumi.Input[str]]
553
+ """
554
+ Scheme override.
555
+ When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS).
556
+ Possible values are: `HTTP`, `HTTPS`.
557
+ """
558
+ uri_override_enforce_mode: NotRequired[pulumi.Input[str]]
559
+ """
560
+ URI Override Enforce Mode
561
+ When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS.
562
+ Possible values are: `ALWAYS`, `IF_NOT_EXISTS`.
563
+ """
564
+ elif False:
565
+ QueueHttpTargetUriOverrideArgsDict: TypeAlias = Mapping[str, Any]
566
+
567
+ @pulumi.input_type
568
+ class QueueHttpTargetUriOverrideArgs:
569
+ def __init__(__self__, *,
570
+ host: Optional[pulumi.Input[str]] = None,
571
+ path_override: Optional[pulumi.Input['QueueHttpTargetUriOverridePathOverrideArgs']] = None,
572
+ port: Optional[pulumi.Input[str]] = None,
573
+ query_override: Optional[pulumi.Input['QueueHttpTargetUriOverrideQueryOverrideArgs']] = None,
574
+ scheme: Optional[pulumi.Input[str]] = None,
575
+ uri_override_enforce_mode: Optional[pulumi.Input[str]] = None):
576
+ """
577
+ :param pulumi.Input[str] host: Host override.
578
+ When specified, replaces the host part of the task URL.
579
+ For example, if the task URL is "https://www.google.com", and host value
580
+ is set to "example.net", the overridden URI will be changed to "https://example.net".
581
+ Host value cannot be an empty string (INVALID_ARGUMENT).
582
+ :param pulumi.Input['QueueHttpTargetUriOverridePathOverrideArgs'] path_override: URI path.
583
+ When specified, replaces the existing path of the task URL.
584
+ Setting the path value to an empty string clears the URI path segment.
585
+ Structure is documented below.
586
+ :param pulumi.Input[str] port: Port override.
587
+ When specified, replaces the port part of the task URI.
588
+ For instance, for a URI http://www.google.com/foo and port=123, the overridden URI becomes http://www.google.com:123/foo.
589
+ Note that the port value must be a positive integer.
590
+ Setting the port to 0 (Zero) clears the URI port.
591
+ :param pulumi.Input['QueueHttpTargetUriOverrideQueryOverrideArgs'] query_override: URI query.
592
+ When specified, replaces the query part of the task URI. Setting the query value to an empty string clears the URI query segment.
593
+ Structure is documented below.
594
+ :param pulumi.Input[str] scheme: Scheme override.
595
+ When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS).
596
+ Possible values are: `HTTP`, `HTTPS`.
597
+ :param pulumi.Input[str] uri_override_enforce_mode: URI Override Enforce Mode
598
+ When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS.
599
+ Possible values are: `ALWAYS`, `IF_NOT_EXISTS`.
600
+ """
601
+ if host is not None:
602
+ pulumi.set(__self__, "host", host)
603
+ if path_override is not None:
604
+ pulumi.set(__self__, "path_override", path_override)
605
+ if port is not None:
606
+ pulumi.set(__self__, "port", port)
607
+ if query_override is not None:
608
+ pulumi.set(__self__, "query_override", query_override)
609
+ if scheme is not None:
610
+ pulumi.set(__self__, "scheme", scheme)
611
+ if uri_override_enforce_mode is not None:
612
+ pulumi.set(__self__, "uri_override_enforce_mode", uri_override_enforce_mode)
613
+
614
+ @property
615
+ @pulumi.getter
616
+ def host(self) -> Optional[pulumi.Input[str]]:
617
+ """
618
+ Host override.
619
+ When specified, replaces the host part of the task URL.
620
+ For example, if the task URL is "https://www.google.com", and host value
621
+ is set to "example.net", the overridden URI will be changed to "https://example.net".
622
+ Host value cannot be an empty string (INVALID_ARGUMENT).
623
+ """
624
+ return pulumi.get(self, "host")
625
+
626
+ @host.setter
627
+ def host(self, value: Optional[pulumi.Input[str]]):
628
+ pulumi.set(self, "host", value)
629
+
630
+ @property
631
+ @pulumi.getter(name="pathOverride")
632
+ def path_override(self) -> Optional[pulumi.Input['QueueHttpTargetUriOverridePathOverrideArgs']]:
633
+ """
634
+ URI path.
635
+ When specified, replaces the existing path of the task URL.
636
+ Setting the path value to an empty string clears the URI path segment.
637
+ Structure is documented below.
638
+ """
639
+ return pulumi.get(self, "path_override")
640
+
641
+ @path_override.setter
642
+ def path_override(self, value: Optional[pulumi.Input['QueueHttpTargetUriOverridePathOverrideArgs']]):
643
+ pulumi.set(self, "path_override", value)
644
+
645
+ @property
646
+ @pulumi.getter
647
+ def port(self) -> Optional[pulumi.Input[str]]:
648
+ """
649
+ Port override.
650
+ When specified, replaces the port part of the task URI.
651
+ For instance, for a URI http://www.google.com/foo and port=123, the overridden URI becomes http://www.google.com:123/foo.
652
+ Note that the port value must be a positive integer.
653
+ Setting the port to 0 (Zero) clears the URI port.
654
+ """
655
+ return pulumi.get(self, "port")
656
+
657
+ @port.setter
658
+ def port(self, value: Optional[pulumi.Input[str]]):
659
+ pulumi.set(self, "port", value)
660
+
661
+ @property
662
+ @pulumi.getter(name="queryOverride")
663
+ def query_override(self) -> Optional[pulumi.Input['QueueHttpTargetUriOverrideQueryOverrideArgs']]:
664
+ """
665
+ URI query.
666
+ When specified, replaces the query part of the task URI. Setting the query value to an empty string clears the URI query segment.
667
+ Structure is documented below.
668
+ """
669
+ return pulumi.get(self, "query_override")
670
+
671
+ @query_override.setter
672
+ def query_override(self, value: Optional[pulumi.Input['QueueHttpTargetUriOverrideQueryOverrideArgs']]):
673
+ pulumi.set(self, "query_override", value)
674
+
675
+ @property
676
+ @pulumi.getter
677
+ def scheme(self) -> Optional[pulumi.Input[str]]:
678
+ """
679
+ Scheme override.
680
+ When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS).
681
+ Possible values are: `HTTP`, `HTTPS`.
682
+ """
683
+ return pulumi.get(self, "scheme")
684
+
685
+ @scheme.setter
686
+ def scheme(self, value: Optional[pulumi.Input[str]]):
687
+ pulumi.set(self, "scheme", value)
688
+
689
+ @property
690
+ @pulumi.getter(name="uriOverrideEnforceMode")
691
+ def uri_override_enforce_mode(self) -> Optional[pulumi.Input[str]]:
692
+ """
693
+ URI Override Enforce Mode
694
+ When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS.
695
+ Possible values are: `ALWAYS`, `IF_NOT_EXISTS`.
696
+ """
697
+ return pulumi.get(self, "uri_override_enforce_mode")
698
+
699
+ @uri_override_enforce_mode.setter
700
+ def uri_override_enforce_mode(self, value: Optional[pulumi.Input[str]]):
701
+ pulumi.set(self, "uri_override_enforce_mode", value)
702
+
703
+
704
+ if not MYPY:
705
+ class QueueHttpTargetUriOverridePathOverrideArgsDict(TypedDict):
706
+ path: NotRequired[pulumi.Input[str]]
707
+ """
708
+ The URI path (e.g., /users/1234). Default is an empty string.
709
+ """
710
+ elif False:
711
+ QueueHttpTargetUriOverridePathOverrideArgsDict: TypeAlias = Mapping[str, Any]
712
+
713
+ @pulumi.input_type
714
+ class QueueHttpTargetUriOverridePathOverrideArgs:
715
+ def __init__(__self__, *,
716
+ path: Optional[pulumi.Input[str]] = None):
717
+ """
718
+ :param pulumi.Input[str] path: The URI path (e.g., /users/1234). Default is an empty string.
719
+ """
720
+ if path is not None:
721
+ pulumi.set(__self__, "path", path)
722
+
723
+ @property
724
+ @pulumi.getter
725
+ def path(self) -> Optional[pulumi.Input[str]]:
726
+ """
727
+ The URI path (e.g., /users/1234). Default is an empty string.
728
+ """
729
+ return pulumi.get(self, "path")
730
+
731
+ @path.setter
732
+ def path(self, value: Optional[pulumi.Input[str]]):
733
+ pulumi.set(self, "path", value)
734
+
735
+
736
+ if not MYPY:
737
+ class QueueHttpTargetUriOverrideQueryOverrideArgsDict(TypedDict):
738
+ query_params: NotRequired[pulumi.Input[str]]
739
+ """
740
+ The query parameters (e.g., qparam1=123&qparam2=456). Default is an empty string.
741
+ """
742
+ elif False:
743
+ QueueHttpTargetUriOverrideQueryOverrideArgsDict: TypeAlias = Mapping[str, Any]
744
+
745
+ @pulumi.input_type
746
+ class QueueHttpTargetUriOverrideQueryOverrideArgs:
747
+ def __init__(__self__, *,
748
+ query_params: Optional[pulumi.Input[str]] = None):
749
+ """
750
+ :param pulumi.Input[str] query_params: The query parameters (e.g., qparam1=123&qparam2=456). Default is an empty string.
751
+ """
752
+ if query_params is not None:
753
+ pulumi.set(__self__, "query_params", query_params)
754
+
755
+ @property
756
+ @pulumi.getter(name="queryParams")
757
+ def query_params(self) -> Optional[pulumi.Input[str]]:
758
+ """
759
+ The query parameters (e.g., qparam1=123&qparam2=456). Default is an empty string.
760
+ """
761
+ return pulumi.get(self, "query_params")
762
+
763
+ @query_params.setter
764
+ def query_params(self, value: Optional[pulumi.Input[str]]):
765
+ pulumi.set(self, "query_params", value)
766
+
767
+
138
768
  if not MYPY:
139
769
  class QueueIamBindingConditionArgsDict(TypedDict):
140
770
  expression: pulumi.Input[str]