pulumi-gcp 7.30.0a1719958694__py3-none-any.whl → 7.30.0a1720039709__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.
@@ -26,6 +26,7 @@ class RepositoryIamPolicyArgs:
26
26
  The set of arguments for constructing a RepositoryIamPolicy resource.
27
27
  :param pulumi.Input[str] policy_data: The policy data generated by
28
28
  a `organizations_get_iam_policy` data source.
29
+ :param pulumi.Input[str] repository: Used to find the parent resource to bind the IAM policy to
29
30
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
30
31
  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.
31
32
  """
@@ -50,6 +51,9 @@ class RepositoryIamPolicyArgs:
50
51
  @property
51
52
  @pulumi.getter
52
53
  def repository(self) -> pulumi.Input[str]:
54
+ """
55
+ Used to find the parent resource to bind the IAM policy to
56
+ """
53
57
  return pulumi.get(self, "repository")
54
58
 
55
59
  @repository.setter
@@ -84,6 +88,7 @@ class _RepositoryIamPolicyState:
84
88
  a `organizations_get_iam_policy` data source.
85
89
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
86
90
  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.
91
+ :param pulumi.Input[str] repository: Used to find the parent resource to bind the IAM policy to
87
92
  """
88
93
  if etag is not None:
89
94
  pulumi.set(__self__, "etag", etag)
@@ -135,6 +140,9 @@ class _RepositoryIamPolicyState:
135
140
  @property
136
141
  @pulumi.getter
137
142
  def repository(self) -> Optional[pulumi.Input[str]]:
143
+ """
144
+ Used to find the parent resource to bind the IAM policy to
145
+ """
138
146
  return pulumi.get(self, "repository")
139
147
 
140
148
  @repository.setter
@@ -152,21 +160,21 @@ class RepositoryIamPolicy(pulumi.CustomResource):
152
160
  repository: Optional[pulumi.Input[str]] = None,
153
161
  __props__=None):
