pulumi-gcp 7.31.0a1721039192__py3-none-any.whl → 7.32.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 (33) hide show
  1. pulumi_gcp/__init__.py +11 -0
  2. pulumi_gcp/alloydb/cluster.py +0 -24
  3. pulumi_gcp/bigquery/_inputs.py +0 -12
  4. pulumi_gcp/bigquery/dataset.py +0 -28
  5. pulumi_gcp/bigquery/dataset_access.py +0 -28
  6. pulumi_gcp/bigquery/outputs.py +0 -24
  7. pulumi_gcp/bigtable/authorized_view.py +104 -0
  8. pulumi_gcp/compute/global_address.py +16 -4
  9. pulumi_gcp/compute/target_instance.py +2 -2
  10. pulumi_gcp/config/__init__.pyi +2 -0
  11. pulumi_gcp/config/vars.py +4 -0
  12. pulumi_gcp/gkehub/__init__.py +1 -0
  13. pulumi_gcp/gkehub/get_membership_binding.py +222 -0
  14. pulumi_gcp/gkehub/outputs.py +19 -0
  15. pulumi_gcp/iap/client.py +7 -7
  16. pulumi_gcp/kms/_inputs.py +40 -0
  17. pulumi_gcp/kms/crypto_key.py +103 -0
  18. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  19. pulumi_gcp/kms/outputs.py +112 -0
  20. pulumi_gcp/networksecurity/address_group.py +1 -1
  21. pulumi_gcp/privilegedaccessmanager/entitlement.py +4 -0
  22. pulumi_gcp/provider.py +20 -0
  23. pulumi_gcp/pulumi-plugin.json +1 -1
  24. pulumi_gcp/securitycenter/__init__.py +1 -0
  25. pulumi_gcp/securitycenter/_inputs.py +93 -0
  26. pulumi_gcp/securitycenter/outputs.py +59 -0
  27. pulumi_gcp/securitycenter/project_notification_config.py +518 -0
  28. pulumi_gcp/siteverification/__init__.py +8 -0
  29. pulumi_gcp/siteverification/get_token.py +221 -0
  30. {pulumi_gcp-7.31.0a1721039192.dist-info → pulumi_gcp-7.32.0.dist-info}/METADATA +1 -1
  31. {pulumi_gcp-7.31.0a1721039192.dist-info → pulumi_gcp-7.32.0.dist-info}/RECORD +33 -29
  32. {pulumi_gcp-7.31.0a1721039192.dist-info → pulumi_gcp-7.32.0.dist-info}/WHEEL +0 -0
  33. {pulumi_gcp-7.31.0a1721039192.dist-info → pulumi_gcp-7.32.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,221 @@
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
+ 'GetTokenResult',
19
+ 'AwaitableGetTokenResult',
20
+ 'get_token',
21
+ 'get_token_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetTokenResult:
26
+ """
27
+ A collection of values returned by getToken.
28
+ """
29
+ def __init__(__self__, id=None, identifier=None, token=None, type=None, verification_method=None):
30
+ if id and not isinstance(id, str):
31
+ raise TypeError("Expected argument 'id' to be a str")
32
+ pulumi.set(__self__, "id", id)
33
+ if identifier and not isinstance(identifier, str):
34
+ raise TypeError("Expected argument 'identifier' to be a str")
35
+ pulumi.set(__self__, "identifier", identifier)
36
+ if token and not isinstance(token, str):
37
+ raise TypeError("Expected argument 'token' to be a str")
38
+ pulumi.set(__self__, "token", token)
39
+ if type and not isinstance(type, str):
40
+ raise TypeError("Expected argument 'type' to be a str")
41
+ pulumi.set(__self__, "type", type)
42
+ if verification_method and not isinstance(verification_method, str):
43
+ raise TypeError("Expected argument 'verification_method' to be a str")
44
+ pulumi.set(__self__, "verification_method", verification_method)
45
+
46
+ @property
47
+ @pulumi.getter
48
+ def id(self) -> str:
49
+ """
50
+ The provider-assigned unique ID for this managed resource.
51
+ """
52
+ return pulumi.get(self, "id")
53
+
54
+ @property
55
+ @pulumi.getter
56
+ def identifier(self) -> str:
57
+ return pulumi.get(self, "identifier")
58
+
59
+ @property
60
+ @pulumi.getter
61
+ def token(self) -> str:
62
+ """
63
+ The generated token for use in subsequent verification steps.
64
+ """
65
+ return pulumi.get(self, "token")
66
+
67
+ @property
68
+ @pulumi.getter
69
+ def type(self) -> str:
70
+ return pulumi.get(self, "type")
71
+
72
+ @property
73
+ @pulumi.getter(name="verificationMethod")
74
+ def verification_method(self) -> str:
75
+ return pulumi.get(self, "verification_method")
76
+
77
+
78
+ class AwaitableGetTokenResult(GetTokenResult):
79
+ # pylint: disable=using-constant-test
80
+ def __await__(self):
81
+ if False:
82
+ yield self
83
+ return GetTokenResult(
84
+ id=self.id,
85
+ identifier=self.identifier,
86
+ token=self.token,
87
+ type=self.type,
88
+ verification_method=self.verification_method)
89
+
90
+
91
+ def get_token(identifier: Optional[str] = None,
92
+ type: Optional[str] = None,
93
+ verification_method: Optional[str] = None,
94
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTokenResult:
95
+ """
96
+ ## subcategory: "Site Verification"
97
+
98
+ description: |-
99
+ A verification token is used to demonstrate ownership of a website or domain.
100
+ ---
101
+
102
+ # siteverification_get_token
103
+
104
+ A verification token is used to demonstrate ownership of a website or domain.
105
+
106
+ To get more information about Token, see:
107
+
108
+ * [API documentation](https://developers.google.com/site-verification/v1)
109
+ * How-to Guides
110
+ * [Getting Started](https://developers.google.com/site-verification/v1/getting_started)
111
+
112
+ ## Example Usage
113
+
114
+ ### Site Verification Via Site META Tag
115
+
116
+ ```python
117
+ import pulumi
118
+ import pulumi_gcp as gcp
119
+
120
+ example = gcp.siteverification.get_token(type="SITE",
121
+ identifier="https://www.example.com",
122
+ verification_method="META")
123
+ ```
124
+
125
+ ### Site Verification Via DNS TXT Record
126
+
127
+ ```python
128
+ import pulumi
129
+ import pulumi_gcp as gcp
130
+
131
+ example = gcp.siteverification.get_token(type="INET_DOMAIN",
132
+ identifier="www.example.com",
133
+ verification_method="DNS_TXT")
134
+ ```
135
+
136
+
137
+ :param str identifier: The site identifier. If the type is set to SITE, the identifier is a URL. If the type is
138
+ set to INET_DOMAIN, the identifier is a domain name.
139
+ :param str type: The type of resource to be verified, either a domain or a web site.
140
+ Possible values are: `INET_DOMAIN`, `SITE`.
141
+ :param str verification_method: The verification method for the Site Verification system to use to verify
142
+ this site or domain.
143
+ Possible values are: `ANALYTICS`, `DNS_CNAME`, `DNS_TXT`, `FILE`, `META`, `TAG_MANAGER`.
144
+
145
+
146
+ - - -
147
+ """
148
+ __args__ = dict()
149
+ __args__['identifier'] = identifier
150
+ __args__['type'] = type
151
+ __args__['verificationMethod'] = verification_method
152
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
153
+ __ret__ = pulumi.runtime.invoke('gcp:siteverification/getToken:getToken', __args__, opts=opts, typ=GetTokenResult).value
154
+
155
+ return AwaitableGetTokenResult(
156
+ id=pulumi.get(__ret__, 'id'),
157
+ identifier=pulumi.get(__ret__, 'identifier'),
158
+ token=pulumi.get(__ret__, 'token'),
159
+ type=pulumi.get(__ret__, 'type'),
160
+ verification_method=pulumi.get(__ret__, 'verification_method'))
161
+
162
+
163
+ @_utilities.lift_output_func(get_token)
164
+ def get_token_output(identifier: Optional[pulumi.Input[str]] = None,
165
+ type: Optional[pulumi.Input[str]] = None,
166
+ verification_method: Optional[pulumi.Input[str]] = None,
167
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTokenResult]:
168
+ """
169
+ ## subcategory: "Site Verification"
170
+
171
+ description: |-
172
+ A verification token is used to demonstrate ownership of a website or domain.
173
+ ---
174
+
175
+ # siteverification_get_token
176
+
177
+ A verification token is used to demonstrate ownership of a website or domain.
178
+
179
+ To get more information about Token, see:
180
+
181
+ * [API documentation](https://developers.google.com/site-verification/v1)
182
+ * How-to Guides
183
+ * [Getting Started](https://developers.google.com/site-verification/v1/getting_started)
184
+
185
+ ## Example Usage
186
+
187
+ ### Site Verification Via Site META Tag
188
+
189
+ ```python
190
+ import pulumi
191
+ import pulumi_gcp as gcp
192
+
193
+ example = gcp.siteverification.get_token(type="SITE",
194
+ identifier="https://www.example.com",
195
+ verification_method="META")
196
+ ```
197
+
198
+ ### Site Verification Via DNS TXT Record
199
+
200
+ ```python
201
+ import pulumi
202
+ import pulumi_gcp as gcp
203
+
204
+ example = gcp.siteverification.get_token(type="INET_DOMAIN",
205
+ identifier="www.example.com",
206
+ verification_method="DNS_TXT")
207
+ ```
208
+
209
+
210
+ :param str identifier: The site identifier. If the type is set to SITE, the identifier is a URL. If the type is
211
+ set to INET_DOMAIN, the identifier is a domain name.
212
+ :param str type: The type of resource to be verified, either a domain or a web site.
213
+ Possible values are: `INET_DOMAIN`, `SITE`.
214
+ :param str verification_method: The verification method for the Site Verification system to use to verify
215
+ this site or domain.
216
+ Possible values are: `ANALYTICS`, `DNS_CNAME`, `DNS_TXT`, `FILE`, `META`, `TAG_MANAGER`.
217
+
218
+
219
+ - - -
220
+ """
221
+ ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.31.0a1721039192
3
+ Version: 7.32.0
4
4
  Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,8 +1,8 @@
1
- pulumi_gcp/__init__.py,sha256=bEPfDRWI6M6IwpNi_JxCI8UknXgGYtmeuU00kqzTI30,196725
1
+ pulumi_gcp/__init__.py,sha256=OGOfg0Hnid7bQNNFrXAMqcRnj0dFq_ls-2db0-MqQ_E,197143
2
2
  pulumi_gcp/_inputs.py,sha256=Od7fuuGzQlwMR_yFc1c5R1CuvtPhgRpe262W7i6UPKc,1873
3
3
  pulumi_gcp/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
4
- pulumi_gcp/provider.py,sha256=aO4oUvJYwkXbwluDG0FvvvmRdYdFVDg6bDXCl5Gll6o,190722
5
- pulumi_gcp/pulumi-plugin.json,sha256=uPPfm0ytHz1Gqstdz1CzFapDknnokupHzHHoAjbKumo,80
4
+ pulumi_gcp/provider.py,sha256=O4LahjqHEigGxkzUXyXt82ajo-foURLYMJu5LizJfuQ,191899
5
+ pulumi_gcp/pulumi-plugin.json,sha256=IvS5YKUqNSxWLQToAUAuuwrhZ23pnlhdGTUpkY1qdOQ,63
6
6
  pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  pulumi_gcp/accessapproval/__init__.py,sha256=VpbPp-2Rb1295tFUB_3aO6TvbS1UhYt3ycgAzrNVqOU,402
8
8
  pulumi_gcp/accessapproval/get_folder_service_account.py,sha256=a7n0fXqd0P2VIQDnH9jJDauHGPeE4ngHbPGGAi725iQ,5747
@@ -36,7 +36,7 @@ pulumi_gcp/activedirectory/peering.py,sha256=BKnNi_RKwlAGQJ9mlhceUqpHi1oe_O9fWML
36
36
  pulumi_gcp/alloydb/__init__.py,sha256=RdYPS9a0WxII51GxWIAndFO9sAYVghO8mRQymYi35UM,476
37
37
  pulumi_gcp/alloydb/_inputs.py,sha256=BBtTzvrwtceBW-tdkjRZ9_KUrjJRu48pBmVmWfWmLdY,87005
38
38
  pulumi_gcp/alloydb/backup.py,sha256=9-RJ8SQmUc9vHfkAlGdNbCnXXdGq5ppZNOd2xt-3bXI,65866
39
- pulumi_gcp/alloydb/cluster.py,sha256=vgRaWluAQQpVv8QW2d7Ku2ozz7aUW_Ya4iQww575kj8,108246
39
+ pulumi_gcp/alloydb/cluster.py,sha256=_LMqFqnidNBm2lhD1-L9XZOTydQrWne7PpJxsS-Y0i4,107084
40
40
  pulumi_gcp/alloydb/get_locations.py,sha256=iIN9KPfrdlYTkZxEBN0EFLPRgpcUs02yaCPQUwmB3Fc,3832
41
41
  pulumi_gcp/alloydb/get_supported_database_flags.py,sha256=E54qBntxSwH-RnHwmQYOpHWBHmbrENsLubUWzlNs3vw,4976
42
42
  pulumi_gcp/alloydb/instance.py,sha256=XJd0BGwAN-tud67C8jQlxc8BmSKzW7fbEy8oGVyX9uA,77395
@@ -149,7 +149,7 @@ pulumi_gcp/biglake/database.py,sha256=7HVWJXwBn-kOgltDs9o0RP3LDS2Lr6owoTdd5f1BDp
149
149
  pulumi_gcp/biglake/outputs.py,sha256=XRksceccfpMHJ_JIFqYZScUK5DgG8khCYOGjnQuo6XA,7714
150
150
  pulumi_gcp/biglake/table.py,sha256=tSsH9Z8hz8Hu4SFIGKddfGlqcbEr4wsZ4N4bN9eS1kY,29429
151
151
  pulumi_gcp/bigquery/__init__.py,sha256=kZS2vw_OB-Azsnpm24Ioq03ew7ktEImnUhyCV4GF61g,1128
152
- pulumi_gcp/bigquery/_inputs.py,sha256=aDVnOQ3ptANhC8W7edkrMko62fuKh03FnZ0Zzxgc2Os,358537
152
+ pulumi_gcp/bigquery/_inputs.py,sha256=dUE0mt0BYXuzAckPZI9okaQcV2FQy19Q16SD6NIa8wY,358465
153
153
  pulumi_gcp/bigquery/app_profile.py,sha256=px9bWKoz4SA-jndnJ3CA1HzKm356fW6VtnSiwVIZ6lY,41728
154
154
  pulumi_gcp/bigquery/bi_reservation.py,sha256=VrjPy5GZtruqaqfLyvHgQfOpUY8vdrqPBvFVP0tmJcQ,19083
155
155
  pulumi_gcp/bigquery/capacity_commitment.py,sha256=8ItU7tUa7cPZVLKBxGEe7pLPGbf2AwSFgPVKR0LYqVg,35626
@@ -158,8 +158,8 @@ pulumi_gcp/bigquery/connection_iam_binding.py,sha256=jeir1feh5IoF_p3MBMcpcv63u80
158
158
  pulumi_gcp/bigquery/connection_iam_member.py,sha256=hw5BQ_-U9d_R1X995tqEGTJ79OdGZY99ZmR2dcXIBc8,45015
159
159
  pulumi_gcp/bigquery/connection_iam_policy.py,sha256=JLZygHRj7BgbjsMUjfLfWLAhskTSgSqodwTXXlewCSE,31697
160
160
  pulumi_gcp/bigquery/data_transfer_config.py,sha256=o5H6-pn7PLbx8JOkbOsQ6leTLruiRqe2hBREvY34bEY,61282
161
- pulumi_gcp/bigquery/dataset.py,sha256=p6_XAcloMw3FF2M0T7-vKKBb6Wcio8LtQCD2wjtj53Q,98554
162
- pulumi_gcp/bigquery/dataset_access.py,sha256=6UzeDjEZfG0CYSbqwF8IHHNV_z7VnsR6YIHU2lSZzRY,49462
161
+ pulumi_gcp/bigquery/dataset.py,sha256=kO7T281ZvnLrW6EmLPnpbqcZ4lzjltKXj2IQQjH_G3E,98286
162
+ pulumi_gcp/bigquery/dataset_access.py,sha256=IhX4v6UZe3kjgonPem-MBYLLuaBQyfE2hl7i4-46rUA,49194
163
163
  pulumi_gcp/bigquery/dataset_iam_binding.py,sha256=OroMS-po_P8akCBpBm-H-0KgWYUE8a9T-hFQ9ScXG1w,34789
164
164
  pulumi_gcp/bigquery/dataset_iam_member.py,sha256=P-1OhXfcj0t7u4blkgUWwLN0Ssg1SWgsHf4gNdYK2OU,34398
165
165
  pulumi_gcp/bigquery/dataset_iam_policy.py,sha256=ZDqbmd0ORv5woid6a-YSvyhDzA5MxlepPcODfaeZWyM,21945
@@ -172,7 +172,7 @@ pulumi_gcp/bigquery/iam_binding.py,sha256=e4VWOQDoD0thP7ci3H5Hmu3hD-EOk6F3A1UWFc
172
172
  pulumi_gcp/bigquery/iam_member.py,sha256=hvNnYnsfmaerJireN8btCvF5cl-IZX0o3PtPOhj4zx4,46542
173
173
  pulumi_gcp/bigquery/iam_policy.py,sha256=3nk8WPEcuQlnYsRPPwKgvXuc6u3kvoVcba6myQj3HtI,32028
174
174
  pulumi_gcp/bigquery/job.py,sha256=1mbezZznN0trwIKr7mU2HxTdU_Qkl70hhzKDFTbekAA,59380
175
- pulumi_gcp/bigquery/outputs.py,sha256=ySGC1La3hvBqB-TiteUQJEaZt5wMvXDEIrZ4rylg4QE,279138
175
+ pulumi_gcp/bigquery/outputs.py,sha256=9RVs9uwmADqF0c6-R4UxICgklPtvYqY9UAEPnxPnPug,278934
176
176
  pulumi_gcp/bigquery/reservation.py,sha256=MhMcPeoVmS5wMm45vtLoSPem6igr_YpJ4zFYNv_E7zY,33986
177
177
  pulumi_gcp/bigquery/reservation_assignment.py,sha256=pKjkzjcdLtUXuqap1445cz5FM0Q9_cQ8zYr1G9-K_YQ,21397
178
178
  pulumi_gcp/bigquery/routine.py,sha256=TveAHcRFGUeKo_xZd2ZuSuT_PNov-e0omwir6MmU8Ow,72196
@@ -200,7 +200,7 @@ pulumi_gcp/bigquerydatapolicy/get_iam_policy.py,sha256=FExZ49Q4MEx_d1mNyLTxw7-IN
200
200
  pulumi_gcp/bigquerydatapolicy/outputs.py,sha256=Oy2A1y3OErHE3V8Ymdy25Hnkwx9tii57U01TFW-lDDo,4532
201
201
  pulumi_gcp/bigtable/__init__.py,sha256=kt14Qjgv4IFG3DZNFgX0vGMOAhjc65mvHWIGGOzWMqY,693
202
202
  pulumi_gcp/bigtable/_inputs.py,sha256=9IPWCb-iQZr9Bvvlxgdyi-VsLKnyKPldJvzsB2fpjMk,34951
203
- pulumi_gcp/bigtable/authorized_view.py,sha256=LiIPEMSG25tQZbAsYy5nTie4gAx8W3VNjqmSk5nH1cg,19648
203
+ pulumi_gcp/bigtable/authorized_view.py,sha256=Fm4VCoTjq8SNH9X9Ivcmg7PiKGhNgl9yBmDhJykJZTA,23066
204
204
  pulumi_gcp/bigtable/gc_policy.py,sha256=XN3MGBfVukUSBgZxh_ilCuwfAboRsZvh-ZI4jUvrouM,37621
205
205
  pulumi_gcp/bigtable/get_instance_iam_policy.py,sha256=3sYTk4apGLXENF-hPDbuxgXN0m2FAqjbzdx0mnLBzh0,4821
206
206
  pulumi_gcp/bigtable/get_table_iam_policy.py,sha256=OkdEkLyjNd2LT3FaxgHDgkIU2Pvr9QhqmohwTHjtB7M,5490
@@ -474,7 +474,7 @@ pulumi_gcp/compute/get_subnetwork_iam_policy.py,sha256=7LO4P5Es2KgkqPEuQ08tqcy3J
474
474
  pulumi_gcp/compute/get_subnetworks.py,sha256=TX7pQxDLXuGCv3EcuW8AlQEkKAdokkK2PG6dymQCPH4,6016
475
475
  pulumi_gcp/compute/get_vpn_gateway.py,sha256=8PlkA5itgAN5MYvVxFlrTm1OWOt8CmLGQH6PKBX8l-Q,5843
476
476
  pulumi_gcp/compute/get_zones.py,sha256=jDFaJGu17VwpNEEh73X4ar4hZpVpPbHeaQe2hHrR6Qw,5202
477
- pulumi_gcp/compute/global_address.py,sha256=dhFgSAJgOBqHHT5ElBuiKvyBP9FOL2xMuM45qK6Jo5c,45872
477
+ pulumi_gcp/compute/global_address.py,sha256=c7sIkTeHjZXU7GBzexl3V1nw-BxbGEmDVUkdkvIxhyM,46700
478
478
  pulumi_gcp/compute/global_forwarding_rule.py,sha256=EcMe2cEwuFNMLNsh4wBL2oPCpUJcpd4-yOXhc91AmHM,140459
479
479
  pulumi_gcp/compute/global_network_endpoint.py,sha256=-iE8-9ovkolvkNe6HTg3PlxuV1uhDRgZrw0BmXii8Qo,19582
480
480
  pulumi_gcp/compute/global_network_endpoint_group.py,sha256=fSZaC0XA0havktgNYyDZ4i2jd-6S4z9SLStYQGtyvWU,24525
@@ -586,7 +586,7 @@ pulumi_gcp/compute/subnetwork_iam_policy.py,sha256=HzY2WAKkgu_Ituw9PDFJtxBdPIaqr
586
586
  pulumi_gcp/compute/target_grpc_proxy.py,sha256=Td69s0fnSdFc2umoL8ecnBLGHx3Ue_4WFB_dFgFxgo4,38908
587
587
  pulumi_gcp/compute/target_http_proxy.py,sha256=MEtrETnrqlAoAx1wlm1DOj4XAQDZ_ug6X0zZYUI5yIE,35712
588
588
  pulumi_gcp/compute/target_https_proxy.py,sha256=hGALz1jDO0K6u4671EoVUekbUnpLVdA4Kl-i21wrluE,81045
589
- pulumi_gcp/compute/target_instance.py,sha256=VO0HnNr4qt6dGTpgZHS-IAf_w78iTR8e0m4flZrBGsk,40937
589
+ pulumi_gcp/compute/target_instance.py,sha256=Jco_j0juVaKhQcNx3lm0mc1NiE-8cQhvjLEKQgcpnDE,40937
590
590
  pulumi_gcp/compute/target_pool.py,sha256=XmIPzU08LnsPWnOGQTW2KB4yWoXbEd18Z1y86ByaRt4,33721
591
591
  pulumi_gcp/compute/target_ssl_proxy.py,sha256=fh1-dkUwxcmhzFjjh5FRZAiA3MJIphuYOrja-6CVTfc,36602
592
592
  pulumi_gcp/compute/target_tcp_proxy.py,sha256=pvoL9889G37JJo2DYhA9IzVcpLH9R_tH54tQxiKaTz4,28102
@@ -594,9 +594,9 @@ pulumi_gcp/compute/url_map.py,sha256=ecl9U3-FuYsYbONAKZ2toDxN7OS4G2GxDHZE6VRzNkw
594
594
  pulumi_gcp/compute/vpn_gateway.py,sha256=b2wYaaS9upuWhm1wmk4WWwdWoHSHlIvaiOiRfqoXKf4,26198
595
595
  pulumi_gcp/compute/vpn_tunnel.py,sha256=-GIGPHcB2bTFNgJhV_kaJEzoJOcs5oiAw6zaRES7UdY,71020
596
596
  pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
597
- pulumi_gcp/config/__init__.pyi,sha256=7ZZSzlYEBtEyxRE4mD5mUjSRtbUG-DAb6tzo80_-AWs,7768
597
+ pulumi_gcp/config/__init__.pyi,sha256=FrXFFopzbUbxf_yM6z9qud7BFGxstAZNWr1PEGHVu40,7815
598
598
  pulumi_gcp/config/outputs.py,sha256=Q96GtTVg1WzFmBimxYM36KLhlaG0_jQONtYWi0r7BJk,1234
599
- pulumi_gcp/config/vars.py,sha256=yE3ZhP1dn05hoP0EV1YuGwKL4C4WOvxPN_0DP9n9oQM,24206
599
+ pulumi_gcp/config/vars.py,sha256=FN3JqxrY6IycALTELQkALNPQcpTT8qH6fvLEYaKbmdU,24351
600
600
  pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
601
601
  pulumi_gcp/container/_inputs.py,sha256=mtFwbmhCQGMo2w-XtqjbTPrdNOGv1n3F16oNS9IPhUI,885336
602
602
  pulumi_gcp/container/attached_cluster.py,sha256=eW1dhZevG_w-EV4dHJejfBS58Uoh2LBDnHYVyOkN_vk,70861
@@ -920,7 +920,7 @@ pulumi_gcp/gkebackup/restore_plan.py,sha256=sC-3LVorkCirPg8PNrKsVvmgjFDPYy4JbEeM
920
920
  pulumi_gcp/gkebackup/restore_plan_iam_binding.py,sha256=j2cfZoxYVB7338hgoNS2-iCOYTwRNN3mbhcgi3R27sg,40984
921
921
  pulumi_gcp/gkebackup/restore_plan_iam_member.py,sha256=6-nu9J7muaYDa0AY-XGruvb_p404akUuXLJn6iogkN4,40585
922
922
  pulumi_gcp/gkebackup/restore_plan_iam_policy.py,sha256=XULV2o1rfxzmpeWOvtrANWUWEOb5t34ot1tOAcIOCHc,27240
923
- pulumi_gcp/gkehub/__init__.py,sha256=iLb4Z8dfMN3lOqheVhtE2RRRRbx_I32y5BCU_AqNwyI,1008
923
+ pulumi_gcp/gkehub/__init__.py,sha256=P7gf8UJdwIV34FUzJnHZhgV30I8Iz4EKycujoxCW9cc,1046
924
924
  pulumi_gcp/gkehub/_inputs.py,sha256=85_TMsbaolrN4zEkCmUZB1yJmjxOpMbfHrtTGUZHP5E,215526
925
925
  pulumi_gcp/gkehub/feature.py,sha256=GRnuG00Y7NgoiV3uuoCEBaf7LwmB0GdzpVODV96mGh4,52947
926
926
  pulumi_gcp/gkehub/feature_iam_binding.py,sha256=w0GucOsHTY3w9jU7at__OOYq8PWSUWEzTqOuZPMgMac,40236
@@ -929,6 +929,7 @@ pulumi_gcp/gkehub/feature_iam_policy.py,sha256=BPIMfzmCmhyq2AOWdh1uwAcrw0I2NocW8
929
929
  pulumi_gcp/gkehub/feature_membership.py,sha256=5huMr4O_xvuHM6SEZigFifuSUMvKh5KgvXnMKB_TOzk,39732
930
930
  pulumi_gcp/gkehub/fleet.py,sha256=JH_bCIEODfE__nbTI-1jzRP_CtBPWQlxi3KvhJDJoRs,22090
931
931
  pulumi_gcp/gkehub/get_feature_iam_policy.py,sha256=-pbSTN-axUQxfJTRzFShQrZB4mo9_y4DBKOUEdBQiyE,6755
932
+ pulumi_gcp/gkehub/get_membership_binding.py,sha256=6-DsgRBNkKdRMTlhjeEf2dxsrYvmW2o2qet2qU1yMWE,9021
932
933
  pulumi_gcp/gkehub/get_membership_iam_policy.py,sha256=Xn8V0EZA_RvYhOnqTIF4BdUObMbv7fD6OYbBD4NyMog,7000
933
934
  pulumi_gcp/gkehub/get_scope_iam_policy.py,sha256=YgC0lssED2hj63VbT49nvWnYZovyFIcnmCvhWWQwZI0,5275
934
935
  pulumi_gcp/gkehub/membership.py,sha256=EdConvoRR1OgFr93EnvAUndKR5y_SiIk-gFXFC45_N8,36863
@@ -938,7 +939,7 @@ pulumi_gcp/gkehub/membership_iam_member.py,sha256=ugf_Jk9P4Y1r5l0BoO7KIr_s-F58rk
938
939
  pulumi_gcp/gkehub/membership_iam_policy.py,sha256=qhl4w3DyLGt9UMxZ5S2CVac3nO582LwvBSYKt3JzmLo,27360
939
940
  pulumi_gcp/gkehub/membership_rbac_role_binding.py,sha256=uvO7JCzHZZEyJDECLWeAM34W2flHVoO1tnLnEBHbIl8,29698
940
941
  pulumi_gcp/gkehub/namespace.py,sha256=41Wsx9wLKgusIL59rB11M9PUHFTaatlxA3qRcerpai4,34645
941
- pulumi_gcp/gkehub/outputs.py,sha256=dPh-_Y2GUFjQ5tZV7M0e1GIRkJgkT4BFR0J7w3V81Ts,151349
942
+ pulumi_gcp/gkehub/outputs.py,sha256=5xLKX3kN8o1i7ZuqvmIjDOdnHhprFXQEc7KGSFMLdI0,151855
942
943
  pulumi_gcp/gkehub/scope.py,sha256=3cz98zRKGYig0RXcRnIOz_FbSBwvh0xctoplNbe2Evk,29770
943
944
  pulumi_gcp/gkehub/scope_iam_binding.py,sha256=fUj2kbJCnoZ22yY53lN9zs7NKsxbHpbhUSCjGZWhXnI,35173
944
945
  pulumi_gcp/gkehub/scope_iam_member.py,sha256=-RMoLvs8HA2o0M-vUa1HN7YjSqH4AeJLy2clP8jwuWo,34774
@@ -1002,7 +1003,7 @@ pulumi_gcp/iap/app_engine_version_iam_binding.py,sha256=p78_0slZPHousx6CkYkCieV3
1002
1003
  pulumi_gcp/iap/app_engine_version_iam_member.py,sha256=wuK8Z_oockOJTwezsL8dch4U5vcU-WiAhdKjzhlPC6Y,53793
1003
1004
  pulumi_gcp/iap/app_engine_version_iam_policy.py,sha256=E2H_-Zx_KhTLBBymCAFe_t1ztluL45SBf03kqaWFYmQ,38898
1004
1005
  pulumi_gcp/iap/brand.py,sha256=l98G3PUc8qjlef3IC0MOrebhmFNewx3a8jhLmd5M9bg,19199
1005
- pulumi_gcp/iap/client.py,sha256=gHkXTGGb8NdcABgSfDzRwBb59ytYVgk9Ia4dHyYOdtI,15141
1006
+ pulumi_gcp/iap/client.py,sha256=526nmSLfGD0Bpt7IFF2mrt8ksmCmjLhgRDgkbUMdW9I,14875
1006
1007
  pulumi_gcp/iap/get_app_engine_service_iam_policy.py,sha256=fZ5MSwHWOjleuAsPcUVWo22cQ12uj5WifoOHscCnUug,6673
1007
1008
  pulumi_gcp/iap/get_app_engine_version_iam_policy.py,sha256=d03TtqcXIhsADweSenAapEbnsN5aZZ5PhAOPgc-8kzU,7643
1008
1009
  pulumi_gcp/iap/get_client.py,sha256=5MgjwxiViJYiWIG4PGYcqXm2Qp-U1CDPoCqfb5CCWMo,4121
@@ -1059,9 +1060,9 @@ pulumi_gcp/integrationconnectors/endpoint_attachment.py,sha256=1q5fPV_A9wKh7zdZ1
1059
1060
  pulumi_gcp/integrationconnectors/managed_zone.py,sha256=_eMtqOIy_y63IlujKKIwWoA7hXoltD20WNhbtbK2LGE,31368
1060
1061
  pulumi_gcp/integrationconnectors/outputs.py,sha256=0mNyeE-ozS2WBjoGvl5apTTP_uSFxFi_NJTYs2dvJMk,104541
1061
1062
  pulumi_gcp/kms/__init__.py,sha256=4oRyPFoVbUtsJoWtt17IimIdQBcG4PrQcvX5CHBdLsg,1130
1062
- pulumi_gcp/kms/_inputs.py,sha256=JnCV302vv-ADzVstWbLuqf_vpDzRafGRLRS2AQAsS-g,53347
1063
+ pulumi_gcp/kms/_inputs.py,sha256=2GASvZi3nzzSQ4dHeeh2LGFGO_TSOOmFpEWv0TUXldw,55177
1063
1064
  pulumi_gcp/kms/autokey_config.py,sha256=ixQ7qNFjzoL0q8pS1FO3WlSp--IM17QYMFVJu3guc3c,15498
1064
- pulumi_gcp/kms/crypto_key.py,sha256=RjB9AW6e11gMI9lliUdTyjLjWoQo1XoUFHCZwsRlSQM,46798
1065
+ pulumi_gcp/kms/crypto_key.py,sha256=QD-le2MW35CUG-rEbcVZBrFqJaZl19mk7Y3VsAI-mTk,55080
1065
1066
  pulumi_gcp/kms/crypto_key_iam_binding.py,sha256=sa9uzt2I0poYIAyJ_D4g5xWDZU8gKIcfFoAOr34pNDY,32266
1066
1067
  pulumi_gcp/kms/crypto_key_iam_member.py,sha256=hnwaann010aXTKUgdhoD9RKOdylWTfzdJSS1DV6fWs0,31869
1067
1068
  pulumi_gcp/kms/crypto_key_iam_policy.py,sha256=Jn2ESdyKRoW_W7IBXeJCEgn4J9OZu38VTEA085Zgu_Y,20152
@@ -1071,7 +1072,7 @@ pulumi_gcp/kms/get_crypto_key_iam_policy.py,sha256=xMYG5hwDCUliU5X_XPchAQzQDiP0-
1071
1072
  pulumi_gcp/kms/get_crypto_keys.py,sha256=8b5fszji5kIWA_Q74JgknTc7IOO32nIVNt-UDIwIZzI,6382
1072
1073
  pulumi_gcp/kms/get_key_ring_iam_policy.py,sha256=Ar7bPCN4QEf-b7gb3Ur-5b4XdLKh_T3Dgc1a8zg-1iM,4720
1073
1074
  pulumi_gcp/kms/get_key_rings.py,sha256=X7pabYPsi2b3s0axHuDK1SbpO-ZPYBjGeiaY3y0Dc58,4201
1074
- pulumi_gcp/kms/get_kms_crypto_key.py,sha256=05OzyCBHEgJI3YQbabC3ggMKaMk535JakVTtGoT74V8,11114
1075
+ pulumi_gcp/kms/get_kms_crypto_key.py,sha256=8lIV_taR9MoRJw1pcAX7FZyTkmXAXcIBoKdJr-D6ZJA,11923
1075
1076
  pulumi_gcp/kms/get_kms_crypto_key_version.py,sha256=O4ewOjReQIRIWlTBGf9zaDxcrLep3eE8--S9I17F80k,8644
1076
1077
  pulumi_gcp/kms/get_kms_key_ring.py,sha256=e0T8fkQQ6J7GGryimuL5QspbD020vP7iPOV1HIXTD6s,5828
1077
1078
  pulumi_gcp/kms/get_kms_secret.py,sha256=eCIh1WfFMiG91KQdaQ00Hz2V3kBPjTxKGEAfHi7RPWI,9671
@@ -1083,7 +1084,7 @@ pulumi_gcp/kms/key_ring_iam_binding.py,sha256=wmayyeZDC9az5jtmD9U4vTz8Gllj6nM2ZB
1083
1084
  pulumi_gcp/kms/key_ring_iam_member.py,sha256=Ta19yKRtucs4sRRRcvAoDdO1BNvxFYV5o7C99nHbPJ8,37985
1084
1085
  pulumi_gcp/kms/key_ring_iam_policy.py,sha256=4AuUau__kq1vZ0OTRA2Wu6-Z3hrXJ3D0T1W47-gchUw,25844
1085
1086
  pulumi_gcp/kms/key_ring_import_job.py,sha256=xBY5t5V0YTKAP3ffgVevxP7JTnK4uTnds_KiVxDV87g,26263
1086
- pulumi_gcp/kms/outputs.py,sha256=nl0lL91uyRu2EM8dk2x34wjd3IV996y5nNMvTSNoy64,52706
1087
+ pulumi_gcp/kms/outputs.py,sha256=_paGIDo6lFh3LxwnR52AOXPHa5DQ-fO1AiIX_K3Rqcg,58320
1087
1088
  pulumi_gcp/kms/secret_ciphertext.py,sha256=hqJ8mxaNgvUjK-22kC7wMgaJ0_db7Q1ZA2trTkppB8E,18437
1088
1089
  pulumi_gcp/logging/__init__.py,sha256=geeUtRUgWxqy9-jxzVl03xDU0aFBKjz3WvFArJ8RE4E,1208
1089
1090
  pulumi_gcp/logging/_inputs.py,sha256=Bmgqo97ACk8IKVGVi7bprHQ4-JaI3nWvY7nikE_N4Jc,102104
@@ -1183,7 +1184,7 @@ pulumi_gcp/networkmanagement/connectivity_test.py,sha256=6kiK5V8LY8usnw-zhYAQ5eY
1183
1184
  pulumi_gcp/networkmanagement/outputs.py,sha256=S_p_1NTf8yzlLWHKp49bYAc-stQhqZrfX3KoE8teWZE,9676
1184
1185
  pulumi_gcp/networksecurity/__init__.py,sha256=evanJKFfV7GrWtQyuwa58kdN4irExsLXleExvS6ZViQ,902
1185
1186
  pulumi_gcp/networksecurity/_inputs.py,sha256=ppthMUDoZDjJVy6vC6Qe9VpjSjhToiaKUKb4Ew_F3Zk,60812
1186
- pulumi_gcp/networksecurity/address_group.py,sha256=EMxdE54pgdskklZKk4HW3rXUknZRbO9P6d-wqSGJfIE,37933
1187
+ pulumi_gcp/networksecurity/address_group.py,sha256=tL0qaqUidR4992D1ezUcOMRMGF-P9QGUbbxBVZKSh1A,37923
1187
1188
  pulumi_gcp/networksecurity/address_group_iam_binding.py,sha256=PkR2QyNmibew4Zlplg5WLc_R-CBeDj1p6_g5_HTu6c0,36447
1188
1189
  pulumi_gcp/networksecurity/address_group_iam_member.py,sha256=IxCPxC4jkFl4mq1fYb7sb1CfNqcD4rpQDvPnS8QrAD0,36048
1189
1190
  pulumi_gcp/networksecurity/address_group_iam_policy.py,sha256=UGmOPlBLHkvYwQvLzGgD9MS3KzIur6j6ZswnqbKVmDQ,22641
@@ -1270,7 +1271,7 @@ pulumi_gcp/parallelstore/__init__.py,sha256=v3vMyw1cX_icjI-eRktYMatDKbs_HbdjtMa-
1270
1271
  pulumi_gcp/parallelstore/instance.py,sha256=J2EXJzS58aHJh5-kr0TFmzEINXIKotD_FsxeSE38nbI,53888
1271
1272
  pulumi_gcp/privilegedaccessmanager/__init__.py,sha256=GcsK-XKqvEgYKQrQsD044pO7s3GxLD7Gy6VmCGma1NA,341
1272
1273
  pulumi_gcp/privilegedaccessmanager/_inputs.py,sha256=xRZzrnZx5L7p01TdwaF1W-UsZYvHz7QX1wajvyVAxAU,28457
1273
- pulumi_gcp/privilegedaccessmanager/entitlement.py,sha256=7IDdOA2dAkj23ygI9jRJvKuuKQs_TwOHXX6aw91SGbU,47709
1274
+ pulumi_gcp/privilegedaccessmanager/entitlement.py,sha256=oTC7vG8e-ltCP6ZpNOa8T9BsnaI406_Vl2AI4zUz2LQ,48031
1274
1275
  pulumi_gcp/privilegedaccessmanager/outputs.py,sha256=ggybODca5skRl6ioorBbF4VfBiRQ7cuFb6x2t3RUQc0,21917
1275
1276
  pulumi_gcp/projects/__init__.py,sha256=aOtO430jqofonG851ped1QS5IUhvZ1ZF3rgZOHRQi38,848
1276
1277
  pulumi_gcp/projects/_inputs.py,sha256=exROdx799h94JDArsYHxNN2EkNFUxYntx4431fhiRoo,41714
@@ -1364,8 +1365,8 @@ pulumi_gcp/securesourcemanager/repository.py,sha256=4H5Q-DPG6MlqBk75uG51ISfXcA2l
1364
1365
  pulumi_gcp/securesourcemanager/repository_iam_binding.py,sha256=UTyhCWU0U1uUBmP4GIKFmH4lKqPpbjhQRkDOqOXx5Js,42827
1365
1366
  pulumi_gcp/securesourcemanager/repository_iam_member.py,sha256=9Xb9W2qasKvyXeuetjPgLc4GB5U9uoNP2B60s9xIIR8,42428
1366
1367
  pulumi_gcp/securesourcemanager/repository_iam_policy.py,sha256=3NQPUu9kx6fsT4EP75iAzMa1QLfu5WUTqRbwaT5VL_g,29033
1367
- pulumi_gcp/securitycenter/__init__.py,sha256=WinDfDkww-eSpH9bT38A2Ts_-AkPbspntFKgN2uJlQI,1161
1368
- pulumi_gcp/securitycenter/_inputs.py,sha256=ucjZgPZVs7ZUrerEDKavN-goy3jm4NbfBT1n0fVmIiM,152176
1368
+ pulumi_gcp/securitycenter/__init__.py,sha256=17I1QY0ptss1qQJrsz1hTo_rVOhD-WN2XgSFwuliaMk,1204
1369
+ pulumi_gcp/securitycenter/_inputs.py,sha256=PDJ-5TgSv27eMyTxVjN-v8-hq0YC_5B2JMsLwfifCmQ,156410
1369
1370
  pulumi_gcp/securitycenter/event_threat_detection_custom_module.py,sha256=DH-KVk5g4wRQKL57tx5CUiIeRyduvi810lUvKm3JDVE,23370
1370
1371
  pulumi_gcp/securitycenter/folder_custom_module.py,sha256=qxUHmUxQiGgz4naWnF2wOAAQEXFFuEJJR64TeqO7boI,30938
1371
1372
  pulumi_gcp/securitycenter/get_source_iam_policy.py,sha256=hBWEv_U56nqihk6EaInRoy8WveRNTd6mFMQJqmjtlAg,4875
@@ -1379,8 +1380,9 @@ pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_mo
1379
1380
  pulumi_gcp/securitycenter/mute_config.py,sha256=kTuN95FSaHEjeCgxzxbaGX0Q12ijZ3IFID-NPJX4nd4,23760
1380
1381
  pulumi_gcp/securitycenter/notification_config.py,sha256=5jacux7IYHzYrrsoiZHCrg42MhBHKEjrjFM1pfu7gFI,23433
1381
1382
  pulumi_gcp/securitycenter/organization_custom_module.py,sha256=sUWiVVA83cw7ZfYivqhiBNJPZOoC_P1j6YPdA4S4Ssg,31086
1382
- pulumi_gcp/securitycenter/outputs.py,sha256=nrIqk0CP5soebOdVKmx_BH85gE6rbwX3tlUHT5d91oQ,101396
1383
+ pulumi_gcp/securitycenter/outputs.py,sha256=6AqUwe0bSx9LfEL_OyhJH8BK4yQajS_hw7ahhDvH-g8,104104
1383
1384
  pulumi_gcp/securitycenter/project_custom_module.py,sha256=MSIHlqcSmCLTnBvXI9U_QWDVxZnGkcuAPjMq2GW6BQ0,30079
1385
+ pulumi_gcp/securitycenter/project_notification_config.py,sha256=lh8DTlAEdMQq2cs13MAVK7O0fHSKqHvlQZgsb_ugBSk,22940
1384
1386
  pulumi_gcp/securitycenter/source.py,sha256=Caa69fBDjTqYzZ_eFPcUwPsmcxss_VysA5mrBpJ0BXQ,16844
1385
1387
  pulumi_gcp/securitycenter/source_iam_binding.py,sha256=OzFQyOXoD_BR4FyxPzT7OlAjWOVdGszNAO6BK05drdI,15706
1386
1388
  pulumi_gcp/securitycenter/source_iam_member.py,sha256=hU66pHZKJdt6i-AWULThf0JHQHpATg3wzeFzNG3Vj24,15411
@@ -1426,6 +1428,8 @@ pulumi_gcp/servicenetworking/peered_dns_domain.py,sha256=mltXaiOK0toXDbNsgXyoUGk
1426
1428
  pulumi_gcp/servicenetworking/vpc_service_controls.py,sha256=rCVZA3AnZCz73rmXrXU5n6cEELm2wJtLXzEAUoX6kBc,22074
1427
1429
  pulumi_gcp/serviceusage/__init__.py,sha256=tJUSyAUZAu-ueJRSFA6BrexcT5PL9Qdey3gaV9tUzxU,308
1428
1430
  pulumi_gcp/serviceusage/consumer_quota_override.py,sha256=qRfk18iMONctAxEbrmobRIJgYYECBLpck4sf90FipnY,30380
1431
+ pulumi_gcp/siteverification/__init__.py,sha256=jkngTB8m9rUUAA4Ll5jm9tiSY_195ufLahxGt9Vvuc8,294
1432
+ pulumi_gcp/siteverification/get_token.py,sha256=act31ijmVIL7YUwulBZ6mrAN57kKUb5T167ayFvKi3g,7439
1429
1433
  pulumi_gcp/sourcerepo/__init__.py,sha256=HPRPzjrX2Q1XRJTYcomKFvQxkF-GIBGaWxyWgaKKu9s,523
1430
1434
  pulumi_gcp/sourcerepo/_inputs.py,sha256=xjP2HclSzQ5ekd7YB49wLssUJCGX_Uk50kLx4S7V8f4,7778
1431
1435
  pulumi_gcp/sourcerepo/get_repository.py,sha256=xS3Gq5Bb8ruznNB1pkiae04L4py6vIZMrBnFCpc1TM0,5592
@@ -1607,7 +1611,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=lyD1PT_XiLqOCTMa
1607
1611
  pulumi_gcp/workstations/workstation_iam_binding.py,sha256=v1_3Z7qkX8soy9cEXEQBmDB_eBjFu0_7kXU8MDrWvDQ,37784
1608
1612
  pulumi_gcp/workstations/workstation_iam_member.py,sha256=Pa7-SRLzY5Hwcs3bky3UNMLldVUhaQl75RXMXWCXMuk,37385
1609
1613
  pulumi_gcp/workstations/workstation_iam_policy.py,sha256=xglGMHFGQY-gU2mogi8-yrBUSPW0hpBV25DNHSI2J90,24019
1610
- pulumi_gcp-7.31.0a1721039192.dist-info/METADATA,sha256=HVCiPpdElpb7WR8tshGH3HqoqyjXXKlpBTiz3cBHvis,2728
1611
- pulumi_gcp-7.31.0a1721039192.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
1612
- pulumi_gcp-7.31.0a1721039192.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1613
- pulumi_gcp-7.31.0a1721039192.dist-info/RECORD,,
1614
+ pulumi_gcp-7.32.0.dist-info/METADATA,sha256=8ZiMngC3uWv_4Pc7qdDkICaOAXUQSzbnWB-FvQ6SQlc,2717
1615
+ pulumi_gcp-7.32.0.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
1616
+ pulumi_gcp-7.32.0.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1617
+ pulumi_gcp-7.32.0.dist-info/RECORD,,