pulumi-gcp 8.22.0a1741888019__py3-none-any.whl → 8.23.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.
- pulumi_gcp/__init__.py +32 -0
- pulumi_gcp/alloydb/_inputs.py +27 -1
- pulumi_gcp/alloydb/outputs.py +33 -2
- pulumi_gcp/applicationintegration/client.py +18 -24
- pulumi_gcp/bigquery/_inputs.py +20 -0
- pulumi_gcp/bigquery/outputs.py +12 -0
- pulumi_gcp/bigquery/table.py +61 -0
- pulumi_gcp/bigtable/table.py +7 -7
- pulumi_gcp/clouddeploy/_inputs.py +20 -0
- pulumi_gcp/clouddeploy/outputs.py +15 -1
- pulumi_gcp/cloudfunctions/function.py +11 -11
- pulumi_gcp/cloudfunctionsv2/function.py +24 -24
- pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +41 -2
- pulumi_gcp/cloudidentity/outputs.py +18 -38
- pulumi_gcp/compute/firewall_policy.py +20 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +2 -2
- pulumi_gcp/compute/subnetwork.py +109 -1
- pulumi_gcp/compute/target_https_proxy.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/get_attached_versions.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dataform/repository.py +49 -0
- pulumi_gcp/dataproc/get_metastore_service.py +26 -4
- pulumi_gcp/dataproc/metastore_federation.py +56 -0
- pulumi_gcp/dataproc/metastore_service.py +58 -2
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/_inputs.py +1758 -0
- pulumi_gcp/eventarc/outputs.py +1337 -0
- pulumi_gcp/eventarc/pipeline.py +1596 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +154 -0
- pulumi_gcp/firebase/app_hosting_backend.py +1303 -0
- pulumi_gcp/firebase/hosting_version.py +2 -2
- pulumi_gcp/firebase/outputs.py +127 -0
- pulumi_gcp/kms/get_key_rings.py +39 -2
- pulumi_gcp/managedkafka/__init__.py +2 -0
- pulumi_gcp/managedkafka/_inputs.py +263 -0
- pulumi_gcp/managedkafka/connect_cluster.py +795 -0
- pulumi_gcp/managedkafka/connector.py +695 -0
- pulumi_gcp/managedkafka/outputs.py +248 -0
- pulumi_gcp/memorystore/instance.py +7 -7
- pulumi_gcp/monitoring/uptime_check_config.py +2 -2
- pulumi_gcp/networksecurity/_inputs.py +643 -0
- pulumi_gcp/networksecurity/gateway_security_policy.py +0 -7
- pulumi_gcp/networksecurity/mirroring_deployment.py +22 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +20 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +24 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +28 -0
- pulumi_gcp/networksecurity/outputs.py +475 -0
- pulumi_gcp/networksecurity/tls_inspection_policy.py +14 -0
- pulumi_gcp/networkservices/gateway.py +242 -120
- pulumi_gcp/projects/__init__.py +2 -0
- pulumi_gcp/projects/get_iam_custom_role.py +198 -0
- pulumi_gcp/projects/get_iam_custom_roles.py +164 -0
- pulumi_gcp/projects/outputs.py +96 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/servicenetworking/peered_dns_domain.py +4 -0
- pulumi_gcp/sql/outputs.py +8 -8
- pulumi_gcp/storage/_inputs.py +14 -6
- pulumi_gcp/storage/insights_report_config.py +121 -20
- pulumi_gcp/storage/outputs.py +7 -4
- pulumi_gcp/workflows/workflow.py +75 -7
- {pulumi_gcp-8.22.0a1741888019.dist-info → pulumi_gcp-8.23.0.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.22.0a1741888019.dist-info → pulumi_gcp-8.23.0.dist-info}/RECORD +69 -63
- {pulumi_gcp-8.22.0a1741888019.dist-info → pulumi_gcp-8.23.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.22.0a1741888019.dist-info → pulumi_gcp-8.23.0.dist-info}/top_level.txt +0 -0
@@ -37,7 +37,6 @@ class GatewaySecurityPolicyArgs:
|
|
37
37
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
38
38
|
If it is not provided, the provider project is used.
|
39
39
|
:param pulumi.Input[str] tls_inspection_policy: Name of a TlsInspectionPolicy resource that defines how TLS inspection is performed for any rule that enables it.
|
40
|
-
Note: networksecurity.TlsInspectionPolicy resource is still in Beta therefore it will need to import the provider.
|
41
40
|
"""
|
42
41
|
if description is not None:
|
43
42
|
pulumi.set(__self__, "description", description)
|
@@ -109,7 +108,6 @@ class GatewaySecurityPolicyArgs:
|
|
109
108
|
def tls_inspection_policy(self) -> Optional[pulumi.Input[str]]:
|
110
109
|
"""
|
111
110
|
Name of a TlsInspectionPolicy resource that defines how TLS inspection is performed for any rule that enables it.
|
112
|
-
Note: networksecurity.TlsInspectionPolicy resource is still in Beta therefore it will need to import the provider.
|
113
111
|
"""
|
114
112
|
return pulumi.get(self, "tls_inspection_policy")
|
115
113
|
|
@@ -146,7 +144,6 @@ class _GatewaySecurityPolicyState:
|
|
146
144
|
If it is not provided, the provider project is used.
|
147
145
|
:param pulumi.Input[str] self_link: Server-defined URL of this resource.
|
148
146
|
:param pulumi.Input[str] tls_inspection_policy: Name of a TlsInspectionPolicy resource that defines how TLS inspection is performed for any rule that enables it.
|
149
|
-
Note: networksecurity.TlsInspectionPolicy resource is still in Beta therefore it will need to import the provider.
|
150
147
|
:param pulumi.Input[str] update_time: The timestamp when the resource was updated.
|
151
148
|
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
152
149
|
Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
@@ -253,7 +250,6 @@ class _GatewaySecurityPolicyState:
|
|
253
250
|
def tls_inspection_policy(self) -> Optional[pulumi.Input[str]]:
|
254
251
|
"""
|
255
252
|
Name of a TlsInspectionPolicy resource that defines how TLS inspection is performed for any rule that enables it.
|
256
|
-
Note: networksecurity.TlsInspectionPolicy resource is still in Beta therefore it will need to import the provider.
|
257
253
|
"""
|
258
254
|
return pulumi.get(self, "tls_inspection_policy")
|
259
255
|
|
@@ -428,7 +424,6 @@ class GatewaySecurityPolicy(pulumi.CustomResource):
|
|
428
424
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
429
425
|
If it is not provided, the provider project is used.
|
430
426
|
:param pulumi.Input[str] tls_inspection_policy: Name of a TlsInspectionPolicy resource that defines how TLS inspection is performed for any rule that enables it.
|
431
|
-
Note: networksecurity.TlsInspectionPolicy resource is still in Beta therefore it will need to import the provider.
|
432
427
|
"""
|
433
428
|
...
|
434
429
|
@overload
|
@@ -641,7 +636,6 @@ class GatewaySecurityPolicy(pulumi.CustomResource):
|
|
641
636
|
If it is not provided, the provider project is used.
|
642
637
|
:param pulumi.Input[str] self_link: Server-defined URL of this resource.
|
643
638
|
:param pulumi.Input[str] tls_inspection_policy: Name of a TlsInspectionPolicy resource that defines how TLS inspection is performed for any rule that enables it.
|
644
|
-
Note: networksecurity.TlsInspectionPolicy resource is still in Beta therefore it will need to import the provider.
|
645
639
|
:param pulumi.Input[str] update_time: The timestamp when the resource was updated.
|
646
640
|
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
647
641
|
Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
@@ -721,7 +715,6 @@ class GatewaySecurityPolicy(pulumi.CustomResource):
|
|
721
715
|
def tls_inspection_policy(self) -> pulumi.Output[Optional[str]]:
|
722
716
|
"""
|
723
717
|
Name of a TlsInspectionPolicy resource that defines how TLS inspection is performed for any rule that enables it.
|
724
|
-
Note: networksecurity.TlsInspectionPolicy resource is still in Beta therefore it will need to import the provider.
|
725
718
|
"""
|
726
719
|
return pulumi.get(self, "tls_inspection_policy")
|
727
720
|
|
@@ -458,6 +458,17 @@ class MirroringDeployment(pulumi.CustomResource):
|
|
458
458
|
project: Optional[pulumi.Input[str]] = None,
|
459
459
|
__props__=None):
|
460
460
|
"""
|
461
|
+
A deployment represents a zonal mirroring backend ready to accept
|
462
|
+
GENEVE-encapsulated replica traffic, e.g. a zonal instance group fronted by
|
463
|
+
an internal passthrough load balancer. Deployments are always part of a
|
464
|
+
global deployment group which represents a global mirroring service.
|
465
|
+
|
466
|
+
To get more information about MirroringDeployment, see:
|
467
|
+
|
468
|
+
* [API documentation](https://cloud.google.com/network-security-integration/docs/reference/rest/v1/projects.locations.mirroringDeployments)
|
469
|
+
* How-to Guides
|
470
|
+
* [Mirroring deployment overview](https://cloud.google.com/network-security-integration/docs/out-of-band/deployments-overview)
|
471
|
+
|
461
472
|
## Example Usage
|
462
473
|
|
463
474
|
### Network Security Mirroring Deployment Basic
|
@@ -564,6 +575,17 @@ class MirroringDeployment(pulumi.CustomResource):
|
|
564
575
|
args: MirroringDeploymentArgs,
|
565
576
|
opts: Optional[pulumi.ResourceOptions] = None):
|
566
577
|
"""
|
578
|
+
A deployment represents a zonal mirroring backend ready to accept
|
579
|
+
GENEVE-encapsulated replica traffic, e.g. a zonal instance group fronted by
|
580
|
+
an internal passthrough load balancer. Deployments are always part of a
|
581
|
+
global deployment group which represents a global mirroring service.
|
582
|
+
|
583
|
+
To get more information about MirroringDeployment, see:
|
584
|
+
|
585
|
+
* [API documentation](https://cloud.google.com/network-security-integration/docs/reference/rest/v1/projects.locations.mirroringDeployments)
|
586
|
+
* How-to Guides
|
587
|
+
* [Mirroring deployment overview](https://cloud.google.com/network-security-integration/docs/out-of-band/deployments-overview)
|
588
|
+
|
567
589
|
## Example Usage
|
568
590
|
|
569
591
|
### Network Security Mirroring Deployment Basic
|
@@ -436,6 +436,16 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
|
|
436
436
|
project: Optional[pulumi.Input[str]] = None,
|
437
437
|
__props__=None):
|
438
438
|
"""
|
439
|
+
A deployment group aggregates many zonal mirroring backends (deployments)
|
440
|
+
into a single global mirroring service. Consumers can connect this service
|
441
|
+
using an endpoint group.
|
442
|
+
|
443
|
+
To get more information about MirroringDeploymentGroup, see:
|
444
|
+
|
445
|
+
* [API documentation](https://cloud.google.com/network-security-integration/docs/reference/rest/v1/projects.locations.mirroringDeploymentGroups)
|
446
|
+
* How-to Guides
|
447
|
+
* [Mirroring deployment group overview](https://cloud.google.com/network-security-integration/docs/out-of-band/deployment-groups-overview)
|
448
|
+
|
439
449
|
## Example Usage
|
440
450
|
|
441
451
|
### Network Security Mirroring Deployment Group Basic
|
@@ -507,6 +517,16 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
|
|
507
517
|
args: MirroringDeploymentGroupArgs,
|
508
518
|
opts: Optional[pulumi.ResourceOptions] = None):
|
509
519
|
"""
|
520
|
+
A deployment group aggregates many zonal mirroring backends (deployments)
|
521
|
+
into a single global mirroring service. Consumers can connect this service
|
522
|
+
using an endpoint group.
|
523
|
+
|
524
|
+
To get more information about MirroringDeploymentGroup, see:
|
525
|
+
|
526
|
+
* [API documentation](https://cloud.google.com/network-security-integration/docs/reference/rest/v1/projects.locations.mirroringDeploymentGroups)
|
527
|
+
* How-to Guides
|
528
|
+
* [Mirroring deployment group overview](https://cloud.google.com/network-security-integration/docs/out-of-band/deployment-groups-overview)
|
529
|
+
|
510
530
|
## Example Usage
|
511
531
|
|
512
532
|
### Network Security Mirroring Deployment Group Basic
|
@@ -420,6 +420,18 @@ class MirroringEndpointGroup(pulumi.CustomResource):
|
|
420
420
|
project: Optional[pulumi.Input[str]] = None,
|
421
421
|
__props__=None):
|
422
422
|
"""
|
423
|
+
An endpoint group is a consumer frontend for a deployment group (backend).
|
424
|
+
In order to configure mirroring for a network, consumers must create:
|
425
|
+
- An association between their network and the endpoint group.
|
426
|
+
- A security profile that points to the endpoint group.
|
427
|
+
- A mirroring rule that references the security profile (group).
|
428
|
+
|
429
|
+
To get more information about MirroringEndpointGroup, see:
|
430
|
+
|
431
|
+
* [API documentation](https://cloud.google.com/network-security-integration/docs/reference/rest/v1/projects.locations.mirroringEndpointGroups)
|
432
|
+
* How-to Guides
|
433
|
+
* [Mirroring endpoint group overview](https://cloud.google.com/network-security-integration/docs/out-of-band/endpoint-groups-overview)
|
434
|
+
|
423
435
|
## Example Usage
|
424
436
|
|
425
437
|
### Network Security Mirroring Endpoint Group Basic
|
@@ -495,6 +507,18 @@ class MirroringEndpointGroup(pulumi.CustomResource):
|
|
495
507
|
args: MirroringEndpointGroupArgs,
|
496
508
|
opts: Optional[pulumi.ResourceOptions] = None):
|
497
509
|
"""
|
510
|
+
An endpoint group is a consumer frontend for a deployment group (backend).
|
511
|
+
In order to configure mirroring for a network, consumers must create:
|
512
|
+
- An association between their network and the endpoint group.
|
513
|
+
- A security profile that points to the endpoint group.
|
514
|
+
- A mirroring rule that references the security profile (group).
|
515
|
+
|
516
|
+
To get more information about MirroringEndpointGroup, see:
|
517
|
+
|
518
|
+
* [API documentation](https://cloud.google.com/network-security-integration/docs/reference/rest/v1/projects.locations.mirroringEndpointGroups)
|
519
|
+
* How-to Guides
|
520
|
+
* [Mirroring endpoint group overview](https://cloud.google.com/network-security-integration/docs/out-of-band/endpoint-groups-overview)
|
521
|
+
|
498
522
|
## Example Usage
|
499
523
|
|
500
524
|
### Network Security Mirroring Endpoint Group Basic
|
@@ -444,6 +444,20 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
|
|
444
444
|
project: Optional[pulumi.Input[str]] = None,
|
445
445
|
__props__=None):
|
446
446
|
"""
|
447
|
+
An endpoint group association represents a link between a network and an
|
448
|
+
endpoint group in the organization.
|
449
|
+
|
450
|
+
Creating an association creates the networking infrastructure linking the
|
451
|
+
network to the endpoint group, but does not enable mirroring by itself.
|
452
|
+
To enable mirroring, the user must also create a network firewall policy
|
453
|
+
containing mirroring rules and associate it with the network.
|
454
|
+
|
455
|
+
To get more information about MirroringEndpointGroupAssociation, see:
|
456
|
+
|
457
|
+
* [API documentation](https://cloud.google.com/network-security-integration/docs/reference/rest/v1/projects.locations.mirroringEndpointGroupAssociations)
|
458
|
+
* How-to Guides
|
459
|
+
* [Mirroring endpoint group association overview](https://cloud.google.com/network-security-integration/docs/out-of-band/endpoint-groups-overview#mirroring-endpoint-group-association)
|
460
|
+
|
447
461
|
## Example Usage
|
448
462
|
|
449
463
|
### Network Security Mirroring Endpoint Group Association Basic
|
@@ -528,6 +542,20 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
|
|
528
542
|
args: MirroringEndpointGroupAssociationArgs,
|
529
543
|
opts: Optional[pulumi.ResourceOptions] = None):
|
530
544
|
"""
|
545
|
+
An endpoint group association represents a link between a network and an
|
546
|
+
endpoint group in the organization.
|
547
|
+
|
548
|
+
Creating an association creates the networking infrastructure linking the
|
549
|
+
network to the endpoint group, but does not enable mirroring by itself.
|
550
|
+
To enable mirroring, the user must also create a network firewall policy
|
551
|
+
containing mirroring rules and associate it with the network.
|
552
|
+
|
553
|
+
To get more information about MirroringEndpointGroupAssociation, see:
|
554
|
+
|
555
|
+
* [API documentation](https://cloud.google.com/network-security-integration/docs/reference/rest/v1/projects.locations.mirroringEndpointGroupAssociations)
|
556
|
+
* How-to Guides
|
557
|
+
* [Mirroring endpoint group association overview](https://cloud.google.com/network-security-integration/docs/out-of-band/endpoint-groups-overview#mirroring-endpoint-group-association)
|
558
|
+
|
531
559
|
## Example Usage
|
532
560
|
|
533
561
|
### Network Security Mirroring Endpoint Group Association Basic
|