154
162
  """
155
- Three different resources help you manage your IAM policy for Cloud Pub/Sub Topic. Each of these resources serves a different use case:
163
+ Three different resources help you manage your IAM policy for Cloud Source Repositories Repository. Each of these resources serves a different use case:
156
164
 
157
- * `pubsub.TopicIAMPolicy`: Authoritative. Sets the IAM policy for the topic and replaces any existing policy already attached.
158
- * `pubsub.TopicIAMBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the topic are preserved.
159
- * `pubsub.TopicIAMMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the topic are preserved.
165
+ * `sourcerepo.RepositoryIamPolicy`: Authoritative. Sets the IAM policy for the repository and replaces any existing policy already attached.
166
+ * `sourcerepo.RepositoryIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the repository are preserved.
167
+ * `sourcerepo.RepositoryIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the repository are preserved.
160
168
 
161
169
  A data source can be used to retrieve policy data in advent you do not need creation
162
170
 
163
- * `pubsub.TopicIAMPolicy`: Retrieves the IAM policy for the topic
171
+ * `sourcerepo.RepositoryIamPolicy`: Retrieves the IAM policy for the repository
164
172
 
165
- > **Note:** `pubsub.TopicIAMPolicy` **cannot** be used in conjunction with `pubsub.TopicIAMBinding` and `pubsub.TopicIAMMember` or they will fight over what your policy should be.
173
+ > **Note:** `sourcerepo.RepositoryIamPolicy` **cannot** be used in conjunction with `sourcerepo.RepositoryIamBinding` and `sourcerepo.RepositoryIamMember` or they will fight over what your policy should be.
166
174
 
167
- > **Note:** `pubsub.TopicIAMBinding` resources **can be** used in conjunction with `pubsub.TopicIAMMember` resources **only if** they do not grant privilege to the same role.
175
+ > **Note:** `sourcerepo.RepositoryIamBinding` resources **can be** used in conjunction with `sourcerepo.RepositoryIamMember` resources **only if** they do not grant privilege to the same role.
168
176
 
169
- ## pubsub.TopicIAMPolicy
177
+ ## sourcerepo.RepositoryIamPolicy
170
178
 
171
179
  ```python
172
180
  import pulumi
@@ -176,39 +184,39 @@ class RepositoryIamPolicy(pulumi.CustomResource):
176
184
  "role": "roles/viewer",
177
185
  "members": ["user:jane@example.com"],
178
186
  }])
179
- policy = gcp.pubsub.TopicIAMPolicy("policy",
180
- project=example["project"],
181
- topic=example["name"],
187
+ policy = gcp.sourcerepo.RepositoryIamPolicy("policy",
188
+ project=my_repo["project"],
189
+ repository=my_repo["name"],
182
190
  policy_data=admin.policy_data)
183
191
  ```
184
192
 
185
- ## pubsub.TopicIAMBinding
193
+ ## sourcerepo.RepositoryIamBinding
186
194
 
187
195
  ```python
188
196
  import pulumi
189
197
  import pulumi_gcp as gcp
190
198
 
191
- binding = gcp.pubsub.TopicIAMBinding("binding",
192
- project=example["project"],
193
- topic=example["name"],
199
+ binding = gcp.sourcerepo.RepositoryIamBinding("binding",
200
+ project=my_repo["project"],
201
+ repository=my_repo["name"],
194
202
  role="roles/viewer",
195
203
  members=["user:jane@example.com"])
196
204
  ```
197
205
 
198
- ## pubsub.TopicIAMMember
206
+ ## sourcerepo.RepositoryIamMember
199
207
 
200
208
  ```python
201
209
  import pulumi
202
210
  import pulumi_gcp as gcp
203
211
 
204
- member = gcp.pubsub.TopicIAMMember("member",
205
- project=example["project"],
206
- topic=example["name"],
212
+ member = gcp.sourcerepo.RepositoryIamMember("member",
213
+ project=my_repo["project"],
214
+ repository=my_repo["name"],
207
215
  role="roles/viewer",
208
216
  member="user:jane@example.com")
209
217
  ```
210
218
 
211
- ## pubsub.TopicIAMPolicy
219
+ ## sourcerepo.RepositoryIamPolicy
212
220
 
213
221
  ```python
214
222
  import pulumi
@@ -218,34 +226,34 @@ class RepositoryIamPolicy(pulumi.CustomResource):
218
226
  "role": "roles/viewer",
219
227
  "members": ["user:jane@example.com"],
220
228
  }])
221
- policy = gcp.pubsub.TopicIAMPolicy("policy",
222
- project=example["project"],
223
- topic=example["name"],
229
+ policy = gcp.sourcerepo.RepositoryIamPolicy("policy",
230
+ project=my_repo["project"],
231
+ repository=my_repo["name"],
224
232
  policy_data=admin.policy_data)
225
233
  ```
226
234
 
227
- ## pubsub.TopicIAMBinding
235
+ ## sourcerepo.RepositoryIamBinding
228
236
 
229
237
  ```python
230
238
  import pulumi
231
239
  import pulumi_gcp as gcp
232
240
 
233
- binding = gcp.pubsub.TopicIAMBinding("binding",
234
- project=example["project"],
235
- topic=example["name"],
241
+ binding = gcp.sourcerepo.RepositoryIamBinding("binding",
242
+ project=my_repo["project"],
243
+ repository=my_repo["name"],
236
244
  role="roles/viewer",
237
245
  members=["user:jane@example.com"])
238
246
  ```
239
247
 
240
- ## pubsub.TopicIAMMember
248
+ ## sourcerepo.RepositoryIamMember
241
249
 
242
250
  ```python
243
251
  import pulumi
244
252
  import pulumi_gcp as gcp
245
253
 
246
- member = gcp.pubsub.TopicIAMMember("member",
247
- project=example["project"],
248
- topic=example["name"],
254
+ member = gcp.sourcerepo.RepositoryIamMember("member",
255
+ project=my_repo["project"],
256
+ repository=my_repo["name"],
249
257
  role="roles/viewer",
250
258
  member="user:jane@example.com")
251
259
  ```
@@ -254,32 +262,30 @@ class RepositoryIamPolicy(pulumi.CustomResource):
254
262
 
255
263
  For all import syntaxes, the "resource in question" can take any of the following forms:
256
264
 
257
- * projects/{{project}}/topics/{{name}}
258
-
259
- * {{project}}/{{name}}
265
+ * projects/{{project}}/repos/{{name}}
260
266
 
261
267
  * {{name}}
262
268
 
263
269
  Any variables not passed in the import command will be taken from the provider configuration.
264
270
 
265
- Cloud Pub/Sub topic IAM resources can be imported using the resource identifiers, role, and member.
271
+ Cloud Source Repositories repository IAM resources can be imported using the resource identifiers, role, and member.
266
272
 
267
273
  IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
268
274
 
269
275
  ```sh
270
- $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/topics/{{topic}} roles/viewer user:jane@example.com"
276
+ $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/repos/{{repository}} roles/viewer user:jane@example.com"
271
277
  ```
272
278
 
273
279
  IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
274
280
 
275
281
  ```sh
276
- $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/topics/{{topic}} roles/viewer"
282
+ $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/repos/{{repository}} roles/viewer"
277
283
  ```
278
284
 
279
285
  IAM policy imports use the identifier of the resource in question, e.g.
280
286
 
281
287
  ```sh
282
- $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor projects/{{project}}/topics/{{topic}}
288
+ $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor projects/{{project}}/repos/{{repository}}
283
289
  ```
284
290
 
285
291
  -> **Custom Roles**: If you're importing a IAM resource with a custom role, make sure to use the
@@ -292,6 +298,7 @@ class RepositoryIamPolicy(pulumi.CustomResource):
292
298
  a `organizations_get_iam_policy` data source.
293
299
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
294
300
  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.
301
+ :param pulumi.Input[str] repository: Used to find the parent resource to bind the IAM policy to
295
302
  """
