pulumi-gcp 8.19.0a1739290509__py3-none-any.whl → 8.19.1a1739444689__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 (76) hide show
  1. pulumi_gcp/__init__.py +80 -0
  2. pulumi_gcp/_utilities.py +8 -4
  3. pulumi_gcp/accesscontextmanager/_inputs.py +288 -78
  4. pulumi_gcp/accesscontextmanager/outputs.py +186 -54
  5. pulumi_gcp/appengine/_inputs.py +3 -0
  6. pulumi_gcp/appengine/outputs.py +2 -0
  7. pulumi_gcp/beyondcorp/__init__.py +5 -0
  8. pulumi_gcp/beyondcorp/_inputs.py +189 -0
  9. pulumi_gcp/beyondcorp/application.py +604 -0
  10. pulumi_gcp/beyondcorp/application_iam_binding.py +1049 -0
  11. pulumi_gcp/beyondcorp/application_iam_member.py +1049 -0
  12. pulumi_gcp/beyondcorp/application_iam_policy.py +868 -0
  13. pulumi_gcp/beyondcorp/get_application_iam_policy.py +174 -0
  14. pulumi_gcp/beyondcorp/outputs.py +111 -0
  15. pulumi_gcp/bigqueryanalyticshub/__init__.py +1 -0
  16. pulumi_gcp/bigqueryanalyticshub/_inputs.py +318 -0
  17. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +808 -0
  18. pulumi_gcp/bigqueryanalyticshub/outputs.py +263 -0
  19. pulumi_gcp/certificateauthority/_inputs.py +54 -0
  20. pulumi_gcp/certificateauthority/authority.py +149 -3
  21. pulumi_gcp/certificateauthority/get_authority.py +15 -4
  22. pulumi_gcp/certificateauthority/outputs.py +81 -0
  23. pulumi_gcp/cloudrunv2/_inputs.py +112 -0
  24. pulumi_gcp/cloudrunv2/outputs.py +144 -1
  25. pulumi_gcp/cloudrunv2/service.py +2 -0
  26. pulumi_gcp/colab/__init__.py +2 -0
  27. pulumi_gcp/colab/_inputs.py +655 -0
  28. pulumi_gcp/colab/notebook_execution.py +1259 -0
  29. pulumi_gcp/colab/outputs.py +512 -0
  30. pulumi_gcp/colab/runtime.py +266 -2
  31. pulumi_gcp/colab/runtime_template.py +79 -3
  32. pulumi_gcp/colab/schedule.py +1318 -0
  33. pulumi_gcp/compute/__init__.py +1 -0
  34. pulumi_gcp/compute/_inputs.py +204 -0
  35. pulumi_gcp/compute/firewall_policy.py +54 -43
  36. pulumi_gcp/compute/forwarding_rule.py +103 -0
  37. pulumi_gcp/compute/get_forwarding_rule.py +12 -1
  38. pulumi_gcp/compute/interconnect_attachment.py +12 -0
  39. pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +1011 -0
  40. pulumi_gcp/compute/outputs.py +187 -0
  41. pulumi_gcp/compute/public_advertised_prefix.py +35 -7
  42. pulumi_gcp/compute/public_delegated_prefix.py +171 -7
  43. pulumi_gcp/compute/region_resize_request.py +21 -22
  44. pulumi_gcp/compute/resize_request.py +22 -23
  45. pulumi_gcp/compute/subnetwork.py +14 -7
  46. pulumi_gcp/container/_inputs.py +54 -1
  47. pulumi_gcp/container/outputs.py +79 -1
  48. pulumi_gcp/datastream/connection_profile.py +120 -46
  49. pulumi_gcp/discoveryengine/chat_engine.py +7 -7
  50. pulumi_gcp/filestore/_inputs.py +222 -0
  51. pulumi_gcp/filestore/get_instance.py +23 -1
  52. pulumi_gcp/filestore/instance.py +86 -0
  53. pulumi_gcp/filestore/outputs.py +282 -0
  54. pulumi_gcp/gemini/__init__.py +2 -0
  55. pulumi_gcp/gemini/logging_setting.py +671 -0
  56. pulumi_gcp/gemini/release_channel_setting.py +639 -0
  57. pulumi_gcp/memorystore/_inputs.py +296 -0
  58. pulumi_gcp/memorystore/instance.py +32 -28
  59. pulumi_gcp/memorystore/outputs.py +224 -0
  60. pulumi_gcp/monitoring/_inputs.py +12 -9
  61. pulumi_gcp/monitoring/outputs.py +8 -6
  62. pulumi_gcp/networkservices/_inputs.py +89 -0
  63. pulumi_gcp/networkservices/outputs.py +75 -0
  64. pulumi_gcp/parametermanager/__init__.py +2 -0
  65. pulumi_gcp/parametermanager/get_parameter_version_render.py +199 -0
  66. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +220 -0
  67. pulumi_gcp/privilegedaccessmanager/entitlement.py +14 -0
  68. pulumi_gcp/pulumi-plugin.json +1 -1
  69. pulumi_gcp/securesourcemanager/branch_rule.py +4 -0
  70. pulumi_gcp/securesourcemanager/repository.py +4 -0
  71. pulumi_gcp/storage/bucket_object.py +8 -0
  72. pulumi_gcp/workbench/instance.py +70 -2
  73. {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/METADATA +1 -1
  74. {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/RECORD +76 -63
  75. {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/WHEEL +0 -0
  76. {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/top_level.txt +0 -0
@@ -16,20 +16,121 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'InstanceEffectiveReplication',
20
+ 'InstanceEffectiveReplicationReplica',
19
21
  'InstanceFileShares',
20
22
  'InstanceFileSharesNfsExportOption',
23
+ 'InstanceInitialReplication',
24
+ 'InstanceInitialReplicationReplica',
21
25
  'InstanceNetwork',
22
26
  'InstancePerformanceConfig',
23
27
  'InstancePerformanceConfigFixedIops',
24
28
  'InstancePerformanceConfigIopsPerTb',
29
+ 'GetInstanceEffectiveReplicationResult',
30
+ 'GetInstanceEffectiveReplicationReplicaResult',
25
31
  'GetInstanceFileShareResult',
26
32
  'GetInstanceFileShareNfsExportOptionResult',
33
+ 'GetInstanceInitialReplicationResult',
34
+ 'GetInstanceInitialReplicationReplicaResult',
27
35
  'GetInstanceNetworkResult',
28
36
  'GetInstancePerformanceConfigResult',
29
37
  'GetInstancePerformanceConfigFixedIopResult',
30
38
  'GetInstancePerformanceConfigIopsPerTbResult',
31
39
  ]
32
40
 
41
+ @pulumi.output_type
42
+ class InstanceEffectiveReplication(dict):
43
+ def __init__(__self__, *,
44
+ replicas: Optional[Sequence['outputs.InstanceEffectiveReplicationReplica']] = None):
45
+ """
46
+ :param Sequence['InstanceEffectiveReplicationReplicaArgs'] replicas: The replication role.
47
+ Structure is documented below.
48
+ """
49
+ if replicas is not None:
50
+ pulumi.set(__self__, "replicas", replicas)
51
+
52
+ @property
53
+ @pulumi.getter
54
+ def replicas(self) -> Optional[Sequence['outputs.InstanceEffectiveReplicationReplica']]:
55
+ """
56
+ The replication role.
57
+ Structure is documented below.
58
+ """
59
+ return pulumi.get(self, "replicas")
60
+
61
+
62
+ @pulumi.output_type
63
+ class InstanceEffectiveReplicationReplica(dict):
64
+ @staticmethod
65
+ def __key_warning(key: str):
66
+ suggest = None
67
+ if key == "lastActiveSyncTime":
68
+ suggest = "last_active_sync_time"
69
+ elif key == "stateReasons":
70
+ suggest = "state_reasons"
71
+
72
+ if suggest:
73
+ pulumi.log.warn(f"Key '{key}' not found in InstanceEffectiveReplicationReplica. Access the value via the '{suggest}' property getter instead.")
74
+
75
+ def __getitem__(self, key: str) -> Any:
76
+ InstanceEffectiveReplicationReplica.__key_warning(key)
77
+ return super().__getitem__(key)
78
+
79
+ def get(self, key: str, default = None) -> Any:
80
+ InstanceEffectiveReplicationReplica.__key_warning(key)
81
+ return super().get(key, default)
82
+
83
+ def __init__(__self__, *,
84
+ last_active_sync_time: Optional[str] = None,
85
+ state: Optional[str] = None,
86
+ state_reasons: Optional[Sequence[str]] = None):
87
+ """
88
+ :param str last_active_sync_time: (Output)
89
+ Output only. The timestamp of the latest replication snapshot taken on the active instance and is already replicated safely.
90
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
91
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z"
92
+ :param str state: (Output)
93
+ Output only. The replica state
94
+ :param Sequence[str] state_reasons: (Output)
95
+ Output only. Additional information about the replication state, if available.
96
+ """
97
+ if last_active_sync_time is not None:
98
+ pulumi.set(__self__, "last_active_sync_time", last_active_sync_time)
99
+ if state is not None:
100
+ pulumi.set(__self__, "state", state)
101
+ if state_reasons is not None:
102
+ pulumi.set(__self__, "state_reasons", state_reasons)
103
+
104
+ @property
105
+ @pulumi.getter(name="lastActiveSyncTime")
106
+ def last_active_sync_time(self) -> Optional[str]:
107
+ """
108
+ (Output)
109
+ Output only. The timestamp of the latest replication snapshot taken on the active instance and is already replicated safely.
110
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
111
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z"
112
+ """
113
+ return pulumi.get(self, "last_active_sync_time")
114
+
115
+ @property
116
+ @pulumi.getter
117
+ def state(self) -> Optional[str]:
118
+ """
119
+ (Output)
120
+ Output only. The replica state
121
+ """
122
+ return pulumi.get(self, "state")
123
+
124
+ @property
125
+ @pulumi.getter(name="stateReasons")
126
+ def state_reasons(self) -> Optional[Sequence[str]]:
127
+ """
128
+ (Output)
129
+ Output only. Additional information about the replication state, if available.
130
+ """
131
+ return pulumi.get(self, "state_reasons")
132
+
133
+
33
134
  @pulumi.output_type
34
135
  class InstanceFileShares(dict):
35
136
  @staticmethod
@@ -228,6 +329,78 @@ class InstanceFileSharesNfsExportOption(dict):
228
329
  return pulumi.get(self, "squash_mode")
229
330
 
230
331
 
332
+ @pulumi.output_type
333
+ class InstanceInitialReplication(dict):
334
+ def __init__(__self__, *,
335
+ replicas: Optional[Sequence['outputs.InstanceInitialReplicationReplica']] = None,
336
+ role: Optional[str] = None):
337
+ """
338
+ :param Sequence['InstanceInitialReplicationReplicaArgs'] replicas: The replication role.
339
+ Structure is documented below.
340
+ :param str role: The replication role.
341
+ Default value is `STANDBY`.
342
+ Possible values are: `ROLE_UNSPECIFIED`, `ACTIVE`, `STANDBY`.
343
+ """
344
+ if replicas is not None:
345
+ pulumi.set(__self__, "replicas", replicas)
346
+ if role is not None:
347
+ pulumi.set(__self__, "role", role)
348
+
349
+ @property
350
+ @pulumi.getter
351
+ def replicas(self) -> Optional[Sequence['outputs.InstanceInitialReplicationReplica']]:
352
+ """
353
+ The replication role.
354
+ Structure is documented below.
355
+ """
356
+ return pulumi.get(self, "replicas")
357
+
358
+ @property
359
+ @pulumi.getter
360
+ def role(self) -> Optional[str]:
361
+ """
362
+ The replication role.
363
+ Default value is `STANDBY`.
364
+ Possible values are: `ROLE_UNSPECIFIED`, `ACTIVE`, `STANDBY`.
365
+ """
366
+ return pulumi.get(self, "role")
367
+
368
+
369
+ @pulumi.output_type
370
+ class InstanceInitialReplicationReplica(dict):
371
+ @staticmethod
372
+ def __key_warning(key: str):
373
+ suggest = None
374
+ if key == "peerInstance":
375
+ suggest = "peer_instance"
376
+
377
+ if suggest:
378
+ pulumi.log.warn(f"Key '{key}' not found in InstanceInitialReplicationReplica. Access the value via the '{suggest}' property getter instead.")
379
+
380
+ def __getitem__(self, key: str) -> Any:
381
+ InstanceInitialReplicationReplica.__key_warning(key)
382
+ return super().__getitem__(key)
383
+
384
+ def get(self, key: str, default = None) -> Any:
385
+ InstanceInitialReplicationReplica.__key_warning(key)
386
+ return super().get(key, default)
387
+
388
+ def __init__(__self__, *,
389
+ peer_instance: str):
390
+ """
391
+ :param str peer_instance: The peer instance.
392
+ """
393
+ pulumi.set(__self__, "peer_instance", peer_instance)
394
+
395
+ @property
396
+ @pulumi.getter(name="peerInstance")
397
+ def peer_instance(self) -> str:
398
+ """
399
+ The peer instance.
400
+ """
401
+ return pulumi.get(self, "peer_instance")
402
+
403
+
231
404
  @pulumi.output_type
232
405
  class InstanceNetwork(dict):
233
406
  @staticmethod
@@ -478,6 +651,68 @@ class InstancePerformanceConfigIopsPerTb(dict):
478
651
  return pulumi.get(self, "max_iops_per_tb")
479
652
 
480
653
 
654
+ @pulumi.output_type
655
+ class GetInstanceEffectiveReplicationResult(dict):
656
+ def __init__(__self__, *,
657
+ replicas: Sequence['outputs.GetInstanceEffectiveReplicationReplicaResult']):
658
+ """
659
+ :param Sequence['GetInstanceEffectiveReplicationReplicaArgs'] replicas: The replication role.
660
+ """
661
+ pulumi.set(__self__, "replicas", replicas)
662
+
663
+ @property
664
+ @pulumi.getter
665
+ def replicas(self) -> Sequence['outputs.GetInstanceEffectiveReplicationReplicaResult']:
666
+ """
667
+ The replication role.
668
+ """
669
+ return pulumi.get(self, "replicas")
670
+
671
+
672
+ @pulumi.output_type
673
+ class GetInstanceEffectiveReplicationReplicaResult(dict):
674
+ def __init__(__self__, *,
675
+ last_active_sync_time: str,
676
+ state: str,
677
+ state_reasons: Sequence[str]):
678
+ """
679
+ :param str last_active_sync_time: Output only. The timestamp of the latest replication snapshot taken on the active instance and is already replicated safely.
680
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
681
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z"
682
+ :param str state: Output only. The replica state
683
+ :param Sequence[str] state_reasons: Output only. Additional information about the replication state, if available.
684
+ """
685
+ pulumi.set(__self__, "last_active_sync_time", last_active_sync_time)
686
+ pulumi.set(__self__, "state", state)
687
+ pulumi.set(__self__, "state_reasons", state_reasons)
688
+
689
+ @property
690
+ @pulumi.getter(name="lastActiveSyncTime")
691
+ def last_active_sync_time(self) -> str:
692
+ """
693
+ Output only. The timestamp of the latest replication snapshot taken on the active instance and is already replicated safely.
694
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
695
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z"
696
+ """
697
+ return pulumi.get(self, "last_active_sync_time")
698
+
699
+ @property
700
+ @pulumi.getter
701
+ def state(self) -> str:
702
+ """
703
+ Output only. The replica state
704
+ """
705
+ return pulumi.get(self, "state")
706
+
707
+ @property
708
+ @pulumi.getter(name="stateReasons")
709
+ def state_reasons(self) -> Sequence[str]:
710
+ """
711
+ Output only. Additional information about the replication state, if available.
712
+ """
713
+ return pulumi.get(self, "state_reasons")
714
+
715
+
481
716
  @pulumi.output_type
482
717
  class GetInstanceFileShareResult(dict):
483
718
  def __init__(__self__, *,
@@ -617,6 +852,53 @@ class GetInstanceFileShareNfsExportOptionResult(dict):
617
852
  return pulumi.get(self, "squash_mode")
618
853
 
619
854
 
855
+ @pulumi.output_type
856
+ class GetInstanceInitialReplicationResult(dict):
857
+ def __init__(__self__, *,
858
+ replicas: Sequence['outputs.GetInstanceInitialReplicationReplicaResult'],
859
+ role: str):
860
+ """
861
+ :param Sequence['GetInstanceInitialReplicationReplicaArgs'] replicas: The replication role.
862
+ :param str role: The replication role. Default value: "STANDBY" Possible values: ["ROLE_UNSPECIFIED", "ACTIVE", "STANDBY"]
863
+ """
864
+ pulumi.set(__self__, "replicas", replicas)
865
+ pulumi.set(__self__, "role", role)
866
+
867
+ @property
868
+ @pulumi.getter
869
+ def replicas(self) -> Sequence['outputs.GetInstanceInitialReplicationReplicaResult']:
870
+ """
871
+ The replication role.
872
+ """
873
+ return pulumi.get(self, "replicas")
874
+
875
+ @property
876
+ @pulumi.getter
877
+ def role(self) -> str:
878
+ """
879
+ The replication role. Default value: "STANDBY" Possible values: ["ROLE_UNSPECIFIED", "ACTIVE", "STANDBY"]
880
+ """
881
+ return pulumi.get(self, "role")
882
+
883
+
884
+ @pulumi.output_type
885
+ class GetInstanceInitialReplicationReplicaResult(dict):
886
+ def __init__(__self__, *,
887
+ peer_instance: str):
888
+ """
889
+ :param str peer_instance: The peer instance.
890
+ """
891
+ pulumi.set(__self__, "peer_instance", peer_instance)
892
+
893
+ @property
894
+ @pulumi.getter(name="peerInstance")
895
+ def peer_instance(self) -> str:
896
+ """
897
+ The peer instance.
898
+ """
899
+ return pulumi.get(self, "peer_instance")
900
+
901
+
620
902
  @pulumi.output_type
621
903
  class GetInstanceNetworkResult(dict):
622
904
  def __init__(__self__, *,
@@ -7,6 +7,8 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .code_repository_index import *
9
9
  from .get_repository_group_iam_policy import *
10
+ from .logging_setting import *
11
+ from .release_channel_setting import *
10
12
  from .repository_group import *
11
13
  from .repository_group_iam_binding import *
12
14
  from .repository_group_iam_member import *