pulumi-gcp 7.23.0a1715621482__py3-none-any.whl → 7.23.0a1715808346__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 (42) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/bigquery/table.py +47 -0
  3. pulumi_gcp/bigtable/__init__.py +1 -0
  4. pulumi_gcp/bigtable/_inputs.py +101 -0
  5. pulumi_gcp/bigtable/authorized_view.py +440 -0
  6. pulumi_gcp/bigtable/outputs.py +119 -0
  7. pulumi_gcp/certificateauthority/certificate_template.py +70 -0
  8. pulumi_gcp/cloudbuildv2/repository.py +2 -2
  9. pulumi_gcp/clouddeploy/_inputs.py +96 -0
  10. pulumi_gcp/clouddeploy/custom_target_type.py +46 -0
  11. pulumi_gcp/clouddeploy/delivery_pipeline.py +7 -7
  12. pulumi_gcp/clouddeploy/outputs.py +96 -1
  13. pulumi_gcp/clouddeploy/target.py +54 -7
  14. pulumi_gcp/compute/_inputs.py +689 -0
  15. pulumi_gcp/compute/firewall_policy_rule.py +125 -10
  16. pulumi_gcp/compute/network_firewall_policy_rule.py +125 -10
  17. pulumi_gcp/compute/outputs.py +684 -0
  18. pulumi_gcp/compute/region_network_firewall_policy_rule.py +125 -10
  19. pulumi_gcp/compute/region_security_policy_rule.py +230 -1
  20. pulumi_gcp/container/_inputs.py +67 -3
  21. pulumi_gcp/container/outputs.py +93 -4
  22. pulumi_gcp/dataflow/flex_template_job.py +7 -7
  23. pulumi_gcp/dataflow/job.py +7 -7
  24. pulumi_gcp/iam/_inputs.py +191 -2
  25. pulumi_gcp/iam/outputs.py +197 -2
  26. pulumi_gcp/iam/workforce_pool_provider.py +245 -0
  27. pulumi_gcp/integrationconnectors/__init__.py +1 -0
  28. pulumi_gcp/integrationconnectors/managed_zone.py +753 -0
  29. pulumi_gcp/networkconnectivity/__init__.py +1 -0
  30. pulumi_gcp/networkconnectivity/regional_endpoint.py +946 -0
  31. pulumi_gcp/networksecurity/firewall_endpoint.py +34 -0
  32. pulumi_gcp/networksecurity/firewall_endpoint_association.py +24 -0
  33. pulumi_gcp/networksecurity/security_profile.py +16 -0
  34. pulumi_gcp/networksecurity/security_profile_group.py +18 -0
  35. pulumi_gcp/networksecurity/tls_inspection_policy.py +16 -0
  36. pulumi_gcp/orgpolicy/policy.py +2 -2
  37. pulumi_gcp/pubsub/subscription.py +4 -4
  38. pulumi_gcp/pulumi-plugin.json +2 -1
  39. {pulumi_gcp-7.23.0a1715621482.dist-info → pulumi_gcp-7.23.0a1715808346.dist-info}/METADATA +1 -1
  40. {pulumi_gcp-7.23.0a1715621482.dist-info → pulumi_gcp-7.23.0a1715808346.dist-info}/RECORD +42 -39
  41. {pulumi_gcp-7.23.0a1715621482.dist-info → pulumi_gcp-7.23.0a1715808346.dist-info}/WHEEL +0 -0
  42. {pulumi_gcp-7.23.0a1715621482.dist-info → pulumi_gcp-7.23.0a1715808346.dist-info}/top_level.txt +0 -0
@@ -360,6 +360,23 @@ class FirewallEndpoint(pulumi.CustomResource):
360
360
  parent: Optional[pulumi.Input[str]] = None,
361
361
  __props__=None):
362
362
  """
363
+ A Firewall endpoint is a Cloud Firewall resource that enables
364
+ layer 7 advanced protection capabilities, such as intrusion prevention,
365
+ in your network.
366
+
367
+ To get more information about FirewallEndpoint, see:
368
+
369
+ * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/organizations.locations.firewallEndpoints)
370
+ * How-to Guides
371
+ * [Firewall endpoint overview](https://cloud.google.com/firewall/docs/about-firewall-endpoints)
372
+ * [Create and associate firewall endpoints](https://cloud.google.com/firewall/docs/configure-firewall-endpoints)
373
+
374
+ > **Warning:** If you are using User ADCs (Application Default Credentials) with this resource,
375
+ you must specify a `billing_project_id` and set `user_project_override` to true
376
+ in the provider configuration. Otherwise the ACM API will return a 403 error.
377
+ Your account must have the `serviceusage.services.use` permission on the
378
+ `billing_project_id` you defined.
379
+
363
380
  ## Example Usage
364
381
 
365
382
  ### Network Security Firewall Endpoint Basic
@@ -412,6 +429,23 @@ class FirewallEndpoint(pulumi.CustomResource):
412
429
  args: FirewallEndpointArgs,
413
430
  opts: Optional[pulumi.ResourceOptions] = None):
414
431
  """
