pulumi-gcp 7.21.0__py3-none-any.whl → 7.21.0a1714002516__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 +0 -40
- pulumi_gcp/alloydb/_inputs.py +0 -74
- pulumi_gcp/alloydb/backup.py +12 -0
- pulumi_gcp/alloydb/cluster.py +12 -0
- pulumi_gcp/alloydb/instance.py +81 -90
- pulumi_gcp/alloydb/outputs.py +0 -98
- pulumi_gcp/apigee/environment.py +0 -47
- pulumi_gcp/apigee/sharedflow.py +20 -0
- pulumi_gcp/appengine/flexible_app_version.py +20 -0
- pulumi_gcp/applicationintegration/__init__.py +0 -1
- pulumi_gcp/applicationintegration/_inputs.py +0 -843
- pulumi_gcp/applicationintegration/outputs.py +0 -891
- pulumi_gcp/bigquerydatapolicy/_inputs.py +4 -21
- pulumi_gcp/bigquerydatapolicy/data_policy.py +0 -78
- pulumi_gcp/bigquerydatapolicy/outputs.py +3 -16
- pulumi_gcp/certificateauthority/_inputs.py +12 -92
- pulumi_gcp/certificateauthority/authority.py +27 -117
- pulumi_gcp/certificateauthority/certificate.py +0 -176
- pulumi_gcp/certificateauthority/outputs.py +12 -144
- pulumi_gcp/cloudbuild/worker_pool.py +12 -0
- pulumi_gcp/cloudbuildv2/connection.py +12 -0
- pulumi_gcp/cloudbuildv2/repository.py +12 -0
- pulumi_gcp/clouddeploy/automation.py +12 -0
- pulumi_gcp/clouddeploy/custom_target_type.py +12 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +12 -0
- pulumi_gcp/clouddeploy/target.py +12 -0
- pulumi_gcp/cloudrunv2/job.py +12 -0
- pulumi_gcp/cloudrunv2/service.py +12 -0
- pulumi_gcp/composer/__init__.py +0 -1
- pulumi_gcp/composer/environment.py +47 -35
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +58 -121
- pulumi_gcp/compute/forwarding_rule.py +13 -0
- pulumi_gcp/compute/global_address.py +12 -0
- pulumi_gcp/compute/global_forwarding_rule.py +282 -0
- pulumi_gcp/compute/instance_from_machine_image.py +46 -14
- pulumi_gcp/compute/instance_from_template.py +46 -14
- pulumi_gcp/compute/outputs.py +65 -120
- pulumi_gcp/compute/region_instance_template.py +13 -0
- pulumi_gcp/compute/region_target_https_proxy.py +0 -257
- pulumi_gcp/compute/region_url_map.py +470 -0
- pulumi_gcp/container/attached_cluster.py +12 -0
- pulumi_gcp/container/aws_cluster.py +12 -0
- pulumi_gcp/container/aws_node_pool.py +12 -0
- pulumi_gcp/container/azure_cluster.py +12 -0
- pulumi_gcp/container/azure_node_pool.py +12 -0
- pulumi_gcp/container/cluster.py +20 -0
- pulumi_gcp/dataflow/flex_template_job.py +39 -0
- pulumi_gcp/dataloss/__init__.py +0 -1
- pulumi_gcp/dataloss/_inputs.py +0 -1040
- pulumi_gcp/dataloss/outputs.py +0 -1123
- pulumi_gcp/dataproc/cluster.py +20 -0
- pulumi_gcp/dataproc/workflow_template.py +26 -21
- pulumi_gcp/deploymentmanager/deployment.py +34 -0
- pulumi_gcp/dns/_inputs.py +2 -2
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/dns/record_set.py +36 -2
- pulumi_gcp/filestore/get_instance.py +1 -11
- pulumi_gcp/filestore/instance.py +0 -101
- pulumi_gcp/firebase/_inputs.py +0 -16
- pulumi_gcp/firebase/android_app.py +27 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +0 -20
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +0 -10
- pulumi_gcp/firebase/app_check_service_config.py +125 -0
- pulumi_gcp/firebase/apple_app.py +27 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +27 -0
- pulumi_gcp/firebase/hosting_version.py +0 -44
- pulumi_gcp/firebase/outputs.py +0 -12
- pulumi_gcp/firebase/web_app.py +20 -0
- pulumi_gcp/firestore/database.py +68 -0
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +12 -0
- pulumi_gcp/logging/folder_sink.py +0 -54
- pulumi_gcp/logging/organization_sink.py +0 -54
- pulumi_gcp/monitoring/_inputs.py +2 -46
- pulumi_gcp/monitoring/outputs.py +2 -40
- pulumi_gcp/monitoring/uptime_check_config.py +0 -6
- pulumi_gcp/netapp/active_directory.py +20 -0
- pulumi_gcp/netapp/volume_replication.py +68 -0
- pulumi_gcp/networkconnectivity/__init__.py +0 -1
- pulumi_gcp/provider.py +1 -3
- pulumi_gcp/secretmanager/get_secret.py +3 -13
- pulumi_gcp/secretmanager/outputs.py +1 -20
- pulumi_gcp/secretmanager/secret.py +15 -90
- pulumi_gcp/servicenetworking/connection.py +20 -0
- pulumi_gcp/spanner/database.py +41 -0
- pulumi_gcp/spanner/instance.py +40 -0
- pulumi_gcp/storage/__init__.py +0 -1
- pulumi_gcp/storage/bucket.py +12 -0
- pulumi_gcp/storage/outputs.py +0 -63
- pulumi_gcp/workstations/workstation.py +12 -0
- pulumi_gcp/workstations/workstation_cluster.py +12 -0
- pulumi_gcp/workstations/workstation_config.py +12 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/RECORD +100 -106
- pulumi_gcp/applicationintegration/auth_config.py +0 -998
- pulumi_gcp/composer/user_workloads_secret.py +0 -441
- pulumi_gcp/compute/security_policy_rule.py +0 -850
- pulumi_gcp/dataloss/prevention_discovery_config.py +0 -737
- pulumi_gcp/networkconnectivity/internal_range.py +0 -1024
- pulumi_gcp/storage/get_bucket_objects.py +0 -153
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/top_level.txt +0 -0
@@ -1,153 +0,0 @@
|
|
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 pulumi
|
8
|
-
import pulumi.runtime
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
-
from .. import _utilities
|
11
|
-
from . import outputs
|
12
|
-
|
13
|
-
__all__ = [
|
14
|
-
'GetBucketObjectsResult',
|
15
|
-
'AwaitableGetBucketObjectsResult',
|
16
|
-
'get_bucket_objects',
|
17
|
-
'get_bucket_objects_output',
|
18
|
-
]
|
19
|
-
|
20
|
-
@pulumi.output_type
|
21
|
-
class GetBucketObjectsResult:
|
22
|
-
"""
|
23
|
-
A collection of values returned by getBucketObjects.
|
24
|
-
"""
|
25
|
-
def __init__(__self__, bucket=None, bucket_objects=None, id=None, match_glob=None, prefix=None):
|
26
|
-
if bucket and not isinstance(bucket, str):
|
27
|
-
raise TypeError("Expected argument 'bucket' to be a str")
|
28
|
-
pulumi.set(__self__, "bucket", bucket)
|
29
|
-
if bucket_objects and not isinstance(bucket_objects, list):
|
30
|
-
raise TypeError("Expected argument 'bucket_objects' to be a list")
|
31
|
-
pulumi.set(__self__, "bucket_objects", bucket_objects)
|
32
|
-
if id and not isinstance(id, str):
|
33
|
-
raise TypeError("Expected argument 'id' to be a str")
|
34
|
-
pulumi.set(__self__, "id", id)
|
35
|
-
if match_glob and not isinstance(match_glob, str):
|
36
|
-
raise TypeError("Expected argument 'match_glob' to be a str")
|
37
|
-
pulumi.set(__self__, "match_glob", match_glob)
|
38
|
-
if prefix and not isinstance(prefix, str):
|
39
|
-
raise TypeError("Expected argument 'prefix' to be a str")
|
40
|
-
pulumi.set(__self__, "prefix", prefix)
|
41
|
-
|
42
|
-
@property
|
43
|
-
@pulumi.getter
|
44
|
-
def bucket(self) -> str:
|
45
|
-
return pulumi.get(self, "bucket")
|
46
|
-
|
47
|
-
@property
|
48
|
-
@pulumi.getter(name="bucketObjects")
|
49
|
-
def bucket_objects(self) -> Sequence['outputs.GetBucketObjectsBucketObjectResult']:
|
50
|
-
"""
|
51
|
-
A list of retrieved objects contained in the provided GCS bucket. Structure is defined below.
|
52
|
-
"""
|
53
|
-
return pulumi.get(self, "bucket_objects")
|
54
|
-
|
55
|
-
@property
|
56
|
-
@pulumi.getter
|
57
|
-
def id(self) -> str:
|
58
|
-
"""
|
59
|
-
The provider-assigned unique ID for this managed resource.
|
60
|
-
"""
|
61
|
-
return pulumi.get(self, "id")
|
62
|
-
|
63
|
-
@property
|
64
|
-
@pulumi.getter(name="matchGlob")
|
65
|
-
def match_glob(self) -> Optional[str]:
|
66
|
-
return pulumi.get(self, "match_glob")
|
67
|
-
|
68
|
-
@property
|
69
|
-
@pulumi.getter
|
70
|
-
def prefix(self) -> Optional[str]:
|
71
|
-
return pulumi.get(self, "prefix")
|
72
|
-
|
73
|
-
|
74
|
-
class AwaitableGetBucketObjectsResult(GetBucketObjectsResult):
|
75
|
-
# pylint: disable=using-constant-test
|
76
|
-
def __await__(self):
|
77
|
-
if False:
|
78
|
-
yield self
|
79
|
-
return GetBucketObjectsResult(
|
80
|
-
bucket=self.bucket,
|
81
|
-
bucket_objects=self.bucket_objects,
|
82
|
-
id=self.id,
|
83
|
-
match_glob=self.match_glob,
|
84
|
-
prefix=self.prefix)
|
85
|
-
|
86
|
-
|
87
|
-
def get_bucket_objects(bucket: Optional[str] = None,
|
88
|
-
match_glob: Optional[str] = None,
|
89
|
-
prefix: Optional[str] = None,
|
90
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBucketObjectsResult:
|
91
|
-
"""
|
92
|
-
Gets existing objects inside an existing bucket in Google Cloud Storage service (GCS).
|
93
|
-
See [the official documentation](https://cloud.google.com/storage/docs/key-terms#objects)
|
94
|
-
and [API](https://cloud.google.com/storage/docs/json_api/v1/objects/list).
|
95
|
-
|
96
|
-
## Example Usage
|
97
|
-
|
98
|
-
Example files stored within a bucket.
|
99
|
-
|
100
|
-
```python
|
101
|
-
import pulumi
|
102
|
-
import pulumi_gcp as gcp
|
103
|
-
|
104
|
-
files = gcp.storage.get_bucket_objects(bucket="file-store")
|
105
|
-
```
|
106
|
-
|
107
|
-
|
108
|
-
:param str bucket: The name of the containing bucket.
|
109
|
-
:param str match_glob: A glob pattern used to filter results (for example, `foo*bar`).
|
110
|
-
:param str prefix: Filter results to include only objects whose names begin with this prefix.
|
111
|
-
"""
|
112
|
-
__args__ = dict()
|
113
|
-
__args__['bucket'] = bucket
|
114
|
-
__args__['matchGlob'] = match_glob
|
115
|
-
__args__['prefix'] = prefix
|
116
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
117
|
-
__ret__ = pulumi.runtime.invoke('gcp:storage/getBucketObjects:getBucketObjects', __args__, opts=opts, typ=GetBucketObjectsResult).value
|
118
|
-
|
119
|
-
return AwaitableGetBucketObjectsResult(
|
120
|
-
bucket=pulumi.get(__ret__, 'bucket'),
|
121
|
-
bucket_objects=pulumi.get(__ret__, 'bucket_objects'),
|
122
|
-
id=pulumi.get(__ret__, 'id'),
|
123
|
-
match_glob=pulumi.get(__ret__, 'match_glob'),
|
124
|
-
prefix=pulumi.get(__ret__, 'prefix'))
|
125
|
-
|
126
|
-
|
127
|
-
@_utilities.lift_output_func(get_bucket_objects)
|
128
|
-
def get_bucket_objects_output(bucket: Optional[pulumi.Input[str]] = None,
|
129
|
-
match_glob: Optional[pulumi.Input[Optional[str]]] = None,
|
130
|
-
prefix: Optional[pulumi.Input[Optional[str]]] = None,
|
131
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBucketObjectsResult]:
|
132
|
-
"""
|
133
|
-
Gets existing objects inside an existing bucket in Google Cloud Storage service (GCS).
|
134
|
-
See [the official documentation](https://cloud.google.com/storage/docs/key-terms#objects)
|
135
|
-
and [API](https://cloud.google.com/storage/docs/json_api/v1/objects/list).
|
136
|
-
|
137
|
-
## Example Usage
|
138
|
-
|
139
|
-
Example files stored within a bucket.
|
140
|
-
|
141
|
-
```python
|
142
|
-
import pulumi
|
143
|
-
import pulumi_gcp as gcp
|
144
|
-
|
145
|
-
files = gcp.storage.get_bucket_objects(bucket="file-store")
|
146
|
-
```
|
147
|
-
|
148
|
-
|
149
|
-
:param str bucket: The name of the containing bucket.
|
150
|
-
:param str match_glob: A glob pattern used to filter results (for example, `foo*bar`).
|
151
|
-
:param str prefix: Filter results to include only objects whose names begin with this prefix.
|
152
|
-
"""
|
153
|
-
...
|
File without changes
|
File without changes
|