pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.24.0a1743177741__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 +27 -0
- pulumi_gcp/bigquery/_inputs.py +158 -0
- pulumi_gcp/bigquery/outputs.py +115 -0
- pulumi_gcp/bigquery/reservation.py +189 -1
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
- pulumi_gcp/chronicle/data_access_label.py +16 -0
- pulumi_gcp/cloudrunv2/service.py +14 -14
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +616 -18
- pulumi_gcp/compute/get_images.py +172 -0
- pulumi_gcp/compute/get_resource_policy.py +15 -4
- pulumi_gcp/compute/image.py +54 -0
- pulumi_gcp/compute/interconnect.py +14 -7
- pulumi_gcp/compute/outputs.py +710 -18
- pulumi_gcp/compute/resource_policy.py +169 -3
- pulumi_gcp/compute/router_route_policy.py +16 -0
- pulumi_gcp/config/__init__.pyi +6 -0
- pulumi_gcp/config/vars.py +12 -0
- pulumi_gcp/container/_inputs.py +262 -1
- pulumi_gcp/container/cluster.py +54 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +297 -2
- pulumi_gcp/dataproc/_inputs.py +23 -0
- pulumi_gcp/dataproc/outputs.py +27 -0
- pulumi_gcp/lustre/__init__.py +8 -0
- pulumi_gcp/lustre/instance.py +983 -0
- pulumi_gcp/memorystore/_inputs.py +419 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +137 -7
- pulumi_gcp/memorystore/outputs.py +544 -0
- pulumi_gcp/networkmanagement/_inputs.py +422 -91
- pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
- pulumi_gcp/networkmanagement/outputs.py +280 -61
- pulumi_gcp/networksecurity/_inputs.py +392 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +240 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
- pulumi_gcp/osconfig/__init__.py +1 -0
- pulumi_gcp/osconfig/_inputs.py +5413 -0
- pulumi_gcp/osconfig/outputs.py +3962 -0
- pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
- pulumi_gcp/provider.py +60 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +726 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
- pulumi_gcp/storage/outputs.py +716 -0
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/RECORD +55 -48
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/top_level.txt +0 -0
@@ -13,10 +13,14 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
16
17
|
|
17
18
|
__all__ = [
|
18
19
|
'ConnectivityTestDestination',
|
19
20
|
'ConnectivityTestSource',
|
21
|
+
'ConnectivityTestSourceAppEngineVersion',
|
22
|
+
'ConnectivityTestSourceCloudFunction',
|
23
|
+
'ConnectivityTestSourceCloudRunRevision',
|
20
24
|
]
|
21
25
|
|
22
26
|
@pulumi.output_type
|
@@ -24,10 +28,20 @@ class ConnectivityTestDestination(dict):
|
|
24
28
|
@staticmethod
|
25
29
|
def __key_warning(key: str):
|
26
30
|
suggest = None
|
27
|
-
if key == "
|
31
|
+
if key == "cloudSqlInstance":
|
32
|
+
suggest = "cloud_sql_instance"
|
33
|
+
elif key == "forwardingRule":
|
34
|
+
suggest = "forwarding_rule"
|
35
|
+
elif key == "gkeMasterCluster":
|
36
|
+
suggest = "gke_master_cluster"
|
37
|
+
elif key == "ipAddress":
|
28
38
|
suggest = "ip_address"
|
29
39
|
elif key == "projectId":
|
30
40
|
suggest = "project_id"
|
41
|
+
elif key == "redisCluster":
|
42
|
+
suggest = "redis_cluster"
|
43
|
+
elif key == "redisInstance":
|
44
|
+
suggest = "redis_instance"
|
31
45
|
|
32
46
|
if suggest:
|
33
47
|
pulumi.log.warn(f"Key '{key}' not found in ConnectivityTestDestination. Access the value via the '{suggest}' property getter instead.")
|
@@ -41,30 +55,52 @@ class ConnectivityTestDestination(dict):
|
|
41
55
|
return super().get(key, default)
|
42
56
|
|
43
57
|
def __init__(__self__, *,
|
58
|
+
cloud_sql_instance: Optional[str] = None,
|
59
|
+
forwarding_rule: Optional[str] = None,
|
60
|
+
fqdn: Optional[str] = None,
|
61
|
+
gke_master_cluster: Optional[str] = None,
|
44
62
|
instance: Optional[str] = None,
|
45
63
|
ip_address: Optional[str] = None,
|
46
64
|
network: Optional[str] = None,
|
47
65
|
port: Optional[int] = None,
|
48
|
-
project_id: Optional[str] = None
|
66
|
+
project_id: Optional[str] = None,
|
67
|
+
redis_cluster: Optional[str] = None,
|
68
|
+
redis_instance: Optional[str] = None):
|
49
69
|
"""
|
70
|
+
:param str cloud_sql_instance: A Cloud SQL instance URI.
|
71
|
+
:param str forwarding_rule: Forwarding rule URI. Forwarding rules are frontends for load balancers,
|
72
|
+
PSC endpoints, and Protocol Forwarding.
|
73
|
+
:param str fqdn: A DNS endpoint of Google Kubernetes Engine cluster control plane.
|
74
|
+
Requires gke_master_cluster to be set, can't be used simultaneoulsly with
|
75
|
+
ip_address or network. Applicable only to destination endpoint.
|
76
|
+
:param str gke_master_cluster: A cluster URI for Google Kubernetes Engine cluster control plane.
|
50
77
|
:param str instance: A Compute Engine instance URI.
|
51
|
-
:param str ip_address: The IP address of the endpoint, which can be an external or
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
:param
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
project.
|
78
|
+
:param str ip_address: The IP address of the endpoint, which can be an external or internal IP.
|
79
|
+
:param str network: A VPC network URI.
|
80
|
+
:param int port: The IP protocol port of the endpoint. Only applicable when protocol is
|
81
|
+
TCP or UDP.
|
82
|
+
:param str project_id: Project ID where the endpoint is located.
|
83
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
84
|
+
network URI.
|
85
|
+
The following are two cases where you may need to provide the project ID:
|
86
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
87
|
+
Cloud project.
|
88
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
89
|
+
from the service project. In this case, the network that the IP address
|
90
|
+
resides in is defined in the host project.
|
65
91
|
|
66
92
|
- - -
|
93
|
+
:param str redis_cluster: A Redis Cluster URI.
|
94
|
+
:param str redis_instance: A Redis Instance URI.
|
67
95
|
"""
|
96
|
+
if cloud_sql_instance is not None:
|
97
|
+
pulumi.set(__self__, "cloud_sql_instance", cloud_sql_instance)
|
98
|
+
if forwarding_rule is not None:
|
99
|
+
pulumi.set(__self__, "forwarding_rule", forwarding_rule)
|
100
|
+
if fqdn is not None:
|
101
|
+
pulumi.set(__self__, "fqdn", fqdn)
|
102
|
+
if gke_master_cluster is not None:
|
103
|
+
pulumi.set(__self__, "gke_master_cluster", gke_master_cluster)
|
68
104
|
if instance is not None:
|
69
105
|
pulumi.set(__self__, "instance", instance)
|
70
106
|
if ip_address is not None:
|
@@ -75,6 +111,45 @@ class ConnectivityTestDestination(dict):
|
|
75
111
|
pulumi.set(__self__, "port", port)
|
76
112
|
if project_id is not None:
|
77
113
|
pulumi.set(__self__, "project_id", project_id)
|
114
|
+
if redis_cluster is not None:
|
115
|
+
pulumi.set(__self__, "redis_cluster", redis_cluster)
|
116
|
+
if redis_instance is not None:
|
117
|
+
pulumi.set(__self__, "redis_instance", redis_instance)
|
118
|
+
|
119
|
+
@property
|
120
|
+
@pulumi.getter(name="cloudSqlInstance")
|
121
|
+
def cloud_sql_instance(self) -> Optional[str]:
|
122
|
+
"""
|
123
|
+
A Cloud SQL instance URI.
|
124
|
+
"""
|
125
|
+
return pulumi.get(self, "cloud_sql_instance")
|
126
|
+
|
127
|
+
@property
|
128
|
+
@pulumi.getter(name="forwardingRule")
|
129
|
+
def forwarding_rule(self) -> Optional[str]:
|
130
|
+
"""
|
131
|
+
Forwarding rule URI. Forwarding rules are frontends for load balancers,
|
132
|
+
PSC endpoints, and Protocol Forwarding.
|
133
|
+
"""
|
134
|
+
return pulumi.get(self, "forwarding_rule")
|
135
|
+
|
136
|
+
@property
|
137
|
+
@pulumi.getter
|
138
|
+
def fqdn(self) -> Optional[str]:
|
139
|
+
"""
|
140
|
+
A DNS endpoint of Google Kubernetes Engine cluster control plane.
|
141
|
+
Requires gke_master_cluster to be set, can't be used simultaneoulsly with
|
142
|
+
ip_address or network. Applicable only to destination endpoint.
|
143
|
+
"""
|
144
|
+
return pulumi.get(self, "fqdn")
|
145
|
+
|
146
|
+
@property
|
147
|
+
@pulumi.getter(name="gkeMasterCluster")
|
148
|
+
def gke_master_cluster(self) -> Optional[str]:
|
149
|
+
"""
|
150
|
+
A cluster URI for Google Kubernetes Engine cluster control plane.
|
151
|
+
"""
|
152
|
+
return pulumi.get(self, "gke_master_cluster")
|
78
153
|
|
79
154
|
@property
|
80
155
|
@pulumi.getter
|
@@ -88,9 +163,7 @@ class ConnectivityTestDestination(dict):
|
|
88
163
|
@pulumi.getter(name="ipAddress")
|
89
164
|
def ip_address(self) -> Optional[str]:
|
90
165
|
"""
|
91
|
-
The IP address of the endpoint, which can be an external or
|
92
|
-
internal IP. An IPv6 address is only allowed when the test's
|
93
|
-
destination is a global load balancer VIP.
|
166
|
+
The IP address of the endpoint, which can be an external or internal IP.
|
94
167
|
"""
|
95
168
|
return pulumi.get(self, "ip_address")
|
96
169
|
|
@@ -98,7 +171,7 @@ class ConnectivityTestDestination(dict):
|
|
98
171
|
@pulumi.getter
|
99
172
|
def network(self) -> Optional[str]:
|
100
173
|
"""
|
101
|
-
A
|
174
|
+
A VPC network URI.
|
102
175
|
"""
|
103
176
|
return pulumi.get(self, "network")
|
104
177
|
|
@@ -106,8 +179,8 @@ class ConnectivityTestDestination(dict):
|
|
106
179
|
@pulumi.getter
|
107
180
|
def port(self) -> Optional[int]:
|
108
181
|
"""
|
109
|
-
The IP protocol port of the endpoint. Only applicable when
|
110
|
-
|
182
|
+
The IP protocol port of the endpoint. Only applicable when protocol is
|
183
|
+
TCP or UDP.
|
111
184
|
"""
|
112
185
|
return pulumi.get(self, "port")
|
113
186
|
|
@@ -115,26 +188,53 @@ class ConnectivityTestDestination(dict):
|
|
115
188
|
@pulumi.getter(name="projectId")
|
116
189
|
def project_id(self) -> Optional[str]:
|
117
190
|
"""
|
118
|
-
Project ID where the endpoint is located.
|
119
|
-
derived from the URI if you provide a
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
project.
|
191
|
+
Project ID where the endpoint is located.
|
192
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
193
|
+
network URI.
|
194
|
+
The following are two cases where you may need to provide the project ID:
|
195
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
196
|
+
Cloud project.
|
197
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
198
|
+
from the service project. In this case, the network that the IP address
|
199
|
+
resides in is defined in the host project.
|
126
200
|
|
127
201
|
- - -
|
128
202
|
"""
|
129
203
|
return pulumi.get(self, "project_id")
|
130
204
|
|
205
|
+
@property
|
206
|
+
@pulumi.getter(name="redisCluster")
|
207
|
+
def redis_cluster(self) -> Optional[str]:
|
208
|
+
"""
|
209
|
+
A Redis Cluster URI.
|
210
|
+
"""
|
211
|
+
return pulumi.get(self, "redis_cluster")
|
212
|
+
|
213
|
+
@property
|
214
|
+
@pulumi.getter(name="redisInstance")
|
215
|
+
def redis_instance(self) -> Optional[str]:
|
216
|
+
"""
|
217
|
+
A Redis Instance URI.
|
218
|
+
"""
|
219
|
+
return pulumi.get(self, "redis_instance")
|
220
|
+
|
131
221
|
|
132
222
|
@pulumi.output_type
|
133
223
|
class ConnectivityTestSource(dict):
|
134
224
|
@staticmethod
|
135
225
|
def __key_warning(key: str):
|
136
226
|
suggest = None
|
137
|
-
if key == "
|
227
|
+
if key == "appEngineVersion":
|
228
|
+
suggest = "app_engine_version"
|
229
|
+
elif key == "cloudFunction":
|
230
|
+
suggest = "cloud_function"
|
231
|
+
elif key == "cloudRunRevision":
|
232
|
+
suggest = "cloud_run_revision"
|
233
|
+
elif key == "cloudSqlInstance":
|
234
|
+
suggest = "cloud_sql_instance"
|
235
|
+
elif key == "gkeMasterCluster":
|
236
|
+
suggest = "gke_master_cluster"
|
237
|
+
elif key == "ipAddress":
|
138
238
|
suggest = "ip_address"
|
139
239
|
elif key == "networkType":
|
140
240
|
suggest = "network_type"
|
@@ -153,6 +253,11 @@ class ConnectivityTestSource(dict):
|
|
153
253
|
return super().get(key, default)
|
154
254
|
|
155
255
|
def __init__(__self__, *,
|
256
|
+
app_engine_version: Optional['outputs.ConnectivityTestSourceAppEngineVersion'] = None,
|
257
|
+
cloud_function: Optional['outputs.ConnectivityTestSourceCloudFunction'] = None,
|
258
|
+
cloud_run_revision: Optional['outputs.ConnectivityTestSourceCloudRunRevision'] = None,
|
259
|
+
cloud_sql_instance: Optional[str] = None,
|
260
|
+
gke_master_cluster: Optional[str] = None,
|
156
261
|
instance: Optional[str] = None,
|
157
262
|
ip_address: Optional[str] = None,
|
158
263
|
network: Optional[str] = None,
|
@@ -160,25 +265,41 @@ class ConnectivityTestSource(dict):
|
|
160
265
|
port: Optional[int] = None,
|
161
266
|
project_id: Optional[str] = None):
|
162
267
|
"""
|
268
|
+
:param 'ConnectivityTestSourceAppEngineVersionArgs' app_engine_version: An App Engine service version.
|
269
|
+
Structure is documented below.
|
270
|
+
:param 'ConnectivityTestSourceCloudFunctionArgs' cloud_function: A Cloud Function.
|
271
|
+
Structure is documented below.
|
272
|
+
:param 'ConnectivityTestSourceCloudRunRevisionArgs' cloud_run_revision: A Cloud Run revision.
|
273
|
+
Structure is documented below.
|
274
|
+
:param str cloud_sql_instance: A Cloud SQL instance URI.
|
275
|
+
:param str gke_master_cluster: A cluster URI for Google Kubernetes Engine cluster control plane.
|
163
276
|
:param str instance: A Compute Engine instance URI.
|
164
|
-
:param str ip_address: The IP address of the endpoint, which can be an external or
|
165
|
-
|
166
|
-
destination is a global load balancer VIP.
|
167
|
-
:param str network: A Compute Engine network URI.
|
277
|
+
:param str ip_address: The IP address of the endpoint, which can be an external or internal IP.
|
278
|
+
:param str network: A VPC network URI.
|
168
279
|
:param str network_type: Type of the network where the endpoint is located.
|
169
280
|
Possible values are: `GCP_NETWORK`, `NON_GCP_NETWORK`.
|
170
|
-
:param int port: The IP protocol port of the endpoint. Only applicable when
|
171
|
-
|
172
|
-
:param str project_id: Project ID where the endpoint is located.
|
173
|
-
derived from the URI if you provide a
|
174
|
-
|
175
|
-
|
176
|
-
within a
|
177
|
-
|
178
|
-
|
179
|
-
the
|
180
|
-
host project.
|
281
|
+
:param int port: The IP protocol port of the endpoint. Only applicable when protocol is
|
282
|
+
TCP or UDP.
|
283
|
+
:param str project_id: Project ID where the endpoint is located.
|
284
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
285
|
+
network URI.
|
286
|
+
The following are two cases where you may need to provide the project ID:
|
287
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
288
|
+
Cloud project.
|
289
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
290
|
+
from the service project. In this case, the network that the IP address
|
291
|
+
resides in is defined in the host project.
|
181
292
|
"""
|
293
|
+
if app_engine_version is not None:
|
294
|
+
pulumi.set(__self__, "app_engine_version", app_engine_version)
|
295
|
+
if cloud_function is not None:
|
296
|
+
pulumi.set(__self__, "cloud_function", cloud_function)
|
297
|
+
if cloud_run_revision is not None:
|
298
|
+
pulumi.set(__self__, "cloud_run_revision", cloud_run_revision)
|
299
|
+
if cloud_sql_instance is not None:
|
300
|
+
pulumi.set(__self__, "cloud_sql_instance", cloud_sql_instance)
|
301
|
+
if gke_master_cluster is not None:
|
302
|
+
pulumi.set(__self__, "gke_master_cluster", gke_master_cluster)
|
182
303
|
if instance is not None:
|
183
304
|
pulumi.set(__self__, "instance", instance)
|
184
305
|
if ip_address is not None:
|
@@ -192,6 +313,49 @@ class ConnectivityTestSource(dict):
|
|
192
313
|
if project_id is not None:
|
193
314
|
pulumi.set(__self__, "project_id", project_id)
|
194
315
|
|
316
|
+
@property
|
317
|
+
@pulumi.getter(name="appEngineVersion")
|
318
|
+
def app_engine_version(self) -> Optional['outputs.ConnectivityTestSourceAppEngineVersion']:
|
319
|
+
"""
|
320
|
+
An App Engine service version.
|
321
|
+
Structure is documented below.
|
322
|
+
"""
|
323
|
+
return pulumi.get(self, "app_engine_version")
|
324
|
+
|
325
|
+
@property
|
326
|
+
@pulumi.getter(name="cloudFunction")
|
327
|
+
def cloud_function(self) -> Optional['outputs.ConnectivityTestSourceCloudFunction']:
|
328
|
+
"""
|
329
|
+
A Cloud Function.
|
330
|
+
Structure is documented below.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "cloud_function")
|
333
|
+
|
334
|
+
@property
|
335
|
+
@pulumi.getter(name="cloudRunRevision")
|
336
|
+
def cloud_run_revision(self) -> Optional['outputs.ConnectivityTestSourceCloudRunRevision']:
|
337
|
+
"""
|
338
|
+
A Cloud Run revision.
|
339
|
+
Structure is documented below.
|
340
|
+
"""
|
341
|
+
return pulumi.get(self, "cloud_run_revision")
|
342
|
+
|
343
|
+
@property
|
344
|
+
@pulumi.getter(name="cloudSqlInstance")
|
345
|
+
def cloud_sql_instance(self) -> Optional[str]:
|
346
|
+
"""
|
347
|
+
A Cloud SQL instance URI.
|
348
|
+
"""
|
349
|
+
return pulumi.get(self, "cloud_sql_instance")
|
350
|
+
|
351
|
+
@property
|
352
|
+
@pulumi.getter(name="gkeMasterCluster")
|
353
|
+
def gke_master_cluster(self) -> Optional[str]:
|
354
|
+
"""
|
355
|
+
A cluster URI for Google Kubernetes Engine cluster control plane.
|
356
|
+
"""
|
357
|
+
return pulumi.get(self, "gke_master_cluster")
|
358
|
+
|
195
359
|
@property
|
196
360
|
@pulumi.getter
|
197
361
|
def instance(self) -> Optional[str]:
|
@@ -204,9 +368,7 @@ class ConnectivityTestSource(dict):
|
|
204
368
|
@pulumi.getter(name="ipAddress")
|
205
369
|
def ip_address(self) -> Optional[str]:
|
206
370
|
"""
|
207
|
-
The IP address of the endpoint, which can be an external or
|
208
|
-
internal IP. An IPv6 address is only allowed when the test's
|
209
|
-
destination is a global load balancer VIP.
|
371
|
+
The IP address of the endpoint, which can be an external or internal IP.
|
210
372
|
"""
|
211
373
|
return pulumi.get(self, "ip_address")
|
212
374
|
|
@@ -214,7 +376,7 @@ class ConnectivityTestSource(dict):
|
|
214
376
|
@pulumi.getter
|
215
377
|
def network(self) -> Optional[str]:
|
216
378
|
"""
|
217
|
-
A
|
379
|
+
A VPC network URI.
|
218
380
|
"""
|
219
381
|
return pulumi.get(self, "network")
|
220
382
|
|
@@ -231,8 +393,8 @@ class ConnectivityTestSource(dict):
|
|
231
393
|
@pulumi.getter
|
232
394
|
def port(self) -> Optional[int]:
|
233
395
|
"""
|
234
|
-
The IP protocol port of the endpoint. Only applicable when
|
235
|
-
|
396
|
+
The IP protocol port of the endpoint. Only applicable when protocol is
|
397
|
+
TCP or UDP.
|
236
398
|
"""
|
237
399
|
return pulumi.get(self, "port")
|
238
400
|
|
@@ -240,16 +402,73 @@ class ConnectivityTestSource(dict):
|
|
240
402
|
@pulumi.getter(name="projectId")
|
241
403
|
def project_id(self) -> Optional[str]:
|
242
404
|
"""
|
243
|
-
Project ID where the endpoint is located.
|
244
|
-
derived from the URI if you provide a
|
245
|
-
|
246
|
-
|
247
|
-
within a
|
248
|
-
|
249
|
-
|
250
|
-
the
|
251
|
-
host project.
|
405
|
+
Project ID where the endpoint is located.
|
406
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
407
|
+
network URI.
|
408
|
+
The following are two cases where you may need to provide the project ID:
|
409
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
410
|
+
Cloud project.
|
411
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
412
|
+
from the service project. In this case, the network that the IP address
|
413
|
+
resides in is defined in the host project.
|
252
414
|
"""
|
253
415
|
return pulumi.get(self, "project_id")
|
254
416
|
|
255
417
|
|
418
|
+
@pulumi.output_type
|
419
|
+
class ConnectivityTestSourceAppEngineVersion(dict):
|
420
|
+
def __init__(__self__, *,
|
421
|
+
uri: Optional[str] = None):
|
422
|
+
"""
|
423
|
+
:param str uri: An App Engine service version name.
|
424
|
+
"""
|
425
|
+
if uri is not None:
|
426
|
+
pulumi.set(__self__, "uri", uri)
|
427
|
+
|
428
|
+
@property
|
429
|
+
@pulumi.getter
|
430
|
+
def uri(self) -> Optional[str]:
|
431
|
+
"""
|
432
|
+
An App Engine service version name.
|
433
|
+
"""
|
434
|
+
return pulumi.get(self, "uri")
|
435
|
+
|
436
|
+
|
437
|
+
@pulumi.output_type
|
438
|
+
class ConnectivityTestSourceCloudFunction(dict):
|
439
|
+
def __init__(__self__, *,
|
440
|
+
uri: Optional[str] = None):
|
441
|
+
"""
|
442
|
+
:param str uri: A Cloud Function name.
|
443
|
+
"""
|
444
|
+
if uri is not None:
|
445
|
+
pulumi.set(__self__, "uri", uri)
|
446
|
+
|
447
|
+
@property
|
448
|
+
@pulumi.getter
|
449
|
+
def uri(self) -> Optional[str]:
|
450
|
+
"""
|
451
|
+
A Cloud Function name.
|
452
|
+
"""
|
453
|
+
return pulumi.get(self, "uri")
|
454
|
+
|
455
|
+
|
456
|
+
@pulumi.output_type
|
457
|
+
class ConnectivityTestSourceCloudRunRevision(dict):
|
458
|
+
def __init__(__self__, *,
|
459
|
+
uri: Optional[str] = None):
|
460
|
+
"""
|
461
|
+
:param str uri: A Cloud Run revision URI.
|
462
|
+
"""
|
463
|
+
if uri is not None:
|
464
|
+
pulumi.set(__self__, "uri", uri)
|
465
|
+
|
466
|
+
@property
|
467
|
+
@pulumi.getter
|
468
|
+
def uri(self) -> Optional[str]:
|
469
|
+
"""
|
470
|
+
A Cloud Run revision URI.
|
471
|
+
"""
|
472
|
+
return pulumi.get(self, "uri")
|
473
|
+
|
474
|
+
|