pulumi-gcp 7.23.0__py3-none-any.whl → 7.23.0a1715695885__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 +0 -24
  2. pulumi_gcp/bigquery/table.py +0 -47
  3. pulumi_gcp/bigtable/__init__.py +0 -1
  4. pulumi_gcp/bigtable/_inputs.py +0 -101
  5. pulumi_gcp/bigtable/outputs.py +0 -119
  6. pulumi_gcp/certificateauthority/certificate_template.py +0 -70
  7. pulumi_gcp/cloudbuildv2/repository.py +2 -2
  8. pulumi_gcp/clouddeploy/_inputs.py +0 -96
  9. pulumi_gcp/clouddeploy/custom_target_type.py +0 -46
  10. pulumi_gcp/clouddeploy/delivery_pipeline.py +7 -7
  11. pulumi_gcp/clouddeploy/outputs.py +1 -96
  12. pulumi_gcp/clouddeploy/target.py +7 -54
  13. pulumi_gcp/compute/_inputs.py +0 -689
  14. pulumi_gcp/compute/firewall_policy_rule.py +10 -125
  15. pulumi_gcp/compute/network_firewall_policy_rule.py +10 -125
  16. pulumi_gcp/compute/outputs.py +0 -684
  17. pulumi_gcp/compute/region_network_firewall_policy_rule.py +10 -125
  18. pulumi_gcp/compute/region_security_policy_rule.py +1 -230
  19. pulumi_gcp/container/_inputs.py +3 -67
  20. pulumi_gcp/container/outputs.py +4 -93
  21. pulumi_gcp/dataflow/flex_template_job.py +7 -7
  22. pulumi_gcp/dataflow/job.py +7 -7
  23. pulumi_gcp/iam/_inputs.py +2 -191
  24. pulumi_gcp/iam/outputs.py +2 -197
  25. pulumi_gcp/iam/workforce_pool_provider.py +0 -245
  26. pulumi_gcp/integrationconnectors/__init__.py +0 -1
  27. pulumi_gcp/networkconnectivity/__init__.py +0 -1
  28. pulumi_gcp/networksecurity/firewall_endpoint.py +0 -34
  29. pulumi_gcp/networksecurity/firewall_endpoint_association.py +0 -24
  30. pulumi_gcp/networksecurity/security_profile.py +0 -16
  31. pulumi_gcp/networksecurity/security_profile_group.py +0 -18
  32. pulumi_gcp/networksecurity/tls_inspection_policy.py +0 -16
  33. pulumi_gcp/orgpolicy/policy.py +2 -2
  34. pulumi_gcp/pubsub/subscription.py +4 -4
  35. pulumi_gcp/pulumi-plugin.json +1 -1
  36. {pulumi_gcp-7.23.0.dist-info → pulumi_gcp-7.23.0a1715695885.dist-info}/METADATA +1 -1
  37. {pulumi_gcp-7.23.0.dist-info → pulumi_gcp-7.23.0a1715695885.dist-info}/RECORD +39 -42
  38. pulumi_gcp/bigtable/authorized_view.py +0 -440
  39. pulumi_gcp/integrationconnectors/managed_zone.py +0 -753
  40. pulumi_gcp/networkconnectivity/regional_endpoint.py +0 -946
  41. {pulumi_gcp-7.23.0.dist-info → pulumi_gcp-7.23.0a1715695885.dist-info}/WHEEL +0 -0
  42. {pulumi_gcp-7.23.0.dist-info → pulumi_gcp-7.23.0a1715695885.dist-info}/top_level.txt +0 -0
@@ -360,23 +360,6 @@ 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
-
380
363
  ## Example Usage
381
364
 
382
365
  ### Network Security Firewall Endpoint Basic
@@ -429,23 +412,6 @@ class FirewallEndpoint(pulumi.CustomResource):
429
412
  args: FirewallEndpointArgs,
430
413
  opts: Optional[pulumi.ResourceOptions] = None):
431
414
  """
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
-
449
415
  ## Example Usage
450
416
 
451
417
  ### Network Security Firewall Endpoint Basic
@@ -445,18 +445,6 @@ 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
-
460
448
  ## Example Usage
461
449
 
462
450
  ### Network Security Firewall Endpoint Association Basic
@@ -520,18 +508,6 @@ class FirewallEndpointAssociation(pulumi.CustomResource):
520
508
  args: FirewallEndpointAssociationArgs,
521
509
  opts: Optional[pulumi.ResourceOptions] = None):
522
510
  """
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
-
535
511
  ## Example Usage
536
512
 
537
513
  ### Network Security Firewall Endpoint Association Basic
@@ -408,14 +408,6 @@ 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
-
419
411
  ## Example Usage
420
412
 
421
413
  ### Network Security Security Profile Basic
@@ -501,14 +493,6 @@ class SecurityProfile(pulumi.CustomResource):
501
493
  args: SecurityProfileArgs,
502
494
  opts: Optional[pulumi.ResourceOptions] = None):
503
495
  """
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
-
512
496
  ## Example Usage
513
497
 
514
498
  ### Network Security Security Profile Basic
@@ -350,15 +350,6 @@ 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
-
362
353
  ## Example Usage
363
354
 
364
355
  ### Network Security Security Profile Group Basic
@@ -418,15 +409,6 @@ class SecurityProfileGroup(pulumi.CustomResource):
418
409
  args: Optional[SecurityProfileGroupArgs] = None,
419
410
  opts: Optional[pulumi.ResourceOptions] = None):
420
411
  """
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
-
430
412
  ## Example Usage
431
413
 
432
414
  ### Network Security Security Profile Group Basic
@@ -279,14 +279,6 @@ 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
-
290
282
  ## Example Usage
291
283
 
292
284
  ### Network Security Tls Inspection Policy Basic
@@ -407,14 +399,6 @@ class TlsInspectionPolicy(pulumi.CustomResource):
407
399
  args: TlsInspectionPolicyArgs,
408
400
  opts: Optional[pulumi.ResourceOptions] = None):