296
303
  ...
297
304
  @overload
@@ -300,21 +307,21 @@ class RepositoryIamPolicy(pulumi.CustomResource):
300
307
  args: RepositoryIamPolicyArgs,
301
308
  opts: Optional[pulumi.ResourceOptions] = None):
302
309
  """
303
- Three different resources help you manage your IAM policy for Cloud Pub/Sub Topic. Each of these resources serves a different use case:
310
+ Three different resources help you manage your IAM policy for Cloud Source Repositories Repository. Each of these resources serves a different use case:
304
311
 
305
- * `pubsub.TopicIAMPolicy`: Authoritative. Sets the IAM policy for the topic and replaces any existing policy already attached.
306
- * `pubsub.TopicIAMBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the topic are preserved.
307
- * `pubsub.TopicIAMMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the topic are preserved.
312
+ * `sourcerepo.RepositoryIamPolicy`: Authoritative. Sets the IAM policy for the repository and replaces any existing policy already attached.
313
+ * `sourcerepo.RepositoryIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the repository are preserved.
314
+ * `sourcerepo.RepositoryIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the repository are preserved.
308
315
 
309
316
  A data source can be used to retrieve policy data in advent you do not need creation
310
317
 
311
- * `pubsub.TopicIAMPolicy`: Retrieves the IAM policy for the topic
318
+ * `sourcerepo.RepositoryIamPolicy`: Retrieves the IAM policy for the repository
312
319
 
313
- > **Note:** `pubsub.TopicIAMPolicy` **cannot** be used in conjunction with `pubsub.TopicIAMBinding` and `pubsub.TopicIAMMember` or they will fight over what your policy should be.
320
+ > **Note:** `sourcerepo.RepositoryIamPolicy` **cannot** be used in conjunction with `sourcerepo.RepositoryIamBinding` and `sourcerepo.RepositoryIamMember` or they will fight over what your policy should be.
314
321
 
315
- > **Note:** `pubsub.TopicIAMBinding` resources **can be** used in conjunction with `pubsub.TopicIAMMember` resources **only if** they do not grant privilege to the same role.
322
+ > **Note:** `sourcerepo.RepositoryIamBinding` resources **can be** used in conjunction with `sourcerepo.RepositoryIamMember` resources **only if** they do not grant privilege to the same role.
316
323
 
317
- ## pubsub.TopicIAMPolicy
324
+ ## sourcerepo.RepositoryIamPolicy
318
325
 
319
326
  ```python
320
327
  import pulumi
@@ -324,39 +331,39 @@ class RepositoryIamPolicy(pulumi.CustomResource):
324
331
  "role": "roles/viewer",
325
332
  "members": ["user:jane@example.com"],
326
333
  }])
327
- policy = gcp.pubsub.TopicIAMPolicy("policy",
328
- project=example["project"],
329
- topic=example["name"],
334
+ policy = gcp.sourcerepo.RepositoryIamPolicy("policy",
335
+ project=my_repo["project"],
336
+ repository=my_repo["name"],
330
337
  policy_data=admin.policy_data)
331
338
  ```
332
339
 
333
- ## pubsub.TopicIAMBinding
340
+ ## sourcerepo.RepositoryIamBinding
334
341
 
335
342
  ```python
336
343
  import pulumi
337
344
  import pulumi_gcp as gcp
338
345
 
339
- binding = gcp.pubsub.TopicIAMBinding("binding",
340
- project=example["project"],
341
- topic=example["name"],
346
+ binding = gcp.sourcerepo.RepositoryIamBinding("binding",
347
+ project=my_repo["project"],
348
+ repository=my_repo["name"],
342
349
  role="roles/viewer",
343
350
  members=["user:jane@example.com"])
344
351
  ```
345
352
 
346
- ## pubsub.TopicIAMMember
353
+ ## sourcerepo.RepositoryIamMember
347
354
 
348
355
  ```python
349
356
  import pulumi
350
357
  import pulumi_gcp as gcp
351
358
 
352
- member = gcp.pubsub.TopicIAMMember("member",
353
- project=example["project"],
354
- topic=example["name"],
359
+ member = gcp.sourcerepo.RepositoryIamMember("member",
360
+ project=my_repo["project"],
361
+ repository=my_repo["name"],
355
362
  role="roles/viewer",
356
363
  member="user:jane@example.com")
357
364
  ```
358
365
 
359
- ## pubsub.TopicIAMPolicy
366
+ ## sourcerepo.RepositoryIamPolicy
360
367
 
361
368
  ```python
362
369
  import pulumi
@@ -366,34 +373,34 @@ class RepositoryIamPolicy(pulumi.CustomResource):
366
373
  "role": "roles/viewer",
367
374
  "members": ["user:jane@example.com"],
368
375
  }])
369
- policy = gcp.pubsub.TopicIAMPolicy("policy",
370
- project=example["project"],
371
- topic=example["name"],
376
+ policy = gcp.sourcerepo.RepositoryIamPolicy("policy",
377
+ project=my_repo["project"],
378
+ repository=my_repo["name"],
372
379
  policy_data=admin.policy_data)
373
380
  ```
374
381
 
375
- ## pubsub.TopicIAMBinding
382
+ ## sourcerepo.RepositoryIamBinding
376
383
 
377
384
  ```python
378
385
  import pulumi
379
386
  import pulumi_gcp as gcp
380
387
 
381
- binding = gcp.pubsub.TopicIAMBinding("binding",
382
- project=example["project"],
383
- topic=example["name"],
388
+ binding = gcp.sourcerepo.RepositoryIamBinding("binding",
389
+ project=my_repo["project"],
390
+ repository=my_repo["name"],
384
391
  role="roles/viewer",
385
392
  members=["user:jane@example.com"])
386
393
  ```
387
394
 
388
- ## pubsub.TopicIAMMember
395
+ ## sourcerepo.RepositoryIamMember
389
396
 
390
397
  ```python
391
398
  import pulumi
392
399
  import pulumi_gcp as gcp
393
400
 
394
- member = gcp.pubsub.TopicIAMMember("member",
395
- project=example["project"],
396
- topic=example["name"],
401
+ member = gcp.sourcerepo.RepositoryIamMember("member",
402
+ project=my_repo["project"],
403
+ repository=my_repo["name"],
397
404
  role="roles/viewer",
398
405
  member="user:jane@example.com")
399
406
  ```
@@ -402,32 +409,30 @@ class RepositoryIamPolicy(pulumi.CustomResource):
402
409
 
403
410
  For all import syntaxes, the "resource in question" can take any of the following forms:
404
411
 
405
- * projects/{{project}}/topics/{{name}}
406
-
407
- * {{project}}/{{name}}
412
+ * projects/{{project}}/repos/{{name}}
408
413
 
409
414
  * {{name}}
410
415
 
411
416
  Any variables not passed in the import command will be taken from the provider configuration.
412
417
 
413
- Cloud Pub/Sub topic IAM resources can be imported using the resource identifiers, role, and member.
418
+ Cloud Source Repositories repository IAM resources can be imported using the resource identifiers, role, and member.
414
419
 
415
420
  IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
416
421
 
417
422
  ```sh
418
- $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/topics/{{topic}} roles/viewer user:jane@example.com"
423
+ $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/repos/{{repository}} roles/viewer user:jane@example.com"
419
424
  ```
420
425
 
421
426
  IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
422
427
 
423
428
  ```sh
424
- $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/topics/{{topic}} roles/viewer"
429
+ $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor "projects/{{project}}/repos/{{repository}} roles/viewer"
425
430
  ```
426
431
 
427
432
  IAM policy imports use the identifier of the resource in question, e.g.
428
433
 
429
434
  ```sh
430
- $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor projects/{{project}}/topics/{{topic}}
435
+ $ pulumi import gcp:sourcerepo/repositoryIamPolicy:RepositoryIamPolicy editor projects/{{project}}/repos/{{repository}}
431
436
  ```
432
437
 
433
438
  -> **Custom Roles**: If you're importing a IAM resource with a custom role, make sure to use the
@@ -495,6 +500,7 @@ class RepositoryIamPolicy(pulumi.CustomResource):
495
500
  a `organizations_get_iam_policy` data source.
496
501
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
497
502
  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.
503
+ :param pulumi.Input[str] repository: Used to find the parent resource to bind the IAM policy to
498
504
  """
