pulumi-gcp 7.25.0a1717135845__py3-none-any.whl → 7.25.0a1717407024__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 (59) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/appengine/_inputs.py +18 -0
  3. pulumi_gcp/appengine/domain_mapping.py +1 -1
  4. pulumi_gcp/appengine/outputs.py +16 -0
  5. pulumi_gcp/bigquery/_inputs.py +286 -2
  6. pulumi_gcp/bigquery/outputs.py +289 -2
  7. pulumi_gcp/bigquery/table.py +77 -35
  8. pulumi_gcp/cloudfunctionsv2/function.py +0 -4
  9. pulumi_gcp/cloudrun/_inputs.py +80 -4
  10. pulumi_gcp/cloudrun/outputs.py +137 -4
  11. pulumi_gcp/composer/user_workloads_secret.py +4 -4
  12. pulumi_gcp/compute/__init__.py +1 -0
  13. pulumi_gcp/compute/_inputs.py +398 -176
  14. pulumi_gcp/compute/get_subnetworks.py +157 -0
  15. pulumi_gcp/compute/instance_group_membership.py +2 -2
  16. pulumi_gcp/compute/interconnect_attachment.py +82 -0
  17. pulumi_gcp/compute/network_endpoint.py +2 -2
  18. pulumi_gcp/compute/network_endpoint_list.py +2 -2
  19. pulumi_gcp/compute/outputs.py +609 -161
  20. pulumi_gcp/compute/region_ssl_policy.py +39 -40
  21. pulumi_gcp/compute/security_policy_rule.py +55 -1
  22. pulumi_gcp/container/_inputs.py +560 -0
  23. pulumi_gcp/container/outputs.py +1106 -51
  24. pulumi_gcp/dataplex/__init__.py +10 -0
  25. pulumi_gcp/dataplex/_inputs.py +160 -0
  26. pulumi_gcp/dataplex/aspect_type.py +1077 -0
  27. pulumi_gcp/dataplex/aspect_type_iam_binding.py +765 -0
  28. pulumi_gcp/dataplex/aspect_type_iam_member.py +765 -0
  29. pulumi_gcp/dataplex/aspect_type_iam_policy.py +604 -0
  30. pulumi_gcp/dataplex/entry_group.py +722 -0
  31. pulumi_gcp/dataplex/entry_group_iam_binding.py +765 -0
  32. pulumi_gcp/dataplex/entry_group_iam_member.py +765 -0
  33. pulumi_gcp/dataplex/entry_group_iam_policy.py +604 -0
  34. pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +164 -0
  35. pulumi_gcp/dataplex/get_entry_group_iam_policy.py +164 -0
  36. pulumi_gcp/dataplex/outputs.py +112 -0
  37. pulumi_gcp/datastream/connection_profile.py +47 -0
  38. pulumi_gcp/datastream/private_connection.py +47 -0
  39. pulumi_gcp/datastream/stream.py +47 -0
  40. pulumi_gcp/kms/__init__.py +2 -0
  41. pulumi_gcp/kms/autokey_config.py +366 -0
  42. pulumi_gcp/kms/key_handle.py +548 -0
  43. pulumi_gcp/networkservices/__init__.py +1 -0
  44. pulumi_gcp/networkservices/_inputs.py +245 -27
  45. pulumi_gcp/networkservices/lb_route_extension.py +663 -0
  46. pulumi_gcp/networkservices/lb_traffic_extension.py +28 -14
  47. pulumi_gcp/networkservices/outputs.py +251 -20
  48. pulumi_gcp/orgpolicy/policy.py +2 -2
  49. pulumi_gcp/pubsub/_inputs.py +16 -0
  50. pulumi_gcp/pubsub/outputs.py +25 -0
  51. pulumi_gcp/pubsub/subscription.py +8 -4
  52. pulumi_gcp/pulumi-plugin.json +1 -1
  53. pulumi_gcp/sql/user.py +4 -4
  54. pulumi_gcp/tpu/_inputs.py +2 -2
  55. pulumi_gcp/tpu/outputs.py +2 -2
  56. {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/METADATA +1 -1
  57. {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/RECORD +59 -45
  58. {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/WHEEL +0 -0
  59. {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/top_level.txt +0 -0
@@ -72,6 +72,9 @@ __all__ = [
72
72
  'HttpRouteRuleMatchHeaderArgs',
73
73
  'HttpRouteRuleMatchHeaderRangeMatchArgs',
74
74
  'HttpRouteRuleMatchQueryParameterArgs',
75
+ 'LbRouteExtensionExtensionChainArgs',
76
+ 'LbRouteExtensionExtensionChainExtensionArgs',
77
+ 'LbRouteExtensionExtensionChainMatchConditionArgs',
75
78
  'LbTrafficExtensionExtensionChainArgs',
76
79
  'LbTrafficExtensionExtensionChainExtensionArgs',
77
80
  'LbTrafficExtensionExtensionChainMatchConditionArgs',
@@ -4275,6 +4278,219 @@ class HttpRouteRuleMatchQueryParameterArgs:
4275
4278
  pulumi.set(self, "regex_match", value)
4276
4279
 
4277
4280
 
4281
+ @pulumi.input_type
4282
+ class LbRouteExtensionExtensionChainArgs:
4283
+ def __init__(__self__, *,
4284
+ extensions: pulumi.Input[Sequence[pulumi.Input['LbRouteExtensionExtensionChainExtensionArgs']]],
4285
+ match_condition: pulumi.Input['LbRouteExtensionExtensionChainMatchConditionArgs'],
4286
+ name: pulumi.Input[str]):
4287
+ """
4288
+ :param pulumi.Input[Sequence[pulumi.Input['LbRouteExtensionExtensionChainExtensionArgs']]] extensions: A set of extensions to execute for the matching request.
4289
+ At least one extension is required. Up to 3 extensions can be defined for each extension chain for
4290
+ LbTrafficExtension resource. LbRouteExtension chains are limited to 1 extension per extension chain.
4291
+ Structure is documented below.
4292
+ :param pulumi.Input['LbRouteExtensionExtensionChainMatchConditionArgs'] match_condition: Conditions under which this chain is invoked for a request.
4293
+ Structure is documented below.
4294
+ :param pulumi.Input[str] name: The name for this extension chain. The name is logged as part of the HTTP request logs.
4295
+ The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
4296
+ and can have a maximum length of 63 characters. Additionally, the first character must be a letter
4297
+ and the last character must be a letter or a number.
4298
+ """
4299
+ pulumi.set(__self__, "extensions", extensions)
4300
+ pulumi.set(__self__, "match_condition", match_condition)
4301
+ pulumi.set(__self__, "name", name)
4302
+
4303
+ @property
4304
+ @pulumi.getter
4305
+ def extensions(self) -> pulumi.Input[Sequence[pulumi.Input['LbRouteExtensionExtensionChainExtensionArgs']]]:
4306
+ """
4307
+ A set of extensions to execute for the matching request.
4308
+ At least one extension is required. Up to 3 extensions can be defined for each extension chain for
4309
+ LbTrafficExtension resource. LbRouteExtension chains are limited to 1 extension per extension chain.
4310
+ Structure is documented below.
4311
+ """
4312
+ return pulumi.get(self, "extensions")
4313
+
4314
+ @extensions.setter
4315
+ def extensions(self, value: pulumi.Input[Sequence[pulumi.Input['LbRouteExtensionExtensionChainExtensionArgs']]]):
4316
+ pulumi.set(self, "extensions", value)
4317
+
4318
+ @property
4319
+ @pulumi.getter(name="matchCondition")
4320
+ def match_condition(self) -> pulumi.Input['LbRouteExtensionExtensionChainMatchConditionArgs']:
4321
+ """
4322
+ Conditions under which this chain is invoked for a request.
4323
+ Structure is documented below.
4324
+ """
4325
+ return pulumi.get(self, "match_condition")
4326
+
4327
+ @match_condition.setter
4328
+ def match_condition(self, value: pulumi.Input['LbRouteExtensionExtensionChainMatchConditionArgs']):
4329
+ pulumi.set(self, "match_condition", value)
4330
+
4331
+ @property
4332
+ @pulumi.getter
4333
+ def name(self) -> pulumi.Input[str]:
4334
+ """
4335
+ The name for this extension chain. The name is logged as part of the HTTP request logs.
4336
+ The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
4337
+ and can have a maximum length of 63 characters. Additionally, the first character must be a letter
4338
+ and the last character must be a letter or a number.
4339
+ """
4340
+ return pulumi.get(self, "name")
4341
+
4342
+ @name.setter
4343
+ def name(self, value: pulumi.Input[str]):
4344
+ pulumi.set(self, "name", value)
4345
+
4346
+
4347
+ @pulumi.input_type
4348
+ class LbRouteExtensionExtensionChainExtensionArgs:
4349
+ def __init__(__self__, *,
4350
+ name: pulumi.Input[str],
4351
+ service: pulumi.Input[str],
4352
+ authority: Optional[pulumi.Input[str]] = None,
4353
+ fail_open: Optional[pulumi.Input[bool]] = None,
4354
+ forward_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4355
+ timeout: Optional[pulumi.Input[str]] = None):
4356
+ """
4357
+ :param pulumi.Input[str] name: The name for this extension. The name is logged as part of the HTTP request logs.
4358
+ The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
4359
+ and can have a maximum length of 63 characters. Additionally, the first character must be a letter
4360
+ and the last a letter or a number.
4361
+ :param pulumi.Input[str] service: The reference to the service that runs the extension. Must be a reference to a backend service
4362
+ :param pulumi.Input[str] authority: The :authority header in the gRPC request sent from Envoy to the extension service.
4363
+ :param pulumi.Input[bool] fail_open: Determines how the proxy behaves if the call to the extension fails or times out.
4364
+ When set to TRUE, request or response processing continues without error.
4365
+ Any subsequent extensions in the extension chain are also executed.
4366
+ When set to FALSE: * If response headers have not been delivered to the downstream client,
4367
+ a generic 500 error is returned to the client. The error response can be tailored by
4368
+ configuring a custom error response in the load balancer.
4369
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] forward_headers: List of the HTTP headers to forward to the extension (from the client or backend).
4370
+ If omitted, all headers are sent. Each element is a string indicating the header name.
4371
+
4372
+ - - -
4373
+ :param pulumi.Input[str] timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
4374
+ A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
4375
+ """
4376
+ pulumi.set(__self__, "name", name)
4377
+ pulumi.set(__self__, "service", service)
4378
+ if authority is not None:
4379
+ pulumi.set(__self__, "authority", authority)
4380
+ if fail_open is not None:
4381
+ pulumi.set(__self__, "fail_open", fail_open)
4382
+ if forward_headers is not None:
4383
+ pulumi.set(__self__, "forward_headers", forward_headers)
4384
+ if timeout is not None:
4385
+ pulumi.set(__self__, "timeout", timeout)
4386
+
4387
+ @property
4388
+ @pulumi.getter
4389
+ def name(self) -> pulumi.Input[str]:
4390
+ """
4391
+ The name for this extension. The name is logged as part of the HTTP request logs.
4392
+ The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
4393
+ and can have a maximum length of 63 characters. Additionally, the first character must be a letter
4394
+ and the last a letter or a number.
4395
+ """
4396
+ return pulumi.get(self, "name")
4397
+
4398
+ @name.setter
4399
+ def name(self, value: pulumi.Input[str]):
4400
+ pulumi.set(self, "name", value)
4401
+
4402
+ @property
4403
+ @pulumi.getter
4404
+ def service(self) -> pulumi.Input[str]:
4405
+ """
4406
+ The reference to the service that runs the extension. Must be a reference to a backend service
4407
+ """
4408
+ return pulumi.get(self, "service")
4409
+
4410
+ @service.setter
4411
+ def service(self, value: pulumi.Input[str]):
4412
+ pulumi.set(self, "service", value)
4413
+
4414
+ @property
4415
+ @pulumi.getter
4416
+ def authority(self) -> Optional[pulumi.Input[str]]:
4417
+ """
4418
+ The :authority header in the gRPC request sent from Envoy to the extension service.
4419
+ """
4420
+ return pulumi.get(self, "authority")
4421
+
4422
+ @authority.setter
4423
+ def authority(self, value: Optional[pulumi.Input[str]]):
4424
+ pulumi.set(self, "authority", value)
4425
+
4426
+ @property
4427
+ @pulumi.getter(name="failOpen")
4428
+ def fail_open(self) -> Optional[pulumi.Input[bool]]:
4429
+ """
4430
+ Determines how the proxy behaves if the call to the extension fails or times out.
4431
+ When set to TRUE, request or response processing continues without error.
4432
+ Any subsequent extensions in the extension chain are also executed.
4433
+ When set to FALSE: * If response headers have not been delivered to the downstream client,
4434
+ a generic 500 error is returned to the client. The error response can be tailored by
4435
+ configuring a custom error response in the load balancer.
4436
+ """
4437
+ return pulumi.get(self, "fail_open")
4438
+
4439
+ @fail_open.setter
4440
+ def fail_open(self, value: Optional[pulumi.Input[bool]]):
4441
+ pulumi.set(self, "fail_open", value)
4442
+
4443
+ @property
4444
+ @pulumi.getter(name="forwardHeaders")
4445
+ def forward_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
4446
+ """
4447
+ List of the HTTP headers to forward to the extension (from the client or backend).
4448
+ If omitted, all headers are sent. Each element is a string indicating the header name.
4449
+
4450
+ - - -
4451
+ """
4452
+ return pulumi.get(self, "forward_headers")
4453
+
4454
+ @forward_headers.setter
4455
+ def forward_headers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
4456
+ pulumi.set(self, "forward_headers", value)
4457
+
4458
+ @property
4459
+ @pulumi.getter
4460
+ def timeout(self) -> Optional[pulumi.Input[str]]:
4461
+ """
4462
+ Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
4463
+ A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
4464
+ """
4465
+ return pulumi.get(self, "timeout")
4466
+
4467
+ @timeout.setter
4468
+ def timeout(self, value: Optional[pulumi.Input[str]]):
4469
+ pulumi.set(self, "timeout", value)
4470
+
4471
+
4472
+ @pulumi.input_type
4473
+ class LbRouteExtensionExtensionChainMatchConditionArgs:
4474
+ def __init__(__self__, *,
4475
+ cel_expression: pulumi.Input[str]):
4476
+ """
4477
+ :param pulumi.Input[str] cel_expression: A Common Expression Language (CEL) expression that is used to match requests for which the extension chain is executed.
4478
+ """
4479
+ pulumi.set(__self__, "cel_expression", cel_expression)
4480
+
4481
+ @property
4482
+ @pulumi.getter(name="celExpression")
4483
+ def cel_expression(self) -> pulumi.Input[str]:
4484
+ """
4485
+ A Common Expression Language (CEL) expression that is used to match requests for which the extension chain is executed.
4486
+ """
4487
+ return pulumi.get(self, "cel_expression")
4488
+
4489
+ @cel_expression.setter
4490
+ def cel_expression(self, value: pulumi.Input[str]):
4491
+ pulumi.set(self, "cel_expression", value)
4492
+
4493
+
4278
4494
  @pulumi.input_type
4279
4495
  class LbTrafficExtensionExtensionChainArgs:
4280
4496
  def __init__(__self__, *,
@@ -4344,22 +4560,20 @@ class LbTrafficExtensionExtensionChainArgs:
4344
4560
  @pulumi.input_type
4345
4561
  class LbTrafficExtensionExtensionChainExtensionArgs:
4346
4562
  def __init__(__self__, *,
4347
- authority: pulumi.Input[str],
4348
4563
  name: pulumi.Input[str],
4349
4564
  service: pulumi.Input[str],
4350
- timeout: pulumi.Input[str],
4565
+ authority: Optional[pulumi.Input[str]] = None,
4351
4566
  fail_open: Optional[pulumi.Input[bool]] = None,
4352
4567
  forward_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4353
- supported_events: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
4568
+ supported_events: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4569
+ timeout: Optional[pulumi.Input[str]] = None):
4354
4570
  """
4355
- :param pulumi.Input[str] authority: The :authority header in the gRPC request sent from Envoy to the extension service.
4356
4571
  :param pulumi.Input[str] name: The name for this extension. The name is logged as part of the HTTP request logs.
4357
4572
  The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
4358
4573
  and can have a maximum length of 63 characters. Additionally, the first character must be a letter
4359
4574
  and the last a letter or a number.
4360
4575
  :param pulumi.Input[str] service: The reference to the service that runs the extension. Must be a reference to a backend service
4361
- :param pulumi.Input[str] timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
4362
- A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
4576
+ :param pulumi.Input[str] authority: The :authority header in the gRPC request sent from Envoy to the extension service.
4363
4577
  :param pulumi.Input[bool] fail_open: Determines how the proxy behaves if the call to the extension fails or times out.
4364
4578
  When set to TRUE, request or response processing continues without error.
4365
4579
  Any subsequent extensions in the extension chain are also executed.
@@ -4374,29 +4588,21 @@ class LbTrafficExtensionExtensionChainExtensionArgs:
4374
4588
  `RESPONSE_BODY`, `RESPONSE_BODY` and `RESPONSE_BODY`.
4375
4589
 
4376
4590
  - - -
4591
+ :param pulumi.Input[str] timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
4592
+ A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
4377
4593
  """
4378
- pulumi.set(__self__, "authority", authority)
4379
4594
  pulumi.set(__self__, "name", name)
4380
4595
  pulumi.set(__self__, "service", service)
4381
- pulumi.set(__self__, "timeout", timeout)
4596
+ if authority is not None:
4597
+ pulumi.set(__self__, "authority", authority)
4382
4598
  if fail_open is not None:
4383
4599
  pulumi.set(__self__, "fail_open", fail_open)
4384
4600
  if forward_headers is not None:
4385
4601
  pulumi.set(__self__, "forward_headers", forward_headers)
4386
4602
  if supported_events is not None:
4387
4603
  pulumi.set(__self__, "supported_events", supported_events)
4388
-
4389
- @property
4390
- @pulumi.getter
4391
- def authority(self) -> pulumi.Input[str]:
4392
- """
4393
- The :authority header in the gRPC request sent from Envoy to the extension service.
4394
- """
4395
- return pulumi.get(self, "authority")
4396
-
4397
- @authority.setter
4398
- def authority(self, value: pulumi.Input[str]):
4399
- pulumi.set(self, "authority", value)
4604
+ if timeout is not None:
4605
+ pulumi.set(__self__, "timeout", timeout)
4400
4606
 
4401
4607
  @property
4402
4608
  @pulumi.getter
@@ -4427,16 +4633,15 @@ class LbTrafficExtensionExtensionChainExtensionArgs:
4427
4633
 
4428
4634
  @property
4429
4635
  @pulumi.getter
4430
- def timeout(self) -> pulumi.Input[str]:
4636
+ def authority(self) -> Optional[pulumi.Input[str]]:
4431
4637
  """
4432
- Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
4433
- A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
4638
+ The :authority header in the gRPC request sent from Envoy to the extension service.
4434
4639
  """
4435
- return pulumi.get(self, "timeout")
4640
+ return pulumi.get(self, "authority")
4436
4641
 
4437
- @timeout.setter
4438
- def timeout(self, value: pulumi.Input[str]):
4439
- pulumi.set(self, "timeout", value)
4642
+ @authority.setter
4643
+ def authority(self, value: Optional[pulumi.Input[str]]):
4644
+ pulumi.set(self, "authority", value)
4440
4645
 
4441
4646
  @property
4442
4647
  @pulumi.getter(name="failOpen")
@@ -4485,6 +4690,19 @@ class LbTrafficExtensionExtensionChainExtensionArgs:
4485
4690
  def supported_events(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
4486
4691
  pulumi.set(self, "supported_events", value)
4487
4692
 
4693
+ @property
4694
+ @pulumi.getter
4695
+ def timeout(self) -> Optional[pulumi.Input[str]]:
4696
+ """
4697
+ Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
4698
+ A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
4699
+ """
4700
+ return pulumi.get(self, "timeout")
4701
+
4702
+ @timeout.setter
4703
+ def timeout(self, value: Optional[pulumi.Input[str]]):
4704
+ pulumi.set(self, "timeout", value)
4705
+
4488
4706
 
4489
4707
  @pulumi.input_type
4490
4708
  class LbTrafficExtensionExtensionChainMatchConditionArgs: