pulumi-gcp 8.24.0a1742970634__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.0a1742970634.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.24.0a1742970634.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/RECORD +55 -48
- {pulumi_gcp-8.24.0a1742970634.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.24.0a1742970634.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/top_level.txt +0 -0
@@ -19,74 +19,128 @@ __all__ = [
|
|
19
19
|
'ConnectivityTestDestinationArgsDict',
|
20
20
|
'ConnectivityTestSourceArgs',
|
21
21
|
'ConnectivityTestSourceArgsDict',
|
22
|
+
'ConnectivityTestSourceAppEngineVersionArgs',
|
23
|
+
'ConnectivityTestSourceAppEngineVersionArgsDict',
|
24
|
+
'ConnectivityTestSourceCloudFunctionArgs',
|
25
|
+
'ConnectivityTestSourceCloudFunctionArgsDict',
|
26
|
+
'ConnectivityTestSourceCloudRunRevisionArgs',
|
27
|
+
'ConnectivityTestSourceCloudRunRevisionArgsDict',
|
22
28
|
]
|
23
29
|
|
24
30
|
MYPY = False
|
25
31
|
|
26
32
|
if not MYPY:
|
27
33
|
class ConnectivityTestDestinationArgsDict(TypedDict):
|
34
|
+
cloud_sql_instance: NotRequired[pulumi.Input[str]]
|
35
|
+
"""
|
36
|
+
A Cloud SQL instance URI.
|
37
|
+
"""
|
38
|
+
forwarding_rule: NotRequired[pulumi.Input[str]]
|
39
|
+
"""
|
40
|
+
Forwarding rule URI. Forwarding rules are frontends for load balancers,
|
41
|
+
PSC endpoints, and Protocol Forwarding.
|
42
|
+
"""
|
43
|
+
fqdn: NotRequired[pulumi.Input[str]]
|
44
|
+
"""
|
45
|
+
A DNS endpoint of Google Kubernetes Engine cluster control plane.
|
46
|
+
Requires gke_master_cluster to be set, can't be used simultaneoulsly with
|
47
|
+
ip_address or network. Applicable only to destination endpoint.
|
48
|
+
"""
|
49
|
+
gke_master_cluster: NotRequired[pulumi.Input[str]]
|
50
|
+
"""
|
51
|
+
A cluster URI for Google Kubernetes Engine cluster control plane.
|
52
|
+
"""
|
28
53
|
instance: NotRequired[pulumi.Input[str]]
|
29
54
|
"""
|
30
55
|
A Compute Engine instance URI.
|
31
56
|
"""
|
32
57
|
ip_address: NotRequired[pulumi.Input[str]]
|
33
58
|
"""
|
34
|
-
The IP address of the endpoint, which can be an external or
|
35
|
-
internal IP. An IPv6 address is only allowed when the test's
|
36
|
-
destination is a global load balancer VIP.
|
59
|
+
The IP address of the endpoint, which can be an external or internal IP.
|
37
60
|
"""
|
38
61
|
network: NotRequired[pulumi.Input[str]]
|
39
62
|
"""
|
40
|
-
A
|
63
|
+
A VPC network URI.
|
41
64
|
"""
|
42
65
|
port: NotRequired[pulumi.Input[int]]
|
43
66
|
"""
|
44
|
-
The IP protocol port of the endpoint. Only applicable when
|
45
|
-
|
67
|
+
The IP protocol port of the endpoint. Only applicable when protocol is
|
68
|
+
TCP or UDP.
|
46
69
|
"""
|
47
70
|
project_id: NotRequired[pulumi.Input[str]]
|
48
71
|
"""
|
49
|
-
Project ID where the endpoint is located.
|
50
|
-
derived from the URI if you provide a
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
project.
|
72
|
+
Project ID where the endpoint is located.
|
73
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
74
|
+
network URI.
|
75
|
+
The following are two cases where you may need to provide the project ID:
|
76
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
77
|
+
Cloud project.
|
78
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
79
|
+
from the service project. In this case, the network that the IP address
|
80
|
+
resides in is defined in the host project.
|
57
81
|
|
58
82
|
- - -
|
59
83
|
"""
|
84
|
+
redis_cluster: NotRequired[pulumi.Input[str]]
|
85
|
+
"""
|
86
|
+
A Redis Cluster URI.
|
87
|
+
"""
|
88
|
+
redis_instance: NotRequired[pulumi.Input[str]]
|
89
|
+
"""
|
90
|
+
A Redis Instance URI.
|
91
|
+
"""
|
60
92
|
elif False:
|
61
93
|
ConnectivityTestDestinationArgsDict: TypeAlias = Mapping[str, Any]
|
62
94
|
|
63
95
|
@pulumi.input_type
|
64
96
|
class ConnectivityTestDestinationArgs:
|
65
97
|
def __init__(__self__, *,
|
98
|
+
cloud_sql_instance: Optional[pulumi.Input[str]] = None,
|
99
|
+
forwarding_rule: Optional[pulumi.Input[str]] = None,
|
100
|
+
fqdn: Optional[pulumi.Input[str]] = None,
|
101
|
+
gke_master_cluster: Optional[pulumi.Input[str]] = None,
|
66
102
|
instance: Optional[pulumi.Input[str]] = None,
|
67
103
|
ip_address: Optional[pulumi.Input[str]] = None,
|
68
104
|
network: Optional[pulumi.Input[str]] = None,
|
69
105
|
port: Optional[pulumi.Input[int]] = None,
|
70
|
-
project_id: Optional[pulumi.Input[str]] = None
|
71
|
-
|
106
|
+
project_id: Optional[pulumi.Input[str]] = None,
|
107
|
+
redis_cluster: Optional[pulumi.Input[str]] = None,
|
108
|
+
redis_instance: Optional[pulumi.Input[str]] = None):
|
109
|
+
"""
|
110
|
+
:param pulumi.Input[str] cloud_sql_instance: A Cloud SQL instance URI.
|
111
|
+
:param pulumi.Input[str] forwarding_rule: Forwarding rule URI. Forwarding rules are frontends for load balancers,
|
112
|
+
PSC endpoints, and Protocol Forwarding.
|
113
|
+
:param pulumi.Input[str] fqdn: A DNS endpoint of Google Kubernetes Engine cluster control plane.
|
114
|
+
Requires gke_master_cluster to be set, can't be used simultaneoulsly with
|
115
|
+
ip_address or network. Applicable only to destination endpoint.
|
116
|
+
:param pulumi.Input[str] gke_master_cluster: A cluster URI for Google Kubernetes Engine cluster control plane.
|
72
117
|
:param pulumi.Input[str] instance: A Compute Engine instance URI.
|
73
|
-
:param pulumi.Input[str] ip_address: The IP address of the endpoint, which can be an external or
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
:param pulumi.Input[
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
project.
|
118
|
+
:param pulumi.Input[str] ip_address: The IP address of the endpoint, which can be an external or internal IP.
|
119
|
+
:param pulumi.Input[str] network: A VPC network URI.
|
120
|
+
:param pulumi.Input[int] port: The IP protocol port of the endpoint. Only applicable when protocol is
|
121
|
+
TCP or UDP.
|
122
|
+
:param pulumi.Input[str] project_id: Project ID where the endpoint is located.
|
123
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
124
|
+
network URI.
|
125
|
+
The following are two cases where you may need to provide the project ID:
|
126
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
127
|
+
Cloud project.
|
128
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
129
|
+
from the service project. In this case, the network that the IP address
|
130
|
+
resides in is defined in the host project.
|
87
131
|
|
88
132
|
- - -
|
89
|
-
|
133
|
+
:param pulumi.Input[str] redis_cluster: A Redis Cluster URI.
|
134
|
+
:param pulumi.Input[str] redis_instance: A Redis Instance URI.
|
135
|
+
"""
|
136
|
+
if cloud_sql_instance is not None:
|
137
|
+
pulumi.set(__self__, "cloud_sql_instance", cloud_sql_instance)
|
138
|
+
if forwarding_rule is not None:
|
139
|
+
pulumi.set(__self__, "forwarding_rule", forwarding_rule)
|
140
|
+
if fqdn is not None:
|
141
|
+
pulumi.set(__self__, "fqdn", fqdn)
|
142
|
+
if gke_master_cluster is not None:
|
143
|
+
pulumi.set(__self__, "gke_master_cluster", gke_master_cluster)
|
90
144
|
if instance is not None:
|
91
145
|
pulumi.set(__self__, "instance", instance)
|
92
146
|
if ip_address is not None:
|
@@ -97,6 +151,61 @@ class ConnectivityTestDestinationArgs:
|
|
97
151
|
pulumi.set(__self__, "port", port)
|
98
152
|
if project_id is not None:
|
99
153
|
pulumi.set(__self__, "project_id", project_id)
|
154
|
+
if redis_cluster is not None:
|
155
|
+
pulumi.set(__self__, "redis_cluster", redis_cluster)
|
156
|
+
if redis_instance is not None:
|
157
|
+
pulumi.set(__self__, "redis_instance", redis_instance)
|
158
|
+
|
159
|
+
@property
|
160
|
+
@pulumi.getter(name="cloudSqlInstance")
|
161
|
+
def cloud_sql_instance(self) -> Optional[pulumi.Input[str]]:
|
162
|
+
"""
|
163
|
+
A Cloud SQL instance URI.
|
164
|
+
"""
|
165
|
+
return pulumi.get(self, "cloud_sql_instance")
|
166
|
+
|
167
|
+
@cloud_sql_instance.setter
|
168
|
+
def cloud_sql_instance(self, value: Optional[pulumi.Input[str]]):
|
169
|
+
pulumi.set(self, "cloud_sql_instance", value)
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter(name="forwardingRule")
|
173
|
+
def forwarding_rule(self) -> Optional[pulumi.Input[str]]:
|
174
|
+
"""
|
175
|
+
Forwarding rule URI. Forwarding rules are frontends for load balancers,
|
176
|
+
PSC endpoints, and Protocol Forwarding.
|
177
|
+
"""
|
178
|
+
return pulumi.get(self, "forwarding_rule")
|
179
|
+
|
180
|
+
@forwarding_rule.setter
|
181
|
+
def forwarding_rule(self, value: Optional[pulumi.Input[str]]):
|
182
|
+
pulumi.set(self, "forwarding_rule", value)
|
183
|
+
|
184
|
+
@property
|
185
|
+
@pulumi.getter
|
186
|
+
def fqdn(self) -> Optional[pulumi.Input[str]]:
|
187
|
+
"""
|
188
|
+
A DNS endpoint of Google Kubernetes Engine cluster control plane.
|
189
|
+
Requires gke_master_cluster to be set, can't be used simultaneoulsly with
|
190
|
+
ip_address or network. Applicable only to destination endpoint.
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "fqdn")
|
193
|
+
|
194
|
+
@fqdn.setter
|
195
|
+
def fqdn(self, value: Optional[pulumi.Input[str]]):
|
196
|
+
pulumi.set(self, "fqdn", value)
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter(name="gkeMasterCluster")
|
200
|
+
def gke_master_cluster(self) -> Optional[pulumi.Input[str]]:
|
201
|
+
"""
|
202
|
+
A cluster URI for Google Kubernetes Engine cluster control plane.
|
203
|
+
"""
|
204
|
+
return pulumi.get(self, "gke_master_cluster")
|
205
|
+
|
206
|
+
@gke_master_cluster.setter
|
207
|
+
def gke_master_cluster(self, value: Optional[pulumi.Input[str]]):
|
208
|
+
pulumi.set(self, "gke_master_cluster", value)
|
100
209
|
|
101
210
|
@property
|
102
211
|
@pulumi.getter
|
@@ -114,9 +223,7 @@ class ConnectivityTestDestinationArgs:
|
|
114
223
|
@pulumi.getter(name="ipAddress")
|
115
224
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
116
225
|
"""
|
117
|
-
The IP address of the endpoint, which can be an external or
|
118
|
-
internal IP. An IPv6 address is only allowed when the test's
|
119
|
-
destination is a global load balancer VIP.
|
226
|
+
The IP address of the endpoint, which can be an external or internal IP.
|
120
227
|
"""
|
121
228
|
return pulumi.get(self, "ip_address")
|
122
229
|
|
@@ -128,7 +235,7 @@ class ConnectivityTestDestinationArgs:
|
|
128
235
|
@pulumi.getter
|
129
236
|
def network(self) -> Optional[pulumi.Input[str]]:
|
130
237
|
"""
|
131
|
-
A
|
238
|
+
A VPC network URI.
|
132
239
|
"""
|
133
240
|
return pulumi.get(self, "network")
|
134
241
|
|
@@ -140,8 +247,8 @@ class ConnectivityTestDestinationArgs:
|
|
140
247
|
@pulumi.getter
|
141
248
|
def port(self) -> Optional[pulumi.Input[int]]:
|
142
249
|
"""
|
143
|
-
The IP protocol port of the endpoint. Only applicable when
|
144
|
-
|
250
|
+
The IP protocol port of the endpoint. Only applicable when protocol is
|
251
|
+
TCP or UDP.
|
145
252
|
"""
|
146
253
|
return pulumi.get(self, "port")
|
147
254
|
|
@@ -153,14 +260,15 @@ class ConnectivityTestDestinationArgs:
|
|
153
260
|
@pulumi.getter(name="projectId")
|
154
261
|
def project_id(self) -> Optional[pulumi.Input[str]]:
|
155
262
|
"""
|
156
|
-
Project ID where the endpoint is located.
|
157
|
-
derived from the URI if you provide a
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
project.
|
263
|
+
Project ID where the endpoint is located.
|
264
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
265
|
+
network URI.
|
266
|
+
The following are two cases where you may need to provide the project ID:
|
267
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
268
|
+
Cloud project.
|
269
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
270
|
+
from the service project. In this case, the network that the IP address
|
271
|
+
resides in is defined in the host project.
|
164
272
|
|
165
273
|
- - -
|
166
274
|
"""
|
@@ -170,22 +278,67 @@ class ConnectivityTestDestinationArgs:
|
|
170
278
|
def project_id(self, value: Optional[pulumi.Input[str]]):
|
171
279
|
pulumi.set(self, "project_id", value)
|
172
280
|
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="redisCluster")
|
283
|
+
def redis_cluster(self) -> Optional[pulumi.Input[str]]:
|
284
|
+
"""
|
285
|
+
A Redis Cluster URI.
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "redis_cluster")
|
288
|
+
|
289
|
+
@redis_cluster.setter
|
290
|
+
def redis_cluster(self, value: Optional[pulumi.Input[str]]):
|
291
|
+
pulumi.set(self, "redis_cluster", value)
|
292
|
+
|
293
|
+
@property
|
294
|
+
@pulumi.getter(name="redisInstance")
|
295
|
+
def redis_instance(self) -> Optional[pulumi.Input[str]]:
|
296
|
+
"""
|
297
|
+
A Redis Instance URI.
|
298
|
+
"""
|
299
|
+
return pulumi.get(self, "redis_instance")
|
300
|
+
|
301
|
+
@redis_instance.setter
|
302
|
+
def redis_instance(self, value: Optional[pulumi.Input[str]]):
|
303
|
+
pulumi.set(self, "redis_instance", value)
|
304
|
+
|
173
305
|
|
174
306
|
if not MYPY:
|
175
307
|
class ConnectivityTestSourceArgsDict(TypedDict):
|
308
|
+
app_engine_version: NotRequired[pulumi.Input['ConnectivityTestSourceAppEngineVersionArgsDict']]
|
309
|
+
"""
|
310
|
+
An App Engine service version.
|
311
|
+
Structure is documented below.
|
312
|
+
"""
|
313
|
+
cloud_function: NotRequired[pulumi.Input['ConnectivityTestSourceCloudFunctionArgsDict']]
|
314
|
+
"""
|
315
|
+
A Cloud Function.
|
316
|
+
Structure is documented below.
|
317
|
+
"""
|
318
|
+
cloud_run_revision: NotRequired[pulumi.Input['ConnectivityTestSourceCloudRunRevisionArgsDict']]
|
319
|
+
"""
|
320
|
+
A Cloud Run revision.
|
321
|
+
Structure is documented below.
|
322
|
+
"""
|
323
|
+
cloud_sql_instance: NotRequired[pulumi.Input[str]]
|
324
|
+
"""
|
325
|
+
A Cloud SQL instance URI.
|
326
|
+
"""
|
327
|
+
gke_master_cluster: NotRequired[pulumi.Input[str]]
|
328
|
+
"""
|
329
|
+
A cluster URI for Google Kubernetes Engine cluster control plane.
|
330
|
+
"""
|
176
331
|
instance: NotRequired[pulumi.Input[str]]
|
177
332
|
"""
|
178
333
|
A Compute Engine instance URI.
|
179
334
|
"""
|
180
335
|
ip_address: NotRequired[pulumi.Input[str]]
|
181
336
|
"""
|
182
|
-
The IP address of the endpoint, which can be an external or
|
183
|
-
internal IP. An IPv6 address is only allowed when the test's
|
184
|
-
destination is a global load balancer VIP.
|
337
|
+
The IP address of the endpoint, which can be an external or internal IP.
|
185
338
|
"""
|
186
339
|
network: NotRequired[pulumi.Input[str]]
|
187
340
|
"""
|
188
|
-
A
|
341
|
+
A VPC network URI.
|
189
342
|
"""
|
190
343
|
network_type: NotRequired[pulumi.Input[str]]
|
191
344
|
"""
|
@@ -194,20 +347,20 @@ if not MYPY:
|
|
194
347
|
"""
|
195
348
|
port: NotRequired[pulumi.Input[int]]
|
196
349
|
"""
|
197
|
-
The IP protocol port of the endpoint. Only applicable when
|
198
|
-
|
350
|
+
The IP protocol port of the endpoint. Only applicable when protocol is
|
351
|
+
TCP or UDP.
|
199
352
|
"""
|
200
353
|
project_id: NotRequired[pulumi.Input[str]]
|
201
354
|
"""
|
202
|
-
Project ID where the endpoint is located.
|
203
|
-
derived from the URI if you provide a
|
204
|
-
|
205
|
-
|
206
|
-
within a
|
207
|
-
|
208
|
-
|
209
|
-
the
|
210
|
-
host project.
|
355
|
+
Project ID where the endpoint is located.
|
356
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
357
|
+
network URI.
|
358
|
+
The following are two cases where you may need to provide the project ID:
|
359
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
360
|
+
Cloud project.
|
361
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
362
|
+
from the service project. In this case, the network that the IP address
|
363
|
+
resides in is defined in the host project.
|
211
364
|
"""
|
212
365
|
elif False:
|
213
366
|
ConnectivityTestSourceArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -215,6 +368,11 @@ elif False:
|
|
215
368
|
@pulumi.input_type
|
216
369
|
class ConnectivityTestSourceArgs:
|
217
370
|
def __init__(__self__, *,
|
371
|
+
app_engine_version: Optional[pulumi.Input['ConnectivityTestSourceAppEngineVersionArgs']] = None,
|
372
|
+
cloud_function: Optional[pulumi.Input['ConnectivityTestSourceCloudFunctionArgs']] = None,
|
373
|
+
cloud_run_revision: Optional[pulumi.Input['ConnectivityTestSourceCloudRunRevisionArgs']] = None,
|
374
|
+
cloud_sql_instance: Optional[pulumi.Input[str]] = None,
|
375
|
+
gke_master_cluster: Optional[pulumi.Input[str]] = None,
|
218
376
|
instance: Optional[pulumi.Input[str]] = None,
|
219
377
|
ip_address: Optional[pulumi.Input[str]] = None,
|
220
378
|
network: Optional[pulumi.Input[str]] = None,
|
@@ -222,25 +380,41 @@ class ConnectivityTestSourceArgs:
|
|
222
380
|
port: Optional[pulumi.Input[int]] = None,
|
223
381
|
project_id: Optional[pulumi.Input[str]] = None):
|
224
382
|
"""
|
383
|
+
:param pulumi.Input['ConnectivityTestSourceAppEngineVersionArgs'] app_engine_version: An App Engine service version.
|
384
|
+
Structure is documented below.
|
385
|
+
:param pulumi.Input['ConnectivityTestSourceCloudFunctionArgs'] cloud_function: A Cloud Function.
|
386
|
+
Structure is documented below.
|
387
|
+
:param pulumi.Input['ConnectivityTestSourceCloudRunRevisionArgs'] cloud_run_revision: A Cloud Run revision.
|
388
|
+
Structure is documented below.
|
389
|
+
:param pulumi.Input[str] cloud_sql_instance: A Cloud SQL instance URI.
|
390
|
+
:param pulumi.Input[str] gke_master_cluster: A cluster URI for Google Kubernetes Engine cluster control plane.
|
225
391
|
:param pulumi.Input[str] instance: A Compute Engine instance URI.
|
226
|
-
:param pulumi.Input[str] ip_address: The IP address of the endpoint, which can be an external or
|
227
|
-
|
228
|
-
destination is a global load balancer VIP.
|
229
|
-
:param pulumi.Input[str] network: A Compute Engine network URI.
|
392
|
+
:param pulumi.Input[str] ip_address: The IP address of the endpoint, which can be an external or internal IP.
|
393
|
+
:param pulumi.Input[str] network: A VPC network URI.
|
230
394
|
:param pulumi.Input[str] network_type: Type of the network where the endpoint is located.
|
231
395
|
Possible values are: `GCP_NETWORK`, `NON_GCP_NETWORK`.
|
232
|
-
:param pulumi.Input[int] port: The IP protocol port of the endpoint. Only applicable when
|
233
|
-
|
234
|
-
:param pulumi.Input[str] project_id: Project ID where the endpoint is located.
|
235
|
-
derived from the URI if you provide a
|
236
|
-
|
237
|
-
|
238
|
-
within a
|
239
|
-
|
240
|
-
|
241
|
-
the
|
242
|
-
host project.
|
243
|
-
"""
|
396
|
+
:param pulumi.Input[int] port: The IP protocol port of the endpoint. Only applicable when protocol is
|
397
|
+
TCP or UDP.
|
398
|
+
:param pulumi.Input[str] project_id: Project ID where the endpoint is located.
|
399
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
400
|
+
network URI.
|
401
|
+
The following are two cases where you may need to provide the project ID:
|
402
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
403
|
+
Cloud project.
|
404
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
405
|
+
from the service project. In this case, the network that the IP address
|
406
|
+
resides in is defined in the host project.
|
407
|
+
"""
|
408
|
+
if app_engine_version is not None:
|
409
|
+
pulumi.set(__self__, "app_engine_version", app_engine_version)
|
410
|
+
if cloud_function is not None:
|
411
|
+
pulumi.set(__self__, "cloud_function", cloud_function)
|
412
|
+
if cloud_run_revision is not None:
|
413
|
+
pulumi.set(__self__, "cloud_run_revision", cloud_run_revision)
|
414
|
+
if cloud_sql_instance is not None:
|
415
|
+
pulumi.set(__self__, "cloud_sql_instance", cloud_sql_instance)
|
416
|
+
if gke_master_cluster is not None:
|
417
|
+
pulumi.set(__self__, "gke_master_cluster", gke_master_cluster)
|
244
418
|
if instance is not None:
|
245
419
|
pulumi.set(__self__, "instance", instance)
|
246
420
|
if ip_address is not None:
|
@@ -254,6 +428,69 @@ class ConnectivityTestSourceArgs:
|
|
254
428
|
if project_id is not None:
|
255
429
|
pulumi.set(__self__, "project_id", project_id)
|
256
430
|
|
431
|
+
@property
|
432
|
+
@pulumi.getter(name="appEngineVersion")
|
433
|
+
def app_engine_version(self) -> Optional[pulumi.Input['ConnectivityTestSourceAppEngineVersionArgs']]:
|
434
|
+
"""
|
435
|
+
An App Engine service version.
|
436
|
+
Structure is documented below.
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "app_engine_version")
|
439
|
+
|
440
|
+
@app_engine_version.setter
|
441
|
+
def app_engine_version(self, value: Optional[pulumi.Input['ConnectivityTestSourceAppEngineVersionArgs']]):
|
442
|
+
pulumi.set(self, "app_engine_version", value)
|
443
|
+
|
444
|
+
@property
|
445
|
+
@pulumi.getter(name="cloudFunction")
|
446
|
+
def cloud_function(self) -> Optional[pulumi.Input['ConnectivityTestSourceCloudFunctionArgs']]:
|
447
|
+
"""
|
448
|
+
A Cloud Function.
|
449
|
+
Structure is documented below.
|
450
|
+
"""
|
451
|
+
return pulumi.get(self, "cloud_function")
|
452
|
+
|
453
|
+
@cloud_function.setter
|
454
|
+
def cloud_function(self, value: Optional[pulumi.Input['ConnectivityTestSourceCloudFunctionArgs']]):
|
455
|
+
pulumi.set(self, "cloud_function", value)
|
456
|
+
|
457
|
+
@property
|
458
|
+
@pulumi.getter(name="cloudRunRevision")
|
459
|
+
def cloud_run_revision(self) -> Optional[pulumi.Input['ConnectivityTestSourceCloudRunRevisionArgs']]:
|
460
|
+
"""
|
461
|
+
A Cloud Run revision.
|
462
|
+
Structure is documented below.
|
463
|
+
"""
|
464
|
+
return pulumi.get(self, "cloud_run_revision")
|
465
|
+
|
466
|
+
@cloud_run_revision.setter
|
467
|
+
def cloud_run_revision(self, value: Optional[pulumi.Input['ConnectivityTestSourceCloudRunRevisionArgs']]):
|
468
|
+
pulumi.set(self, "cloud_run_revision", value)
|
469
|
+
|
470
|
+
@property
|
471
|
+
@pulumi.getter(name="cloudSqlInstance")
|
472
|
+
def cloud_sql_instance(self) -> Optional[pulumi.Input[str]]:
|
473
|
+
"""
|
474
|
+
A Cloud SQL instance URI.
|
475
|
+
"""
|
476
|
+
return pulumi.get(self, "cloud_sql_instance")
|
477
|
+
|
478
|
+
@cloud_sql_instance.setter
|
479
|
+
def cloud_sql_instance(self, value: Optional[pulumi.Input[str]]):
|
480
|
+
pulumi.set(self, "cloud_sql_instance", value)
|
481
|
+
|
482
|
+
@property
|
483
|
+
@pulumi.getter(name="gkeMasterCluster")
|
484
|
+
def gke_master_cluster(self) -> Optional[pulumi.Input[str]]:
|
485
|
+
"""
|
486
|
+
A cluster URI for Google Kubernetes Engine cluster control plane.
|
487
|
+
"""
|
488
|
+
return pulumi.get(self, "gke_master_cluster")
|
489
|
+
|
490
|
+
@gke_master_cluster.setter
|
491
|
+
def gke_master_cluster(self, value: Optional[pulumi.Input[str]]):
|
492
|
+
pulumi.set(self, "gke_master_cluster", value)
|
493
|
+
|
257
494
|
@property
|
258
495
|
@pulumi.getter
|
259
496
|
def instance(self) -> Optional[pulumi.Input[str]]:
|
@@ -270,9 +507,7 @@ class ConnectivityTestSourceArgs:
|
|
270
507
|
@pulumi.getter(name="ipAddress")
|
271
508
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
272
509
|
"""
|
273
|
-
The IP address of the endpoint, which can be an external or
|
274
|
-
internal IP. An IPv6 address is only allowed when the test's
|
275
|
-
destination is a global load balancer VIP.
|
510
|
+
The IP address of the endpoint, which can be an external or internal IP.
|
276
511
|
"""
|
277
512
|
return pulumi.get(self, "ip_address")
|
278
513
|
|
@@ -284,7 +519,7 @@ class ConnectivityTestSourceArgs:
|
|
284
519
|
@pulumi.getter
|
285
520
|
def network(self) -> Optional[pulumi.Input[str]]:
|
286
521
|
"""
|
287
|
-
A
|
522
|
+
A VPC network URI.
|
288
523
|
"""
|
289
524
|
return pulumi.get(self, "network")
|
290
525
|
|
@@ -309,8 +544,8 @@ class ConnectivityTestSourceArgs:
|
|
309
544
|
@pulumi.getter
|
310
545
|
def port(self) -> Optional[pulumi.Input[int]]:
|
311
546
|
"""
|
312
|
-
The IP protocol port of the endpoint. Only applicable when
|
313
|
-
|
547
|
+
The IP protocol port of the endpoint. Only applicable when protocol is
|
548
|
+
TCP or UDP.
|
314
549
|
"""
|
315
550
|
return pulumi.get(self, "port")
|
316
551
|
|
@@ -322,15 +557,15 @@ class ConnectivityTestSourceArgs:
|
|
322
557
|
@pulumi.getter(name="projectId")
|
323
558
|
def project_id(self) -> Optional[pulumi.Input[str]]:
|
324
559
|
"""
|
325
|
-
Project ID where the endpoint is located.
|
326
|
-
derived from the URI if you provide a
|
327
|
-
|
328
|
-
|
329
|
-
within a
|
330
|
-
|
331
|
-
|
332
|
-
the
|
333
|
-
host project.
|
560
|
+
Project ID where the endpoint is located.
|
561
|
+
The project ID can be derived from the URI if you provide a endpoint or
|
562
|
+
network URI.
|
563
|
+
The following are two cases where you may need to provide the project ID:
|
564
|
+
1. Only the IP address is specified, and the IP address is within a Google
|
565
|
+
Cloud project.
|
566
|
+
2. When you are using Shared VPC and the IP address that you provide is
|
567
|
+
from the service project. In this case, the network that the IP address
|
568
|
+
resides in is defined in the host project.
|
334
569
|
"""
|
335
570
|
return pulumi.get(self, "project_id")
|
336
571
|
|
@@ -339,3 +574,99 @@ class ConnectivityTestSourceArgs:
|
|
339
574
|
pulumi.set(self, "project_id", value)
|
340
575
|
|
341
576
|
|
577
|
+
if not MYPY:
|
578
|
+
class ConnectivityTestSourceAppEngineVersionArgsDict(TypedDict):
|
579
|
+
uri: NotRequired[pulumi.Input[str]]
|
580
|
+
"""
|
581
|
+
An App Engine service version name.
|
582
|
+
"""
|
583
|
+
elif False:
|
584
|
+
ConnectivityTestSourceAppEngineVersionArgsDict: TypeAlias = Mapping[str, Any]
|
585
|
+
|
586
|
+
@pulumi.input_type
|
587
|
+
class ConnectivityTestSourceAppEngineVersionArgs:
|
588
|
+
def __init__(__self__, *,
|
589
|
+
uri: Optional[pulumi.Input[str]] = None):
|
590
|
+
"""
|
591
|
+
:param pulumi.Input[str] uri: An App Engine service version name.
|
592
|
+
"""
|
593
|
+
if uri is not None:
|
594
|
+
pulumi.set(__self__, "uri", uri)
|
595
|
+
|
596
|
+
@property
|
597
|
+
@pulumi.getter
|
598
|
+
def uri(self) -> Optional[pulumi.Input[str]]:
|
599
|
+
"""
|
600
|
+
An App Engine service version name.
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "uri")
|
603
|
+
|
604
|
+
@uri.setter
|
605
|
+
def uri(self, value: Optional[pulumi.Input[str]]):
|
606
|
+
pulumi.set(self, "uri", value)
|
607
|
+
|
608
|
+
|
609
|
+
if not MYPY:
|
610
|
+
class ConnectivityTestSourceCloudFunctionArgsDict(TypedDict):
|
611
|
+
uri: NotRequired[pulumi.Input[str]]
|
612
|
+
"""
|
613
|
+
A Cloud Function name.
|
614
|
+
"""
|
615
|
+
elif False:
|
616
|
+
ConnectivityTestSourceCloudFunctionArgsDict: TypeAlias = Mapping[str, Any]
|
617
|
+
|
618
|
+
@pulumi.input_type
|
619
|
+
class ConnectivityTestSourceCloudFunctionArgs:
|
620
|
+
def __init__(__self__, *,
|
621
|
+
uri: Optional[pulumi.Input[str]] = None):
|
622
|
+
"""
|
623
|
+
:param pulumi.Input[str] uri: A Cloud Function name.
|
624
|
+
"""
|
625
|
+
if uri is not None:
|
626
|
+
pulumi.set(__self__, "uri", uri)
|
627
|
+
|
628
|
+
@property
|
629
|
+
@pulumi.getter
|
630
|
+
def uri(self) -> Optional[pulumi.Input[str]]:
|
631
|
+
"""
|
632
|
+
A Cloud Function name.
|
633
|
+
"""
|
634
|
+
return pulumi.get(self, "uri")
|
635
|
+
|
636
|
+
@uri.setter
|
637
|
+
def uri(self, value: Optional[pulumi.Input[str]]):
|
638
|
+
pulumi.set(self, "uri", value)
|
639
|
+
|
640
|
+
|
641
|
+
if not MYPY:
|
642
|
+
class ConnectivityTestSourceCloudRunRevisionArgsDict(TypedDict):
|
643
|
+
uri: NotRequired[pulumi.Input[str]]
|
644
|
+
"""
|
645
|
+
A Cloud Run revision URI.
|
646
|
+
"""
|
647
|
+
elif False:
|
648
|
+
ConnectivityTestSourceCloudRunRevisionArgsDict: TypeAlias = Mapping[str, Any]
|
649
|
+
|
650
|
+
@pulumi.input_type
|
651
|
+
class ConnectivityTestSourceCloudRunRevisionArgs:
|
652
|
+
def __init__(__self__, *,
|
653
|
+
uri: Optional[pulumi.Input[str]] = None):
|
654
|
+
"""
|
655
|
+
:param pulumi.Input[str] uri: A Cloud Run revision URI.
|
656
|
+
"""
|
657
|
+
if uri is not None:
|
658
|
+
pulumi.set(__self__, "uri", uri)
|
659
|
+
|
660
|
+
@property
|
661
|
+
@pulumi.getter
|
662
|
+
def uri(self) -> Optional[pulumi.Input[str]]:
|
663
|
+
"""
|
664
|
+
A Cloud Run revision URI.
|
665
|
+
"""
|
666
|
+
return pulumi.get(self, "uri")
|
667
|
+
|
668
|
+
@uri.setter
|
669
|
+
def uri(self, value: Optional[pulumi.Input[str]]):
|
670
|
+
pulumi.set(self, "uri", value)
|
671
|
+
|
672
|
+
|