pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.2.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.
Files changed (128) hide show
  1. pulumi_gcp/__init__.py +62 -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/__init__.py +1 -0
  9. pulumi_gcp/bigquery/_inputs.py +33 -0
  10. pulumi_gcp/bigquery/data_transfer_config.py +134 -6
  11. pulumi_gcp/bigquery/get_tables.py +143 -0
  12. pulumi_gcp/bigquery/outputs.py +66 -0
  13. pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
  14. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
  15. pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
  16. pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
  17. pulumi_gcp/bigtable/_inputs.py +21 -1
  18. pulumi_gcp/bigtable/outputs.py +13 -1
  19. pulumi_gcp/bigtable/table.py +34 -0
  20. pulumi_gcp/certificateauthority/authority.py +14 -7
  21. pulumi_gcp/certificatemanager/__init__.py +1 -0
  22. pulumi_gcp/certificatemanager/certificate.py +28 -0
  23. pulumi_gcp/certificatemanager/get_certificates.py +150 -0
  24. pulumi_gcp/certificatemanager/outputs.py +322 -0
  25. pulumi_gcp/cloudbuild/_inputs.py +6 -6
  26. pulumi_gcp/cloudbuild/outputs.py +4 -4
  27. pulumi_gcp/cloudrun/_inputs.py +6 -12
  28. pulumi_gcp/cloudrun/outputs.py +8 -16
  29. pulumi_gcp/cloudrunv2/_inputs.py +72 -15
  30. pulumi_gcp/cloudrunv2/outputs.py +82 -16
  31. pulumi_gcp/cloudrunv2/service.py +50 -4
  32. pulumi_gcp/cloudtasks/_inputs.py +630 -0
  33. pulumi_gcp/cloudtasks/outputs.py +479 -0
  34. pulumi_gcp/cloudtasks/queue.py +238 -0
  35. pulumi_gcp/compute/__init__.py +1 -0
  36. pulumi_gcp/compute/_inputs.py +2300 -257
  37. pulumi_gcp/compute/get_instance.py +4 -1
  38. pulumi_gcp/compute/health_check.py +114 -0
  39. pulumi_gcp/compute/instance.py +86 -4
  40. pulumi_gcp/compute/instance_template.py +66 -0
  41. pulumi_gcp/compute/interconnect.py +28 -21
  42. pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
  43. pulumi_gcp/compute/node_template.py +93 -0
  44. pulumi_gcp/compute/outputs.py +1491 -6
  45. pulumi_gcp/compute/region_target_http_proxy.py +159 -0
  46. pulumi_gcp/compute/region_target_https_proxy.py +175 -0
  47. pulumi_gcp/compute/service_attachment.py +75 -0
  48. pulumi_gcp/compute/target_http_proxy.py +49 -28
  49. pulumi_gcp/compute/target_https_proxy.py +77 -28
  50. pulumi_gcp/config/__init__.pyi +4 -0
  51. pulumi_gcp/config/vars.py +8 -0
  52. pulumi_gcp/container/_inputs.py +236 -3
  53. pulumi_gcp/container/attached_cluster.py +61 -8
  54. pulumi_gcp/container/outputs.py +276 -2
  55. pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
  56. pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
  57. pulumi_gcp/databasemigrationservice/outputs.py +109 -87
  58. pulumi_gcp/dataloss/_inputs.py +353 -1
  59. pulumi_gcp/dataloss/outputs.py +274 -3
  60. pulumi_gcp/dataproc/_inputs.py +27 -27
  61. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  62. pulumi_gcp/dataproc/metastore_service.py +2 -0
  63. pulumi_gcp/dataproc/outputs.py +18 -18
  64. pulumi_gcp/datastream/_inputs.py +69 -1
  65. pulumi_gcp/datastream/outputs.py +44 -2
  66. pulumi_gcp/datastream/stream.py +201 -7
  67. pulumi_gcp/developerconnect/__init__.py +11 -0
  68. pulumi_gcp/developerconnect/_inputs.py +301 -0
  69. pulumi_gcp/developerconnect/connection.py +1034 -0
  70. pulumi_gcp/developerconnect/git_repository_link.py +873 -0
  71. pulumi_gcp/developerconnect/outputs.py +247 -0
  72. pulumi_gcp/discoveryengine/_inputs.py +188 -0
  73. pulumi_gcp/discoveryengine/data_store.py +14 -14
  74. pulumi_gcp/discoveryengine/outputs.py +153 -1
  75. pulumi_gcp/firebase/database_instance.py +7 -7
  76. pulumi_gcp/gkehub/_inputs.py +25 -1
  77. pulumi_gcp/gkehub/feature_membership.py +12 -6
  78. pulumi_gcp/gkehub/outputs.py +17 -1
  79. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  80. pulumi_gcp/gkeonprem/outputs.py +2 -2
  81. pulumi_gcp/iam/_inputs.py +196 -0
  82. pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
  83. pulumi_gcp/iam/outputs.py +295 -0
  84. pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
  85. pulumi_gcp/kms/__init__.py +2 -0
  86. pulumi_gcp/kms/autokey_config.py +10 -2
  87. pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
  88. pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
  89. pulumi_gcp/kms/outputs.py +164 -0
  90. pulumi_gcp/memorystore/__init__.py +10 -0
  91. pulumi_gcp/memorystore/_inputs.py +731 -0
  92. pulumi_gcp/memorystore/instance.py +1663 -0
  93. pulumi_gcp/memorystore/outputs.py +598 -0
  94. pulumi_gcp/netapp/active_directory.py +6 -6
  95. pulumi_gcp/netapp/backup.py +6 -6
  96. pulumi_gcp/netapp/backup_policy.py +6 -6
  97. pulumi_gcp/netapp/backup_vault.py +6 -6
  98. pulumi_gcp/netapp/storage_pool.py +4 -4
  99. pulumi_gcp/netapp/volume.py +108 -0
  100. pulumi_gcp/networkconnectivity/_inputs.py +21 -1
  101. pulumi_gcp/networkconnectivity/outputs.py +15 -1
  102. pulumi_gcp/networkconnectivity/spoke.py +8 -0
  103. pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
  104. pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
  105. pulumi_gcp/organizations/folder.py +52 -33
  106. pulumi_gcp/organizations/get_project.py +13 -3
  107. pulumi_gcp/organizations/project.py +88 -3
  108. pulumi_gcp/parallelstore/instance.py +121 -121
  109. pulumi_gcp/projects/iam_member_remove.py +26 -0
  110. pulumi_gcp/projects/usage_export_bucket.py +38 -0
  111. pulumi_gcp/provider.py +40 -0
  112. pulumi_gcp/pubsub/_inputs.py +40 -0
  113. pulumi_gcp/pubsub/outputs.py +51 -1
  114. pulumi_gcp/pubsub/subscription.py +6 -0
  115. pulumi_gcp/pulumi-plugin.json +1 -1
  116. pulumi_gcp/redis/_inputs.py +419 -0
  117. pulumi_gcp/redis/cluster.py +123 -0
  118. pulumi_gcp/redis/outputs.py +315 -0
  119. pulumi_gcp/securitycenter/__init__.py +2 -0
  120. pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
  121. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
  122. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  123. pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
  124. pulumi_gcp/vpcaccess/connector.py +21 -28
  125. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
  126. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +128 -111
  127. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +1 -1
  128. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,7 @@ class QueueArgs:
