pulumi-gcp 7.5.0a1704283083__py3-none-any.whl → 7.6.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +99 -0
  2. pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
  3. pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
  4. pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
  5. pulumi_gcp/clouddeploy/__init__.py +1 -0
  6. pulumi_gcp/clouddeploy/_inputs.py +239 -0
  7. pulumi_gcp/clouddeploy/automation.py +1103 -0
  8. pulumi_gcp/clouddeploy/outputs.py +246 -0
  9. pulumi_gcp/clouddomains/__init__.py +10 -0
  10. pulumi_gcp/clouddomains/_inputs.py +1098 -0
  11. pulumi_gcp/clouddomains/outputs.py +1156 -0
  12. pulumi_gcp/clouddomains/registration.py +1068 -0
  13. pulumi_gcp/cloudrunv2/job.py +4 -4
  14. pulumi_gcp/composer/_inputs.py +79 -1
  15. pulumi_gcp/composer/outputs.py +131 -4
  16. pulumi_gcp/compute/__init__.py +1 -0
  17. pulumi_gcp/compute/_inputs.py +180 -0
  18. pulumi_gcp/compute/get_instance_template.py +11 -1
  19. pulumi_gcp/compute/get_region_instance_template.py +11 -1
  20. pulumi_gcp/compute/get_reservation.py +212 -0
  21. pulumi_gcp/compute/instance_template.py +47 -0
  22. pulumi_gcp/compute/network_firewall_policy.py +20 -22
  23. pulumi_gcp/compute/outputs.py +325 -0
  24. pulumi_gcp/compute/region_instance_template.py +47 -0
  25. pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
  26. pulumi_gcp/compute/router_peer.py +54 -0
  27. pulumi_gcp/compute/vpn_tunnel.py +8 -4
  28. pulumi_gcp/config/__init__.pyi +2 -0
  29. pulumi_gcp/config/vars.py +4 -0
  30. pulumi_gcp/container/_inputs.py +23 -0
  31. pulumi_gcp/container/aws_node_pool.py +7 -7
  32. pulumi_gcp/container/cluster.py +68 -14
  33. pulumi_gcp/container/get_cluster.py +11 -1
  34. pulumi_gcp/container/outputs.py +49 -0
  35. pulumi_gcp/dataflow/pipeline.py +1 -1
  36. pulumi_gcp/dataproc/_inputs.py +413 -39
  37. pulumi_gcp/dataproc/metastore_service.py +63 -0
  38. pulumi_gcp/dataproc/outputs.py +461 -39
  39. pulumi_gcp/dns/__init__.py +1 -0
  40. pulumi_gcp/dns/_inputs.py +94 -0
  41. pulumi_gcp/dns/get_managed_zones.py +89 -0
  42. pulumi_gcp/dns/outputs.py +62 -0
  43. pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
  44. pulumi_gcp/filestore/__init__.py +1 -0
  45. pulumi_gcp/filestore/get_instance.py +258 -0
  46. pulumi_gcp/filestore/instance.py +7 -7
  47. pulumi_gcp/filestore/outputs.py +126 -0
  48. pulumi_gcp/gkebackup/backup_plan.py +24 -8
  49. pulumi_gcp/gkebackup/restore_plan.py +36 -12
  50. pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
  51. pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
  52. pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
  53. pulumi_gcp/gkehub/_inputs.py +502 -2
  54. pulumi_gcp/gkehub/feature.py +34 -0
  55. pulumi_gcp/gkehub/feature_membership.py +177 -0
  56. pulumi_gcp/gkehub/membership.py +18 -6
  57. pulumi_gcp/gkehub/outputs.py +502 -2
  58. pulumi_gcp/gkeonprem/_inputs.py +21 -25
  59. pulumi_gcp/gkeonprem/outputs.py +34 -25
  60. pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
  61. pulumi_gcp/integrationconnectors/__init__.py +1 -0
  62. pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
  63. pulumi_gcp/kms/_inputs.py +42 -0
  64. pulumi_gcp/kms/crypto_key.py +36 -0
  65. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  66. pulumi_gcp/kms/outputs.py +62 -0
  67. pulumi_gcp/logging/__init__.py +2 -0
  68. pulumi_gcp/logging/folder_settings.py +490 -0
  69. pulumi_gcp/logging/folder_sink.py +21 -21
  70. pulumi_gcp/logging/organization_settings.py +484 -0
  71. pulumi_gcp/logging/organization_sink.py +21 -21
  72. pulumi_gcp/logging/project_sink.py +7 -14
  73. pulumi_gcp/netapp/__init__.py +3 -0
  74. pulumi_gcp/netapp/active_directory.py +1413 -0
  75. pulumi_gcp/netapp/backup_vault.py +593 -0
  76. pulumi_gcp/netapp/kmsconfig.py +649 -0
  77. pulumi_gcp/orgpolicy/policy.py +28 -0
  78. pulumi_gcp/provider.py +20 -0
  79. pulumi_gcp/pubsub/subscription.py +29 -37
  80. pulumi_gcp/serviceaccount/account.py +47 -0
  81. pulumi_gcp/servicenetworking/connection.py +55 -1
  82. pulumi_gcp/sql/database_instance.py +2 -2
  83. pulumi_gcp/sql/ssl_cert.py +1 -1
  84. pulumi_gcp/sql/user.py +7 -7
  85. pulumi_gcp/storage/transfer_job.py +24 -5
  86. pulumi_gcp/vertex/__init__.py +3 -0
  87. pulumi_gcp/vertex/_inputs.py +339 -0
  88. pulumi_gcp/vertex/ai_feature_group.py +710 -0
  89. pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
  90. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
  91. pulumi_gcp/vertex/outputs.py +406 -0
  92. pulumi_gcp/vmwareengine/__init__.py +2 -0
  93. pulumi_gcp/vmwareengine/_inputs.py +84 -0
  94. pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
  95. pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
  96. pulumi_gcp/vmwareengine/outputs.py +146 -0
  97. pulumi_gcp/workflows/workflow.py +7 -7
  98. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
  100. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -14,6 +14,9 @@ __all__ = [
14
14
  'InstanceFileShares',
15
15
  'InstanceFileSharesNfsExportOption',
16
16
  'InstanceNetwork',
17
+ 'GetInstanceFileShareResult',
18
+ 'GetInstanceFileShareNfsExportOptionResult',
19
+ 'GetInstanceNetworkResult',
17
20
  ]
