pulumi-gcp 8.28.0a1745598508__py3-none-any.whl → 8.29.0a1746076904__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 (78) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +369 -0
  5. pulumi_gcp/alloydb/_inputs.py +47 -1
  6. pulumi_gcp/alloydb/outputs.py +61 -3
  7. pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
  8. pulumi_gcp/applicationintegration/client.py +34 -12
  9. pulumi_gcp/artifactregistry/outputs.py +2 -2
  10. pulumi_gcp/certificateauthority/_inputs.py +32 -0
  11. pulumi_gcp/certificateauthority/ca_pool.py +2 -0
  12. pulumi_gcp/certificateauthority/outputs.py +22 -0
  13. pulumi_gcp/clouddeploy/_inputs.py +0 -6
  14. pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
  15. pulumi_gcp/clouddeploy/outputs.py +0 -4
  16. pulumi_gcp/cloudrunv2/_inputs.py +3 -3
  17. pulumi_gcp/cloudrunv2/outputs.py +4 -4
  18. pulumi_gcp/colab/runtime_template.py +3 -3
  19. pulumi_gcp/compute/__init__.py +7 -0
  20. pulumi_gcp/compute/_inputs.py +809 -1
  21. pulumi_gcp/compute/backend_service.py +89 -0
  22. pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
  23. pulumi_gcp/compute/get_backend_service.py +12 -1
  24. pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
  25. pulumi_gcp/compute/get_storage_pool_types.py +268 -0
  26. pulumi_gcp/compute/outputs.py +743 -3
  27. pulumi_gcp/compute/resource_policy_attachment.py +476 -0
  28. pulumi_gcp/compute/storage_pool.py +1045 -0
  29. pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
  30. pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
  31. pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/container/_inputs.py +63 -3
  35. pulumi_gcp/container/outputs.py +70 -6
  36. pulumi_gcp/dataproc/get_metastore_service.py +12 -1
  37. pulumi_gcp/dataproc/metastore_service.py +61 -0
  38. pulumi_gcp/datastream/connection_profile.py +40 -0
  39. pulumi_gcp/discoveryengine/_inputs.py +38 -0
  40. pulumi_gcp/discoveryengine/chat_engine.py +6 -4
  41. pulumi_gcp/discoveryengine/outputs.py +26 -0
  42. pulumi_gcp/firebaserules/_inputs.py +6 -6
  43. pulumi_gcp/firebaserules/outputs.py +4 -4
  44. pulumi_gcp/gkebackup/__init__.py +2 -0
  45. pulumi_gcp/gkebackup/backup_channel.py +737 -0
  46. pulumi_gcp/gkebackup/restore_channel.py +737 -0
  47. pulumi_gcp/gkehub/_inputs.py +208 -0
  48. pulumi_gcp/gkehub/outputs.py +171 -1
  49. pulumi_gcp/healthcare/pipeline_job.py +2 -2
  50. pulumi_gcp/iap/__init__.py +4 -0
  51. pulumi_gcp/iap/_inputs.py +130 -0
  52. pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
  53. pulumi_gcp/iap/outputs.py +76 -0
  54. pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
  55. pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
  56. pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
  57. pulumi_gcp/kms/key_ring_import_job.py +7 -7
  58. pulumi_gcp/managedkafka/connect_cluster.py +8 -4
  59. pulumi_gcp/managedkafka/connector.py +8 -4
  60. pulumi_gcp/monitoring/uptime_check_config.py +49 -0
  61. pulumi_gcp/networkconnectivity/internal_range.py +82 -0
  62. pulumi_gcp/projects/_inputs.py +0 -6
  63. pulumi_gcp/projects/api_key.py +28 -0
  64. pulumi_gcp/projects/outputs.py +0 -4
  65. pulumi_gcp/provider.py +20 -0
  66. pulumi_gcp/pulumi-plugin.json +1 -1
  67. pulumi_gcp/redis/get_instance.py +12 -1
  68. pulumi_gcp/redis/instance.py +61 -0
  69. pulumi_gcp/sql/_inputs.py +86 -6
  70. pulumi_gcp/sql/outputs.py +156 -12
  71. pulumi_gcp/storage/__init__.py +1 -0
  72. pulumi_gcp/storage/_inputs.py +457 -0
  73. pulumi_gcp/storage/batch_operations_job.py +776 -0
  74. pulumi_gcp/storage/outputs.py +403 -0
  75. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/METADATA +1 -1
  76. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/RECORD +78 -64
  77. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/WHEEL +1 -1
  78. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,183 @@
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 builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from .. import _utilities
17
+
18
+ __all__ = [
19
+ 'GetWebCloudRunServiceIamPolicyResult',
20
+ 'AwaitableGetWebCloudRunServiceIamPolicyResult',
21
+ 'get_web_cloud_run_service_iam_policy',
22
+ 'get_web_cloud_run_service_iam_policy_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetWebCloudRunServiceIamPolicyResult:
27
+ """
28
+ A collection of values returned by getWebCloudRunServiceIamPolicy.
29
+ """
30
+ def __init__(__self__, cloud_run_service_name=None, etag=None, id=None, location=None, policy_data=None, project=None):
31
+ if cloud_run_service_name and not isinstance(cloud_run_service_name, str):
32
+ raise TypeError("Expected argument 'cloud_run_service_name' to be a str")
33
+ pulumi.set(__self__, "cloud_run_service_name", cloud_run_service_name)
34
+ if etag and not isinstance(etag, str):
35
+ raise TypeError("Expected argument 'etag' to be a str")
36
+ pulumi.set(__self__, "etag", etag)
37
+ if id and not isinstance(id, str):
38
+ raise TypeError("Expected argument 'id' to be a str")
39
+ pulumi.set(__self__, "id", id)
40
+ if location and not isinstance(location, str):
41
+ raise TypeError("Expected argument 'location' to be a str")
42
+ pulumi.set(__self__, "location", location)
43
+ if policy_data and not isinstance(policy_data, str):
44
+ raise TypeError("Expected argument 'policy_data' to be a str")
45
+ pulumi.set(__self__, "policy_data", policy_data)
46
+ if project and not isinstance(project, str):
47
+ raise TypeError("Expected argument 'project' to be a str")
48
+ pulumi.set(__self__, "project", project)
49
+
50
+ @property
51
+ @pulumi.getter(name="cloudRunServiceName")
52
+ def cloud_run_service_name(self) -> builtins.str:
53
+ return pulumi.get(self, "cloud_run_service_name")
54
+
55
+ @property
56
+ @pulumi.getter
57
+ def etag(self) -> builtins.str:
58
+ """
59
+ (Computed) The etag of the IAM policy.
60
+ """
61
+ return pulumi.get(self, "etag")
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def id(self) -> builtins.str:
66
+ """
67
+ The provider-assigned unique ID for this managed resource.
68
+ """
69
+ return pulumi.get(self, "id")
70
+
71
+ @property
72
+ @pulumi.getter
73
+ def location(self) -> builtins.str:
74
+ return pulumi.get(self, "location")
75
+
76
+ @property
77
+ @pulumi.getter(name="policyData")
78
+ def policy_data(self) -> builtins.str:
79
+ """
80
+ (Required only by `iap.WebCloudRunServiceIamPolicy`) The policy data generated by
81
+ a `organizations_get_iam_policy` data source.
82
+ """
83
+ return pulumi.get(self, "policy_data")
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def project(self) -> builtins.str:
88
+ return pulumi.get(self, "project")
89
+
90
+
91
+ class AwaitableGetWebCloudRunServiceIamPolicyResult(GetWebCloudRunServiceIamPolicyResult):
92
+ # pylint: disable=using-constant-test
93
+ def __await__(self):
94
+ if False:
95
+ yield self
96
+ return GetWebCloudRunServiceIamPolicyResult(
97
+ cloud_run_service_name=self.cloud_run_service_name,
98
+ etag=self.etag,
99
+ id=self.id,
100
+ location=self.location,
101
+ policy_data=self.policy_data,
102
+ project=self.project)
103
+
104
+
105
+ def get_web_cloud_run_service_iam_policy(cloud_run_service_name: Optional[builtins.str] = None,
106
+ location: Optional[builtins.str] = None,
107
+ project: Optional[builtins.str] = None,
108
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWebCloudRunServiceIamPolicyResult:
109
+ """
110
+ Retrieves the current IAM policy data for webcloudrunservice
111
+
112
+ ## Example Usage
113
+
114
+ ```python
115
+ import pulumi
116
+ import pulumi_gcp as gcp
117
+
118
+ policy = gcp.iap.get_web_cloud_run_service_iam_policy(project=default["project"],
119
+ location=default["location"],
120
+ cloud_run_service_name=default["name"])
121
+ ```
122
+
123
+
124
+ :param builtins.str cloud_run_service_name: Used to find the parent resource to bind the IAM policy to
125
+ :param builtins.str location: The location of a cloud run service. Used to find the parent resource to bind the IAM policy to. If not specified,
126
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
127
+ location is specified, it is taken from the provider configuration.
128
+ :param builtins.str project: The ID of the project in which the resource belongs.
129
+ If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
130
+ """
131
+ __args__ = dict()
132
+ __args__['cloudRunServiceName'] = cloud_run_service_name
133
+ __args__['location'] = location
134
+ __args__['project'] = project
135
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
136
+ __ret__ = pulumi.runtime.invoke('gcp:iap/getWebCloudRunServiceIamPolicy:getWebCloudRunServiceIamPolicy', __args__, opts=opts, typ=GetWebCloudRunServiceIamPolicyResult).value
137
+
138
+ return AwaitableGetWebCloudRunServiceIamPolicyResult(
139
+ cloud_run_service_name=pulumi.get(__ret__, 'cloud_run_service_name'),
140
+ etag=pulumi.get(__ret__, 'etag'),
141
+ id=pulumi.get(__ret__, 'id'),
142
+ location=pulumi.get(__ret__, 'location'),
143
+ policy_data=pulumi.get(__ret__, 'policy_data'),
144
+ project=pulumi.get(__ret__, 'project'))
145
+ def get_web_cloud_run_service_iam_policy_output(cloud_run_service_name: Optional[pulumi.Input[builtins.str]] = None,
146
+ location: Optional[pulumi.Input[Optional[builtins.str]]] = None,
147
+ project: Optional[pulumi.Input[Optional[builtins.str]]] = None,
148
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWebCloudRunServiceIamPolicyResult]:
149
+ """
150
+ Retrieves the current IAM policy data for webcloudrunservice
151
+
152
+ ## Example Usage
153
+
154
+ ```python
155
+ import pulumi
156
+ import pulumi_gcp as gcp
157
+
158
+ policy = gcp.iap.get_web_cloud_run_service_iam_policy(project=default["project"],
159
+ location=default["location"],
160
+ cloud_run_service_name=default["name"])
161
+ ```
162
+
163
+
164
+ :param builtins.str cloud_run_service_name: Used to find the parent resource to bind the IAM policy to
165
+ :param builtins.str location: The location of a cloud run service. Used to find the parent resource to bind the IAM policy to. If not specified,
166
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
167
+ location is specified, it is taken from the provider configuration.
168
+ :param builtins.str project: The ID of the project in which the resource belongs.
169
+ If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
170
+ """
171
+ __args__ = dict()
172
+ __args__['cloudRunServiceName'] = cloud_run_service_name
173
+ __args__['location'] = location
174
+ __args__['project'] = project
175
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
176
+ __ret__ = pulumi.runtime.invoke_output('gcp:iap/getWebCloudRunServiceIamPolicy:getWebCloudRunServiceIamPolicy', __args__, opts=opts, typ=GetWebCloudRunServiceIamPolicyResult)
177
+ return __ret__.apply(lambda __response__: GetWebCloudRunServiceIamPolicyResult(
178
+ cloud_run_service_name=pulumi.get(__response__, 'cloud_run_service_name'),
179
+ etag=pulumi.get(__response__, 'etag'),
180
+ id=pulumi.get(__response__, 'id'),
181
+ location=pulumi.get(__response__, 'location'),
182
+ policy_data=pulumi.get(__response__, 'policy_data'),
183
+ project=pulumi.get(__response__, 'project')))
pulumi_gcp/iap/outputs.py CHANGED
@@ -41,6 +41,8 @@ __all__ = [
41
41
  'TunnelInstanceIAMMemberCondition',
42
42
  'WebBackendServiceIamBindingCondition',
43
43
  'WebBackendServiceIamMemberCondition',
44
+ 'WebCloudRunServiceIamBindingCondition',
45
+ 'WebCloudRunServiceIamMemberCondition',
44
46
  'WebIamBindingCondition',
45
47
  'WebIamMemberCondition',
46
48
  'WebRegionBackendServiceIamBindingCondition',
@@ -1417,6 +1419,80 @@ class WebBackendServiceIamMemberCondition(dict):
1417
1419
  return pulumi.get(self, "description")
1418
1420
 
1419
1421
 
1422
+ @pulumi.output_type
1423
+ class WebCloudRunServiceIamBindingCondition(dict):
1424
+ def __init__(__self__, *,
1425
+ expression: builtins.str,
1426
+ title: builtins.str,
1427
+ description: Optional[builtins.str] = None):
1428
+ """
1429
+ :param builtins.str expression: Textual representation of an expression in Common Expression Language syntax.
1430
+ :param builtins.str title: A title for the expression, i.e. a short string describing its purpose.
1431
+ """
1432
+ pulumi.set(__self__, "expression", expression)
1433
+ pulumi.set(__self__, "title", title)
1434
+ if description is not None:
1435
+ pulumi.set(__self__, "description", description)
1436
+
1437
+ @property
1438
+ @pulumi.getter
1439
+ def expression(self) -> builtins.str:
1440
+ """
1441
+ Textual representation of an expression in Common Expression Language syntax.
1442
+ """
1443
+ return pulumi.get(self, "expression")
1444
+
1445
+ @property
1446
+ @pulumi.getter
1447
+ def title(self) -> builtins.str:
1448
+ """
1449
+ A title for the expression, i.e. a short string describing its purpose.
1450
+ """
1451
+ return pulumi.get(self, "title")
1452
+
1453
+ @property
1454
+ @pulumi.getter
1455
+ def description(self) -> Optional[builtins.str]:
1456
+ return pulumi.get(self, "description")
1457
+
1458
+
1459
+ @pulumi.output_type
1460
+ class WebCloudRunServiceIamMemberCondition(dict):
1461
+ def __init__(__self__, *,
1462
+ expression: builtins.str,
1463
+ title: builtins.str,
1464
+ description: Optional[builtins.str] = None):
1465
+ """
1466
+ :param builtins.str expression: Textual representation of an expression in Common Expression Language syntax.
1467
+ :param builtins.str title: A title for the expression, i.e. a short string describing its purpose.
1468
+ """
1469
+ pulumi.set(__self__, "expression", expression)
1470
+ pulumi.set(__self__, "title", title)
1471
+ if description is not None:
1472
+ pulumi.set(__self__, "description", description)
1473
+
1474
+ @property
1475
+ @pulumi.getter
1476
+ def expression(self) -> builtins.str:
1477
+ """
1478
+ Textual representation of an expression in Common Expression Language syntax.
1479
+ """
1480
+ return pulumi.get(self, "expression")
1481
+
1482
+ @property
1483
+ @pulumi.getter
1484
+ def title(self) -> builtins.str:
1485
+ """
1486
+ A title for the expression, i.e. a short string describing its purpose.
1487
+ """
1488
+ return pulumi.get(self, "title")
1489
+
1490
+ @property
1491
+ @pulumi.getter
1492
+ def description(self) -> Optional[builtins.str]:
1493
+ return pulumi.get(self, "description")
1494
+
1495
+
1420
1496
  @pulumi.output_type
1421
1497
  class WebIamBindingCondition(dict):
1422
1498
  def __init__(__self__, *,