23
23
  def __init__(__self__, *,
24
24
  location: pulumi.Input[str],
25
25
  app_engine_routing_override: Optional[pulumi.Input['QueueAppEngineRoutingOverrideArgs']] = None,
26
+ http_target: Optional[pulumi.Input['QueueHttpTargetArgs']] = None,
26
27
  name: Optional[pulumi.Input[str]] = None,
27
28
  project: Optional[pulumi.Input[str]] = None,
28
29
  rate_limits: Optional[pulumi.Input['QueueRateLimitsArgs']] = None,
@@ -37,6 +38,8 @@ class QueueArgs:
37
38
  :param pulumi.Input['QueueAppEngineRoutingOverrideArgs'] app_engine_routing_override: Overrides for task-level appEngineRouting. These settings apply only
38
39
  to App Engine tasks in this queue
39
40
  Structure is documented below.
41
+ :param pulumi.Input['QueueHttpTargetArgs'] http_target: Modifies HTTP target for HTTP tasks.
42
+ Structure is documented below.
40
43
  :param pulumi.Input[str] name: The queue name.
41
44
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
42
45
  If it is not provided, the provider project is used.
@@ -56,6 +59,8 @@ class QueueArgs:
56
59
  pulumi.set(__self__, "location", location)
57
60
  if app_engine_routing_override is not None:
58
61
  pulumi.set(__self__, "app_engine_routing_override", app_engine_routing_override)
62
+ if http_target is not None:
63
+ pulumi.set(__self__, "http_target", http_target)
59
64
  if name is not None:
60
65
  pulumi.set(__self__, "name", name)
61
66
  if project is not None:
@@ -96,6 +101,19 @@ class QueueArgs:
96
101
  def app_engine_routing_override(self, value: Optional[pulumi.Input['QueueAppEngineRoutingOverrideArgs']]):
97
102
  pulumi.set(self, "app_engine_routing_override", value)
98
103
 
104
+ @property
105
+ @pulumi.getter(name="httpTarget")
106
+ def http_target(self) -> Optional[pulumi.Input['QueueHttpTargetArgs']]:
107
+ """
108
+ Modifies HTTP target for HTTP tasks.
109
+ Structure is documented below.
110
+ """
111
+ return pulumi.get(self, "http_target")
112
+
113
+ @http_target.setter
114
+ def http_target(self, value: Optional[pulumi.Input['QueueHttpTargetArgs']]):
115
+ pulumi.set(self, "http_target", value)
116
+
99
117
  @property
100
118
  @pulumi.getter
101
119
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -171,6 +189,7 @@ class QueueArgs:
171
189
  class _QueueState:
172
190
  def __init__(__self__, *,
173
191
  app_engine_routing_override: Optional[pulumi.Input['QueueAppEngineRoutingOverrideArgs']] = None,
192
+ http_target: Optional[pulumi.Input['QueueHttpTargetArgs']] = None,
174
193
  location: Optional[pulumi.Input[str]] = None,
175
194
  name: Optional[pulumi.Input[str]] = None,
176
195
  project: Optional[pulumi.Input[str]] = None,
@@ -182,6 +201,8 @@ class _QueueState:
182
201
  :param pulumi.Input['QueueAppEngineRoutingOverrideArgs'] app_engine_routing_override: Overrides for task-level appEngineRouting. These settings apply only
183
202
  to App Engine tasks in this queue
184
203
  Structure is documented below.
204
+ :param pulumi.Input['QueueHttpTargetArgs'] http_target: Modifies HTTP target for HTTP tasks.
205
+ Structure is documented below.
185
206
  :param pulumi.Input[str] location: The location of the queue
186
207
 
187
208
 
@@ -204,6 +225,8 @@ class _QueueState:
204
225
  """
205
226
  if app_engine_routing_override is not None:
206
227
  pulumi.set(__self__, "app_engine_routing_override", app_engine_routing_override)
228
+ if http_target is not None:
229
+ pulumi.set(__self__, "http_target", http_target)
207
230
  if location is not None:
208
231
  pulumi.set(__self__, "location", location)
209
232
  if name is not None:
@@ -231,6 +254,19 @@ class _QueueState:
231
254
  def app_engine_routing_override(self, value: Optional[pulumi.Input['QueueAppEngineRoutingOverrideArgs']]):
232
255
  pulumi.set(self, "app_engine_routing_override", value)
233
256
 
257
+ @property
258
+ @pulumi.getter(name="httpTarget")
259
+ def http_target(self) -> Optional[pulumi.Input['QueueHttpTargetArgs']]:
260
+ """
261
+ Modifies HTTP target for HTTP tasks.
262
+ Structure is documented below.
263
+ """
264
+ return pulumi.get(self, "http_target")
265
+
266
+ @http_target.setter
267
+ def http_target(self, value: Optional[pulumi.Input['QueueHttpTargetArgs']]):
268
+ pulumi.set(self, "http_target", value)
269
+
234
270
  @property
235
271
  @pulumi.getter
236
272
  def location(self) -> Optional[pulumi.Input[str]]:
@@ -323,6 +359,7 @@ class Queue(pulumi.CustomResource):
323
359
  resource_name: str,
324
360
  opts: Optional[pulumi.ResourceOptions] = None,
325
361
  app_engine_routing_override: Optional[pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']]] = None,
362
+ http_target: Optional[pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']]] = None,
326
363
  location: Optional[pulumi.Input[str]] = None,
327
364
  name: Optional[pulumi.Input[str]] = None,
328
365
  project: Optional[pulumi.Input[str]] = None,
@@ -374,6 +411,98 @@ class Queue(pulumi.CustomResource):
374
411
  "sampling_ratio": 0.9,
375
412
  })
376
413
  ```
414
+ ### Cloud Tasks Queue Http Target Oidc
415
+
416
+ ```python
417
+ import pulumi
418
+ import pulumi_gcp as gcp
419
+
420
+ oidc_service_account = gcp.serviceaccount.Account("oidc_service_account",
421
+ account_id="example-oidc",
422
+ display_name="Tasks Queue OIDC Service Account")
423
+ http_target_oidc = gcp.cloudtasks.Queue("http_target_oidc",
424
+ name="cloud-tasks-queue-http-target-oidc",
425
+ location="us-central1",
426
+ http_target={
427
+ "http_method": "POST",
428
+ "uri_override": {
429
+ "scheme": "HTTPS",
430
+ "host": "oidc.example.com",
431
+ "port": "8443",
432
+ "path_override": {
433
+ "path": "/users/1234",
434
+ },
435
+ "query_override": {
436
+ "query_params": "qparam1=123&qparam2=456",
437
+ },
438
+ "uri_override_enforce_mode": "IF_NOT_EXISTS",
439
+ },
440
+ "header_overrides": [
441
+ {
442
+ "header": {
443
+ "key": "AddSomethingElse",
444
+ "value": "MyOtherValue",
445
+ },
446
+ },
447
+ {
448
+ "header": {
449
+ "key": "AddMe",
450
+ "value": "MyValue",
451
+ },
452
+ },
453
+ ],
454
+ "oidc_token": {
455
+ "service_account_email": oidc_service_account.email,
456
+ "audience": "https://oidc.example.com",
457
+ },
458
+ })
459
+ ```
460
+ ### Cloud Tasks Queue Http Target Oauth
461
+
462
+ ```python
463
+ import pulumi
464
+ import pulumi_gcp as gcp
465
+
466
+ oauth_service_account = gcp.serviceaccount.Account("oauth_service_account",
467
+ account_id="example-oauth",
468
+ display_name="Tasks Queue OAuth Service Account")
469
+ http_target_oauth = gcp.cloudtasks.Queue("http_target_oauth",
470
+ name="cloud-tasks-queue-http-target-oauth",
471
+ location="us-central1",
472
+ http_target={
473
+ "http_method": "POST",
474
+ "uri_override": {
475
+ "scheme": "HTTPS",
476
+ "host": "oauth.example.com",
477
+ "port": "8443",
478
+ "path_override": {
479
+ "path": "/users/1234",
480
+ },
481
+ "query_override": {
482
+ "query_params": "qparam1=123&qparam2=456",
483
+ },
484
+ "uri_override_enforce_mode": "IF_NOT_EXISTS",
485
+ },
486
+ "header_overrides": [
487
+ {
488
+ "header": {
489
+ "key": "AddSomethingElse",
490
+ "value": "MyOtherValue",
491
+ },
492
+ },
493
+ {
494
+ "header": {
495
+ "key": "AddMe",
496
+ "value": "MyValue",
497
+ },
498
+ },
499
+ ],
500
+ "oauth_token": {
501
+ "service_account_email": oauth_service_account.email,
502
+ "scope": "openid https://www.googleapis.com/auth/userinfo.email",
503
+ },
504
+ })
505
+ ```
377
506
 
378
507
  ## Import
379
508
 
@@ -404,6 +533,8 @@ class Queue(pulumi.CustomResource):
404
533
  :param pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']] app_engine_routing_override: Overrides for task-level appEngineRouting. These settings apply only
405
534
  to App Engine tasks in this queue
406
535
  Structure is documented below.
536
+ :param pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']] http_target: Modifies HTTP target for HTTP tasks.
537
+ Structure is documented below.
407
538
  :param pulumi.Input[str] location: The location of the queue
408
539
 
409
540
 
@@ -474,6 +605,98 @@ class Queue(pulumi.CustomResource):
474
605
  "sampling_ratio": 0.9,
475
606
  })
476
607
  ```
608
+ ### Cloud Tasks Queue Http Target Oidc
609
+
610
+ ```python
611
+ import pulumi
612
+ import pulumi_gcp as gcp
613
+
614
+ oidc_service_account = gcp.serviceaccount.Account("oidc_service_account",
615
+ account_id="example-oidc",
616
+ display_name="Tasks Queue OIDC Service Account")
617
+ http_target_oidc = gcp.cloudtasks.Queue("http_target_oidc",
618
+ name="cloud-tasks-queue-http-target-oidc",
619
+ location="us-central1",
620
+ http_target={
621
+ "http_method": "POST",
622
+ "uri_override": {
623
+ "scheme": "HTTPS",
624
+ "host": "oidc.example.com",
625
+ "port": "8443",
626
+ "path_override": {
627
+ "path": "/users/1234",
628
+ },
629
+ "query_override": {
630
+ "query_params": "qparam1=123&qparam2=456",
631
+ },
632
+ "uri_override_enforce_mode": "IF_NOT_EXISTS",
633
+ },
634
+ "header_overrides": [
635
+ {
636
+ "header": {
637
+ "key": "AddSomethingElse",
638
+ "value": "MyOtherValue",
639
+ },
640
+ },
641
+ {
642
+ "header": {
643
+ "key": "AddMe",
644
+ "value": "MyValue",
645
+ },
646
+ },
647
+ ],
648
+ "oidc_token": {
649
+ "service_account_email": oidc_service_account.email,
650
+ "audience": "https://oidc.example.com",
651
+ },
652
+ })
653
+ ```
654
+ ### Cloud Tasks Queue Http Target Oauth
655
+
656
+ ```python
657
+ import pulumi
658
+ import pulumi_gcp as gcp
659
+
660
+ oauth_service_account = gcp.serviceaccount.Account("oauth_service_account",
661
+ account_id="example-oauth",
662
+ display_name="Tasks Queue OAuth Service Account")
663
+ http_target_oauth = gcp.cloudtasks.Queue("http_target_oauth",
664
+ name="cloud-tasks-queue-http-target-oauth",
665
+ location="us-central1",
666
+ http_target={
667
+ "http_method": "POST",
668
+ "uri_override": {
669
+ "scheme": "HTTPS",
670
+ "host": "oauth.example.com",
671
+ "port": "8443",
672
+ "path_override": {
673
+ "path": "/users/1234",
674
+ },
675
+ "query_override": {
676
+ "query_params": "qparam1=123&qparam2=456",
677
+ },
678
+ "uri_override_enforce_mode": "IF_NOT_EXISTS",
679
+ },
680
+ "header_overrides": [
681
+ {
682
+ "header": {
683
+ "key": "AddSomethingElse",
684
+ "value": "MyOtherValue",
685
+ },
686
+ },
687
+ {
688
+ "header": {
689
+ "key": "AddMe",
690
+ "value": "MyValue",
691
+ },
692
+ },
693
+ ],
694
+ "oauth_token": {
695
+ "service_account_email": oauth_service_account.email,
696
+ "scope": "openid https://www.googleapis.com/auth/userinfo.email",
697
+ },
698
+ })
699
+ ```
477
700
 
478
701
  ## Import
479
702
 
@@ -515,6 +738,7 @@ class Queue(pulumi.CustomResource):
515
738
  resource_name: str,
516
739
  opts: Optional[pulumi.ResourceOptions] = None,
517
740
  app_engine_routing_override: Optional[pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']]] = None,
741
+ http_target: Optional[pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']]] = None,
518
742
  location: Optional[pulumi.Input[str]] = None,
519
743
  name: Optional[pulumi.Input[str]] = None,
520
744
  project: Optional[pulumi.Input[str]] = None,
@@ -531,6 +755,7 @@ class Queue(pulumi.CustomResource):
531
755
  __props__ = QueueArgs.__new__(QueueArgs)
532
756
 
533
757
  __props__.__dict__["app_engine_routing_override"] = app_engine_routing_override
758
+ __props__.__dict__["http_target"] = http_target
534
759
  if location is None and not opts.urn:
535
760
  raise TypeError("Missing required property 'location'")
536
761
  __props__.__dict__["location"] = location
@@ -550,6 +775,7 @@ class Queue(pulumi.CustomResource):
550
775
  id: pulumi.Input[str],
551
776
  opts: Optional[pulumi.ResourceOptions] = None,
552
777
  app_engine_routing_override: Optional[pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']]] = None,
778
+ http_target: Optional[pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']]] = None,
553
779
  location: Optional[pulumi.Input[str]] = None,
554
780
  name: Optional[pulumi.Input[str]] = None,
555
781
  project: Optional[pulumi.Input[str]] = None,
@@ -566,6 +792,8 @@ class Queue(pulumi.CustomResource):
566
792
  :param pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']] app_engine_routing_override: Overrides for task-level appEngineRouting. These settings apply only
567
793
  to App Engine tasks in this queue
568
794
  Structure is documented below.
795
+ :param pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']] http_target: Modifies HTTP target for HTTP tasks.
796
+ Structure is documented below.
569
797
  :param pulumi.Input[str] location: The location of the queue
570
798
 
571
799
 
@@ -591,6 +819,7 @@ class Queue(pulumi.CustomResource):
591
819
  __props__ = _QueueState.__new__(_QueueState)
592
820
 
593
821
  __props__.__dict__["app_engine_routing_override"] = app_engine_routing_override
822
+ __props__.__dict__["http_target"] = http_target
594
823
  __props__.__dict__["location"] = location
595
824
  __props__.__dict__["name"] = name
596
825
  __props__.__dict__["project"] = project
@@ -609,6 +838,15 @@ class Queue(pulumi.CustomResource):
609
838
  """
610
839
  return pulumi.get(self, "app_engine_routing_override")
611
840
 
841
+ @property
842
+ @pulumi.getter(name="httpTarget")
843
+ def http_target(self) -> pulumi.Output[Optional['outputs.QueueHttpTarget']]:
844
+ """
845
+ Modifies HTTP target for HTTP tasks.
846
+ Structure is documented below.
847
+ """
848
+ return pulumi.get(self, "http_target")
849
+
612
850
  @property
613
851
  @pulumi.getter
614
852
  def location(self) -> pulumi.Output[str]:
@@ -127,6 +127,7 @@ from .network_endpoint_list import *
127
127
  from .network_firewall_policy import *
128
128
  from .network_firewall_policy_association import *
129
129
  from .network_firewall_policy_rule import *
130
+ from .network_firewall_policy_with_rules import *
130
131
  from .network_peering import *
131
132
  from .network_peering_routes_config import *
132
133
  from .node_group import *