18
21
 
19
22
  @pulumi.output_type
@@ -324,3 +327,126 @@ class InstanceNetwork(dict):
324
327
  return pulumi.get(self, "reserved_ip_range")
325
328
 
326
329
 
330
+ @pulumi.output_type
331
+ class GetInstanceFileShareResult(dict):
332
+ def __init__(__self__, *,
333
+ capacity_gb: int,
334
+ name: str,
335
+ nfs_export_options: Sequence['outputs.GetInstanceFileShareNfsExportOptionResult'],
336
+ source_backup: str):
337
+ """
338
+ :param str name: The name of a Filestore instance.
339
+
340
+ - - -
341
+ """
342
+ pulumi.set(__self__, "capacity_gb", capacity_gb)
343
+ pulumi.set(__self__, "name", name)
344
+ pulumi.set(__self__, "nfs_export_options", nfs_export_options)
345
+ pulumi.set(__self__, "source_backup", source_backup)
346
+
347
+ @property
348
+ @pulumi.getter(name="capacityGb")
349
+ def capacity_gb(self) -> int:
350
+ return pulumi.get(self, "capacity_gb")
351
+
352
+ @property
353
+ @pulumi.getter
354
+ def name(self) -> str:
355
+ """
356
+ The name of a Filestore instance.
357
+
358
+ - - -
359
+ """
360
+ return pulumi.get(self, "name")
361
+
362
+ @property
363
+ @pulumi.getter(name="nfsExportOptions")
364
+ def nfs_export_options(self) -> Sequence['outputs.GetInstanceFileShareNfsExportOptionResult']:
365
+ return pulumi.get(self, "nfs_export_options")
366
+
367
+ @property
368
+ @pulumi.getter(name="sourceBackup")
369
+ def source_backup(self) -> str:
370
+ return pulumi.get(self, "source_backup")
371
+
372
+
373
+ @pulumi.output_type
374
+ class GetInstanceFileShareNfsExportOptionResult(dict):
375
+ def __init__(__self__, *,
376
+ access_mode: str,
377
+ anon_gid: int,
378
+ anon_uid: int,
379
+ ip_ranges: Sequence[str],
380
+ squash_mode: str):
381
+ pulumi.set(__self__, "access_mode", access_mode)
382
+ pulumi.set(__self__, "anon_gid", anon_gid)
383
+ pulumi.set(__self__, "anon_uid", anon_uid)
384
+ pulumi.set(__self__, "ip_ranges", ip_ranges)
385
+ pulumi.set(__self__, "squash_mode", squash_mode)
386
+
387
+ @property
388
+ @pulumi.getter(name="accessMode")
389
+ def access_mode(self) -> str:
390
+ return pulumi.get(self, "access_mode")
391
+
392
+ @property
393
+ @pulumi.getter(name="anonGid")
394
+ def anon_gid(self) -> int:
395
+ return pulumi.get(self, "anon_gid")
396
+
397
+ @property
398
+ @pulumi.getter(name="anonUid")
399
+ def anon_uid(self) -> int:
400
+ return pulumi.get(self, "anon_uid")
401
+
402
+ @property
403
+ @pulumi.getter(name="ipRanges")
404
+ def ip_ranges(self) -> Sequence[str]:
405
+ return pulumi.get(self, "ip_ranges")
406
+
407
+ @property
408
+ @pulumi.getter(name="squashMode")
409
+ def squash_mode(self) -> str:
410
+ return pulumi.get(self, "squash_mode")
411
+
412
+
413
+ @pulumi.output_type
414
+ class GetInstanceNetworkResult(dict):
415
+ def __init__(__self__, *,
416
+ connect_mode: str,
417
+ ip_addresses: Sequence[str],
418
+ modes: Sequence[str],
419
+ network: str,
420
+ reserved_ip_range: str):
421
+ pulumi.set(__self__, "connect_mode", connect_mode)
422
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
423
+ pulumi.set(__self__, "modes", modes)
424
+ pulumi.set(__self__, "network", network)
425
+ pulumi.set(__self__, "reserved_ip_range", reserved_ip_range)
426
+
427
+ @property
428
+ @pulumi.getter(name="connectMode")
429
+ def connect_mode(self) -> str:
430
+ return pulumi.get(self, "connect_mode")
431
+
432
+ @property
433
+ @pulumi.getter(name="ipAddresses")
434
+ def ip_addresses(self) -> Sequence[str]:
435
+ return pulumi.get(self, "ip_addresses")
436
+
437
+ @property
438
+ @pulumi.getter
439
+ def modes(self) -> Sequence[str]:
440
+ return pulumi.get(self, "modes")
441
+
442
+ @property
443
+ @pulumi.getter
444
+ def network(self) -> str:
445
+ return pulumi.get(self, "network")
446
+
447
+ @property
448
+ @pulumi.getter(name="reservedIpRange")
449
+ def reserved_ip_range(self) -> str:
450
+ return pulumi.get(self, "reserved_ip_range")
451
+
452
+
@@ -574,7 +574,9 @@ class BackupPlan(pulumi.CustomResource):
574
574
  enabled=True,
