pulumi-gcp 8.23.0a1742538920__py3-none-any.whl → 8.24.0__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 (106) hide show
  1. pulumi_gcp/__init__.py +59 -0
  2. pulumi_gcp/alloydb/_inputs.py +27 -1
  3. pulumi_gcp/alloydb/outputs.py +33 -2
  4. pulumi_gcp/applicationintegration/client.py +18 -24
  5. pulumi_gcp/bigquery/_inputs.py +178 -0
  6. pulumi_gcp/bigquery/outputs.py +127 -0
  7. pulumi_gcp/bigquery/reservation.py +189 -1
  8. pulumi_gcp/bigquery/table.py +61 -0
  9. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  10. pulumi_gcp/bigtable/table.py +7 -7
  11. pulumi_gcp/chronicle/data_access_label.py +16 -0
  12. pulumi_gcp/clouddeploy/_inputs.py +20 -0
  13. pulumi_gcp/clouddeploy/outputs.py +15 -1
  14. pulumi_gcp/cloudfunctions/function.py +11 -11
  15. pulumi_gcp/cloudfunctionsv2/function.py +24 -24
  16. pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +41 -2
  17. pulumi_gcp/cloudidentity/outputs.py +18 -38
  18. pulumi_gcp/cloudrunv2/service.py +14 -14
  19. pulumi_gcp/compute/__init__.py +1 -0
  20. pulumi_gcp/compute/_inputs.py +616 -18
  21. pulumi_gcp/compute/firewall_policy.py +20 -0
  22. pulumi_gcp/compute/get_images.py +172 -0
  23. pulumi_gcp/compute/get_resource_policy.py +15 -4
  24. pulumi_gcp/compute/image.py +54 -0
  25. pulumi_gcp/compute/interconnect.py +14 -7
  26. pulumi_gcp/compute/outputs.py +710 -18
  27. pulumi_gcp/compute/region_network_endpoint_group.py +2 -2
  28. pulumi_gcp/compute/resource_policy.py +169 -3
  29. pulumi_gcp/compute/router_route_policy.py +16 -0
  30. pulumi_gcp/compute/subnetwork.py +109 -1
  31. pulumi_gcp/compute/target_https_proxy.py +7 -7
  32. pulumi_gcp/config/__init__.pyi +8 -0
  33. pulumi_gcp/config/vars.py +16 -0
  34. pulumi_gcp/container/_inputs.py +265 -4
  35. pulumi_gcp/container/cluster.py +54 -0
  36. pulumi_gcp/container/get_attached_versions.py +2 -2
  37. pulumi_gcp/container/get_cluster.py +12 -1
  38. pulumi_gcp/container/outputs.py +301 -6
  39. pulumi_gcp/dataform/repository.py +49 -0
  40. pulumi_gcp/dataproc/_inputs.py +23 -0
  41. pulumi_gcp/dataproc/get_metastore_service.py +26 -4
  42. pulumi_gcp/dataproc/metastore_federation.py +56 -0
  43. pulumi_gcp/dataproc/metastore_service.py +58 -2
  44. pulumi_gcp/dataproc/outputs.py +27 -0
  45. pulumi_gcp/eventarc/__init__.py +1 -0
  46. pulumi_gcp/eventarc/_inputs.py +1758 -0
  47. pulumi_gcp/eventarc/outputs.py +1337 -0
  48. pulumi_gcp/eventarc/pipeline.py +1596 -0
  49. pulumi_gcp/firebase/__init__.py +1 -0
  50. pulumi_gcp/firebase/_inputs.py +154 -0
  51. pulumi_gcp/firebase/app_hosting_backend.py +1303 -0
  52. pulumi_gcp/firebase/hosting_version.py +2 -2
  53. pulumi_gcp/firebase/outputs.py +127 -0
  54. pulumi_gcp/kms/get_key_rings.py +39 -2
  55. pulumi_gcp/lustre/__init__.py +8 -0
  56. pulumi_gcp/lustre/instance.py +983 -0
  57. pulumi_gcp/managedkafka/__init__.py +2 -0
  58. pulumi_gcp/managedkafka/_inputs.py +263 -0
  59. pulumi_gcp/managedkafka/connect_cluster.py +795 -0
  60. pulumi_gcp/managedkafka/connector.py +695 -0
  61. pulumi_gcp/managedkafka/outputs.py +248 -0
  62. pulumi_gcp/memorystore/_inputs.py +419 -0
  63. pulumi_gcp/memorystore/get_instance.py +23 -1
  64. pulumi_gcp/memorystore/instance.py +144 -14
  65. pulumi_gcp/memorystore/outputs.py +544 -0
  66. pulumi_gcp/monitoring/uptime_check_config.py +2 -2
  67. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  68. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  69. pulumi_gcp/networkmanagement/outputs.py +280 -61
  70. pulumi_gcp/networksecurity/_inputs.py +1277 -242
  71. pulumi_gcp/networksecurity/gateway_security_policy.py +0 -7
  72. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  73. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  74. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  75. pulumi_gcp/networksecurity/mirroring_deployment.py +22 -0
  76. pulumi_gcp/networksecurity/mirroring_deployment_group.py +20 -0
  77. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +24 -0
  78. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +28 -0
  79. pulumi_gcp/networksecurity/outputs.py +723 -8
  80. pulumi_gcp/networksecurity/tls_inspection_policy.py +14 -0
  81. pulumi_gcp/networkservices/gateway.py +242 -120
  82. pulumi_gcp/organizations/__init__.py +1 -0
  83. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  84. pulumi_gcp/osconfig/__init__.py +1 -0
  85. pulumi_gcp/osconfig/_inputs.py +5413 -0
  86. pulumi_gcp/osconfig/outputs.py +3962 -0
  87. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  88. pulumi_gcp/projects/__init__.py +2 -0
  89. pulumi_gcp/projects/get_iam_custom_role.py +198 -0
  90. pulumi_gcp/projects/get_iam_custom_roles.py +164 -0
  91. pulumi_gcp/projects/outputs.py +96 -0
  92. pulumi_gcp/provider.py +80 -0
  93. pulumi_gcp/pulumi-plugin.json +1 -1
  94. pulumi_gcp/servicenetworking/peered_dns_domain.py +4 -0
  95. pulumi_gcp/sql/outputs.py +8 -8
  96. pulumi_gcp/storage/__init__.py +2 -0
  97. pulumi_gcp/storage/_inputs.py +740 -6
  98. pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
  99. pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
  100. pulumi_gcp/storage/insights_report_config.py +121 -20
  101. pulumi_gcp/storage/outputs.py +723 -4
  102. pulumi_gcp/workflows/workflow.py +75 -7
  103. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/METADATA +1 -1
  104. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/RECORD +106 -93
  105. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/WHEEL +1 -1
  106. {pulumi_gcp-8.23.0a1742538920.dist-info → pulumi_gcp-8.24.0.dist-info}/top_level.txt +0 -0