499
505
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
500
506
 
@@ -535,5 +541,8 @@ class RepositoryIamPolicy(pulumi.CustomResource):
535
541
  @property
536
542
  @pulumi.getter
537
543
  def repository(self) -> pulumi.Output[str]:
544
+ """
545
+ Used to find the parent resource to bind the IAM policy to
546
+ """
538
547
  return pulumi.get(self, "repository")
539
548
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.30.0a1719958694
3
+ Version: 7.30.0a1720039709
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
@@ -2,7 +2,7 @@ pulumi_gcp/__init__.py,sha256=Fk5h-a8lOGnEHVByJrsie_serI1JXi_j8YwmDmuM07Q,194787
2
2
  pulumi_gcp/_inputs.py,sha256=Od7fuuGzQlwMR_yFc1c5R1CuvtPhgRpe262W7i6UPKc,1873
3
3
  pulumi_gcp/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
4
4
  pulumi_gcp/provider.py,sha256=4DKjx_BTgdiSgaj7a7a5RI2on-hIuClkcxnRrYUSaRI,189530
5
- pulumi_gcp/pulumi-plugin.json,sha256=KLotHxw0kCDXOaLTqHqmiMhDW8c289BGXKILC5tgVeM,80
5
+ pulumi_gcp/pulumi-plugin.json,sha256=0Bn9WiWm4W9qTGNw8fFk21rNcSGly9F1GZqqra9THEU,80
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
@@ -538,9 +538,9 @@ pulumi_gcp/compute/region_backend_service_iam_member.py,sha256=CwuurtGpEqdVyE8LW
538
538
  pulumi_gcp/compute/region_backend_service_iam_policy.py,sha256=gjg5HOOcLBNWHU9QxXPd528ef8x22eDchZk7Jp9MSHw,20481
