pulumi-gcp 7.30.0a1720039709__py3-none-any.whl → 7.30.0a1720437548__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.
- pulumi_gcp/__init__.py +32 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +2 -2
- pulumi_gcp/bigtable/gc_policy.py +68 -14
- pulumi_gcp/cloudfunctionsv2/_inputs.py +97 -0
- pulumi_gcp/cloudfunctionsv2/function.py +232 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +129 -1
- pulumi_gcp/compute/_inputs.py +622 -0
- pulumi_gcp/compute/address.py +0 -7
- pulumi_gcp/compute/backend_service.py +0 -14
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/global_forwarding_rule.py +0 -21
- pulumi_gcp/compute/managed_ssl_certificate.py +0 -7
- pulumi_gcp/compute/manged_ssl_certificate.py +0 -7
- pulumi_gcp/compute/network_attachment.py +16 -0
- pulumi_gcp/compute/outputs.py +504 -8
- pulumi_gcp/compute/region_backend_service.py +0 -14
- pulumi_gcp/compute/region_ssl_certificate.py +0 -7
- pulumi_gcp/compute/ssl_certificate.py +0 -7
- pulumi_gcp/compute/target_https_proxy.py +76 -1
- pulumi_gcp/compute/url_map.py +255 -0
- pulumi_gcp/container/aws_cluster.py +2 -2
- pulumi_gcp/container/aws_node_pool.py +2 -2
- pulumi_gcp/container/azure_client.py +2 -2
- pulumi_gcp/container/azure_cluster.py +2 -2
- pulumi_gcp/container/azure_node_pool.py +2 -2
- pulumi_gcp/datafusion/_inputs.py +163 -11
- pulumi_gcp/datafusion/instance.py +64 -0
- pulumi_gcp/datafusion/outputs.py +127 -7
- pulumi_gcp/healthcare/_inputs.py +43 -0
- pulumi_gcp/healthcare/dataset.py +110 -0
- pulumi_gcp/healthcare/outputs.py +43 -0
- pulumi_gcp/identityplatform/config.py +1 -1
- pulumi_gcp/logging/billing_account_bucket_config.py +1 -1
- pulumi_gcp/logging/folder_bucket_config.py +1 -1
- pulumi_gcp/logging/organization_bucket_config.py +1 -1
- pulumi_gcp/monitoring/_inputs.py +77 -0
- pulumi_gcp/monitoring/outputs.py +63 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/instance_iam_binding.py +64 -0
- pulumi_gcp/securitycenter/instance_iam_member.py +64 -0
- pulumi_gcp/securitycenter/instance_iam_policy.py +64 -0
- pulumi_gcp/storage/__init__.py +5 -0
- pulumi_gcp/storage/_inputs.py +130 -0
- pulumi_gcp/storage/get_managed_folder_iam_policy.py +115 -0
- pulumi_gcp/storage/managed_folder.py +440 -0
- pulumi_gcp/storage/managed_folder_iam_binding.py +947 -0
- pulumi_gcp/storage/managed_folder_iam_member.py +947 -0
- pulumi_gcp/storage/managed_folder_iam_policy.py +766 -0
- pulumi_gcp/storage/outputs.py +76 -0
- pulumi_gcp/vertex/_inputs.py +3 -3
- pulumi_gcp/vertex/ai_feature_online_store.py +9 -9
- pulumi_gcp/vertex/outputs.py +2 -2
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/RECORD +56 -51
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/top_level.txt +0 -0
@@ -286,6 +286,38 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
286
286
|
"state": "ENABLED",
|
287
287
|
}])
|
288
288
|
```
|
289
|
+
### Data Fusion Instance Psc
|
290
|
+
|
291
|
+
```python
|
292
|
+
import pulumi
|
293
|
+
import pulumi_gcp as gcp
|
294
|
+
|
295
|
+
psc = gcp.compute.Network("psc",
|
296
|
+
name="datafusion-psc-network",
|
297
|
+
auto_create_subnetworks=False)
|
298
|
+
psc_subnetwork = gcp.compute.Subnetwork("psc",
|
299
|
+
name="datafusion-psc-subnet",
|
300
|
+
region="us-central1",
|
301
|
+
network=psc.id,
|
302
|
+
ip_cidr_range="10.0.0.0/16")
|
303
|
+
psc_network_attachment = gcp.compute.NetworkAttachment("psc",
|
304
|
+
name="datafusion-psc-attachment",
|
305
|
+
region="us-central1",
|
306
|
+
connection_preference="ACCEPT_AUTOMATIC",
|
307
|
+
subnetworks=[psc_subnetwork.self_link])
|
308
|
+
psc_instance = gcp.datafusion.Instance("psc_instance",
|
309
|
+
name="psc-instance",
|
310
|
+
region="us-central1",
|
311
|
+
type="BASIC",
|
312
|
+
private_instance=True,
|
313
|
+
network_config={
|
314
|
+
"connectionType": "PRIVATE_SERVICE_CONNECT_INTERFACES",
|
315
|
+
"privateServiceConnectConfig": {
|
316
|
+
"networkAttachment": psc_network_attachment.id,
|
317
|
+
"unreachableCidrBlock": "192.168.0.0/25",
|
318
|
+
},
|
319
|
+
})
|
320
|
+
```
|
289
321
|
### Data Fusion Instance Cmek
|
290
322
|
|
291
323
|
```python
|
@@ -454,6 +486,38 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
454
486
|
"state": "ENABLED",
|
455
487
|
}])
|
456
488
|
```
|
489
|
+
### Data Fusion Instance Psc
|
490
|
+
|
491
|
+
```python
|
492
|
+
import pulumi
|
493
|
+
import pulumi_gcp as gcp
|
494
|
+
|
495
|
+
psc = gcp.compute.Network("psc",
|
496
|
+
name="datafusion-psc-network",
|
497
|
+
auto_create_subnetworks=False)
|
498
|
+
psc_subnetwork = gcp.compute.Subnetwork("psc",
|
499
|
+
name="datafusion-psc-subnet",
|
500
|
+
region="us-central1",
|
501
|
+
network=psc.id,
|
502
|
+
ip_cidr_range="10.0.0.0/16")
|
503
|
+
psc_network_attachment = gcp.compute.NetworkAttachment("psc",
|
504
|
+
name="datafusion-psc-attachment",
|
505
|
+
region="us-central1",
|
506
|
+
connection_preference="ACCEPT_AUTOMATIC",
|
507
|
+
subnetworks=[psc_subnetwork.self_link])
|
508
|
+
psc_instance = gcp.datafusion.Instance("psc_instance",
|
509
|
+
name="psc-instance",
|
510
|
+
region="us-central1",
|
511
|
+
type="BASIC",
|
512
|
+
private_instance=True,
|
513
|
+
network_config={
|
514
|
+
"connectionType": "PRIVATE_SERVICE_CONNECT_INTERFACES",
|
515
|
+
"privateServiceConnectConfig": {
|
516
|
+
"networkAttachment": psc_network_attachment.id,
|
517
|
+
"unreachableCidrBlock": "192.168.0.0/25",
|
518
|
+
},
|
519
|
+
})
|
520
|
+
```
|
457
521
|
### Data Fusion Instance Cmek
|
458
522
|
|
459
523
|
```python
|
@@ -235,6 +235,38 @@ class InstanceIamPolicy(pulumi.CustomResource):
|
|
235
235
|
"state": "ENABLED",
|
236
236
|
}])
|
237
237
|
```
|
238
|
+
### Data Fusion Instance Psc
|
239
|
+
|
240
|
+
```python
|
241
|
+
import pulumi
|
242
|
+
import pulumi_gcp as gcp
|
243
|
+
|
244
|
+
psc = gcp.compute.Network("psc",
|
245
|
+
name="datafusion-psc-network",
|
246
|
+
auto_create_subnetworks=False)
|
247
|
+
psc_subnetwork = gcp.compute.Subnetwork("psc",
|
248
|
+
name="datafusion-psc-subnet",
|
249
|
+
region="us-central1",
|
250
|
+
network=psc.id,
|
251
|
+
ip_cidr_range="10.0.0.0/16")
|
252
|
+
psc_network_attachment = gcp.compute.NetworkAttachment("psc",
|
253
|
+
name="datafusion-psc-attachment",
|
254
|
+
region="us-central1",
|
255
|
+
connection_preference="ACCEPT_AUTOMATIC",
|
256
|
+
subnetworks=[psc_subnetwork.self_link])
|
257
|
+
psc_instance = gcp.datafusion.Instance("psc_instance",
|
258
|
+
name="psc-instance",
|
259
|
+
region="us-central1",
|
260
|
+
type="BASIC",
|
261
|
+
private_instance=True,
|
262
|
+
network_config={
|
263
|
+
"connectionType": "PRIVATE_SERVICE_CONNECT_INTERFACES",
|
264
|
+
"privateServiceConnectConfig": {
|
265
|
+
"networkAttachment": psc_network_attachment.id,
|
266
|
+
"unreachableCidrBlock": "192.168.0.0/25",
|
267
|
+
},
|
268
|
+
})
|
269
|
+
```
|
238
270
|
### Data Fusion Instance Cmek
|
239
271
|
|
240
272
|
```python
|
@@ -403,6 +435,38 @@ class InstanceIamPolicy(pulumi.CustomResource):
|
|
403
435
|
"state": "ENABLED",
|
404
436
|
}])
|
405
437
|
```
|
438
|
+
### Data Fusion Instance Psc
|
439
|
+
|
440
|
+
```python
|
441
|
+
import pulumi
|
442
|
+
import pulumi_gcp as gcp
|
443
|
+
|
444
|
+
psc = gcp.compute.Network("psc",
|
445
|
+
name="datafusion-psc-network",
|
446
|
+
auto_create_subnetworks=False)
|
447
|
+
psc_subnetwork = gcp.compute.Subnetwork("psc",
|
448
|
+
name="datafusion-psc-subnet",
|
449
|
+
region="us-central1",
|
450
|
+
network=psc.id,
|
451
|
+
ip_cidr_range="10.0.0.0/16")
|
452
|
+
psc_network_attachment = gcp.compute.NetworkAttachment("psc",
|
453
|
+
name="datafusion-psc-attachment",
|
454
|
+
region="us-central1",
|
455
|
+
connection_preference="ACCEPT_AUTOMATIC",
|
456
|
+
subnetworks=[psc_subnetwork.self_link])
|
457
|
+
psc_instance = gcp.datafusion.Instance("psc_instance",
|
458
|
+
name="psc-instance",
|
459
|
+
region="us-central1",
|
460
|
+
type="BASIC",
|
461
|
+
private_instance=True,
|
462
|
+
network_config={
|
463
|
+
"connectionType": "PRIVATE_SERVICE_CONNECT_INTERFACES",
|
464
|
+
"privateServiceConnectConfig": {
|
465
|
+
"networkAttachment": psc_network_attachment.id,
|
466
|
+
"unreachableCidrBlock": "192.168.0.0/25",
|
467
|
+
},
|
468
|
+
})
|
469
|
+
```
|
406
470
|
### Data Fusion Instance Cmek
|
407
471
|
|
408
472
|
```python
|
pulumi_gcp/storage/__init__.py
CHANGED
@@ -20,12 +20,17 @@ from .get_bucket_object import *
|
|
20
20
|
from .get_bucket_object_content import *
|
21
21
|
from .get_bucket_objects import *
|
22
22
|
from .get_buckets import *
|
23
|
+
from .get_managed_folder_iam_policy import *
|
23
24
|
from .get_object_signed_url import *
|
24
25
|
from .get_project_service_account import *
|
25
26
|
from .get_transfer_project_service_account import *
|
26
27
|
from .get_transfer_project_servie_account import *
|
27
28
|
from .hmac_key import *
|
28
29
|
from .insights_report_config import *
|
30
|
+
from .managed_folder import *
|
31
|
+
from .managed_folder_iam_binding import *
|
32
|
+
from .managed_folder_iam_member import *
|
33
|
+
from .managed_folder_iam_policy import *
|
29
34
|
from .notification import *
|
30
35
|
from .object_access_control import *
|
31
36
|
from .object_acl import *
|
pulumi_gcp/storage/_inputs.py
CHANGED
@@ -63,6 +63,10 @@ __all__ = [
|
|
63
63
|
'InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptionsArgsDict',
|
64
64
|
'InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgs',
|
65
65
|
'InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgsDict',
|
66
|
+
'ManagedFolderIamBindingConditionArgs',
|
67
|
+
'ManagedFolderIamBindingConditionArgsDict',
|
68
|
+
'ManagedFolderIamMemberConditionArgs',
|
69
|
+
'ManagedFolderIamMemberConditionArgsDict',
|
66
70
|
'ObjectAccessControlProjectTeamArgs',
|
67
71
|
'ObjectAccessControlProjectTeamArgsDict',
|
68
72
|
'TransferAgentPoolBandwidthLimitArgs',
|
@@ -1792,6 +1796,132 @@ class InsightsReportConfigObjectMetadataReportOptionsStorageFiltersArgs:
|
|
1792
1796
|
pulumi.set(self, "bucket", value)
|
1793
1797
|
|
1794
1798
|
|
1799
|
+
if not MYPY:
|
1800
|
+
class ManagedFolderIamBindingConditionArgsDict(TypedDict):
|
1801
|
+
expression: pulumi.Input[str]
|
1802
|
+
"""
|
1803
|
+
Textual representation of an expression in Common Expression Language syntax.
|
1804
|
+
"""
|
1805
|
+
title: pulumi.Input[str]
|
1806
|
+
"""
|
1807
|
+
A title for the expression, i.e. a short string describing its purpose.
|
1808
|
+
"""
|
1809
|
+
description: NotRequired[pulumi.Input[str]]
|
1810
|
+
elif False:
|
1811
|
+
ManagedFolderIamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
1812
|
+
|
1813
|
+
@pulumi.input_type
|
1814
|
+
class ManagedFolderIamBindingConditionArgs:
|
1815
|
+
def __init__(__self__, *,
|
1816
|
+
expression: pulumi.Input[str],
|
1817
|
+
title: pulumi.Input[str],
|
1818
|
+
description: Optional[pulumi.Input[str]] = None):
|
1819
|
+
"""
|
1820
|
+
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
1821
|
+
:param pulumi.Input[str] title: A title for the expression, i.e. a short string describing its purpose.
|
1822
|
+
"""
|
1823
|
+
pulumi.set(__self__, "expression", expression)
|
1824
|
+
pulumi.set(__self__, "title", title)
|
1825
|
+
if description is not None:
|
1826
|
+
pulumi.set(__self__, "description", description)
|
1827
|
+
|
1828
|
+
@property
|
1829
|
+
@pulumi.getter
|
1830
|
+
def expression(self) -> pulumi.Input[str]:
|
1831
|
+
"""
|
1832
|
+
Textual representation of an expression in Common Expression Language syntax.
|
1833
|
+
"""
|
1834
|
+
return pulumi.get(self, "expression")
|
1835
|
+
|
1836
|
+
@expression.setter
|
1837
|
+
def expression(self, value: pulumi.Input[str]):
|
1838
|
+
pulumi.set(self, "expression", value)
|
1839
|
+
|
1840
|
+
@property
|
1841
|
+
@pulumi.getter
|
1842
|
+
def title(self) -> pulumi.Input[str]:
|
1843
|
+
"""
|
1844
|
+
A title for the expression, i.e. a short string describing its purpose.
|
1845
|
+
"""
|
1846
|
+
return pulumi.get(self, "title")
|
1847
|
+
|
1848
|
+
@title.setter
|
1849
|
+
def title(self, value: pulumi.Input[str]):
|
1850
|
+
pulumi.set(self, "title", value)
|
1851
|
+
|
1852
|
+
@property
|
1853
|
+
@pulumi.getter
|
1854
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
1855
|
+
return pulumi.get(self, "description")
|
1856
|
+
|
1857
|
+
@description.setter
|
1858
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
1859
|
+
pulumi.set(self, "description", value)
|
1860
|
+
|
1861
|
+
|
1862
|
+
if not MYPY:
|
1863
|
+
class ManagedFolderIamMemberConditionArgsDict(TypedDict):
|
1864
|
+
expression: pulumi.Input[str]
|
1865
|
+
"""
|
1866
|
+
Textual representation of an expression in Common Expression Language syntax.
|
1867
|
+
"""
|
1868
|
+
title: pulumi.Input[str]
|
1869
|
+
"""
|
1870
|
+
A title for the expression, i.e. a short string describing its purpose.
|
1871
|
+
"""
|
1872
|
+
description: NotRequired[pulumi.Input[str]]
|
1873
|
+
elif False:
|
1874
|
+
ManagedFolderIamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
1875
|
+
|
1876
|
+
@pulumi.input_type
|
1877
|
+
class ManagedFolderIamMemberConditionArgs:
|
1878
|
+
def __init__(__self__, *,
|
1879
|
+
expression: pulumi.Input[str],
|
1880
|
+
title: pulumi.Input[str],
|
1881
|
+
description: Optional[pulumi.Input[str]] = None):
|
1882
|
+
"""
|
1883
|
+
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
1884
|
+
:param pulumi.Input[str] title: A title for the expression, i.e. a short string describing its purpose.
|
1885
|
+
"""
|
1886
|
+
pulumi.set(__self__, "expression", expression)
|
1887
|
+
pulumi.set(__self__, "title", title)
|
1888
|
+
if description is not None:
|
1889
|
+
pulumi.set(__self__, "description", description)
|
1890
|
+
|
1891
|
+
@property
|
1892
|
+
@pulumi.getter
|
1893
|
+
def expression(self) -> pulumi.Input[str]:
|
1894
|
+
"""
|
1895
|
+
Textual representation of an expression in Common Expression Language syntax.
|
1896
|
+
"""
|
1897
|
+
return pulumi.get(self, "expression")
|
1898
|
+
|
1899
|
+
@expression.setter
|
1900
|
+
def expression(self, value: pulumi.Input[str]):
|
1901
|
+
pulumi.set(self, "expression", value)
|
1902
|
+
|
1903
|
+
@property
|
1904
|
+
@pulumi.getter
|
1905
|
+
def title(self) -> pulumi.Input[str]:
|
1906
|
+
"""
|
1907
|
+
A title for the expression, i.e. a short string describing its purpose.
|
1908
|
+
"""
|
1909
|
+
return pulumi.get(self, "title")
|
1910
|
+
|
1911
|
+
@title.setter
|
1912
|
+
def title(self, value: pulumi.Input[str]):
|
1913
|
+
pulumi.set(self, "title", value)
|
1914
|
+
|
1915
|
+
@property
|
1916
|
+
@pulumi.getter
|
1917
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
1918
|
+
return pulumi.get(self, "description")
|
1919
|
+
|
1920
|
+
@description.setter
|
1921
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
1922
|
+
pulumi.set(self, "description", value)
|
1923
|
+
|
1924
|
+
|
1795
1925
|
if not MYPY:
|
1796
1926
|
class ObjectAccessControlProjectTeamArgsDict(TypedDict):
|
1797
1927
|
project_number: NotRequired[pulumi.Input[str]]
|
@@ -0,0 +1,115 @@
|
|
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
|
+
'GetManagedFolderIamPolicyResult',
|
19
|
+
'AwaitableGetManagedFolderIamPolicyResult',
|
20
|
+
'get_managed_folder_iam_policy',
|
21
|
+
'get_managed_folder_iam_policy_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetManagedFolderIamPolicyResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getManagedFolderIamPolicy.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, bucket=None, etag=None, id=None, managed_folder=None, policy_data=None):
|
30
|
+
if bucket and not isinstance(bucket, str):
|
31
|
+
raise TypeError("Expected argument 'bucket' to be a str")
|
32
|
+
pulumi.set(__self__, "bucket", bucket)
|
33
|
+
if etag and not isinstance(etag, str):
|
34
|
+
raise TypeError("Expected argument 'etag' to be a str")
|
35
|
+
pulumi.set(__self__, "etag", etag)
|
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 managed_folder and not isinstance(managed_folder, str):
|
40
|
+
raise TypeError("Expected argument 'managed_folder' to be a str")
|
41
|
+
pulumi.set(__self__, "managed_folder", managed_folder)
|
42
|
+
if policy_data and not isinstance(policy_data, str):
|
43
|
+
raise TypeError("Expected argument 'policy_data' to be a str")
|
44
|
+
pulumi.set(__self__, "policy_data", policy_data)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter
|
48
|
+
def bucket(self) -> str:
|
49
|
+
return pulumi.get(self, "bucket")
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter
|
53
|
+
def etag(self) -> str:
|
54
|
+
return pulumi.get(self, "etag")
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter
|
58
|
+
def id(self) -> str:
|
59
|
+
"""
|
60
|
+
The provider-assigned unique ID for this managed resource.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "id")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="managedFolder")
|
66
|
+
def managed_folder(self) -> str:
|
67
|
+
return pulumi.get(self, "managed_folder")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="policyData")
|
71
|
+
def policy_data(self) -> str:
|
72
|
+
return pulumi.get(self, "policy_data")
|
73
|
+
|
74
|
+
|
75
|
+
class AwaitableGetManagedFolderIamPolicyResult(GetManagedFolderIamPolicyResult):
|
76
|
+
# pylint: disable=using-constant-test
|
77
|
+
def __await__(self):
|
78
|
+
if False:
|
79
|
+
yield self
|
80
|
+
return GetManagedFolderIamPolicyResult(
|
81
|
+
bucket=self.bucket,
|
82
|
+
etag=self.etag,
|
83
|
+
id=self.id,
|
84
|
+
managed_folder=self.managed_folder,
|
85
|
+
policy_data=self.policy_data)
|
86
|
+
|
87
|
+
|
88
|
+
def get_managed_folder_iam_policy(bucket: Optional[str] = None,
|
89
|
+
managed_folder: Optional[str] = None,
|
90
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagedFolderIamPolicyResult:
|
91
|
+
"""
|
92
|
+
Use this data source to access information about an existing resource.
|
93
|
+
"""
|
94
|
+
__args__ = dict()
|
95
|
+
__args__['bucket'] = bucket
|
96
|
+
__args__['managedFolder'] = managed_folder
|
97
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
98
|
+
__ret__ = pulumi.runtime.invoke('gcp:storage/getManagedFolderIamPolicy:getManagedFolderIamPolicy', __args__, opts=opts, typ=GetManagedFolderIamPolicyResult).value
|
99
|
+
|
100
|
+
return AwaitableGetManagedFolderIamPolicyResult(
|
101
|
+
bucket=pulumi.get(__ret__, 'bucket'),
|
102
|
+
etag=pulumi.get(__ret__, 'etag'),
|
103
|
+
id=pulumi.get(__ret__, 'id'),
|
104
|
+
managed_folder=pulumi.get(__ret__, 'managed_folder'),
|
105
|
+
policy_data=pulumi.get(__ret__, 'policy_data'))
|
106
|
+
|
107
|
+
|
108
|
+
@_utilities.lift_output_func(get_managed_folder_iam_policy)
|
109
|
+
def get_managed_folder_iam_policy_output(bucket: Optional[pulumi.Input[str]] = None,
|
110
|
+
managed_folder: Optional[pulumi.Input[str]] = None,
|
111
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetManagedFolderIamPolicyResult]:
|
112
|
+
"""
|
113
|
+
Use this data source to access information about an existing resource.
|
114
|
+
"""
|
115
|
+
...
|