@@ -13,6 +13,7 @@ from .get_client_config import *
13
13
  from .get_client_open_id_user_info import *
14
14
  from .get_folder import *
15
15
  from .get_folders import *
16
+ from .get_iam_custom_role import *
16
17
  from .get_iam_policy import *
17
18
  from .get_organization import *
18
19
  from .get_project import *
@@ -0,0 +1,198 @@
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
+ 'GetIamCustomRoleResult',
19
+ 'AwaitableGetIamCustomRoleResult',
20
+ 'get_iam_custom_role',
21
+ 'get_iam_custom_role_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetIamCustomRoleResult:
26
+ """
27
+ A collection of values returned by getIamCustomRole.
28
+ """
29
+ def __init__(__self__, deleted=None, description=None, id=None, name=None, org_id=None, permissions=None, role_id=None, stage=None, title=None):
30
+ if deleted and not isinstance(deleted, bool):
31
+ raise TypeError("Expected argument 'deleted' to be a bool")
32
+ pulumi.set(__self__, "deleted", deleted)
33
+ if description and not isinstance(description, str):
34
+ raise TypeError("Expected argument 'description' to be a str")
35
+ pulumi.set(__self__, "description", description)
36
+ if id and not isinstance(id, str):
37
+ raise TypeError("Expected argument 'id' to be a str")
38
+ pulumi.set(__self__, "id", id)
39
+ if name and not isinstance(name, str):
40
+ raise TypeError("Expected argument 'name' to be a str")
41
+ pulumi.set(__self__, "name", name)
42
+ if org_id and not isinstance(org_id, str):
43
+ raise TypeError("Expected argument 'org_id' to be a str")
44
+ pulumi.set(__self__, "org_id", org_id)
45
+ if permissions and not isinstance(permissions, list):
46
+ raise TypeError("Expected argument 'permissions' to be a list")
47
+ pulumi.set(__self__, "permissions", permissions)
48
+ if role_id and not isinstance(role_id, str):
49
+ raise TypeError("Expected argument 'role_id' to be a str")
50
+ pulumi.set(__self__, "role_id", role_id)
51
+ if stage and not isinstance(stage, str):
52
+ raise TypeError("Expected argument 'stage' to be a str")
53
+ pulumi.set(__self__, "stage", stage)
54
+ if title and not isinstance(title, str):
55
+ raise TypeError("Expected argument 'title' to be a str")
56
+ pulumi.set(__self__, "title", title)
57
+
58
+ @property
59
+ @pulumi.getter
60
+ def deleted(self) -> bool:
61
+ return pulumi.get(self, "deleted")
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def description(self) -> str:
66
+ return pulumi.get(self, "description")
67
+
68
+ @property
69
+ @pulumi.getter
70
+ def id(self) -> str:
71
+ """
72
+ The provider-assigned unique ID for this managed resource.
73
+ """
74
+ return pulumi.get(self, "id")
75
+
76
+ @property
77
+ @pulumi.getter
78
+ def name(self) -> str:
79
+ return pulumi.get(self, "name")
80
+
81
+ @property
82
+ @pulumi.getter(name="orgId")
83
+ def org_id(self) -> str:
84
+ return pulumi.get(self, "org_id")
85
+
86
+ @property
87
+ @pulumi.getter
88
+ def permissions(self) -> Sequence[str]:
89
+ return pulumi.get(self, "permissions")
90
+
91
+ @property
92
+ @pulumi.getter(name="roleId")
93
+ def role_id(self) -> str:
94
+ return pulumi.get(self, "role_id")
95
+
96
+ @property
97
+ @pulumi.getter
98
+ def stage(self) -> str:
99
+ return pulumi.get(self, "stage")
100
+
101
+ @property
102
+ @pulumi.getter
103
+ def title(self) -> str:
104
+ return pulumi.get(self, "title")
105
+
106
+
107
+ class AwaitableGetIamCustomRoleResult(GetIamCustomRoleResult):
108
+ # pylint: disable=using-constant-test
109
+ def __await__(self):
110
+ if False:
111
+ yield self
112
+ return GetIamCustomRoleResult(
113
+ deleted=self.deleted,
114
+ description=self.description,
115
+ id=self.id,
116
+ name=self.name,
117
+ org_id=self.org_id,
118
+ permissions=self.permissions,
119
+ role_id=self.role_id,
120
+ stage=self.stage,
121
+ title=self.title)
122
+
123
+
124
+ def get_iam_custom_role(org_id: Optional[str] = None,
125
+ role_id: Optional[str] = None,
126
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIamCustomRoleResult:
127
+ """
128
+ Get information about a Google Cloud Organization IAM Custom Role. Note that you must have the `roles/iam.organizationRoleViewer` role (or equivalent permissions) at the organization level to use this datasource.
129
+
130
+ ```python
131
+ import pulumi
132
+ import pulumi_gcp as gcp
133
+
134
+ example = gcp.organizations.get_iam_custom_role(org_id="1234567890",
135
+ role_id="your-role-id")
136
+ project = gcp.projects.IAMMember("project",
137
+ project="your-project-id",
138
+ role=example.name,
139
+ member="user:jane@example.com")
140
+ ```
141
+
142
+
143
+ :param str org_id: The numeric ID of the organization in which you want to create a custom role.
144
+ :param str role_id: The role id that has been used for this role.
145
+ """
146
+ __args__ = dict()
147
+ __args__['orgId'] = org_id
148
+ __args__['roleId'] = role_id
149
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
150
+ __ret__ = pulumi.runtime.invoke('gcp:organizations/getIamCustomRole:getIamCustomRole', __args__, opts=opts, typ=GetIamCustomRoleResult).value
151
+
152
+ return AwaitableGetIamCustomRoleResult(
153
+ deleted=pulumi.get(__ret__, 'deleted'),
154
+ description=pulumi.get(__ret__, 'description'),
155
+ id=pulumi.get(__ret__, 'id'),
156
+ name=pulumi.get(__ret__, 'name'),
157
+ org_id=pulumi.get(__ret__, 'org_id'),
158
+ permissions=pulumi.get(__ret__, 'permissions'),
159
+ role_id=pulumi.get(__ret__, 'role_id'),
160
+ stage=pulumi.get(__ret__, 'stage'),
161
+ title=pulumi.get(__ret__, 'title'))
162
+ def get_iam_custom_role_output(org_id: Optional[pulumi.Input[str]] = None,
163
+ role_id: Optional[pulumi.Input[str]] = None,
164
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIamCustomRoleResult]:
165
+ """
166
+ Get information about a Google Cloud Organization IAM Custom Role. Note that you must have the `roles/iam.organizationRoleViewer` role (or equivalent permissions) at the organization level to use this datasource.
167
+
168
+ ```python
169
+ import pulumi
170
+ import pulumi_gcp as gcp
171
+
172
+ example = gcp.organizations.get_iam_custom_role(org_id="1234567890",
173
+ role_id="your-role-id")
174
+ project = gcp.projects.IAMMember("project",
175
+ project="your-project-id",
176
+ role=example.name,
177
+ member="user:jane@example.com")
178
+ ```
179
+
180
+
181
+ :param str org_id: The numeric ID of the organization in which you want to create a custom role.
182
+ :param str role_id: The role id that has been used for this role.
183
+ """
184
+ __args__ = dict()
185
+ __args__['orgId'] = org_id
186
+ __args__['roleId'] = role_id
187
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
188
+ __ret__ = pulumi.runtime.invoke_output('gcp:organizations/getIamCustomRole:getIamCustomRole', __args__, opts=opts, typ=GetIamCustomRoleResult)
189
+ return __ret__.apply(lambda __response__: GetIamCustomRoleResult(
190
+ deleted=pulumi.get(__response__, 'deleted'),
191
+ description=pulumi.get(__response__, 'description'),
192
+ id=pulumi.get(__response__, 'id'),
193
+ name=pulumi.get(__response__, 'name'),
194
+ org_id=pulumi.get(__response__, 'org_id'),
195
+ permissions=pulumi.get(__response__, 'permissions'),
196
+ role_id=pulumi.get(__response__, 'role_id'),
197
+ stage=pulumi.get(__response__, 'stage'),
198
+ title=pulumi.get(__response__, 'title')))
@@ -8,5 +8,6 @@ import typing
8
8
  from .guest_policies import *
9
9
  from .os_policy_assignment import *
10
10
  from .patch_deployment import *
11
+ from .v2_policy_orchestrator import *
11
12
  from ._inputs import *
12
13
  from . import outputs