409
401
  """
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
-
418
402
  ## Example Usage
419
403
 
420
404
  ### 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_29439",
300
+ name="custom.disableGkeAutoUpgrade_75092",
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_29439",
452
+ name="custom.disableGkeAutoUpgrade_75092",
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="-_87786",
1043
+ filename_suffix="-_2605",
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="-_2067",
1070
+ filename_suffix="-_34535",
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="-_87786",
1370
+ filename_suffix="-_2605",
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="-_2067",
1397
+ filename_suffix="-_34535",
1398
1398
  max_bytes=1000,
1399
1399
  max_duration="300s",
1400
1400
  avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "gcp",
4
- "version": "7.23.0"
4
+ "version": "7.23.0-alpha.1715695885+24d21b0"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.23.0
3
+ Version: 7.23.0a1715695885
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=cTsfV_uMar9JkVxnIKk-JImSENbtMoyS79P73LyrL00,188095
1
+ pulumi_gcp/__init__.py,sha256=kzZy8-6E6c_f4V_gl_1mhaaTfoQUfDvWFcU3GrtaG0Q,187499
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=tOuFjk8vYfLTuPMokebFN0Almoh16zQPEdzSEBDhIdw,63
5
+ pulumi_gcp/pulumi-plugin.json,sha256=AxL9hGrSy_Hn9ew34hPN6AhG6CGR4pB1a0WMbGHYT6k,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=EuWgheTpwi5Eg9sRt_nXiasn4VKumlW8iHWskEQSlv8,93740
178
+ pulumi_gcp/bigquery/table.py,sha256=hF0NHLB0hpSdXXB2sKdtA5l56O_hXcjP84gVMy6rdHw,90807
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,9 +197,8 @@ 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=kt14Qjgv4IFG3DZNFgX0vGMOAhjc65mvHWIGGOzWMqY,693
201
- pulumi_gcp/bigtable/_inputs.py,sha256=cTFih6JDhPsoSGrqCqffGtrQ7t_irEiRfxyDpuxm0pI,24911
202
- pulumi_gcp/bigtable/authorized_view.py,sha256=liKP8YIB6nmABY4t3msepIYK40UIiYwMmYEPFHqJLJ4,19349
200
+ pulumi_gcp/bigtable/__init__.py,sha256=jYqlYxiHYgvzCxEDgEx2Q7TVjW5kkgWPQfQEYkZxydc,662
201
+ pulumi_gcp/bigtable/_inputs.py,sha256=a8341yYrcRW4VBhvo6yJVaou1MaKAIs6JiYHNCkqlhw,19615
203
202
  pulumi_gcp/bigtable/gc_policy.py,sha256=D0HjmgI2a7Z7BaGg_kEh4_eOro0-4xaRZzSIpYhjtMg,32908
204
203
  pulumi_gcp/bigtable/get_instance_iam_policy.py,sha256=D_fnKnUtBb2ndgOnSnUK_1nVzGc16NAQiLYLci2l8OU,4647
205
204
  pulumi_gcp/bigtable/get_table_iam_policy.py,sha256=Vf2vSTD-KnuSZuSTqwrDtxsjCzqJ6eazIVVYsb6dZlY,5316
@@ -207,7 +206,7 @@ pulumi_gcp/bigtable/instance.py,sha256=wQDGOmILtIlF_6gY2cRqFrmCccdWs9MVpP4CoIa-2
207
206
  pulumi_gcp/bigtable/instance_iam_binding.py,sha256=Huy7zqvsapSCvydRKBejKcyTGfLxJlX9S9LDGnah73A,32540
208
207
  pulumi_gcp/bigtable/instance_iam_member.py,sha256=86296QYK0deRS9pnvYWM0Oi7ba9VDgRcCV19qeVSy6k,32152
209
208
  pulumi_gcp/bigtable/instance_iam_policy.py,sha256=jOUOLRf72UhmLYqsqQ8qBhu-qy6OmCBrJPuOvMi3BRk,20551
210
- pulumi_gcp/bigtable/outputs.py,sha256=ni8bGiXI6FAy8At86BvXbu9QUXeIgnTAksc9omY4_AQ,22254
209
+ pulumi_gcp/bigtable/outputs.py,sha256=y9iP_lq7cZC1VCKPAFzi46AJAS64uF7EeXPSRaueRAI,16778
211
210
  pulumi_gcp/bigtable/table.py,sha256=54EIHAbyLoFcZSmFyfkJzFf8HIA9VIHlPjOIllepmLo,27942
212
211
  pulumi_gcp/bigtable/table_iam_binding.py,sha256=Es7hTeqgDAfk5gOjP8vwBqbeq1GB9H5VSLOSAZy_2OU,34771
213
212
  pulumi_gcp/bigtable/table_iam_member.py,sha256=QgNBnyy4u0uHgNlGa29BL5VHNR3zd5_zd8Cs9MG897E,34383
@@ -243,7 +242,7 @@ pulumi_gcp/certificateauthority/ca_pool_iam_binding.py,sha256=ChIw_oui-Jlwdf3z7U
243
242
  pulumi_gcp/certificateauthority/ca_pool_iam_member.py,sha256=gzBPr6nvBZm9k8o3AYoqgzL4dbbJYyfMarz4d_JZct4,49084
244
243
  pulumi_gcp/certificateauthority/ca_pool_iam_policy.py,sha256=pmU_L3RgBZrzN0ewjn9ggax85L5elz08Iz_zpWuq1xc,34455
245
244
  pulumi_gcp/certificateauthority/certificate.py,sha256=F7Oqkb1sC5VJ2WgPfZXlqxkpAFrshV_lSLw_vWYMmUY,96842
246
- pulumi_gcp/certificateauthority/certificate_template.py,sha256=xLn46nRRRAx37Z1rihZCrVNrm7C3haW3Lr6P3usdqnE,53826
245
+ pulumi_gcp/certificateauthority/certificate_template.py,sha256=62l3asYYTNFujMuauiVjWbvcExeMe-4xYUlNDEXVQp0,48845
247
246
  pulumi_gcp/certificateauthority/certificate_template_iam_binding.py,sha256=j0NZlNer9HJocT8U2HIx74rLV17YcWzDAT98NWRcThw,50269
248
247
  pulumi_gcp/certificateauthority/certificate_template_iam_member.py,sha256=bUtSy9UNbtEl0w2XBy0Yn0Lt9RIcwA3-ei6W4chPVhY,49869
249
248
  pulumi_gcp/certificateauthority/certificate_template_iam_policy.py,sha256=EcrSuS5po399CmV58Yvqma3c6DDxh2kfpQqX3C62SP0,34967
@@ -283,23 +282,23 @@ pulumi_gcp/cloudbuildv2/connection_iam_member.py,sha256=yCE_fRBKt3IpkVpc42x1ugD4
283
282
  pulumi_gcp/cloudbuildv2/connection_iam_policy.py,sha256=N7UKLlL_WqoaFt9sYUOE7AoLrM85RyYiaLgiyLZ9W_g,26268
284
283
  pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py,sha256=t1kjGr-ekjq5m_U7HgshA_SGThldkISsaB9UrWkTV7c,6254
285
284
  pulumi_gcp/cloudbuildv2/outputs.py,sha256=7qZifxtllaCUA7LOpb6w-nSGDjHiKQfdO6XFgkRwJOY,27019
286
- pulumi_gcp/cloudbuildv2/repository.py,sha256=FWulO74GOnJ35m3JNESWo-UFBofzreMc8dL-52LdZoQ,33883
285
+ pulumi_gcp/cloudbuildv2/repository.py,sha256=VpgFxgc8ZfcKl-oJ5C9YEABHyS7lrWW30xLx7IvYZKc,33879
287
286
  pulumi_gcp/clouddeploy/__init__.py,sha256=lk4ZmMl9QmtLHgsj9xZj5gp9wlFzRWY2Ud5xJKkHg9U,932
288
- pulumi_gcp/clouddeploy/_inputs.py,sha256=3J1R5vnTV8LIlK1XjE2Uro9GuUkE_kzXSI6bm178QoA,98120
287
+ pulumi_gcp/clouddeploy/_inputs.py,sha256=-5y0Ws9OlM7bSA3PejMXmwwHSxriimKpCIgUsMYHCAA,93938
289
288
  pulumi_gcp/clouddeploy/automation.py,sha256=vppf5bU5BHyqnxp_xqe2Q2rUcG5HvV7YiutpbvR1240,60653
290
- pulumi_gcp/clouddeploy/custom_target_type.py,sha256=73rzq_x-6KatkSvkXXk22BEyHxCoMfRygZbjuIFXaMA,48419
289
+ pulumi_gcp/clouddeploy/custom_target_type.py,sha256=7ucDI2D_IgNjSU9JoV26cY8PITYjL-vyOYJwROQMiKg,46225
291
290
  pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py,sha256=hC-rWEfNa6JCuvrlT3bPWlvKAJ6wN72imq-nr_Q8ckM,12690
292
291
  pulumi_gcp/clouddeploy/custom_target_type_iam_member.py,sha256=1fSYPe7Ul7s1SVumpEQfJTw9nn8DBhaOvHzAuRbL6-g,12404
293
292
  pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py,sha256=uzBDgnGdudOhLX2jOEjRDPFU0_UNT-4rCd5lPPYOGD8,9691
294
- pulumi_gcp/clouddeploy/delivery_pipeline.py,sha256=MzZX0-pG7p0M5DIhpXGDLF4HOATChx1DUfqiCPttJeY,58152
293
+ pulumi_gcp/clouddeploy/delivery_pipeline.py,sha256=FD_XxqPmMCl6Ta3kOPlnbbIxq-UGTYAsJeRbRocvW6c,58264
295
294
  pulumi_gcp/clouddeploy/delivery_pipeline_iam_binding.py,sha256=Ag9GdAfz8hePblxdk3NwyB2g2cDhgfXcGNIxp84uQQs,12690
296
295
  pulumi_gcp/clouddeploy/delivery_pipeline_iam_member.py,sha256=lnE9I3707llXmtSUfVOH0bRL34LaATFvKj5q8-n3Vo0,12404
297
296
  pulumi_gcp/clouddeploy/delivery_pipeline_iam_policy.py,sha256=0vlnTmTPTdTet59NIwCMSHib4XO6MG-L7_jqJrv5n58,9691
298
297
  pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py,sha256=bIEhCGaGxma_Jdq8pdTwT0gCK7kw2uYmUm9NrbgAAek,6476
299
298
  pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py,sha256=SyTG1G-a3cpIpHRvI0vtTC0cucVCcpc0vzy54YgF-vA,6173
300
299
  pulumi_gcp/clouddeploy/get_target_iam_policy.py,sha256=8CQHGupOtfrTRxGDWA1OvYkiNhczjwOKxAj23-lR9cQ,5870
301
- pulumi_gcp/clouddeploy/outputs.py,sha256=reUThUdntiDTzkYeXF2xqM6lUwbVaafkuAsmUvF1D3M,92073
302
- pulumi_gcp/clouddeploy/target.py,sha256=_I_XdJ_fdciAL6k-oK49NdZvne2ABdGl2xPf8iAjynY,63278
300
+ pulumi_gcp/clouddeploy/outputs.py,sha256=BM7DGZcLjMOI4GimJFsGvC3D3QH-XeAbR4F7Sk0vPOA,88153
301
+ pulumi_gcp/clouddeploy/target.py,sha256=MRlNeIuaC391ANd8gDW_xvBwnIrpirYegttLry_5EkM,60924
303
302
  pulumi_gcp/clouddeploy/target_iam_binding.py,sha256=nXU0KeCnToysl-n-89AdE4bNqjvsOR-ZmM3uSRXC5Jg,12370
304
303
  pulumi_gcp/clouddeploy/target_iam_member.py,sha256=VFGg_rhnghS03hL_hXeY-sASQlukX0R1v6Qj2-je2UY,12084
305
304
  pulumi_gcp/clouddeploy/target_iam_policy.py,sha256=LKGNUVdgpBBi8F0ACahI-Ib2f2oQr9_rBLlrLqIFG-o,9471
@@ -387,7 +386,7 @@ pulumi_gcp/composer/get_image_versions.py,sha256=INMRwQiuCMb_B9CxdnvOCDz1Q47P2HW
387
386
  pulumi_gcp/composer/outputs.py,sha256=IozJ_7QofQoogKX8NTktyLlfqppWqZ2aFmuodre1UAM,176480
388
387
  pulumi_gcp/composer/user_workloads_secret.py,sha256=Lxw9rZ7eN5p7-FBJpygfVs457o7Yost_YxQe9TVBUog,17268
389
388
  pulumi_gcp/compute/__init__.py,sha256=U8KHJyoaKEnTdgV8xAk4a2fAUf6Ol0FYGtLLDyPq9ig,7270
390
- pulumi_gcp/compute/_inputs.py,sha256=dWySKb9CtBAfLS5ER6dd1GmXcWu8tZUc94Bi6r7qVY0,1847988
389
+ pulumi_gcp/compute/_inputs.py,sha256=OoZNUpD8V17S7Jpp37yYQ9V9JtX1CSa4Cb5436Yiuj0,1805788
391
390
  pulumi_gcp/compute/address.py,sha256=4Q5PUz8nqxdNGb1OB33droaQLvyROO2wkfCnRc-GgrA,69609
392
391
  pulumi_gcp/compute/attached_disk.py,sha256=lwmvfIaNwCrdHeO6mlDOV10k7BwsFdAV-1nKGscMwy0,28091
393
392
  pulumi_gcp/compute/autoscaler.py,sha256=aR3dVzwCvtrHmu2ZDuIdLt3C5Wud3DmY2DTknRPFHgM,33140
@@ -412,7 +411,7 @@ pulumi_gcp/compute/external_vpn_gateway.py,sha256=Nk5qkUC6bk0Itz2kWHdKoqqunZqOHm
412
411
  pulumi_gcp/compute/firewall.py,sha256=LqJ_B6g-Y0ueX2wpj359FF4B-XsBjrxnV98U-64XYF8,86448
413
412
  pulumi_gcp/compute/firewall_policy.py,sha256=h3eCtlW2LF1xdRLmgO5D0bhqHZgyky1e_ZS6Rw8PV7o,24166
414
413
  pulumi_gcp/compute/firewall_policy_association.py,sha256=awa8vOfDIyq9txcPHXwZJLFWOM7uq-yigzJaOENAKa0,14590
415
- pulumi_gcp/compute/firewall_policy_rule.py,sha256=vMyuJC0oTqxwFwSfHbt34-tKi4DBRxuBnHRBoe7FEe8,47411
414
+ pulumi_gcp/compute/firewall_policy_rule.py,sha256=ltDJStHOamKxFSRcfwEQyDTqw8xjmNW1jOMXXtOH980,39898
416
415
  pulumi_gcp/compute/forwarding_rule.py,sha256=P8xJJxfcp_qWZdsZipxJMr8tNipZ9VMd7vH1v7CF-24,233675
417
416
  pulumi_gcp/compute/get_address.py,sha256=d5O8Ku3aTyKo0MMWMtoqm5DJcaDVs9MnHRZhv0yz_SQ,9616
418
417
  pulumi_gcp/compute/get_addresses.py,sha256=ao4CoyUBv_8vKAH62TbL6563E7kyUJ_p-eKvwbFmXx4,9480
@@ -506,7 +505,7 @@ pulumi_gcp/compute/network_endpoint_group.py,sha256=cWkFwQjlyE3EpgQJI3V3mabdJ-UQ
506
505
  pulumi_gcp/compute/network_endpoint_list.py,sha256=_wxlDaq7Qxhp1KCS_LtTsB2aRMCasPO_7wCeuEWyrCY,25134
507
506
  pulumi_gcp/compute/network_firewall_policy.py,sha256=H18AqpUBLRNCEQTTgouYz_SouHP7A9bEoCW0AZemQpw,23362
508
507
  pulumi_gcp/compute/network_firewall_policy_association.py,sha256=-0cIa6bHEoauslRbFKB4NmlfrZMXEoyUnmcrT-no4Wk,16240
509
- pulumi_gcp/compute/network_firewall_policy_rule.py,sha256=0eJV_AnCxIahn3A-v2ERDoSD6BzN0nSamVuTsKSYj-4,57262
508
+ pulumi_gcp/compute/network_firewall_policy_rule.py,sha256=UYmmfG5a1LFVmCTkP_I9llYR20GQbgXq6PgLHQfJhl8,49749
510
509
  pulumi_gcp/compute/network_peering.py,sha256=9-abuS5sk7YFzLdF8Xo7gHsKMxjpjNd_3hIzwIf5OeE,31581
511
510
  pulumi_gcp/compute/network_peering_routes_config.py,sha256=w_6gppjYzoLihqH0uRkg6QsXM302u_exyfMOYeGyYyE,24640
512
511
  pulumi_gcp/compute/node_group.py,sha256=rRmpkWm67P2Zxl0MZsjD2MyrSdfWf0brYtQbc-9csnM,48424
@@ -514,7 +513,7 @@ pulumi_gcp/compute/node_template.py,sha256=VIZ_KQhSms9qfQbXptNyyO3aE5BkDFutEF2pS
514
513
  pulumi_gcp/compute/organization_security_policy.py,sha256=WnK0cQq-YFe7S-QFwbyH9turB3SnFOjeVxpL2Cx7Hlw,19124
515
514
  pulumi_gcp/compute/organization_security_policy_association.py,sha256=SDW0jUsqx77VAUmO36GMwtGVdVdGq3VB_Ea6UNdv-hY,16575
516
515
  pulumi_gcp/compute/organization_security_policy_rule.py,sha256=T1jCY7e6zDtF0fOVdTIGUqA0UjXrXWP2xuqHC1PrT4A,35414
517
- pulumi_gcp/compute/outputs.py,sha256=RHNagU7hpSIv7D6TSAwPAtVd5ejLIJaI5ohnwnLh_yM,2272753
516
+ pulumi_gcp/compute/outputs.py,sha256=vXa5pv4YiC0yi9B8zzgxNrlvWaf3Jpj3mRnULpxj1YY,2232218
518
517
  pulumi_gcp/compute/packet_mirroring.py,sha256=KpHug1OqS-bUu8jIudCZ4pyEGC10mAnaIJtka_Q9CdQ,34897
519
518
  pulumi_gcp/compute/per_instance_config.py,sha256=3047DIbni35ArkAXvim-HvjKJln_1mzyIAXOMyNjgnU,38507
520
519
  pulumi_gcp/compute/project_default_network_tier.py,sha256=OuSb7cbTTKj2Iy111b33AtdbGEFDd8n2sDBz0w5C--I,11101
@@ -540,10 +539,10 @@ pulumi_gcp/compute/region_network_endpoint.py,sha256=hzwS7Bnh9BJ24KC0FPT5I1wdaUz
540
539
  pulumi_gcp/compute/region_network_endpoint_group.py,sha256=wO3R6CzoTAAX57eOMiTJ49kJ9Oii28HWLW5zNb4GX3E,65942
541
540
  pulumi_gcp/compute/region_network_firewall_policy.py,sha256=KNKunkmOq7FJYrHtgiQIshL-YN_bv8-958iTVDWEkUU,25828
542
541
  pulumi_gcp/compute/region_network_firewall_policy_association.py,sha256=N4mMYCMtgdOPfRc-KGfU3oz_krQDfQfTgyG55Y5fDSU,18433
543
- pulumi_gcp/compute/region_network_firewall_policy_rule.py,sha256=r-YPEUXtpvB5z1Fqvud2A5k3Y1gerTqDqHkfQZZuLNA,60085
542
+ pulumi_gcp/compute/region_network_firewall_policy_rule.py,sha256=rdbAzOe5RmBpyL0mavQFh0VviIB2yi_MBTOEQt5bbLk,52572
544
543
  pulumi_gcp/compute/region_per_instance_config.py,sha256=oqOSQN82yhzEQVChBqnYMCDSGxEi0UIVjdETEO_8cAA,40018
545
544
  pulumi_gcp/compute/region_security_policy.py,sha256=l5Hvqie8f8Grt2UkOwqvOkiJBJgqEVSy2ZPCg94Ktns,43669
546
- pulumi_gcp/compute/region_security_policy_rule.py,sha256=XCHfq1tcOqD1UPRwqciL1GfePgPoOv5XMCaQKEqfn7g,68960
545
+ pulumi_gcp/compute/region_security_policy_rule.py,sha256=pOQxcAmgqlzmQRqdqKuLy5QSPisoAbmUp-53kBS81WY,55266
547
546
  pulumi_gcp/compute/region_ssl_certificate.py,sha256=0CWc9VsVc1LXljgqx4tJ85S-Sb5GYSEzK8K-iQFm6kg,40346
548
547
  pulumi_gcp/compute/region_ssl_policy.py,sha256=hv-GxDxw_zUf0pk6BDmi0mt-5hFTIKdkIS4vEq8u3ss,38265
549
548
  pulumi_gcp/compute/region_target_http_proxy.py,sha256=bDpRvJ7WAWUwn4kPiJpYiquKWY-3SLtu6cOQo_Lvpak,28518
@@ -589,7 +588,7 @@ pulumi_gcp/config/__init__.pyi,sha256=WOGxK3945Bs4tviUFKJ6TY4Ak8x1yarfYm_eTqU2ML
589
588
  pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
590
589
  pulumi_gcp/config/vars.py,sha256=KF6KTmxkHAONIKZSJjpL7dOdvBcuSG8uNfDGTFqSsmI,23587
591
590
  pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
592
- pulumi_gcp/container/_inputs.py,sha256=s3cuQSyrI1A2hj71tFyFdNeTeM1-A1g-6WqwL36lqdo,622195
591
+ pulumi_gcp/container/_inputs.py,sha256=fno2BbpNLLY_PljavR00MYSin7_Kdy444R5sFGz1uM8,618374
593
592
  pulumi_gcp/container/attached_cluster.py,sha256=e1fsTpAkFAo7gUZIrUb5qQSpYyLQocld1Ree5qxJBuk,70840
594
593
  pulumi_gcp/container/aws_cluster.py,sha256=yWJcTBm6vEc0wAB8d1pbq_-jtYIlrF0_Jm89cxb7Np4,71042
595
594
  pulumi_gcp/container/aws_node_pool.py,sha256=r9qLIusTAcjDrK4glafTTsCycwG0O2W-TG-uvMyoV4s,80849
@@ -606,7 +605,7 @@ pulumi_gcp/container/get_engine_versions.py,sha256=mTgdiSsdq7VpWmqwKBfTw0pd2GYVZ
606
605
  pulumi_gcp/container/get_registry_image.py,sha256=BK2v8NjiPMfRdXiuhJauP4H0otPr9xYzZJmDJNyidtQ,6992
607
606
  pulumi_gcp/container/get_registry_repository.py,sha256=8j5cl1J9lQtItliF6Cjayatzqclp7-9PDwEX1bo8-uM,5353
608
607
  pulumi_gcp/container/node_pool.py,sha256=C_lZMLL1rRGIQO4tKamhh8pLq6ZR9ih-FvxkjG3mUig,73692
609
- pulumi_gcp/container/outputs.py,sha256=RwP1oPVeXPRO_a7dtzPfTBxN3ostd7Gr6oOSUY7E674,846495
608
+ pulumi_gcp/container/outputs.py,sha256=aWeV4rvzsJEljLJzqmde-CD5l5o_iN3LZO5hDLlJUzE,841609
610
609
  pulumi_gcp/container/registry.py,sha256=UoKQZ7gwQI6GyL9amL5yxt9g0PIep9qky5Kodd8Z8X0,13113
611
610
  pulumi_gcp/containeranalysis/__init__.py,sha256=gENWQXPC0oV7t5uEv6IgscsCOVeXKa7AHewwOiVIgek,488
612
611
  pulumi_gcp/containeranalysis/_inputs.py,sha256=1yTLGmL7agpwp0maJz0rEzueNmb9QOpSEcdah1zfBus,12213
@@ -649,8 +648,8 @@ pulumi_gcp/datacatalog/taxonomy_iam_member.py,sha256=uD6b8XRc165KGf0-ucxoOXiYavd
649
648
  pulumi_gcp/datacatalog/taxonomy_iam_policy.py,sha256=P2DRij67Onh2xWVvXQSdmIXdjTx0FTsOYXtErzB1yic,23886
650
649
  pulumi_gcp/dataflow/__init__.py,sha256=qS8pqb0y81sac2hdiA-ho_6vCzHWikL_04SBITos24I,390
651
650
  pulumi_gcp/dataflow/_inputs.py,sha256=9iNp5uv7PEvSYaUjJ-N6fzn1HH-z16_hD2kzuy5r10Y,55942
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
651
+ pulumi_gcp/dataflow/flex_template_job.py,sha256=HdfBlVPsXfwGJekATLw1TCCqQAvfur_O5pWqNnGRdCY,80094
652
+ pulumi_gcp/dataflow/job.py,sha256=2LT7_wK0GqaSUCyAmzwWnkxTSfX9Nk1wk_lZXbpCmQY,75579
654
653
  pulumi_gcp/dataflow/outputs.py,sha256=DVSc_fgMZ5AAIU4BrrksgcIcTFpV3o0dFeE22BaQo_I,52474
655
654
  pulumi_gcp/dataflow/pipeline.py,sha256=MvW7bEkaY9hZuGw4nr-VW7nBofyPCN6Y47vhx-8iM5g,53536
656
655
  pulumi_gcp/dataform/__init__.py,sha256=QlLR9uAkPukJBNrELJVXvQGYJrPffZZfwB5w_I0GnJU,576
@@ -957,16 +956,16 @@ pulumi_gcp/healthcare/hl7_store_iam_member.py,sha256=rkaWWJ5KoPYaW5bxRAwt9RiluUa
957
956
  pulumi_gcp/healthcare/hl7_store_iam_policy.py,sha256=3MEOzHgXBzTLNmHgkwkg-kUN-5OYmh47qZWhN74Iuk0,19295
958
957
  pulumi_gcp/healthcare/outputs.py,sha256=n7Ambh4CxtAgszESyChwDWGc6Hsjrmq8JqzotMImMV4,42833
959
958
  pulumi_gcp/iam/__init__.py,sha256=DTMTmz46DH_NNBCZcIJA7shNoyIowB4nkQP2D0d7JY8,690
960
- pulumi_gcp/iam/_inputs.py,sha256=aqFvg6iKZmygyKQZ1a6UKySfbwQddRph0HMSGdEziQw,53229
959
+ pulumi_gcp/iam/_inputs.py,sha256=at2CzE5NDemez29zzvgCJKH2RuG_zE2oiTslVkgls3w,43669
961
960
  pulumi_gcp/iam/access_boundary_policy.py,sha256=kBQBE3TT0F1esUciPD1hHcjkY9GCWfYKRzVu7mSLxHo,19412
962
961
  pulumi_gcp/iam/deny_policy.py,sha256=2pN7HMUQENcWXt-bw4A-rNMqvFHg1XiUk-rOBPys6ko,18766
963
962
  pulumi_gcp/iam/get_rule.py,sha256=04E6geOtYWJZWGp81Ww6iV4tc2qz1aVSmFkc70oTVLE,4693
964
963
  pulumi_gcp/iam/get_testable_permissions.py,sha256=blh1HCifwitPDq09ohbLYEcCr7wva9_Hn6tQvDJxTQw,7430
965
964
  pulumi_gcp/iam/get_workload_identity_pool.py,sha256=09Si1xb7-CWXHwVpYSbIFHPO1VDgLZN5rC2LL2Zb1KM,6530
966
965
  pulumi_gcp/iam/get_workload_identity_pool_provider.py,sha256=mhn3YZl_9fgu2Wlb5pzlbhj_GBQVy6PWHElVAJ9GFcA,9975
967
- pulumi_gcp/iam/outputs.py,sha256=UvjOwWY1VRQWPgoxbI9E9qyljqUUeINoYgQqvIh1ZiU,61476
966
+ pulumi_gcp/iam/outputs.py,sha256=vEm7JCna2gPjjXN0U5_4PVw34SOZ2EepM57F05DDxgY,51948
968
967
  pulumi_gcp/iam/workforce_pool.py,sha256=ipy1nYGdEOB0KllF5g1xDWAfI8QsW9wodXs0L-L9YwE,38388
969
- pulumi_gcp/iam/workforce_pool_provider.py,sha256=-1F1Nn5ozh6Wf4yC3MDc_Bv1MXKKcGtrKprjR9sy2gQ,93827
968
+ pulumi_gcp/iam/workforce_pool_provider.py,sha256=tCm7OXfV-e3HWOIFeZVl6mK9-JBw0ZaEHubloX4Nr3M,80181
970
969
  pulumi_gcp/iam/workload_identity_pool.py,sha256=ZQ5YdeGpeu_0L3mWfI9ebNW2cuHH5RncV4UazP_EFT0,26337
971
970
  pulumi_gcp/iam/workload_identity_pool_provider.py,sha256=PXPMOyyVFt0ZI8UNxRaXQgGE_N5t30sz5lhSqJbV6oQ,84836
972
971
  pulumi_gcp/iap/__init__.py,sha256=wPgYIPOVSJ_ITX7jsOs6BB49qzgabxcOXmEtVl33MCQ,2174
@@ -1028,11 +1027,10 @@ pulumi_gcp/identityplatform/tenant.py,sha256=jraR4Z9rWf7JIDKg-fn47fU-yrUO7Xd7VKA
1028
1027
  pulumi_gcp/identityplatform/tenant_default_supported_idp_config.py,sha256=bsdN6iYDdzuZJm8fnXnLW3lt66uxya11HJ1XplHpDxU,22525
1029
1028
  pulumi_gcp/identityplatform/tenant_inbound_saml_config.py,sha256=mYEGXsJvpKR9I6r81Al0TBNJID7TntcaVmCySTkTPBY,25763
1030
1029
  pulumi_gcp/identityplatform/tenant_oauth_idp_config.py,sha256=tn2nZ6uf2DqMXdMNsl3NHljw-bY3-MZKaGCj7o5e0oc,23273
1031
- pulumi_gcp/integrationconnectors/__init__.py,sha256=ikLXrtn4bsnI6RzLcID-FHxm64F3S4q2LOxbrFGYFcU,403
1030
+ pulumi_gcp/integrationconnectors/__init__.py,sha256=vJlzWncooKiDQnqEU8YG2SswtXpCErtAGgTACg8lExM,375
1032
1031
  pulumi_gcp/integrationconnectors/_inputs.py,sha256=rHMYANSDSGiCb4OgDdQlsvnTYIEg8AxT7ybZw28fhLs,99334
1033
1032
  pulumi_gcp/integrationconnectors/connection.py,sha256=sPd-PVrglqweIUL57WuAPpJFmZevmdFO43L2KIv5Wzg,94931
1034
1033
  pulumi_gcp/integrationconnectors/endpoint_attachment.py,sha256=BOXg7JSg5m9OYH_R4mjEnyvhCCIbHB-03H7-D5Ol1pI,28451
1035
- pulumi_gcp/integrationconnectors/managed_zone.py,sha256=FnWxP2hzXbPIa3IU3JRseJerbb6oQr4Q0NnNYyes1lk,30850
1036
1034
  pulumi_gcp/integrationconnectors/outputs.py,sha256=_nOEX5LAG9ZmeEy1IN5daJK3x9MVBNGqHrQ0AWEA5A4,104367
1037
1035
  pulumi_gcp/kms/__init__.py,sha256=kW1sTv51kdDy5g3riS5K_jOEh0YzEl4ePE2elGuWjjM,1014
1038
1036
  pulumi_gcp/kms/_inputs.py,sha256=dGRHob4muqvxJiKBrVnsHsi0vJhylKqBUxc8k8-aZak,40159
@@ -1130,13 +1128,12 @@ pulumi_gcp/netapp/storage_pool.py,sha256=pcnADFvComU2YNIjO1cQ6ygXnmHu1gIayS85zVG
1130
1128
  pulumi_gcp/netapp/volume.py,sha256=W7fx4KgOP-lP8T70_9kAu577SMXQB3FIHPPFhuc2Uzo,83424
1131
1129
  pulumi_gcp/netapp/volume_replication.py,sha256=-PAoXnZOQTWNmIEoF5hIXbZzjW1hKOYqvdCWHhb1qvs,61357
1132
1130
  pulumi_gcp/netapp/volume_snapshot.py,sha256=nWAxK-KdBvqvFR4Ip0pY_p9dcDOpfGLIu_3B8_UVCD0,28220
1133
- pulumi_gcp/networkconnectivity/__init__.py,sha256=precnbXbVh3d-l7PCBvQ47Y1KmPL3O_L-Xemc_OROYg,492
1131
+ pulumi_gcp/networkconnectivity/__init__.py,sha256=sbGAL154wGUpBJwdzsSjSfDGj_FD9ef9QhaQCQtEn0Y,459
1134
1132
  pulumi_gcp/networkconnectivity/_inputs.py,sha256=p9PMRDLVyBUpBMLNJ4r4t_aVEEX_KlRP7Wa0IwIcMkc,29593
1135
1133
  pulumi_gcp/networkconnectivity/hub.py,sha256=keKmjRfz2eS5uX-Q9HB07ygpEr44Ael3rXnTyotiQLk,27913
1136
1134
  pulumi_gcp/networkconnectivity/internal_range.py,sha256=zq8yXc7-THpIe8YKdP2hM34dZm6l-An9rukmpIBt5-I,48166
1137
1135
  pulumi_gcp/networkconnectivity/outputs.py,sha256=cSm0s6tF8AvjnufIxfRH6nRWB0DkRRfn61M_UlxuT9g,28193
1138
1136
  pulumi_gcp/networkconnectivity/policy_based_route.py,sha256=kyO8FQBV1l8oB2dpqDeleqSsEtHzgrVnRWcTxzACEVQ,47059
1139
- pulumi_gcp/networkconnectivity/regional_endpoint.py,sha256=HQM-WILOynRNlNmS7XtoQFaUnMdREaa2qJYT1M2CHCA,47226
1140
1137
  pulumi_gcp/networkconnectivity/service_connection_policy.py,sha256=w8rI3ga8KPpuca56o7onkF4GhVgRJqhiBS2C8Oja774,41201
1141
1138
  pulumi_gcp/networkconnectivity/spoke.py,sha256=Nne-UZ3AKUzcm0R1QDMElFuQD4kxgLaKgpihCk9q3uc,47352
1142
1139
  pulumi_gcp/networkmanagement/__init__.py,sha256=w0jJqOXlyUgN1FT_j4bGJV6EBhRPAJG4ZTKByZy5kUE,347
@@ -1151,16 +1148,16 @@ pulumi_gcp/networksecurity/address_group_iam_member.py,sha256=pJ2yLhX-mvKRfK_ErQ
1151
1148
  pulumi_gcp/networksecurity/address_group_iam_policy.py,sha256=T0YUjlxdl5PysR3MxmBICmt2xqGNOjsQaXQruZ2IuaI,20794
1152
1149
  pulumi_gcp/networksecurity/authorization_policy.py,sha256=NFcqrVCjn4402aDnApeJtC5Qg4__HSNefF01k5avddk,34411
1153
1150
  pulumi_gcp/networksecurity/client_tls_policy.py,sha256=RRmqH7ltJfTAywCvdvDSzHRBq2UEP8tRtBvb-WelTCw,37063
1154
- pulumi_gcp/networksecurity/firewall_endpoint.py,sha256=FYLlYJTD-lnBoR4175WJjgHph7TG5YKiTD8fTuuYJxs,31399
1155
- pulumi_gcp/networksecurity/firewall_endpoint_association.py,sha256=hMK6MT0sRBtGTKHb_B_9rlCnQ4Yubewzljyo33coPD0,37205
1151
+ pulumi_gcp/networksecurity/firewall_endpoint.py,sha256=ir30Bwuwf7MzxTk7ZBpeHB6JMANk0Av6d5lHluCtkFE,29309
1152
+ pulumi_gcp/networksecurity/firewall_endpoint_association.py,sha256=-vKRwpwYBOqGdrNKJZA_92TNxRRC4kE5b81i7PRdQVY,35585
1156
1153
  pulumi_gcp/networksecurity/gateway_security_policy.py,sha256=QW7-9tEss-qemJJZIM_3iNrlNH9Op8X464rRIxvH46w,32180
1157
1154
  pulumi_gcp/networksecurity/gateway_security_policy_rule.py,sha256=qb5ATPAVDVgR8iaDCK_3CNMLfMr7fI7YkPsU4Geob-k,41494
1158
1155
  pulumi_gcp/networksecurity/get_address_group_iam_policy.py,sha256=Rkdc_5P3MWBloXzVSs_67bU5WywYxAJ4bQguTC0sg1o,5877
1159
1156
  pulumi_gcp/networksecurity/outputs.py,sha256=vagjEyt3smhvYtfU8SLScKK5XFrifmPfFk5lgx0pWuU,47826
1160
- pulumi_gcp/networksecurity/security_profile.py,sha256=-JlKY5wfr-AElGKofO8gUm9_Y20plBqEZeBRPi1d4Tc,35046
1161
- pulumi_gcp/networksecurity/security_profile_group.py,sha256=d8B70eYJVRORlNcMVdu_DpU1YOZ30vjVOUJUa2dNEEQ,30017
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
1162
1159
  pulumi_gcp/networksecurity/server_tls_policy.py,sha256=Ii8HY0ra0HBCaeqvRENsbTL5R9ShkUN9gr6qB3emMqE,48450
1163
- pulumi_gcp/networksecurity/tls_inspection_policy.py,sha256=lTuStz9Apw4K3GITQGhD0OPB0kMMQwEIEs5OZMT7Jhw,30459
1160
+ pulumi_gcp/networksecurity/tls_inspection_policy.py,sha256=7q4xlJ2xFKve3KTRO_Sluzx7bZ7bnOnOGmYcipMCSlg,29483
1164
1161
  pulumi_gcp/networksecurity/url_list.py,sha256=U-DL06rV536-0_QJGrqr841KAo8Bz1hF0J2gzj92zog,22260
1165
1162
  pulumi_gcp/networkservices/__init__.py,sha256=puTagPMsN15hEqVbKgAaOYd1WGQ3B5kjRR3jM0lmes8,621
1166
1163
  pulumi_gcp/networkservices/_inputs.py,sha256=MGQMf7RLDtLKAWWl90sOBG1kFtGMasKvTLJI7-nWmIA,227412
@@ -1216,7 +1213,7 @@ pulumi_gcp/orgpolicy/__init__.py,sha256=bdd_oQduV_xUj2RtYRYe5h9NzODH1KbvCbkkZLJp
1216
1213
  pulumi_gcp/orgpolicy/_inputs.py,sha256=Q9nLVXMAjQODetqcoXCQ_RmZDRouqelJqF3RB7YkdZc,32256
1217
1214
  pulumi_gcp/orgpolicy/custom_constraint.py,sha256=ubU3bu1as_XOsSFVy8QTtGcznTjf4_E9AzfiLlAWm7Q,33221
1218
1215
  pulumi_gcp/orgpolicy/outputs.py,sha256=lWC69234Vv4r2aFVHKj8jz6_XxBCvOhWG-LFBM7WK3Y,30184
1219
- pulumi_gcp/orgpolicy/policy.py,sha256=NuWPjmNmhfllkzeUQWlbhio_owLQXEv5Kr-3UCAFkyk,29197
1216
+ pulumi_gcp/orgpolicy/policy.py,sha256=1d8O1rKxVdwtEqhz1cEM4211iML-s3Fvv2Fu6DQWmb8,29197
1220
1217
  pulumi_gcp/osconfig/__init__.py,sha256=yDD2y1RayZ6ZJsosFD0HA15H2OCYk_GwALeFoLuEusk,412
1221
1218
  pulumi_gcp/osconfig/_inputs.py,sha256=mFZ0_vJRhp0Am7JCUMYEnHdZmHHE7GcJwKVh3qfo5IY,276549
1222
1219
  pulumi_gcp/osconfig/guest_policies.py,sha256=B4Gs3L8eKLO1lc-XoRnlb6QBOHI0-7Aw6umkjvLyEjg,47422
@@ -1266,7 +1263,7 @@ pulumi_gcp/pubsub/schema.py,sha256=UZZm9YIIA2yD4ks6SxbcgNPhWlLIhIfwfMpwYumBJeo,2
1266
1263
  pulumi_gcp/pubsub/schema_iam_binding.py,sha256=9cd5YQMWJtrue1gVYN9YoB6jARQc_oPXgwpUD4K--_c,35792
1267
1264
  pulumi_gcp/pubsub/schema_iam_member.py,sha256=IHE6UQr8UfM10JGv1cESNCULwgDBL9G5m7D0IbGKJm0,35396
1268
1265
  pulumi_gcp/pubsub/schema_iam_policy.py,sha256=P3UptfGICZ4-NiY91hZluUIYr26NIynZsL-RZaooCQs,22247
1269
- pulumi_gcp/pubsub/subscription.py,sha256=R8JgbNsjedFCYExbFYe-38SmjkAi9Jb5CVAfmcy8wyQ,100700
1266
+ pulumi_gcp/pubsub/subscription.py,sha256=b1Q0L65Vft1vIHjgE85tDXenRLxgP1TQVrTyRB5XfAA,100700
1270
1267
  pulumi_gcp/pubsub/subscription_iam_binding.py,sha256=6alwG6s2GlLDSTsMQ2_ZTdpXfPR7DBA07R2hRVs0WJI,30801
1271
1268
  pulumi_gcp/pubsub/subscription_iam_member.py,sha256=I6ncuD2k0EMohbaFYVWizEpITJVPu-0w6WZd4kjkfTA,30413
1272
1269
  pulumi_gcp/pubsub/subscription_iam_policy.py,sha256=vOeZl0snHTWrsGFVN_lDl7gupTd_yp41FDq-uqp0D4Q,19875
@@ -1549,7 +1546,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=KnqAQNX01bqynD7N
1549
1546
  pulumi_gcp/workstations/workstation_iam_binding.py,sha256=ovQjU8TBCo9xjSArziSIyzV_HyIf0Ke4IaDLd4CnV2Q,35844
1550
1547
  pulumi_gcp/workstations/workstation_iam_member.py,sha256=3zBaMJQnUB4QQygrFBk8HsuKtvQIwOPManWiphBVRCQ,35448
1551
1548
  pulumi_gcp/workstations/workstation_iam_policy.py,sha256=u5aW7Jd-oDY0SKcuAHn_O-sN7NIRvwS9Jz6slzHWlXo,22172
1552
- pulumi_gcp-7.23.0.dist-info/METADATA,sha256=eOFEft28YgOpAmOLjHpcz2UiN8p5CI3dK212XUcb344,2651
1553
- pulumi_gcp-7.23.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1554
- pulumi_gcp-7.23.0.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1555
- pulumi_gcp-7.23.0.dist-info/RECORD,,
1549
+ pulumi_gcp-7.23.0a1715695885.dist-info/METADATA,sha256=rQZxRqSxmEGymcc6W-05LbPfiJmNp5Zyh-X3HQhJYjo,2662
1550
+ pulumi_gcp-7.23.0a1715695885.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1551
+ pulumi_gcp-7.23.0a1715695885.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1552
+ pulumi_gcp-7.23.0a1715695885.dist-info/RECORD,,