575
575
  ),
576
576
  ),
577
- deletion_protection=True)
577
+ deletion_protection=True,
578
+ network="default",
579
+ subnetwork="default")
578
580
  basic = gcp.gkebackup.BackupPlan("basic",
579
581
  cluster=primary.id,
580
582
  location="us-central1",
@@ -602,7 +604,9 @@ class BackupPlan(pulumi.CustomResource):
602
604
  enabled=True,
603
605
  ),
604
606
  ),
605
- deletion_protection=True)
607
+ deletion_protection=True,
608
+ network="default",
609
+ subnetwork="default")
606
610
  autopilot = gcp.gkebackup.BackupPlan("autopilot",
607
611
  cluster=primary.id,
608
612
  location="us-central1",
@@ -629,7 +633,9 @@ class BackupPlan(pulumi.CustomResource):
629
633
  enabled=True,
630
634
  ),
631
635
  ),
632
- deletion_protection=True)
636
+ deletion_protection=True,
637
+ network="default",
638
+ subnetwork="default")
633
639
  key_ring = gcp.kms.KeyRing("keyRing", location="us-central1")
634
640
  crypto_key = gcp.kms.CryptoKey("cryptoKey", key_ring=key_ring.id)
635
641
  cmek = gcp.gkebackup.BackupPlan("cmek",
@@ -666,7 +672,9 @@ class BackupPlan(pulumi.CustomResource):
666
672
  enabled=True,
667
673
  ),
