pulumi-gcp 8.17.0a1738090062__py3-none-any.whl → 8.17.0a1738349438__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 (83) hide show
  1. pulumi_gcp/__init__.py +91 -0
  2. pulumi_gcp/alloydb/cluster.py +75 -7
  3. pulumi_gcp/apigee/_inputs.py +91 -0
  4. pulumi_gcp/apigee/endpoint_attachment.py +0 -64
  5. pulumi_gcp/apigee/environment.py +54 -0
  6. pulumi_gcp/apigee/outputs.py +54 -0
  7. pulumi_gcp/apihub/__init__.py +10 -0
  8. pulumi_gcp/apihub/_inputs.py +154 -0
  9. pulumi_gcp/apihub/api_hub_instance.py +784 -0
  10. pulumi_gcp/apihub/outputs.py +124 -0
  11. pulumi_gcp/chronicle/__init__.py +1 -0
  12. pulumi_gcp/chronicle/_inputs.py +124 -0
  13. pulumi_gcp/chronicle/outputs.py +112 -0
  14. pulumi_gcp/chronicle/retrohunt.py +645 -0
  15. pulumi_gcp/cloudrunv2/_inputs.py +197 -0
  16. pulumi_gcp/cloudrunv2/get_service.py +12 -1
  17. pulumi_gcp/cloudrunv2/outputs.py +256 -0
  18. pulumi_gcp/cloudrunv2/service.py +159 -0
  19. pulumi_gcp/colab/__init__.py +5 -0
  20. pulumi_gcp/colab/_inputs.py +131 -0
  21. pulumi_gcp/colab/get_runtime_template_iam_policy.py +182 -0
  22. pulumi_gcp/colab/outputs.py +92 -0
  23. pulumi_gcp/colab/runtime.py +696 -0
  24. pulumi_gcp/colab/runtime_template_iam_binding.py +828 -0
  25. pulumi_gcp/colab/runtime_template_iam_member.py +828 -0
  26. pulumi_gcp/colab/runtime_template_iam_policy.py +667 -0
  27. pulumi_gcp/compute/__init__.py +4 -0
  28. pulumi_gcp/compute/_inputs.py +526 -0
  29. pulumi_gcp/compute/firewall_policy_rule.py +104 -22
  30. pulumi_gcp/compute/firewall_policy_with_rules.py +114 -42
  31. pulumi_gcp/compute/get_instance_template_iam_policy.py +159 -0
  32. pulumi_gcp/compute/instance_template_iam_binding.py +998 -0
  33. pulumi_gcp/compute/instance_template_iam_member.py +998 -0
  34. pulumi_gcp/compute/instance_template_iam_policy.py +817 -0
  35. pulumi_gcp/compute/interconnect_attachment.py +189 -2
  36. pulumi_gcp/compute/network_firewall_policy_rule.py +122 -10
  37. pulumi_gcp/compute/network_firewall_policy_with_rules.py +116 -44
  38. pulumi_gcp/compute/outputs.py +352 -0
  39. pulumi_gcp/compute/project_metadata_item.py +12 -0
  40. pulumi_gcp/compute/public_advertised_prefix.py +87 -0
  41. pulumi_gcp/compute/region_network_firewall_policy_rule.py +130 -10
  42. pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +104 -32
  43. pulumi_gcp/compute/router_peer.py +115 -3
  44. pulumi_gcp/config/__init__.pyi +2 -0
  45. pulumi_gcp/config/vars.py +4 -0
  46. pulumi_gcp/filestore/get_instance.py +12 -1
  47. pulumi_gcp/filestore/instance.py +75 -0
  48. pulumi_gcp/gemini/code_repository_index.py +29 -33
  49. pulumi_gcp/gemini/get_repository_group_iam_policy.py +28 -2
  50. pulumi_gcp/gemini/repository_group.py +76 -26
  51. pulumi_gcp/gemini/repository_group_iam_binding.py +258 -0
  52. pulumi_gcp/gemini/repository_group_iam_member.py +258 -0
  53. pulumi_gcp/gemini/repository_group_iam_policy.py +258 -0
  54. pulumi_gcp/kms/__init__.py +1 -0
  55. pulumi_gcp/kms/get_key_handles.py +172 -0
  56. pulumi_gcp/kms/outputs.py +45 -0
  57. pulumi_gcp/networksecurity/_inputs.py +72 -0
  58. pulumi_gcp/networksecurity/outputs.py +76 -0
  59. pulumi_gcp/networksecurity/security_profile.py +233 -7
  60. pulumi_gcp/networksecurity/security_profile_group.py +218 -0
  61. pulumi_gcp/organizations/__init__.py +1 -0
  62. pulumi_gcp/organizations/get_s.py +128 -0
  63. pulumi_gcp/organizations/outputs.py +63 -0
  64. pulumi_gcp/parametermanager/__init__.py +3 -0
  65. pulumi_gcp/parametermanager/get_parameter.py +211 -0
  66. pulumi_gcp/parametermanager/get_regional_parameters.py +157 -0
  67. pulumi_gcp/parametermanager/outputs.py +210 -0
  68. pulumi_gcp/parametermanager/parameter_version.py +496 -0
  69. pulumi_gcp/parametermanager/regional_parameter_version.py +10 -38
  70. pulumi_gcp/provider.py +20 -0
  71. pulumi_gcp/pubsub/_inputs.py +213 -1
  72. pulumi_gcp/pubsub/outputs.py +278 -2
  73. pulumi_gcp/pubsub/topic.py +42 -0
  74. pulumi_gcp/pulumi-plugin.json +1 -1
  75. pulumi_gcp/redis/__init__.py +1 -0
  76. pulumi_gcp/redis/_inputs.py +342 -6
  77. pulumi_gcp/redis/cluster.py +223 -102
  78. pulumi_gcp/redis/cluster_user_created_connections.py +845 -0
  79. pulumi_gcp/redis/outputs.py +268 -4
  80. {pulumi_gcp-8.17.0a1738090062.dist-info → pulumi_gcp-8.17.0a1738349438.dist-info}/METADATA +1 -1
  81. {pulumi_gcp-8.17.0a1738090062.dist-info → pulumi_gcp-8.17.0a1738349438.dist-info}/RECORD +83 -63
  82. {pulumi_gcp-8.17.0a1738090062.dist-info → pulumi_gcp-8.17.0a1738349438.dist-info}/WHEEL +0 -0
  83. {pulumi_gcp-8.17.0a1738090062.dist-info → pulumi_gcp-8.17.0a1738349438.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,124 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'ApiHubInstanceConfig',
19
+ ]
20
+
21
+ @pulumi.output_type
22
+ class ApiHubInstanceConfig(dict):
23
+ @staticmethod
24
+ def __key_warning(key: str):
25
+ suggest = None
26
+ if key == "cmekKeyName":
27
+ suggest = "cmek_key_name"
28
+ elif key == "disableSearch":
29
+ suggest = "disable_search"
30
+ elif key == "encryptionType":
31
+ suggest = "encryption_type"
32
+ elif key == "vertexLocation":
33
+ suggest = "vertex_location"
34
+
35
+ if suggest:
36
+ pulumi.log.warn(f"Key '{key}' not found in ApiHubInstanceConfig. Access the value via the '{suggest}' property getter instead.")
37
+
38
+ def __getitem__(self, key: str) -> Any:
39
+ ApiHubInstanceConfig.__key_warning(key)
40
+ return super().__getitem__(key)
41
+
42
+ def get(self, key: str, default = None) -> Any:
43
+ ApiHubInstanceConfig.__key_warning(key)
44
+ return super().get(key, default)
45
+
46
+ def __init__(__self__, *,
47
+ cmek_key_name: Optional[str] = None,
48
+ disable_search: Optional[bool] = None,
49
+ encryption_type: Optional[str] = None,
50
+ vertex_location: Optional[str] = None):
51
+ """
52
+ :param str cmek_key_name: Optional. The Customer Managed Encryption Key (CMEK) used for data encryption.
53
+ The CMEK name should follow the format of
54
+ `projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/cryptoKeys/([^/]+)`,
55
+ where the location must match the instance location.
56
+ If the CMEK is not provided, a GMEK will be created for the instance.
57
+ :param bool disable_search: Optional. If true, the search will be disabled for the instance. The default value
58
+ is false.
59
+ :param str encryption_type: Optional. Encryption type for the region. If the encryption type is CMEK, the
60
+ cmek_key_name must be provided. If no encryption type is provided,
61
+ GMEK will be used.
62
+ Possible values:
63
+ ENCRYPTION_TYPE_UNSPECIFIED
64
+ GMEK
65
+ CMEK
66
+ :param str vertex_location: Optional. The name of the Vertex AI location where the data store is stored.
67
+
68
+ - - -
69
+ """
70
+ if cmek_key_name is not None:
71
+ pulumi.set(__self__, "cmek_key_name", cmek_key_name)
72
+ if disable_search is not None:
73
+ pulumi.set(__self__, "disable_search", disable_search)
74
+ if encryption_type is not None:
75
+ pulumi.set(__self__, "encryption_type", encryption_type)
76
+ if vertex_location is not None:
77
+ pulumi.set(__self__, "vertex_location", vertex_location)
78
+
79
+ @property
80
+ @pulumi.getter(name="cmekKeyName")
81
+ def cmek_key_name(self) -> Optional[str]:
82
+ """
83
+ Optional. The Customer Managed Encryption Key (CMEK) used for data encryption.
84
+ The CMEK name should follow the format of
85
+ `projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/cryptoKeys/([^/]+)`,
86
+ where the location must match the instance location.
87
+ If the CMEK is not provided, a GMEK will be created for the instance.
88
+ """
89
+ return pulumi.get(self, "cmek_key_name")
90
+
91
+ @property
92
+ @pulumi.getter(name="disableSearch")
93
+ def disable_search(self) -> Optional[bool]:
94
+ """
95
+ Optional. If true, the search will be disabled for the instance. The default value
96
+ is false.
97
+ """
98
+ return pulumi.get(self, "disable_search")
99
+
100
+ @property
101
+ @pulumi.getter(name="encryptionType")
102
+ def encryption_type(self) -> Optional[str]:
103
+ """
104
+ Optional. Encryption type for the region. If the encryption type is CMEK, the
105
+ cmek_key_name must be provided. If no encryption type is provided,
106
+ GMEK will be used.
107
+ Possible values:
108
+ ENCRYPTION_TYPE_UNSPECIFIED
109
+ GMEK
110
+ CMEK
111
+ """
112
+ return pulumi.get(self, "encryption_type")
113
+
114
+ @property
115
+ @pulumi.getter(name="vertexLocation")
116
+ def vertex_location(self) -> Optional[str]:
117
+ """
118
+ Optional. The name of the Vertex AI location where the data store is stored.
119
+
120
+ - - -
121
+ """
122
+ return pulumi.get(self, "vertex_location")
123
+
124
+
@@ -8,6 +8,7 @@ import typing
8
8
  from .data_access_label import *