539
539
  pulumi_gcp/compute/region_commitment.py,sha256=5H2Fagv2cDtzBf1TAzCLuK7eQWF4atITL23x6tDVOOA,50192
540
540
  pulumi_gcp/compute/region_disk.py,sha256=QKLjdKsRSlz0a8TnBte43MpdHLCikTs2XSllhv1lqGc,94643
541
- pulumi_gcp/compute/region_disk_iam_binding.py,sha256=lj5cueULRkwA8oLh7S2sbOAnkCnxO9sX29ccGvrHduQ,37440
542
- pulumi_gcp/compute/region_disk_iam_member.py,sha256=KXBD8LaVvyrYXpLxYhxZFfY-sVm_ZjWgnhOxBi5mNlQ,37041
543
- pulumi_gcp/compute/region_disk_iam_policy.py,sha256=y2fIPxa5n9Pb9N8z_wa9spyUpkK7Ruty7EQkwsZA2PU,23772
541
+ pulumi_gcp/compute/region_disk_iam_binding.py,sha256=_fI7jPiGZli5MftLAwi3AHWBtsgxyMJo9ZtpgNlgXy4,40712
542
+ pulumi_gcp/compute/region_disk_iam_member.py,sha256=us6UU26ce1Lajeu9WQaw0jLsz8XrVnkCNCF2DeawEZE,40313
543
+ pulumi_gcp/compute/region_disk_iam_policy.py,sha256=hsvP5bs-m22kNfcVGwUNpJg2htxoHn-JUmpq4XhAavc,27002
544
544
  pulumi_gcp/compute/region_disk_resource_policy_attachment.py,sha256=wzzqkzlZ7G7Uv6UBazi2hwu9zE9w7JqZERP8Kcpx2qY,18725