668
674
  ),
669
- deletion_protection=True)
675
+ deletion_protection=True,
676
+ network="default",
677
+ subnetwork="default")
670
678
  full = gcp.gkebackup.BackupPlan("full",
671
679
  cluster=primary.id,
672
680
  location="us-central1",
@@ -780,7 +788,9 @@ class BackupPlan(pulumi.CustomResource):
780
788
  enabled=True,
781
789
  ),
782
790
  ),
783
- deletion_protection=True)
791
+ deletion_protection=True,
792
+ network="default",
793
+ subnetwork="default")
784
794
  basic = gcp.gkebackup.BackupPlan("basic",
785
795
  cluster=primary.id,
786
796
  location="us-central1",
@@ -808,7 +818,9 @@ class BackupPlan(pulumi.CustomResource):
808
818
  enabled=True,
809
819
  ),
810
820
  ),
811
- deletion_protection=True)
821
+ deletion_protection=True,
822
+ network="default",
823
+ subnetwork="default")
812
824
  autopilot = gcp.gkebackup.BackupPlan("autopilot",
813
825
  cluster=primary.id,
814
826
  location="us-central1",
@@ -835,7 +847,9 @@ class BackupPlan(pulumi.CustomResource):
835
847
  enabled=True,
836
848
  ),
837
849
  ),
838
- deletion_protection=True)
850
+ deletion_protection=True,
851
+ network="default",
852
+ subnetwork="default")
839
853
  key_ring = gcp.kms.KeyRing("keyRing", location="us-central1")
840
854
  crypto_key = gcp.kms.CryptoKey("cryptoKey", key_ring=key_ring.id)
841
855
  cmek = gcp.gkebackup.BackupPlan("cmek",
@@ -872,7 +886,9 @@ class BackupPlan(pulumi.CustomResource):
872
886
  enabled=True,
873
887
  ),
874
888
  ),
875
- deletion_protection=True)
889
+ deletion_protection=True,
890
+ network="default",
891
+ subnetwork="default")
876
892
  full = gcp.gkebackup.BackupPlan("full",
877
893
  cluster=primary.id,
878
894
  location="us-central1",
@@ -436,7 +436,9 @@ class RestorePlan(pulumi.CustomResource):
436
436
  enabled=True,
437
437
  ),
438
438
  ),
439
- deletion_protection="")
439
+ deletion_protection="",
440
+ network="default",
441
+ subnetwork="default")
440
442
  basic = gcp.gkebackup.BackupPlan("basic",
441
443
  cluster=primary.id,
442
444
  location="us-central1",
@@ -476,7 +478,9 @@ class RestorePlan(pulumi.CustomResource):
476
478
  enabled=True,
477
479
  ),
478
480
  ),
479
- deletion_protection="")
481
+ deletion_protection="",
482
+ network="default",
483
+ subnetwork="default")
480
484
  basic = gcp.gkebackup.BackupPlan("basic",
481
485
  cluster=primary.id,
482
486
  location="us-central1",
@@ -527,7 +531,9 @@ class RestorePlan(pulumi.CustomResource):
527
531
  enabled=True,
528
532
  ),
529
533
  ),
530
- deletion_protection="")
534
+ deletion_protection="",
535
+ network="default",
536
+ subnetwork="default")
531
537
  basic = gcp.gkebackup.BackupPlan("basic",
532
538
  cluster=primary.id,
533
539
  location="us-central1",
@@ -571,7 +577,9 @@ class RestorePlan(pulumi.CustomResource):
571
577
  enabled=True,
572
578
  ),
573
579
  ),