9
9
  from .data_access_scope import *
10
10
  from .reference_list import *
11
+ from .retrohunt import *
11
12
  from .rule import *
12
13
  from .rule_deployment import *
13
14
  from .watchlist import *
@@ -29,6 +29,10 @@ __all__ = [
29
29
  'ReferenceListScopeInfoArgsDict',
30
30
  'ReferenceListScopeInfoReferenceListScopeArgs',
31
31
  'ReferenceListScopeInfoReferenceListScopeArgsDict',
32
+ 'RetrohuntExecutionIntervalArgs',
33
+ 'RetrohuntExecutionIntervalArgsDict',
34
+ 'RetrohuntProcessIntervalArgs',
35
+ 'RetrohuntProcessIntervalArgsDict',
32
36
  'RuleCompilationDiagnosticArgs',
33
37
  'RuleCompilationDiagnosticArgsDict',
34
38
  'RuleCompilationDiagnosticPositionArgs',
@@ -536,6 +540,126 @@ class ReferenceListScopeInfoReferenceListScopeArgs:
536
540
  pulumi.set(self, "scope_names", value)
537
541
 
538
542
 
543
+ if not MYPY:
544
+ class RetrohuntExecutionIntervalArgsDict(TypedDict):
545
+ end_time: NotRequired[pulumi.Input[str]]
546
+ """
547
+ Optional. Exclusive end of the interval.
548
+ If specified, a Timestamp matching this interval will have to be before the
549
+ end.
550
+ """
551
+ start_time: NotRequired[pulumi.Input[str]]
552
+ """
553
+ Optional. Inclusive start of the interval.
554
+ If specified, a Timestamp matching this interval will have to be the same
555
+ or after the start.
556
+ """
557
+ elif False:
558
+ RetrohuntExecutionIntervalArgsDict: TypeAlias = Mapping[str, Any]
559
+
560
+ @pulumi.input_type
561
+ class RetrohuntExecutionIntervalArgs:
562
+ def __init__(__self__, *,
563
+ end_time: Optional[pulumi.Input[str]] = None,
564
+ start_time: Optional[pulumi.Input[str]] = None):
565
+ """
566
+ :param pulumi.Input[str] end_time: Optional. Exclusive end of the interval.
567
+ If specified, a Timestamp matching this interval will have to be before the
568
+ end.
569
+ :param pulumi.Input[str] start_time: Optional. Inclusive start of the interval.
570
+ If specified, a Timestamp matching this interval will have to be the same
571
+ or after the start.
572
+ """
573
+ if end_time is not None:
574
+ pulumi.set(__self__, "end_time", end_time)
575
+ if start_time is not None:
576
+ pulumi.set(__self__, "start_time", start_time)
577
+
578
+ @property
579
+ @pulumi.getter(name="endTime")
580
+ def end_time(self) -> Optional[pulumi.Input[str]]:
581
+ """
582
+ Optional. Exclusive end of the interval.
583
+ If specified, a Timestamp matching this interval will have to be before the
584
+ end.
585
+ """
586
+ return pulumi.get(self, "end_time")
587
+
588
+ @end_time.setter
589
+ def end_time(self, value: Optional[pulumi.Input[str]]):
590
+ pulumi.set(self, "end_time", value)
591
+
592
+ @property
593
+ @pulumi.getter(name="startTime")
594
+ def start_time(self) -> Optional[pulumi.Input[str]]:
595
+ """
596
+ Optional. Inclusive start of the interval.
597
+ If specified, a Timestamp matching this interval will have to be the same
598
+ or after the start.
599
+ """
600
+ return pulumi.get(self, "start_time")
601
+
602
+ @start_time.setter
603
+ def start_time(self, value: Optional[pulumi.Input[str]]):
604
+ pulumi.set(self, "start_time", value)
605
+
606
+
607
+ if not MYPY:
608
+ class RetrohuntProcessIntervalArgsDict(TypedDict):
609
+ end_time: pulumi.Input[str]
610
+ """
611
+ Exclusive end of the interval.
612
+
613
+ - - -
614
+ """
615
+ start_time: pulumi.Input[str]
616
+ """
617
+ Inclusive start of the interval.
618
+ """
619
+ elif False:
620
+ RetrohuntProcessIntervalArgsDict: TypeAlias = Mapping[str, Any]
621
+
622
+ @pulumi.input_type
623
+ class RetrohuntProcessIntervalArgs:
624
+ def __init__(__self__, *,
625
+ end_time: pulumi.Input[str],
626
+ start_time: pulumi.Input[str]):
627
+ """
628
+ :param pulumi.Input[str] end_time: Exclusive end of the interval.
629
+
630
+ - - -
631
+ :param pulumi.Input[str] start_time: Inclusive start of the interval.
632
+ """
633
+ pulumi.set(__self__, "end_time", end_time)
634
+ pulumi.set(__self__, "start_time", start_time)
635
+
636
+ @property
637
+ @pulumi.getter(name="endTime")
638
+ def end_time(self) -> pulumi.Input[str]:
639
+ """
640
+ Exclusive end of the interval.
641
+
642
+ - - -
643
+ """
644
+ return pulumi.get(self, "end_time")
645
+
646
+ @end_time.setter
647
+ def end_time(self, value: pulumi.Input[str]):
648
+ pulumi.set(self, "end_time", value)
649
+
650
+ @property
651
+ @pulumi.getter(name="startTime")
652
+ def start_time(self) -> pulumi.Input[str]:
653
+ """
654
+ Inclusive start of the interval.
655
+ """
656
+ return pulumi.get(self, "start_time")
657
+
658
+ @start_time.setter
659
+ def start_time(self, value: pulumi.Input[str]):
660
+ pulumi.set(self, "start_time", value)
661
+
662
+
539
663
  if not MYPY:
540
664
  class RuleCompilationDiagnosticArgsDict(TypedDict):
541
665
  message: NotRequired[pulumi.Input[str]]
@@ -23,6 +23,8 @@ __all__ = [
23
23
  'ReferenceListEntry',
24
24
  'ReferenceListScopeInfo',
25
25
  'ReferenceListScopeInfoReferenceListScope',
26
+ 'RetrohuntExecutionInterval',
27
+ 'RetrohuntProcessInterval',
26
28
  'RuleCompilationDiagnostic',
27
29
  'RuleCompilationDiagnosticPosition',
28
30
  'RuleSeverity',
@@ -449,6 +451,116 @@ class ReferenceListScopeInfoReferenceListScope(dict):
449
451
  return pulumi.get(self, "scope_names")
450
452
 
451
453
 
454
+ @pulumi.output_type
455
+ class RetrohuntExecutionInterval(dict):
456
+ @staticmethod
457
+ def __key_warning(key: str):
458
+ suggest = None
459
+ if key == "endTime":
460
+ suggest = "end_time"
461
+ elif key == "startTime":
462
+ suggest = "start_time"
463
+
464
+ if suggest:
465
+ pulumi.log.warn(f"Key '{key}' not found in RetrohuntExecutionInterval. Access the value via the '{suggest}' property getter instead.")
466
+
467
+ def __getitem__(self, key: str) -> Any:
468
+ RetrohuntExecutionInterval.__key_warning(key)
469
+ return super().__getitem__(key)
470
+
471
+ def get(self, key: str, default = None) -> Any:
472
+ RetrohuntExecutionInterval.__key_warning(key)
473
+ return super().get(key, default)
474
+
475
+ def __init__(__self__, *,
476
+ end_time: Optional[str] = None,
477
+ start_time: Optional[str] = None):
478
+ """
479
+ :param str end_time: Optional. Exclusive end of the interval.
480
+ If specified, a Timestamp matching this interval will have to be before the
481
+ end.
482
+ :param str start_time: Optional. Inclusive start of the interval.
483
+ If specified, a Timestamp matching this interval will have to be the same
484
+ or after the start.
485
+ """
486
+ if end_time is not None:
487
+ pulumi.set(__self__, "end_time", end_time)
488
+ if start_time is not None:
489
+ pulumi.set(__self__, "start_time", start_time)
490
+
491
+ @property
492
+ @pulumi.getter(name="endTime")
493
+ def end_time(self) -> Optional[str]:
494
+ """
495
+ Optional. Exclusive end of the interval.
496
+ If specified, a Timestamp matching this interval will have to be before the
497
+ end.
498
+ """
499
+ return pulumi.get(self, "end_time")
500
+
501
+ @property
502
+ @pulumi.getter(name="startTime")
503
+ def start_time(self) -> Optional[str]:
504
+ """
505
+ Optional. Inclusive start of the interval.
506
+ If specified, a Timestamp matching this interval will have to be the same
507
+ or after the start.
508
+ """
509
+ return pulumi.get(self, "start_time")
510
+
511
+
512
+ @pulumi.output_type
513
+ class RetrohuntProcessInterval(dict):
514
+ @staticmethod
515
+ def __key_warning(key: str):
516
+ suggest = None
517
+ if key == "endTime":
518
+ suggest = "end_time"
519
+ elif key == "startTime":
520
+ suggest = "start_time"
521
+
522
+ if suggest:
523
+ pulumi.log.warn(f"Key '{key}' not found in RetrohuntProcessInterval. Access the value via the '{suggest}' property getter instead.")
524
+
525
+ def __getitem__(self, key: str) -> Any:
526
+ RetrohuntProcessInterval.__key_warning(key)
527
+ return super().__getitem__(key)
528
+
529
+ def get(self, key: str, default = None) -> Any:
530
+ RetrohuntProcessInterval.__key_warning(key)
531
+ return super().get(key, default)
532
+
533
+ def __init__(__self__, *,
534
+ end_time: str,
535
+ start_time: str):
536
+ """
537
+ :param str end_time: Exclusive end of the interval.
538
+
539
+ - - -
540
+ :param str start_time: Inclusive start of the interval.
541
+ """
542
+ pulumi.set(__self__, "end_time", end_time)
543
+ pulumi.set(__self__, "start_time", start_time)
544
+
545
+ @property
546
+ @pulumi.getter(name="endTime")
547
+ def end_time(self) -> str:
548
+ """
549
+ Exclusive end of the interval.
550
+
551
+ - - -
552
+ """
553
+ return pulumi.get(self, "end_time")
554
+
555
+ @property
556
+ @pulumi.getter(name="startTime")
557
+ def start_time(self) -> str:
558
+ """
559
+ Inclusive start of the interval.
560
+ """
561
+ return pulumi.get(self, "start_time")
562
+
563
+
452
564
  @pulumi.output_type
453
565
  class RuleCompilationDiagnostic(dict):
454
566
  def __init__(__self__, *,