545
545
  pulumi_gcp/compute/region_health_check.py,sha256=dhYxMmJI5rAKFpqcmkijC_0LeIe3t2KhpoAFdtPd0R8,69929
546
546
  pulumi_gcp/compute/region_instance_group_manager.py,sha256=W8cqR2bxIcCBSC2ef1Y7vEFlMqfPkUSQYbbSb3ONXbI,116972
@@ -917,9 +917,9 @@ pulumi_gcp/gkebackup/get_backup_plan_iam_policy.py,sha256=SdWoRLv5DS_RnCO8hhmCE9
917
917
  pulumi_gcp/gkebackup/get_restore_plan_iam_policy.py,sha256=8X-hl2mJAaYwWgpCnOsWFJkghRNtBOPkfF59tEl9UTs,6916
918
918
  pulumi_gcp/gkebackup/outputs.py,sha256=SnRuXa1Ge7MUHL3vt53q94Iau4PSW57v5sY9FiICiRc,89304
919
919
  pulumi_gcp/gkebackup/restore_plan.py,sha256=sC-3LVorkCirPg8PNrKsVvmgjFDPYy4JbEeMFYkPjYg,68224
920
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py,sha256=YH1IYmvxucHQiOrYx8jeaoQrlgoFO6vN7_kl700n-qI,52609
921
- pulumi_gcp/gkebackup/restore_plan_iam_member.py,sha256=uFqTuhJKtdn9P5wD1MdyzfXpH5EFeKYkxUs-bEMMckM,52310
922
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py,sha256=dx_JHEeKC5IXl-6bOGtoZUJ4fgwz-jMYfITFWMgtypg,49557
920
+ pulumi_gcp/gkebackup/restore_plan_iam_binding.py,sha256=j2cfZoxYVB7338hgoNS2-iCOYTwRNN3mbhcgi3R27sg,40984
921
+ pulumi_gcp/gkebackup/restore_plan_iam_member.py,sha256=6-nu9J7muaYDa0AY-XGruvb_p404akUuXLJn6iogkN4,40585
922
+ pulumi_gcp/gkebackup/restore_plan_iam_policy.py,sha256=XULV2o1rfxzmpeWOvtrANWUWEOb5t34ot1tOAcIOCHc,27240
923
923
  pulumi_gcp/gkehub/__init__.py,sha256=iLb4Z8dfMN3lOqheVhtE2RRRRbx_I32y5BCU_AqNwyI,1008