574
- deletion_protection="")
580
+ deletion_protection="",
581
+ network="default",
582
+ subnetwork="default")
575
583
  basic = gcp.gkebackup.BackupPlan("basic",
576
584
  cluster=primary.id,
577
585
  location="us-central1",
@@ -610,7 +618,9 @@ class RestorePlan(pulumi.CustomResource):
610
618
  enabled=True,
611
619
  ),
612
620
  ),
613
- deletion_protection="")
621
+ deletion_protection="",
622
+ network="default",
623
+ subnetwork="default")
614
624
  basic = gcp.gkebackup.BackupPlan("basic",
615
625
  cluster=primary.id,
616
626
  location="us-central1",
@@ -678,7 +688,9 @@ class RestorePlan(pulumi.CustomResource):
678
688
  enabled=True,
679
689
  ),
680
690
  ),
681
- deletion_protection="")
691
+ deletion_protection="",
692
+ network="default",
693
+ subnetwork="default")
682
694
  basic = gcp.gkebackup.BackupPlan("basic",
683
695
  cluster=primary.id,
684
696
  location="us-central1",
@@ -802,7 +814,9 @@ class RestorePlan(pulumi.CustomResource):
802
814
  enabled=True,
803
815
  ),
804
816
  ),
805
- deletion_protection="")
817
+ deletion_protection="",
818
+ network="default",
819
+ subnetwork="default")
806
820
  basic = gcp.gkebackup.BackupPlan("basic",
807
821
  cluster=primary.id,
808
822
  location="us-central1",
@@ -842,7 +856,9 @@ class RestorePlan(pulumi.CustomResource):
842
856
  enabled=True,
843
857
  ),
844
858
  ),
845
- deletion_protection="")
859
+ deletion_protection="",
860
+ network="default",
861
+ subnetwork="default")
846
862
  basic = gcp.gkebackup.BackupPlan("basic",
847
863
  cluster=primary.id,
848
864
  location="us-central1",
@@ -893,7 +909,9 @@ class RestorePlan(pulumi.CustomResource):
893
909
  enabled=True,
894
910
  ),
895
911
  ),
896
- deletion_protection="")
912
+ deletion_protection="",
913
+ network="default",
914
+ subnetwork="default")
897
915
  basic = gcp.gkebackup.BackupPlan("basic",
898
916
  cluster=primary.id,
899
917
  location="us-central1",
@@ -937,7 +955,9 @@ class RestorePlan(pulumi.CustomResource):
937
955
  enabled=True,
938
956
  ),
939
957
  ),
940
- deletion_protection="")
958
+ deletion_protection="",
959
+ network="default",
960
+ subnetwork="default")
941
961
  basic = gcp.gkebackup.BackupPlan("basic",
942
962
  cluster=primary.id,
943
963
  location="us-central1",
@@ -976,7 +996,9 @@ class RestorePlan(pulumi.CustomResource):
976
996
  enabled=True,
977
997
  ),
978
998
  ),
979
- deletion_protection="")
999
+ deletion_protection="",
1000
+ network="default",
1001
+ subnetwork="default")
980
1002
  basic = gcp.gkebackup.BackupPlan("basic",
981
1003
  cluster=primary.id,
982
1004
  location="us-central1",
@@ -1044,7 +1066,9 @@ class RestorePlan(pulumi.CustomResource):
1044
1066
  enabled=True,
1045
1067
  ),
1046
1068
  ),
1047
- deletion_protection="")
1069
+ deletion_protection="",
1070
+ network="default",
1071
+ subnetwork="default")
1048
1072
  basic = gcp.gkebackup.BackupPlan("basic",
1049
1073
  cluster=primary.id,
1050
1074
  location="us-central1",
@@ -250,7 +250,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
250
250
  enabled=True,
251
251
  ),
252
252
  ),
253
- deletion_protection="")
253
+ deletion_protection="",
254
+ network="default",
255
+ subnetwork="default")
254
256
  basic = gcp.gkebackup.BackupPlan("basic",
255
257
  cluster=primary.id,
256
258
  location="us-central1",
@@ -290,7 +292,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
290
292
  enabled=True,
291
293
  ),
292
294
  ),