432
+ A Firewall endpoint is a Cloud Firewall resource that enables
433
+ layer 7 advanced protection capabilities, such as intrusion prevention,
434
+ in your network.
435
+
436
+ To get more information about FirewallEndpoint, see:
437
+
438
+ * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/organizations.locations.firewallEndpoints)
439
+ * How-to Guides
440
+ * [Firewall endpoint overview](https://cloud.google.com/firewall/docs/about-firewall-endpoints)
441
+ * [Create and associate firewall endpoints](https://cloud.google.com/firewall/docs/configure-firewall-endpoints)
442
+
443
+ > **Warning:** If you are using User ADCs (Application Default Credentials) with this resource,
444
+ you must specify a `billing_project_id` and set `user_project_override` to true
445
+ in the provider configuration. Otherwise the ACM API will return a 403 error.
446
+ Your account must have the `serviceusage.services.use` permission on the
447
+ `billing_project_id` you defined.
448
+
415
449
  ## Example Usage
416
450
 
417
451
  ### Network Security Firewall Endpoint Basic
@@ -445,6 +445,18 @@ class FirewallEndpointAssociation(pulumi.CustomResource):
445
445
  tls_inspection_policy: Optional[pulumi.Input[str]] = None,
446
446
  __props__=None):
447
447
  """
448
+ Firewall endpoint association links a firewall endpoint to a VPC network in
449
+ the same zone. After you define this association, Cloud Firewall forwards the
450
+ zonal workload traffic in your VPC network that requires layer 7 inspection to
451
+ the attached firewall endpoint.
452
+
453
+ To get more information about FirewallEndpointAssociation, see:
454
+
455
+ * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/projects.locations.firewallEndpointAssociations#FirewallEndpointAssociation)
456
+ * How-to Guides
457
+ * [Firewall endpoint overview](https://cloud.google.com/firewall/docs/about-firewall-endpoints)
458
+ * [Create and associate firewall endpoints](https://cloud.google.com/firewall/docs/configure-firewall-endpoints)
459
+
448
460
  ## Example Usage
449
461
 
450
462
  ### Network Security Firewall Endpoint Association Basic
@@ -508,6 +520,18 @@ class FirewallEndpointAssociation(pulumi.CustomResource):
508
520
  args: FirewallEndpointAssociationArgs,
509
521
  opts: Optional[pulumi.ResourceOptions] = None):
510
522
  """
523
+ Firewall endpoint association links a firewall endpoint to a VPC network in
524
+ the same zone. After you define this association, Cloud Firewall forwards the
525
+ zonal workload traffic in your VPC network that requires layer 7 inspection to
526
+ the attached firewall endpoint.
527
+
528
+ To get more information about FirewallEndpointAssociation, see:
529
+
530
+ * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/projects.locations.firewallEndpointAssociations#FirewallEndpointAssociation)
531
+ * How-to Guides
532
+ * [Firewall endpoint overview](https://cloud.google.com/firewall/docs/about-firewall-endpoints)
533
+ * [Create and associate firewall endpoints](https://cloud.google.com/firewall/docs/configure-firewall-endpoints)
534
+
511
535
  ## Example Usage
512
536
 
513
537
  ### Network Security Firewall Endpoint Association Basic
@@ -408,6 +408,14 @@ class SecurityProfile(pulumi.CustomResource):
408
408
  type: Optional[pulumi.Input[str]] = None,
409
409
  __props__=None):
410
410
  """
411
+ A security profile defines the behavior associated to a profile type.
412
+
413
+ To get more information about SecurityProfile, see:
414
+
415
+ * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/projects.locations.securityProfiles)
416
+ * How-to Guides
417
+ * [Create and manage security profiles](https://cloud.google.com/firewall/docs/configure-security-profiles)
418
+
411
419
  ## Example Usage
412
420
 
413
421
  ### Network Security Security Profile Basic
@@ -493,6 +501,14 @@ class SecurityProfile(pulumi.CustomResource):
493
501
  args: SecurityProfileArgs,
494
502
  opts: Optional[pulumi.ResourceOptions] = None):
495
503
  """
504
+ A security profile defines the behavior associated to a profile type.
505
+
506
+ To get more information about SecurityProfile, see:
507
+
508
+ * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/projects.locations.securityProfiles)
509
+ * How-to Guides
510
+ * [Create and manage security profiles](https://cloud.google.com/firewall/docs/configure-security-profiles)
511
+
496
512
  ## Example Usage
497
513
 
498
514
  ### Network Security Security Profile Basic
@@ -350,6 +350,15 @@ class SecurityProfileGroup(pulumi.CustomResource):
350
350
  threat_prevention_profile: Optional[pulumi.Input[str]] = None,
351
351
  __props__=None):
352
352
  """
353
+ A security profile group defines a container for security profiles.
354
+
355
+ To get more information about SecurityProfileGroup, see:
356
+
357
+ * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/organizations.locations.securityProfileGroups)
358
+ * How-to Guides
359
+ * [Security profile groups overview](https://cloud.google.com/firewall/docs/about-security-profile-groups)
360
+ * [Create and manage security profile groups](https://cloud.google.com/firewall/docs/configure-security-profile-groups)
361
+
353
362
  ## Example Usage
354
363
 
355
364
  ### Network Security Security Profile Group Basic
@@ -409,6 +418,15 @@ class SecurityProfileGroup(pulumi.CustomResource):
409
418
  args: Optional[SecurityProfileGroupArgs] = None,
410
419
  opts: Optional[pulumi.ResourceOptions] = None):
411
420
  """
421
+ A security profile group defines a container for security profiles.
422
+
423
+ To get more information about SecurityProfileGroup, see:
424
+
425
+ * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/organizations.locations.securityProfileGroups)
426
+ * How-to Guides
427
+ * [Security profile groups overview](https://cloud.google.com/firewall/docs/about-security-profile-groups)
428
+ * [Create and manage security profile groups](https://cloud.google.com/firewall/docs/configure-security-profile-groups)
429
+
412
430
  ## Example Usage
413
431
 
414
432
  ### Network Security Security Profile Group Basic
@@ -279,6 +279,14 @@ class TlsInspectionPolicy(pulumi.CustomResource):
279
279
  project: Optional[pulumi.Input[str]] = None,
280
280
  __props__=None):
281
281
  """
282
+ The TlsInspectionPolicy resource contains references to CA pools in Certificate Authority Service and associated metadata.
283
+
284
+ To get more information about TlsInspectionPolicy, see:
285
+
286
+ * [API documentation](https://cloud.google.com/secure-web-proxy/docs/reference/network-security/rest/v1/projects.locations.tlsInspectionPolicies)
287
+ * How-to Guides
288
+ * [Use TlsInspectionPolicy](https://cloud.google.com/secure-web-proxy/docs/tls-inspection-overview)
289
+
282
290
  ## Example Usage
283
291
 
284
292
  ### Network Security Tls Inspection Policy Basic
@@ -399,6 +407,14 @@ class TlsInspectionPolicy(pulumi.CustomResource):
399
407
  args: TlsInspectionPolicyArgs,
400
408
  opts: Optional[pulumi.ResourceOptions] = None):
401
409
  """
410
+ The TlsInspectionPolicy resource contains references to CA pools in Certificate Authority Service and associated metadata.
411
+
412
+ To get more information about TlsInspectionPolicy, see:
413
+
414
+ * [API documentation](https://cloud.google.com/secure-web-proxy/docs/reference/network-security/rest/v1/projects.locations.tlsInspectionPolicies)
415
+ * How-to Guides
416
+ * [Use TlsInspectionPolicy](https://cloud.google.com/secure-web-proxy/docs/tls-inspection-overview)
417
+
402
418
  ## Example Usage
403
419
 
404
420
  ### Network Security Tls Inspection Policy Basic
@@ -297,7 +297,7 @@ class Policy(pulumi.CustomResource):
297
297
  import pulumi_gcp as gcp
298
298
 
299
299
  constraint = gcp.orgpolicy.CustomConstraint("constraint",
300
- name="custom.disableGkeAutoUpgrade_75092",
300
+ name="custom.disableGkeAutoUpgrade_29439",
301
301
  parent="organizations/123456789",
302
302
  display_name="Disable GKE auto upgrade",
303
303
  description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
@@ -449,7 +449,7 @@ class Policy(pulumi.CustomResource):
449
449
  import pulumi_gcp as gcp
450
450
 
451
451
  constraint = gcp.orgpolicy.CustomConstraint("constraint",
452
- name="custom.disableGkeAutoUpgrade_75092",
452
+ name="custom.disableGkeAutoUpgrade_29439",
453
453
  parent="organizations/123456789",
454
454
  display_name="Disable GKE auto upgrade",
455
455
  description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
@@ -1040,7 +1040,7 @@ class Subscription(pulumi.CustomResource):
1040
1040
  cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
1041
1041
  bucket=example.name,
1042
1042
  filename_prefix="pre-",
1043
- filename_suffix="-_2605",
1043
+ filename_suffix="-_87786",
1044
1044
  max_bytes=1000,
1045
1045
  max_duration="300s",
1046
1046
  ))
@@ -1067,7 +1067,7 @@ class Subscription(pulumi.CustomResource):
1067
1067
  cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
1068
1068
  bucket=example.name,
1069
1069
  filename_prefix="pre-",
1070
- filename_suffix="-_34535",
1070
+ filename_suffix="-_2067",
1071
1071
  max_bytes=1000,
1072
1072
  max_duration="300s",
1073
1073
  avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
@@ -1367,7 +1367,7 @@ class Subscription(pulumi.CustomResource):
1367
1367
  cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
1368
1368
  bucket=example.name,
1369
1369
  filename_prefix="pre-",
1370
- filename_suffix="-_2605",
1370
+ filename_suffix="-_87786",
1371
1371
  max_bytes=1000,
1372
1372
  max_duration="300s",
1373
1373
  ))
@@ -1394,7 +1394,7 @@ class Subscription(pulumi.CustomResource):
1394
1394
  cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
1395
1395
  bucket=example.name,
1396
1396
  filename_prefix="pre-",
1397
- filename_suffix="-_34535",
1397
+ filename_suffix="-_2067",
1398
1398
  max_bytes=1000,
1399
1399
  max_duration="300s",
1400
1400
  avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
@@ -1,4 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
- "name": "gcp"
3
+ "name": "gcp",
4
+ "version": "7.23.0-alpha.1715808346+86d0416"
4
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.23.0a1715621482
3
+ Version: 7.23.0a1715808346
4
4
  Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,8 +1,8 @@
1
- pulumi_gcp/__init__.py,sha256=kzZy8-6E6c_f4V_gl_1mhaaTfoQUfDvWFcU3GrtaG0Q,187499
1
+ pulumi_gcp/__init__.py,sha256=cTsfV_uMar9JkVxnIKk-JImSENbtMoyS79P73LyrL00,188095
2
2
  pulumi_gcp/_inputs.py,sha256=RzPZvEhg_UTDKSms04fRHwrC6vIGFtFT7BXmdZIRsdE,1412
3
3
  pulumi_gcp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
4
  pulumi_gcp/provider.py,sha256=KfC-j52x7Y2MGwN095tb6LyrJBQyaU2YAA4AC5aEdCU,186885
5
- pulumi_gcp/pulumi-plugin.json,sha256=hqqvCNOjkQUnsCresqHpje3VJwwA09jwaivXfqGtCDg,40
5
+ pulumi_gcp/pulumi-plugin.json,sha256=yet_35bcpsf_ttTUc7H710AKceW2-RIgDsnFj0INA_0,88
6
6
  pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  pulumi_gcp/accessapproval/__init__.py,sha256=VpbPp-2Rb1295tFUB_3aO6TvbS1UhYt3ycgAzrNVqOU,402
8
8
  pulumi_gcp/accessapproval/get_folder_service_account.py,sha256=M0M-L5ZTvFu-1LuyZA3z1fqChglV_kowuPZmmRMt_6Q,5573
@@ -175,7 +175,7 @@ pulumi_gcp/bigquery/outputs.py,sha256=U_05wUlpxtghAXKPVWBnCx1RV9rLuA-kfQif6DybMt
175
175
  pulumi_gcp/bigquery/reservation.py,sha256=vK3Mhtjfm5bESj2NmTNPJshu9M7a4JZmTnfMoEo3jF8,33777
176
176
  pulumi_gcp/bigquery/reservation_assignment.py,sha256=lTZU6jaYH8DqpofuM3BNAuJfQxDuxg1gIKSJo4TJMFQ,19799
177
177
  pulumi_gcp/bigquery/routine.py,sha256=aeEICG-ecnJC9pgv0agHrMt3eR_HC7sPUeGxPpnu5Ps,72411
178
- pulumi_gcp/bigquery/table.py,sha256=hF0NHLB0hpSdXXB2sKdtA5l56O_hXcjP84gVMy6rdHw,90807
178
+ pulumi_gcp/bigquery/table.py,sha256=EuWgheTpwi5Eg9sRt_nXiasn4VKumlW8iHWskEQSlv8,93740
179
179
  pulumi_gcp/bigqueryanalyticshub/__init__.py,sha256=eLlmMzRfmFiCGrCneuBoup0vdx0zGFCV1J6lMnF1bkk,672
180
180
  pulumi_gcp/bigqueryanalyticshub/_inputs.py,sha256=_EM90SX_M7JV8_MyltnAyC2KuyHxUI0YUAzetWwGZzI,10040
181
181
  pulumi_gcp/bigqueryanalyticshub/data_exchange.py,sha256=JxNJGYHlU9SoxYgticSzP_QEccT9hU0y1aMR1p1TwHw,28320
@@ -197,8 +197,9 @@ pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py,sha256=EVRG2efAZoU6c2UlF
197
197
  pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py,sha256=Snz0j2D7nu2Q-BU9NQ8IUoPVhE0LFOZpR_gJz7B6e_8,26489
198
198
  pulumi_gcp/bigquerydatapolicy/get_iam_policy.py,sha256=o1WSvXdby54VWTKJKKnwQmOU3c-yJrngivTDEYpfPoM,6100
199
199
  pulumi_gcp/bigquerydatapolicy/outputs.py,sha256=AjglPxiEKWbKd85Y2F1xsxXXN3smthzT5LV4AzQRzDs,4358
200
- pulumi_gcp/bigtable/__init__.py,sha256=jYqlYxiHYgvzCxEDgEx2Q7TVjW5kkgWPQfQEYkZxydc,662
201
- pulumi_gcp/bigtable/_inputs.py,sha256=a8341yYrcRW4VBhvo6yJVaou1MaKAIs6JiYHNCkqlhw,19615
200
+ pulumi_gcp/bigtable/__init__.py,sha256=kt14Qjgv4IFG3DZNFgX0vGMOAhjc65mvHWIGGOzWMqY,693
201
+ pulumi_gcp/bigtable/_inputs.py,sha256=cTFih6JDhPsoSGrqCqffGtrQ7t_irEiRfxyDpuxm0pI,24911
202
+ pulumi_gcp/bigtable/authorized_view.py,sha256=liKP8YIB6nmABY4t3msepIYK40UIiYwMmYEPFHqJLJ4,19349
202
203
  pulumi_gcp/bigtable/gc_policy.py,sha256=D0HjmgI2a7Z7BaGg_kEh4_eOro0-4xaRZzSIpYhjtMg,32908
203
204
  pulumi_gcp/bigtable/get_instance_iam_policy.py,sha256=D_fnKnUtBb2ndgOnSnUK_1nVzGc16NAQiLYLci2l8OU,4647
204
205
  pulumi_gcp/bigtable/get_table_iam_policy.py,sha256=Vf2vSTD-KnuSZuSTqwrDtxsjCzqJ6eazIVVYsb6dZlY,5316
@@ -206,7 +207,7 @@ pulumi_gcp/bigtable/instance.py,sha256=wQDGOmILtIlF_6gY2cRqFrmCccdWs9MVpP4CoIa-2
206
207
  pulumi_gcp/bigtable/instance_iam_binding.py,sha256=Huy7zqvsapSCvydRKBejKcyTGfLxJlX9S9LDGnah73A,32540
207
208
  pulumi_gcp/bigtable/instance_iam_member.py,sha256=86296QYK0deRS9pnvYWM0Oi7ba9VDgRcCV19qeVSy6k,32152
208
209
  pulumi_gcp/bigtable/instance_iam_policy.py,sha256=jOUOLRf72UhmLYqsqQ8qBhu-qy6OmCBrJPuOvMi3BRk,20551
209
- pulumi_gcp/bigtable/outputs.py,sha256=y9iP_lq7cZC1VCKPAFzi46AJAS64uF7EeXPSRaueRAI,16778
210
+ pulumi_gcp/bigtable/outputs.py,sha256=ni8bGiXI6FAy8At86BvXbu9QUXeIgnTAksc9omY4_AQ,22254
210
211
  pulumi_gcp/bigtable/table.py,sha256=54EIHAbyLoFcZSmFyfkJzFf8HIA9VIHlPjOIllepmLo,27942
211
212
  pulumi_gcp/bigtable/table_iam_binding.py,sha256=Es7hTeqgDAfk5gOjP8vwBqbeq1GB9H5VSLOSAZy_2OU,34771
212
213
  pulumi_gcp/bigtable/table_iam_member.py,sha256=QgNBnyy4u0uHgNlGa29BL5VHNR3zd5_zd8Cs9MG897E,34383
@@ -242,7 +243,7 @@ pulumi_gcp/certificateauthority/ca_pool_iam_binding.py,sha256=ChIw_oui-Jlwdf3z7U
242
243
  pulumi_gcp/certificateauthority/ca_pool_iam_member.py,sha256=gzBPr6nvBZm9k8o3AYoqgzL4dbbJYyfMarz4d_JZct4,49084
243
244
  pulumi_gcp/certificateauthority/ca_pool_iam_policy.py,sha256=pmU_L3RgBZrzN0ewjn9ggax85L5elz08Iz_zpWuq1xc,34455
244
245
  pulumi_gcp/certificateauthority/certificate.py,sha256=F7Oqkb1sC5VJ2WgPfZXlqxkpAFrshV_lSLw_vWYMmUY,96842
245
- pulumi_gcp/certificateauthority/certificate_template.py,sha256=62l3asYYTNFujMuauiVjWbvcExeMe-4xYUlNDEXVQp0,48845
246
+ pulumi_gcp/certificateauthority/certificate_template.py,sha256=xLn46nRRRAx37Z1rihZCrVNrm7C3haW3Lr6P3usdqnE,53826
246
247
  pulumi_gcp/certificateauthority/certificate_template_iam_binding.py,sha256=j0NZlNer9HJocT8U2HIx74rLV17YcWzDAT98NWRcThw,50269
247
248
  pulumi_gcp/certificateauthority/certificate_template_iam_member.py,sha256=bUtSy9UNbtEl0w2XBy0Yn0Lt9RIcwA3-ei6W4chPVhY,49869
248
249
  pulumi_gcp/certificateauthority/certificate_template_iam_policy.py,sha256=EcrSuS5po399CmV58Yvqma3c6DDxh2kfpQqX3C62SP0,34967
@@ -282,23 +283,23 @@ pulumi_gcp/cloudbuildv2/connection_iam_member.py,sha256=yCE_fRBKt3IpkVpc42x1ugD4
282
283
  pulumi_gcp/cloudbuildv2/connection_iam_policy.py,sha256=N7UKLlL_WqoaFt9sYUOE7AoLrM85RyYiaLgiyLZ9W_g,26268
283
284
  pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py,sha256=t1kjGr-ekjq5m_U7HgshA_SGThldkISsaB9UrWkTV7c,6254
284
285
  pulumi_gcp/cloudbuildv2/outputs.py,sha256=7qZifxtllaCUA7LOpb6w-nSGDjHiKQfdO6XFgkRwJOY,27019
285
- pulumi_gcp/cloudbuildv2/repository.py,sha256=VpgFxgc8ZfcKl-oJ5C9YEABHyS7lrWW30xLx7IvYZKc,33879
286
+ pulumi_gcp/cloudbuildv2/repository.py,sha256=FWulO74GOnJ35m3JNESWo-UFBofzreMc8dL-52LdZoQ,33883
286
287
  pulumi_gcp/clouddeploy/__init__.py,sha256=lk4ZmMl9QmtLHgsj9xZj5gp9wlFzRWY2Ud5xJKkHg9U,932
287
- pulumi_gcp/clouddeploy/_inputs.py,sha256=-5y0Ws9OlM7bSA3PejMXmwwHSxriimKpCIgUsMYHCAA,93938
288
+ pulumi_gcp/clouddeploy/_inputs.py,sha256=3J1R5vnTV8LIlK1XjE2Uro9GuUkE_kzXSI6bm178QoA,98120
288
289
  pulumi_gcp/clouddeploy/automation.py,sha256=vppf5bU5BHyqnxp_xqe2Q2rUcG5HvV7YiutpbvR1240,60653
289
- pulumi_gcp/clouddeploy/custom_target_type.py,sha256=7ucDI2D_IgNjSU9JoV26cY8PITYjL-vyOYJwROQMiKg,46225
290
+ pulumi_gcp/clouddeploy/custom_target_type.py,sha256=73rzq_x-6KatkSvkXXk22BEyHxCoMfRygZbjuIFXaMA,48419
290
291
  pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py,sha256=hC-rWEfNa6JCuvrlT3bPWlvKAJ6wN72imq-nr_Q8ckM,12690
291
292
  pulumi_gcp/clouddeploy/custom_target_type_iam_member.py,sha256=1fSYPe7Ul7s1SVumpEQfJTw9nn8DBhaOvHzAuRbL6-g,12404
292
293
  pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py,sha256=uzBDgnGdudOhLX2jOEjRDPFU0_UNT-4rCd5lPPYOGD8,9691
293
- pulumi_gcp/clouddeploy/delivery_pipeline.py,sha256=FD_XxqPmMCl6Ta3kOPlnbbIxq-UGTYAsJeRbRocvW6c,58264
294
+ pulumi_gcp/clouddeploy/delivery_pipeline.py,sha256=MzZX0-pG7p0M5DIhpXGDLF4HOATChx1DUfqiCPttJeY,58152
294
295
  pulumi_gcp/clouddeploy/delivery_pipeline_iam_binding.py,sha256=Ag9GdAfz8hePblxdk3NwyB2g2cDhgfXcGNIxp84uQQs,12690
295
296
  pulumi_gcp/clouddeploy/delivery_pipeline_iam_member.py,sha256=lnE9I3707llXmtSUfVOH0bRL34LaATFvKj5q8-n3Vo0,12404
296
297
  pulumi_gcp/clouddeploy/delivery_pipeline_iam_policy.py,sha256=0vlnTmTPTdTet59NIwCMSHib4XO6MG-L7_jqJrv5n58,9691
297
298
  pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py,sha256=bIEhCGaGxma_Jdq8pdTwT0gCK7kw2uYmUm9NrbgAAek,6476
298
299
  pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py,sha256=SyTG1G-a3cpIpHRvI0vtTC0cucVCcpc0vzy54YgF-vA,6173
299
300
  pulumi_gcp/clouddeploy/get_target_iam_policy.py,sha256=8CQHGupOtfrTRxGDWA1OvYkiNhczjwOKxAj23-lR9cQ,5870
300
- pulumi_gcp/clouddeploy/outputs.py,sha256=BM7DGZcLjMOI4GimJFsGvC3D3QH-XeAbR4F7Sk0vPOA,88153
301
- pulumi_gcp/clouddeploy/target.py,sha256=MRlNeIuaC391ANd8gDW_xvBwnIrpirYegttLry_5EkM,60924
301
+ pulumi_gcp/clouddeploy/outputs.py,sha256=reUThUdntiDTzkYeXF2xqM6lUwbVaafkuAsmUvF1D3M,92073
302
+ pulumi_gcp/clouddeploy/target.py,sha256=_I_XdJ_fdciAL6k-oK49NdZvne2ABdGl2xPf8iAjynY,63278
302
303
  pulumi_gcp/clouddeploy/target_iam_binding.py,sha256=nXU0KeCnToysl-n-89AdE4bNqjvsOR-ZmM3uSRXC5Jg,12370
303
304
  pulumi_gcp/clouddeploy/target_iam_member.py,sha256=VFGg_rhnghS03hL_hXeY-sASQlukX0R1v6Qj2-je2UY,12084
304
305
  pulumi_gcp/clouddeploy/target_iam_policy.py,sha256=LKGNUVdgpBBi8F0ACahI-Ib2f2oQr9_rBLlrLqIFG-o,9471
@@ -386,7 +387,7 @@ pulumi_gcp/composer/get_image_versions.py,sha256=INMRwQiuCMb_B9CxdnvOCDz1Q47P2HW
386
387
  pulumi_gcp/composer/outputs.py,sha256=IozJ_7QofQoogKX8NTktyLlfqppWqZ2aFmuodre1UAM,176480
387
388
  pulumi_gcp/composer/user_workloads_secret.py,sha256=Lxw9rZ7eN5p7-FBJpygfVs457o7Yost_YxQe9TVBUog,17268
388
389
  pulumi_gcp/compute/__init__.py,sha256=U8KHJyoaKEnTdgV8xAk4a2fAUf6Ol0FYGtLLDyPq9ig,7270
389
- pulumi_gcp/compute/_inputs.py,sha256=OoZNUpD8V17S7Jpp37yYQ9V9JtX1CSa4Cb5436Yiuj0,1805788
390
+ pulumi_gcp/compute/_inputs.py,sha256=dWySKb9CtBAfLS5ER6dd1GmXcWu8tZUc94Bi6r7qVY0,1847988
390
391
  pulumi_gcp/compute/address.py,sha256=4Q5PUz8nqxdNGb1OB33droaQLvyROO2wkfCnRc-GgrA,69609
391
392
  pulumi_gcp/compute/attached_disk.py,sha256=lwmvfIaNwCrdHeO6mlDOV10k7BwsFdAV-1nKGscMwy0,28091
392
393
  pulumi_gcp/compute/autoscaler.py,sha256=aR3dVzwCvtrHmu2ZDuIdLt3C5Wud3DmY2DTknRPFHgM,33140
@@ -411,7 +412,7 @@ pulumi_gcp/compute/external_vpn_gateway.py,sha256=Nk5qkUC6bk0Itz2kWHdKoqqunZqOHm
411
412
  pulumi_gcp/compute/firewall.py,sha256=LqJ_B6g-Y0ueX2wpj359FF4B-XsBjrxnV98U-64XYF8,86448
412
413
  pulumi_gcp/compute/firewall_policy.py,sha256=h3eCtlW2LF1xdRLmgO5D0bhqHZgyky1e_ZS6Rw8PV7o,24166
413
414
  pulumi_gcp/compute/firewall_policy_association.py,sha256=awa8vOfDIyq9txcPHXwZJLFWOM7uq-yigzJaOENAKa0,14590
414
- pulumi_gcp/compute/firewall_policy_rule.py,sha256=ltDJStHOamKxFSRcfwEQyDTqw8xjmNW1jOMXXtOH980,39898
415
+ pulumi_gcp/compute/firewall_policy_rule.py,sha256=vMyuJC0oTqxwFwSfHbt34-tKi4DBRxuBnHRBoe7FEe8,47411
415
416
  pulumi_gcp/compute/forwarding_rule.py,sha256=P8xJJxfcp_qWZdsZipxJMr8tNipZ9VMd7vH1v7CF-24,233675
416
417
  pulumi_gcp/compute/get_address.py,sha256=d5O8Ku3aTyKo0MMWMtoqm5DJcaDVs9MnHRZhv0yz_SQ,9616
417
418
  pulumi_gcp/compute/get_addresses.py,sha256=ao4CoyUBv_8vKAH62TbL6563E7kyUJ_p-eKvwbFmXx4,9480
@@ -505,7 +506,7 @@ pulumi_gcp/compute/network_endpoint_group.py,sha256=cWkFwQjlyE3EpgQJI3V3mabdJ-UQ
505
506
  pulumi_gcp/compute/network_endpoint_list.py,sha256=_wxlDaq7Qxhp1KCS_LtTsB2aRMCasPO_7wCeuEWyrCY,25134
506
507
  pulumi_gcp/compute/network_firewall_policy.py,sha256=H18AqpUBLRNCEQTTgouYz_SouHP7A9bEoCW0AZemQpw,23362
507
508
  pulumi_gcp/compute/network_firewall_policy_association.py,sha256=-0cIa6bHEoauslRbFKB4NmlfrZMXEoyUnmcrT-no4Wk,16240
508
- pulumi_gcp/compute/network_firewall_policy_rule.py,sha256=UYmmfG5a1LFVmCTkP_I9llYR20GQbgXq6PgLHQfJhl8,49749
509
+ pulumi_gcp/compute/network_firewall_policy_rule.py,sha256=0eJV_AnCxIahn3A-v2ERDoSD6BzN0nSamVuTsKSYj-4,57262
509
510
  pulumi_gcp/compute/network_peering.py,sha256=9-abuS5sk7YFzLdF8Xo7gHsKMxjpjNd_3hIzwIf5OeE,31581
510
511
  pulumi_gcp/compute/network_peering_routes_config.py,sha256=w_6gppjYzoLihqH0uRkg6QsXM302u_exyfMOYeGyYyE,24640
511
512
  pulumi_gcp/compute/node_group.py,sha256=rRmpkWm67P2Zxl0MZsjD2MyrSdfWf0brYtQbc-9csnM,48424
@@ -513,7 +514,7 @@ pulumi_gcp/compute/node_template.py,sha256=VIZ_KQhSms9qfQbXptNyyO3aE5BkDFutEF2pS
513
514
  pulumi_gcp/compute/organization_security_policy.py,sha256=WnK0cQq-YFe7S-QFwbyH9turB3SnFOjeVxpL2Cx7Hlw,19124
514
515
  pulumi_gcp/compute/organization_security_policy_association.py,sha256=SDW0jUsqx77VAUmO36GMwtGVdVdGq3VB_Ea6UNdv-hY,16575
515
516
  pulumi_gcp/compute/organization_security_policy_rule.py,sha256=T1jCY7e6zDtF0fOVdTIGUqA0UjXrXWP2xuqHC1PrT4A,35414
516
- pulumi_gcp/compute/outputs.py,sha256=vXa5pv4YiC0yi9B8zzgxNrlvWaf3Jpj3mRnULpxj1YY,2232218
517
+ pulumi_gcp/compute/outputs.py,sha256=RHNagU7hpSIv7D6TSAwPAtVd5ejLIJaI5ohnwnLh_yM,2272753
517
518
  pulumi_gcp/compute/packet_mirroring.py,sha256=KpHug1OqS-bUu8jIudCZ4pyEGC10mAnaIJtka_Q9CdQ,34897
518
519
  pulumi_gcp/compute/per_instance_config.py,sha256=3047DIbni35ArkAXvim-HvjKJln_1mzyIAXOMyNjgnU,38507
519
520
  pulumi_gcp/compute/project_default_network_tier.py,sha256=OuSb7cbTTKj2Iy111b33AtdbGEFDd8n2sDBz0w5C--I,11101
@@ -539,10 +540,10 @@ pulumi_gcp/compute/region_network_endpoint.py,sha256=hzwS7Bnh9BJ24KC0FPT5I1wdaUz
539
540
  pulumi_gcp/compute/region_network_endpoint_group.py,sha256=wO3R6CzoTAAX57eOMiTJ49kJ9Oii28HWLW5zNb4GX3E,65942
540
541
  pulumi_gcp/compute/region_network_firewall_policy.py,sha256=KNKunkmOq7FJYrHtgiQIshL-YN_bv8-958iTVDWEkUU,25828
541
542
  pulumi_gcp/compute/region_network_firewall_policy_association.py,sha256=N4mMYCMtgdOPfRc-KGfU3oz_krQDfQfTgyG55Y5fDSU,18433
542
- pulumi_gcp/compute/region_network_firewall_policy_rule.py,sha256=rdbAzOe5RmBpyL0mavQFh0VviIB2yi_MBTOEQt5bbLk,52572
543
+ pulumi_gcp/compute/region_network_firewall_policy_rule.py,sha256=r-YPEUXtpvB5z1Fqvud2A5k3Y1gerTqDqHkfQZZuLNA,60085
543
544
  pulumi_gcp/compute/region_per_instance_config.py,sha256=oqOSQN82yhzEQVChBqnYMCDSGxEi0UIVjdETEO_8cAA,40018
544
545
  pulumi_gcp/compute/region_security_policy.py,sha256=l5Hvqie8f8Grt2UkOwqvOkiJBJgqEVSy2ZPCg94Ktns,43669
545
- pulumi_gcp/compute/region_security_policy_rule.py,sha256=pOQxcAmgqlzmQRqdqKuLy5QSPisoAbmUp-53kBS81WY,55266
546
+ pulumi_gcp/compute/region_security_policy_rule.py,sha256=XCHfq1tcOqD1UPRwqciL1GfePgPoOv5XMCaQKEqfn7g,68960
546
547
  pulumi_gcp/compute/region_ssl_certificate.py,sha256=0CWc9VsVc1LXljgqx4tJ85S-Sb5GYSEzK8K-iQFm6kg,40346
547
548
  pulumi_gcp/compute/region_ssl_policy.py,sha256=hv-GxDxw_zUf0pk6BDmi0mt-5hFTIKdkIS4vEq8u3ss,38265
548
549
  pulumi_gcp/compute/region_target_http_proxy.py,sha256=bDpRvJ7WAWUwn4kPiJpYiquKWY-3SLtu6cOQo_Lvpak,28518
@@ -588,7 +589,7 @@ pulumi_gcp/config/__init__.pyi,sha256=WOGxK3945Bs4tviUFKJ6TY4Ak8x1yarfYm_eTqU2ML
588
589
  pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
589
590
  pulumi_gcp/config/vars.py,sha256=KF6KTmxkHAONIKZSJjpL7dOdvBcuSG8uNfDGTFqSsmI,23587
590
591
  pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
591
- pulumi_gcp/container/_inputs.py,sha256=fno2BbpNLLY_PljavR00MYSin7_Kdy444R5sFGz1uM8,618374
592
+ pulumi_gcp/container/_inputs.py,sha256=s3cuQSyrI1A2hj71tFyFdNeTeM1-A1g-6WqwL36lqdo,622195
592
593
  pulumi_gcp/container/attached_cluster.py,sha256=e1fsTpAkFAo7gUZIrUb5qQSpYyLQocld1Ree5qxJBuk,70840
593
594
  pulumi_gcp/container/aws_cluster.py,sha256=yWJcTBm6vEc0wAB8d1pbq_-jtYIlrF0_Jm89cxb7Np4,71042
594
595
  pulumi_gcp/container/aws_node_pool.py,sha256=r9qLIusTAcjDrK4glafTTsCycwG0O2W-TG-uvMyoV4s,80849
@@ -605,7 +606,7 @@ pulumi_gcp/container/get_engine_versions.py,sha256=mTgdiSsdq7VpWmqwKBfTw0pd2GYVZ
605
606
  pulumi_gcp/container/get_registry_image.py,sha256=BK2v8NjiPMfRdXiuhJauP4H0otPr9xYzZJmDJNyidtQ,6992
606
607
  pulumi_gcp/container/get_registry_repository.py,sha256=8j5cl1J9lQtItliF6Cjayatzqclp7-9PDwEX1bo8-uM,5353
607
608
  pulumi_gcp/container/node_pool.py,sha256=C_lZMLL1rRGIQO4tKamhh8pLq6ZR9ih-FvxkjG3mUig,73692
608
- pulumi_gcp/container/outputs.py,sha256=aWeV4rvzsJEljLJzqmde-CD5l5o_iN3LZO5hDLlJUzE,841609
609
+ pulumi_gcp/container/outputs.py,sha256=RwP1oPVeXPRO_a7dtzPfTBxN3ostd7Gr6oOSUY7E674,846495
609
610
  pulumi_gcp/container/registry.py,sha256=UoKQZ7gwQI6GyL9amL5yxt9g0PIep9qky5Kodd8Z8X0,13113
610
611
  pulumi_gcp/containeranalysis/__init__.py,sha256=gENWQXPC0oV7t5uEv6IgscsCOVeXKa7AHewwOiVIgek,488
611
612
  pulumi_gcp/containeranalysis/_inputs.py,sha256=1yTLGmL7agpwp0maJz0rEzueNmb9QOpSEcdah1zfBus,12213
@@ -648,8 +649,8 @@ pulumi_gcp/datacatalog/taxonomy_iam_member.py,sha256=uD6b8XRc165KGf0-ucxoOXiYavd
648
649
  pulumi_gcp/datacatalog/taxonomy_iam_policy.py,sha256=P2DRij67Onh2xWVvXQSdmIXdjTx0FTsOYXtErzB1yic,23886
649
650
  pulumi_gcp/dataflow/__init__.py,sha256=qS8pqb0y81sac2hdiA-ho_6vCzHWikL_04SBITos24I,390
650
651
  pulumi_gcp/dataflow/_inputs.py,sha256=9iNp5uv7PEvSYaUjJ-N6fzn1HH-z16_hD2kzuy5r10Y,55942
651
- pulumi_gcp/dataflow/flex_template_job.py,sha256=HdfBlVPsXfwGJekATLw1TCCqQAvfur_O5pWqNnGRdCY,80094
652
- pulumi_gcp/dataflow/job.py,sha256=2LT7_wK0GqaSUCyAmzwWnkxTSfX9Nk1wk_lZXbpCmQY,75579
652
+ pulumi_gcp/dataflow/flex_template_job.py,sha256=CVD-_qODAvdoJ7y-XD1l8Fz-uvwjOz1zkcfHwGdPzQ8,81088
653
+ pulumi_gcp/dataflow/job.py,sha256=Eh4l5wjNUcC5-qlYfVNZznUk2LlhPQNTYoVaQYWdH-A,76573
653
654
  pulumi_gcp/dataflow/outputs.py,sha256=DVSc_fgMZ5AAIU4BrrksgcIcTFpV3o0dFeE22BaQo_I,52474
654
655
  pulumi_gcp/dataflow/pipeline.py,sha256=MvW7bEkaY9hZuGw4nr-VW7nBofyPCN6Y47vhx-8iM5g,53536
655
656
  pulumi_gcp/dataform/__init__.py,sha256=QlLR9uAkPukJBNrELJVXvQGYJrPffZZfwB5w_I0GnJU,576
@@ -956,16 +957,16 @@ pulumi_gcp/healthcare/hl7_store_iam_member.py,sha256=rkaWWJ5KoPYaW5bxRAwt9RiluUa
956
957
  pulumi_gcp/healthcare/hl7_store_iam_policy.py,sha256=3MEOzHgXBzTLNmHgkwkg-kUN-5OYmh47qZWhN74Iuk0,19295
957
958
  pulumi_gcp/healthcare/outputs.py,sha256=n7Ambh4CxtAgszESyChwDWGc6Hsjrmq8JqzotMImMV4,42833
958
959
  pulumi_gcp/iam/__init__.py,sha256=DTMTmz46DH_NNBCZcIJA7shNoyIowB4nkQP2D0d7JY8,690
959
- pulumi_gcp/iam/_inputs.py,sha256=at2CzE5NDemez29zzvgCJKH2RuG_zE2oiTslVkgls3w,43669
960
+ pulumi_gcp/iam/_inputs.py,sha256=aqFvg6iKZmygyKQZ1a6UKySfbwQddRph0HMSGdEziQw,53229
960
961
  pulumi_gcp/iam/access_boundary_policy.py,sha256=kBQBE3TT0F1esUciPD1hHcjkY9GCWfYKRzVu7mSLxHo,19412
961
962
  pulumi_gcp/iam/deny_policy.py,sha256=2pN7HMUQENcWXt-bw4A-rNMqvFHg1XiUk-rOBPys6ko,18766
962
963
  pulumi_gcp/iam/get_rule.py,sha256=04E6geOtYWJZWGp81Ww6iV4tc2qz1aVSmFkc70oTVLE,4693
963
964
  pulumi_gcp/iam/get_testable_permissions.py,sha256=blh1HCifwitPDq09ohbLYEcCr7wva9_Hn6tQvDJxTQw,7430
964
965
  pulumi_gcp/iam/get_workload_identity_pool.py,sha256=09Si1xb7-CWXHwVpYSbIFHPO1VDgLZN5rC2LL2Zb1KM,6530
965
966
  pulumi_gcp/iam/get_workload_identity_pool_provider.py,sha256=mhn3YZl_9fgu2Wlb5pzlbhj_GBQVy6PWHElVAJ9GFcA,9975
966
- pulumi_gcp/iam/outputs.py,sha256=vEm7JCna2gPjjXN0U5_4PVw34SOZ2EepM57F05DDxgY,51948
967
+ pulumi_gcp/iam/outputs.py,sha256=UvjOwWY1VRQWPgoxbI9E9qyljqUUeINoYgQqvIh1ZiU,61476
967
968
  pulumi_gcp/iam/workforce_pool.py,sha256=ipy1nYGdEOB0KllF5g1xDWAfI8QsW9wodXs0L-L9YwE,38388
968
- pulumi_gcp/iam/workforce_pool_provider.py,sha256=tCm7OXfV-e3HWOIFeZVl6mK9-JBw0ZaEHubloX4Nr3M,80181
969
+ pulumi_gcp/iam/workforce_pool_provider.py,sha256=-1F1Nn5ozh6Wf4yC3MDc_Bv1MXKKcGtrKprjR9sy2gQ,93827
969
970
  pulumi_gcp/iam/workload_identity_pool.py,sha256=ZQ5YdeGpeu_0L3mWfI9ebNW2cuHH5RncV4UazP_EFT0,26337
970
971
  pulumi_gcp/iam/workload_identity_pool_provider.py,sha256=PXPMOyyVFt0ZI8UNxRaXQgGE_N5t30sz5lhSqJbV6oQ,84836
971
972
  pulumi_gcp/iap/__init__.py,sha256=wPgYIPOVSJ_ITX7jsOs6BB49qzgabxcOXmEtVl33MCQ,2174
@@ -1027,10 +1028,11 @@ pulumi_gcp/identityplatform/tenant.py,sha256=jraR4Z9rWf7JIDKg-fn47fU-yrUO7Xd7VKA
1027
1028
  pulumi_gcp/identityplatform/tenant_default_supported_idp_config.py,sha256=bsdN6iYDdzuZJm8fnXnLW3lt66uxya11HJ1XplHpDxU,22525
1028
1029
  pulumi_gcp/identityplatform/tenant_inbound_saml_config.py,sha256=mYEGXsJvpKR9I6r81Al0TBNJID7TntcaVmCySTkTPBY,25763
1029
1030
  pulumi_gcp/identityplatform/tenant_oauth_idp_config.py,sha256=tn2nZ6uf2DqMXdMNsl3NHljw-bY3-MZKaGCj7o5e0oc,23273
1030
- pulumi_gcp/integrationconnectors/__init__.py,sha256=vJlzWncooKiDQnqEU8YG2SswtXpCErtAGgTACg8lExM,375
1031
+ pulumi_gcp/integrationconnectors/__init__.py,sha256=ikLXrtn4bsnI6RzLcID-FHxm64F3S4q2LOxbrFGYFcU,403
1031
1032
  pulumi_gcp/integrationconnectors/_inputs.py,sha256=rHMYANSDSGiCb4OgDdQlsvnTYIEg8AxT7ybZw28fhLs,99334
1032
1033
  pulumi_gcp/integrationconnectors/connection.py,sha256=sPd-PVrglqweIUL57WuAPpJFmZevmdFO43L2KIv5Wzg,94931
1033
1034
  pulumi_gcp/integrationconnectors/endpoint_attachment.py,sha256=BOXg7JSg5m9OYH_R4mjEnyvhCCIbHB-03H7-D5Ol1pI,28451
1035
+ pulumi_gcp/integrationconnectors/managed_zone.py,sha256=FnWxP2hzXbPIa3IU3JRseJerbb6oQr4Q0NnNYyes1lk,30850
1034
1036
  pulumi_gcp/integrationconnectors/outputs.py,sha256=_nOEX5LAG9ZmeEy1IN5daJK3x9MVBNGqHrQ0AWEA5A4,104367
1035
1037
  pulumi_gcp/kms/__init__.py,sha256=kW1sTv51kdDy5g3riS5K_jOEh0YzEl4ePE2elGuWjjM,1014
1036
1038
  pulumi_gcp/kms/_inputs.py,sha256=dGRHob4muqvxJiKBrVnsHsi0vJhylKqBUxc8k8-aZak,40159
@@ -1128,12 +1130,13 @@ pulumi_gcp/netapp/storage_pool.py,sha256=pcnADFvComU2YNIjO1cQ6ygXnmHu1gIayS85zVG
1128
1130
  pulumi_gcp/netapp/volume.py,sha256=W7fx4KgOP-lP8T70_9kAu577SMXQB3FIHPPFhuc2Uzo,83424
1129
1131
  pulumi_gcp/netapp/volume_replication.py,sha256=-PAoXnZOQTWNmIEoF5hIXbZzjW1hKOYqvdCWHhb1qvs,61357
1130
1132
  pulumi_gcp/netapp/volume_snapshot.py,sha256=nWAxK-KdBvqvFR4Ip0pY_p9dcDOpfGLIu_3B8_UVCD0,28220
1131
- pulumi_gcp/networkconnectivity/__init__.py,sha256=sbGAL154wGUpBJwdzsSjSfDGj_FD9ef9QhaQCQtEn0Y,459
1133
+ pulumi_gcp/networkconnectivity/__init__.py,sha256=precnbXbVh3d-l7PCBvQ47Y1KmPL3O_L-Xemc_OROYg,492
1132
1134
  pulumi_gcp/networkconnectivity/_inputs.py,sha256=p9PMRDLVyBUpBMLNJ4r4t_aVEEX_KlRP7Wa0IwIcMkc,29593
1133
1135
  pulumi_gcp/networkconnectivity/hub.py,sha256=keKmjRfz2eS5uX-Q9HB07ygpEr44Ael3rXnTyotiQLk,27913
1134
1136
  pulumi_gcp/networkconnectivity/internal_range.py,sha256=zq8yXc7-THpIe8YKdP2hM34dZm6l-An9rukmpIBt5-I,48166
1135
1137
  pulumi_gcp/networkconnectivity/outputs.py,sha256=cSm0s6tF8AvjnufIxfRH6nRWB0DkRRfn61M_UlxuT9g,28193
1136
1138
  pulumi_gcp/networkconnectivity/policy_based_route.py,sha256=kyO8FQBV1l8oB2dpqDeleqSsEtHzgrVnRWcTxzACEVQ,47059
1139
+ pulumi_gcp/networkconnectivity/regional_endpoint.py,sha256=HQM-WILOynRNlNmS7XtoQFaUnMdREaa2qJYT1M2CHCA,47226
1137
1140
  pulumi_gcp/networkconnectivity/service_connection_policy.py,sha256=w8rI3ga8KPpuca56o7onkF4GhVgRJqhiBS2C8Oja774,41201
1138
1141
  pulumi_gcp/networkconnectivity/spoke.py,sha256=Nne-UZ3AKUzcm0R1QDMElFuQD4kxgLaKgpihCk9q3uc,47352
1139
1142
  pulumi_gcp/networkmanagement/__init__.py,sha256=w0jJqOXlyUgN1FT_j4bGJV6EBhRPAJG4ZTKByZy5kUE,347
@@ -1148,16 +1151,16 @@ pulumi_gcp/networksecurity/address_group_iam_member.py,sha256=pJ2yLhX-mvKRfK_ErQ
1148
1151
  pulumi_gcp/networksecurity/address_group_iam_policy.py,sha256=T0YUjlxdl5PysR3MxmBICmt2xqGNOjsQaXQruZ2IuaI,20794
1149
1152
  pulumi_gcp/networksecurity/authorization_policy.py,sha256=NFcqrVCjn4402aDnApeJtC5Qg4__HSNefF01k5avddk,34411
1150
1153
  pulumi_gcp/networksecurity/client_tls_policy.py,sha256=RRmqH7ltJfTAywCvdvDSzHRBq2UEP8tRtBvb-WelTCw,37063
1151
- pulumi_gcp/networksecurity/firewall_endpoint.py,sha256=ir30Bwuwf7MzxTk7ZBpeHB6JMANk0Av6d5lHluCtkFE,29309
1152
- pulumi_gcp/networksecurity/firewall_endpoint_association.py,sha256=-vKRwpwYBOqGdrNKJZA_92TNxRRC4kE5b81i7PRdQVY,35585
1154
+ pulumi_gcp/networksecurity/firewall_endpoint.py,sha256=FYLlYJTD-lnBoR4175WJjgHph7TG5YKiTD8fTuuYJxs,31399
1155
+ pulumi_gcp/networksecurity/firewall_endpoint_association.py,sha256=hMK6MT0sRBtGTKHb_B_9rlCnQ4Yubewzljyo33coPD0,37205
1153
1156
  pulumi_gcp/networksecurity/gateway_security_policy.py,sha256=QW7-9tEss-qemJJZIM_3iNrlNH9Op8X464rRIxvH46w,32180
1154
1157
  pulumi_gcp/networksecurity/gateway_security_policy_rule.py,sha256=qb5ATPAVDVgR8iaDCK_3CNMLfMr7fI7YkPsU4Geob-k,41494
1155
1158
  pulumi_gcp/networksecurity/get_address_group_iam_policy.py,sha256=Rkdc_5P3MWBloXzVSs_67bU5WywYxAJ4bQguTC0sg1o,5877
1156
1159
  pulumi_gcp/networksecurity/outputs.py,sha256=vagjEyt3smhvYtfU8SLScKK5XFrifmPfFk5lgx0pWuU,47826
1157
- pulumi_gcp/networksecurity/security_profile.py,sha256=W4VWaW-OyvB-4I9yVUdFn45B5_aYPwvOSZ84aYAtVVE,34194
1158
- pulumi_gcp/networksecurity/security_profile_group.py,sha256=WMtJyVAuzSsbL78Ky4_THroQrXJVy0j2lA0GBp1P9rg,28877
1160
+ pulumi_gcp/networksecurity/security_profile.py,sha256=-JlKY5wfr-AElGKofO8gUm9_Y20plBqEZeBRPi1d4Tc,35046
1161
+ pulumi_gcp/networksecurity/security_profile_group.py,sha256=d8B70eYJVRORlNcMVdu_DpU1YOZ30vjVOUJUa2dNEEQ,30017
1159
1162
  pulumi_gcp/networksecurity/server_tls_policy.py,sha256=Ii8HY0ra0HBCaeqvRENsbTL5R9ShkUN9gr6qB3emMqE,48450
1160
- pulumi_gcp/networksecurity/tls_inspection_policy.py,sha256=7q4xlJ2xFKve3KTRO_Sluzx7bZ7bnOnOGmYcipMCSlg,29483
1163
+ pulumi_gcp/networksecurity/tls_inspection_policy.py,sha256=lTuStz9Apw4K3GITQGhD0OPB0kMMQwEIEs5OZMT7Jhw,30459
1161
1164
  pulumi_gcp/networksecurity/url_list.py,sha256=U-DL06rV536-0_QJGrqr841KAo8Bz1hF0J2gzj92zog,22260
1162
1165
  pulumi_gcp/networkservices/__init__.py,sha256=puTagPMsN15hEqVbKgAaOYd1WGQ3B5kjRR3jM0lmes8,621
1163
1166
  pulumi_gcp/networkservices/_inputs.py,sha256=MGQMf7RLDtLKAWWl90sOBG1kFtGMasKvTLJI7-nWmIA,227412
@@ -1213,7 +1216,7 @@ pulumi_gcp/orgpolicy/__init__.py,sha256=bdd_oQduV_xUj2RtYRYe5h9NzODH1KbvCbkkZLJp
1213
1216
  pulumi_gcp/orgpolicy/_inputs.py,sha256=Q9nLVXMAjQODetqcoXCQ_RmZDRouqelJqF3RB7YkdZc,32256
1214
1217
  pulumi_gcp/orgpolicy/custom_constraint.py,sha256=ubU3bu1as_XOsSFVy8QTtGcznTjf4_E9AzfiLlAWm7Q,33221
1215
1218
  pulumi_gcp/orgpolicy/outputs.py,sha256=lWC69234Vv4r2aFVHKj8jz6_XxBCvOhWG-LFBM7WK3Y,30184
1216
- pulumi_gcp/orgpolicy/policy.py,sha256=1d8O1rKxVdwtEqhz1cEM4211iML-s3Fvv2Fu6DQWmb8,29197
1219
+ pulumi_gcp/orgpolicy/policy.py,sha256=NuWPjmNmhfllkzeUQWlbhio_owLQXEv5Kr-3UCAFkyk,29197
1217
1220
  pulumi_gcp/osconfig/__init__.py,sha256=yDD2y1RayZ6ZJsosFD0HA15H2OCYk_GwALeFoLuEusk,412
1218
1221
  pulumi_gcp/osconfig/_inputs.py,sha256=mFZ0_vJRhp0Am7JCUMYEnHdZmHHE7GcJwKVh3qfo5IY,276549
1219
1222
  pulumi_gcp/osconfig/guest_policies.py,sha256=B4Gs3L8eKLO1lc-XoRnlb6QBOHI0-7Aw6umkjvLyEjg,47422
@@ -1263,7 +1266,7 @@ pulumi_gcp/pubsub/schema.py,sha256=UZZm9YIIA2yD4ks6SxbcgNPhWlLIhIfwfMpwYumBJeo,2
1263
1266
  pulumi_gcp/pubsub/schema_iam_binding.py,sha256=9cd5YQMWJtrue1gVYN9YoB6jARQc_oPXgwpUD4K--_c,35792
1264
1267
  pulumi_gcp/pubsub/schema_iam_member.py,sha256=IHE6UQr8UfM10JGv1cESNCULwgDBL9G5m7D0IbGKJm0,35396
1265
1268
  pulumi_gcp/pubsub/schema_iam_policy.py,sha256=P3UptfGICZ4-NiY91hZluUIYr26NIynZsL-RZaooCQs,22247
1266
- pulumi_gcp/pubsub/subscription.py,sha256=b1Q0L65Vft1vIHjgE85tDXenRLxgP1TQVrTyRB5XfAA,100700
1269
+ pulumi_gcp/pubsub/subscription.py,sha256=R8JgbNsjedFCYExbFYe-38SmjkAi9Jb5CVAfmcy8wyQ,100700
1267
1270
  pulumi_gcp/pubsub/subscription_iam_binding.py,sha256=6alwG6s2GlLDSTsMQ2_ZTdpXfPR7DBA07R2hRVs0WJI,30801
1268
1271
  pulumi_gcp/pubsub/subscription_iam_member.py,sha256=I6ncuD2k0EMohbaFYVWizEpITJVPu-0w6WZd4kjkfTA,30413
1269
1272
  pulumi_gcp/pubsub/subscription_iam_policy.py,sha256=vOeZl0snHTWrsGFVN_lDl7gupTd_yp41FDq-uqp0D4Q,19875
@@ -1546,7 +1549,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=KnqAQNX01bqynD7N
1546
1549
  pulumi_gcp/workstations/workstation_iam_binding.py,sha256=ovQjU8TBCo9xjSArziSIyzV_HyIf0Ke4IaDLd4CnV2Q,35844
1547
1550
  pulumi_gcp/workstations/workstation_iam_member.py,sha256=3zBaMJQnUB4QQygrFBk8HsuKtvQIwOPManWiphBVRCQ,35448
1548
1551
  pulumi_gcp/workstations/workstation_iam_policy.py,sha256=u5aW7Jd-oDY0SKcuAHn_O-sN7NIRvwS9Jz6slzHWlXo,22172
1549
- pulumi_gcp-7.23.0a1715621482.dist-info/METADATA,sha256=G_7EE-Vsf2HZlZdiMqlbGeYsYHzoGdzkhGuHkhmkZEw,2662
1550
- pulumi_gcp-7.23.0a1715621482.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1551
- pulumi_gcp-7.23.0a1715621482.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1552
- pulumi_gcp-7.23.0a1715621482.dist-info/RECORD,,
1552
+ pulumi_gcp-7.23.0a1715808346.dist-info/METADATA,sha256=Uxvn7bchMp5LkxCbqV76xN6Iug_O7DRnKAMh2gFrEuk,2662
1553
+ pulumi_gcp-7.23.0a1715808346.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1554
+ pulumi_gcp-7.23.0a1715808346.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1555
+ pulumi_gcp-7.23.0a1715808346.dist-info/RECORD,,