924
924
  pulumi_gcp/gkehub/_inputs.py,sha256=rFzVAr1h7KjGlAfNc0ypGr2RBZ0Z7U6fzIsjUCBgjOc,213919
925
925
  pulumi_gcp/gkehub/feature.py,sha256=GRnuG00Y7NgoiV3uuoCEBaf7LwmB0GdzpVODV96mGh4,52947
@@ -1182,8 +1182,8 @@ pulumi_gcp/networkmanagement/outputs.py,sha256=S_p_1NTf8yzlLWHKp49bYAc-stQhqZrfX
1182
1182
  pulumi_gcp/networksecurity/__init__.py,sha256=evanJKFfV7GrWtQyuwa58kdN4irExsLXleExvS6ZViQ,902
1183
1183
  pulumi_gcp/networksecurity/_inputs.py,sha256=ppthMUDoZDjJVy6vC6Qe9VpjSjhToiaKUKb4Ew_F3Zk,60812
1184
1184
  pulumi_gcp/networksecurity/address_group.py,sha256=BzswvF2dS2avg4pk_-JfKD_2FrJXRRmmLE6sTbxNWok,34408
1185
- pulumi_gcp/networksecurity/address_group_iam_binding.py,sha256=ccYF_WOxkKUYlaNKHGPuGXxnHFqBReVBfq_ZPmsuLC0,12836
1186
- pulumi_gcp/networksecurity/address_group_iam_member.py,sha256=OINhlbzp2DDAdnUWFHSqUvDbcflDKEqMHILWgZMhG1M,12547
1185
+ pulumi_gcp/networksecurity/address_group_iam_binding.py,sha256=PkR2QyNmibew4Zlplg5WLc_R-CBeDj1p6_g5_HTu6c0,36447
1186
+ pulumi_gcp/networksecurity/address_group_iam_member.py,sha256=IxCPxC4jkFl4mq1fYb7sb1CfNqcD4rpQDvPnS8QrAD0,36048
1187
1187
  pulumi_gcp/networksecurity/address_group_iam_policy.py,sha256=UGmOPlBLHkvYwQvLzGgD9MS3KzIur6j6ZswnqbKVmDQ,22641
1188
1188
  pulumi_gcp/networksecurity/authorization_policy.py,sha256=dVebFfWcJ_kGxGlhDzGYQX7bGIo1GUqNN3LJge1zGSE,34109
1189
1189
  pulumi_gcp/networksecurity/client_tls_policy.py,sha256=QRlNohQAg2o8Na1dj7A5wl5m92oMmmsgB0W1lxEna8w,36812
@@ -1424,9 +1424,9 @@ pulumi_gcp/sourcerepo/get_repository.py,sha256=xS3Gq5Bb8ruznNB1pkiae04L4py6vIZMr
1424
1424
  pulumi_gcp/sourcerepo/get_repository_iam_policy.py,sha256=OpPFXRhfQ6LwmRqKzRFISfuYfGtPqTe3uFXL76Brf_4,5621