293
- deletion_protection="")
295
+ deletion_protection="",
296
+ network="default",
297
+ subnetwork="default")
294
298
  basic = gcp.gkebackup.BackupPlan("basic",
295
299
  cluster=primary.id,
296
300
  location="us-central1",
@@ -341,7 +345,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
341
345
  enabled=True,
342
346
  ),
343
347
  ),
344
- deletion_protection="")
348
+ deletion_protection="",
349
+ network="default",
350
+ subnetwork="default")
345
351
  basic = gcp.gkebackup.BackupPlan("basic",
346
352
  cluster=primary.id,
347
353
  location="us-central1",
@@ -385,7 +391,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
385
391
  enabled=True,
386
392
  ),
387
393
  ),
388
- deletion_protection="")
394
+ deletion_protection="",
395
+ network="default",
396
+ subnetwork="default")
389
397
  basic = gcp.gkebackup.BackupPlan("basic",
390
398
  cluster=primary.id,
391
399
  location="us-central1",
@@ -424,7 +432,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
424
432
  enabled=True,
425
433
  ),
426
434
  ),
427
- deletion_protection="")
435
+ deletion_protection="",
436
+ network="default",
437
+ subnetwork="default")
428
438
  basic = gcp.gkebackup.BackupPlan("basic",
429
439
  cluster=primary.id,
430
440
  location="us-central1",
@@ -492,7 +502,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
492
502
  enabled=True,
493
503
  ),
494
504
  ),
495
- deletion_protection="")
505
+ deletion_protection="",
506
+ network="default",
507
+ subnetwork="default")
496
508
  basic = gcp.gkebackup.BackupPlan("basic",
497
509
  cluster=primary.id,
498
510
  location="us-central1",
@@ -604,7 +616,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
604
616
  enabled=True,
605
617
  ),
606
618
  ),
607
- deletion_protection="")
619
+ deletion_protection="",
620
+ network="default",
621
+ subnetwork="default")
608
622
  basic = gcp.gkebackup.BackupPlan("basic",
609
623
  cluster=primary.id,
610
624
  location="us-central1",
@@ -644,7 +658,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
644
658
  enabled=True,
645
659
  ),
646
660
  ),
647
- deletion_protection="")
661
+ deletion_protection="",
662
+ network="default",
663
+ subnetwork="default")
648
664
  basic = gcp.gkebackup.BackupPlan("basic",
649
665
  cluster=primary.id,
650
666
  location="us-central1",
@@ -695,7 +711,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
695
711
  enabled=True,
696
712
  ),
697
713
  ),
698
- deletion_protection="")
714
+ deletion_protection="",
715
+ network="default",
716
+ subnetwork="default")
699
717
  basic = gcp.gkebackup.BackupPlan("basic",
700
718
  cluster=primary.id,
701
719
  location="us-central1",
@@ -739,7 +757,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
739
757
  enabled=True,
740
758
  ),
741
759
  ),
742
- deletion_protection="")
760
+ deletion_protection="",
761
+ network="default",
762
+ subnetwork="default")
743
763
  basic = gcp.gkebackup.BackupPlan("basic",
744
764
  cluster=primary.id,
745
765
  location="us-central1",
@@ -778,7 +798,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
778
798
  enabled=True,
779
799
  ),
780
800
  ),
781
- deletion_protection="")
801
+ deletion_protection="",
802
+ network="default",
803
+ subnetwork="default")
782
804
  basic = gcp.gkebackup.BackupPlan("basic",
783
805
  cluster=primary.id,
784
806
  location="us-central1",
@@ -846,7 +868,9 @@ class RestorePlanIamBinding(pulumi.CustomResource):
846
868
  enabled=True,
847
869
  ),
848
870
  ),
849
- deletion_protection="")
871
+ deletion_protection="",
872
+ network="default",
873
+ subnetwork="default")
850
874
  basic = gcp.gkebackup.BackupPlan("basic",
851
875
  cluster=primary.id,
852
876
  location="us-central1",
@@ -250,7 +250,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
250
250
  enabled=True,
251
251
  ),
252
252
  ),