1425
1425
  pulumi_gcp/sourcerepo/outputs.py,sha256=Bu67G10cIIpmF_chcKIWJji7cSZi5PFDIyVGuO_RnFU,7521
1426
1426
  pulumi_gcp/sourcerepo/repository.py,sha256=_NYuaZfhcN78aRLplg-Bkc9HfL7XqItCbZW0AtFH1h4,17798
1427
- pulumi_gcp/sourcerepo/repository_iam_binding.py,sha256=Dn4UhXPMMknh7olOS-rjDDy5r-f0nhJZ77Kcrcel3kQ,35260
1428
- pulumi_gcp/sourcerepo/repository_iam_member.py,sha256=B2j0efcnpDCfHZNEEo7y1emwc7SWANoG4Z9ko_bKmuY,34861
1429
- pulumi_gcp/sourcerepo/repository_iam_policy.py,sha256=uXwig3rXxecZY-cKo2YK1ZxVPdgLWXGs2jasl8gYWpw,21592
1427
+ pulumi_gcp/sourcerepo/repository_iam_binding.py,sha256=4xkM5Ko00cMUP9UDFSjIKnz7OAO3qUfVryu23j3kd3I,36516
1428
+ pulumi_gcp/sourcerepo/repository_iam_member.py,sha256=YV5TVc1nLUXxscsHCqvRvdBn-YnvTlGeNSR7IbPxSlw,36117
1429
+ pulumi_gcp/sourcerepo/repository_iam_policy.py,sha256=wGC0jmC4rCBpNBUfCXQiBR_uix5c1Fzw5IdL0gzMx-o,22785
1430
1430
  pulumi_gcp/spanner/__init__.py,sha256=YRjgmakZmbihAsYx4EUFZwQ3CuV7g6lxVJrmx9ugvOk,711
1431
1431
  pulumi_gcp/spanner/_inputs.py,sha256=VVODzHECUJIXibYUHsNxFE5v3XrwyL3w2-uAoWVjpX8,25368
1432
1432
  pulumi_gcp/spanner/database.py,sha256=URSpu8ZQ9vpCoHh5_ruRUlZ-IQfRQxIYvrlYDQiNSMg,36317
@@ -1594,7 +1594,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=lyD1PT_XiLqOCTMa
1594
1594
  pulumi_gcp/workstations/workstation_iam_binding.py,sha256=v1_3Z7qkX8soy9cEXEQBmDB_eBjFu0_7kXU8MDrWvDQ,37784
1595
1595
  pulumi_gcp/workstations/workstation_iam_member.py,sha256=Pa7-SRLzY5Hwcs3bky3UNMLldVUhaQl75RXMXWCXMuk,37385
1596
1596
  pulumi_gcp/workstations/workstation_iam_policy.py,sha256=xglGMHFGQY-gU2mogi8-yrBUSPW0hpBV25DNHSI2J90,24019
1597
- pulumi_gcp-7.30.0a1719958694.dist-info/METADATA,sha256=Vdd24mPKMRrhLQdfNsLrdSt_mEB6tIVfeD4Rslwjm-Q,2728
1598
- pulumi_gcp-7.30.0a1719958694.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
1599
- pulumi_gcp-7.30.0a1719958694.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1600
- pulumi_gcp-7.30.0a1719958694.dist-info/RECORD,,
1597
+ pulumi_gcp-7.30.0a1720039709.dist-info/METADATA,sha256=kuxNDi0K0Jhg76vb9PbVeTG9dbgfQvQq3ZfiSNpNsGI,2728
1598
+ pulumi_gcp-7.30.0a1720039709.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
1599
+ pulumi_gcp-7.30.0a1720039709.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1600
+ pulumi_gcp-7.30.0a1720039709.dist-info/RECORD,,