253
- deletion_protection="")
253
+ deletion_protection="",
254
+ network="default",
255
+ subnetwork="default")
254
256
  basic = gcp.gkebackup.BackupPlan("basic",
255
257
  cluster=primary.id,
256
258
  location="us-central1",
@@ -290,7 +292,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
290
292
  enabled=True,
291
293
  ),
292
294
  ),
293
- deletion_protection="")
295
+ deletion_protection="",
296
+ network="default",
297
+ subnetwork="default")
294
298
  basic = gcp.gkebackup.BackupPlan("basic",
295
299
  cluster=primary.id,
296
300
  location="us-central1",
@@ -341,7 +345,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
341
345
  enabled=True,
342
346
  ),
343
347
  ),
344
- deletion_protection="")
348
+ deletion_protection="",
349
+ network="default",
350
+ subnetwork="default")
345
351
  basic = gcp.gkebackup.BackupPlan("basic",
346
352
  cluster=primary.id,
347
353
  location="us-central1",
@@ -385,7 +391,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
385
391
  enabled=True,
386
392
  ),
387
393
  ),
388
- deletion_protection="")
394
+ deletion_protection="",
395
+ network="default",
396
+ subnetwork="default")
389
397
  basic = gcp.gkebackup.BackupPlan("basic",
390
398
  cluster=primary.id,
391
399
  location="us-central1",
@@ -424,7 +432,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
424
432
  enabled=True,
425
433
  ),
426
434
  ),
427
- deletion_protection="")
435
+ deletion_protection="",
436
+ network="default",
437
+ subnetwork="default")
428
438
  basic = gcp.gkebackup.BackupPlan("basic",
429
439
  cluster=primary.id,
430
440
  location="us-central1",
@@ -492,7 +502,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
492
502
  enabled=True,
493
503
  ),
494
504
  ),
495
- deletion_protection="")
505
+ deletion_protection="",
506
+ network="default",
507
+ subnetwork="default")
496
508
  basic = gcp.gkebackup.BackupPlan("basic",
497
509
  cluster=primary.id,
498
510
  location="us-central1",
@@ -604,7 +616,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
604
616
  enabled=True,
605
617
  ),
606
618
  ),
607
- deletion_protection="")
619
+ deletion_protection="",
620
+ network="default",
621
+ subnetwork="default")
608
622
  basic = gcp.gkebackup.BackupPlan("basic",
609
623
  cluster=primary.id,
610
624
  location="us-central1",
@@ -644,7 +658,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
644
658
  enabled=True,
645
659
  ),
646
660
  ),
647
- deletion_protection="")
661
+ deletion_protection="",
662
+ network="default",
663
+ subnetwork="default")
648
664
  basic = gcp.gkebackup.BackupPlan("basic",
649
665
  cluster=primary.id,
650
666
  location="us-central1",
@@ -695,7 +711,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
695
711
  enabled=True,
696
712
  ),
697
713
  ),
698
- deletion_protection="")
714
+ deletion_protection="",
715
+ network="default",
716
+ subnetwork="default")
699
717
  basic = gcp.gkebackup.BackupPlan("basic",
700
718
  cluster=primary.id,
701
719
  location="us-central1",
@@ -739,7 +757,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
739
757
  enabled=True,
740
758
  ),
741
759
  ),
742
- deletion_protection="")
760
+ deletion_protection="",
761
+ network="default",
762
+ subnetwork="default")
743
763
  basic = gcp.gkebackup.BackupPlan("basic",
744
764
  cluster=primary.id,
745
765
  location="us-central1",
@@ -778,7 +798,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
778
798
  enabled=True,
779
799
  ),
780
800
  ),
781
- deletion_protection="")
801
+ deletion_protection="",
802
+ network="default",
803
+ subnetwork="default")
782
804
  basic = gcp.gkebackup.BackupPlan("basic",
783
805
  cluster=primary.id,
784
806
  location="us-central1",
@@ -846,7 +868,9 @@ class RestorePlanIamMember(pulumi.CustomResource):
846
868
  enabled=True,
847
869
  ),
848
870
  ),
849
- deletion_protection="")
871
+ deletion_protection="",
872
+ network="default",
873
+ subnetwork="default")
850
874
  basic = gcp.gkebackup.BackupPlan("basic",
851
875
  cluster=primary.id,
852
876
  location="us-central1",