pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.25.0__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.
Files changed (150) hide show
  1. pulumi_gcp/__init__.py +131 -0
  2. pulumi_gcp/_inputs.py +48 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
  4. pulumi_gcp/accesscontextmanager/outputs.py +204 -12
  5. pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
  6. pulumi_gcp/apigee/__init__.py +1 -0
  7. pulumi_gcp/apigee/_inputs.py +58 -0
  8. pulumi_gcp/apigee/dns_zone.py +491 -0
  9. pulumi_gcp/apigee/outputs.py +53 -0
  10. pulumi_gcp/bigquery/_inputs.py +158 -0
  11. pulumi_gcp/bigquery/outputs.py +115 -0
  12. pulumi_gcp/bigquery/reservation.py +189 -1
  13. pulumi_gcp/bigquery/reservation_assignment.py +7 -7
  14. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  15. pulumi_gcp/bigtable/table.py +8 -8
  16. pulumi_gcp/chronicle/data_access_label.py +16 -0
  17. pulumi_gcp/chronicle/data_access_scope.py +16 -0
  18. pulumi_gcp/chronicle/reference_list.py +16 -0
  19. pulumi_gcp/chronicle/retrohunt.py +16 -0
  20. pulumi_gcp/chronicle/rule.py +16 -0
  21. pulumi_gcp/chronicle/rule_deployment.py +16 -0
  22. pulumi_gcp/chronicle/watchlist.py +16 -0
  23. pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
  24. pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
  25. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  26. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  27. pulumi_gcp/cloudrunv2/service.py +14 -14
  28. pulumi_gcp/compute/__init__.py +2 -0
  29. pulumi_gcp/compute/_inputs.py +2627 -61
  30. pulumi_gcp/compute/backend_service.py +121 -3
  31. pulumi_gcp/compute/get_backend_service.py +15 -4
  32. pulumi_gcp/compute/get_images.py +172 -0
  33. pulumi_gcp/compute/get_instance.py +12 -1
  34. pulumi_gcp/compute/get_region_backend_service.py +482 -0
  35. pulumi_gcp/compute/get_resource_policy.py +15 -4
  36. pulumi_gcp/compute/get_router.py +12 -1
  37. pulumi_gcp/compute/get_subnetwork.py +43 -1
  38. pulumi_gcp/compute/image.py +54 -0
  39. pulumi_gcp/compute/instance.py +47 -0
  40. pulumi_gcp/compute/instance_from_machine_image.py +94 -0
  41. pulumi_gcp/compute/instance_from_template.py +47 -0
  42. pulumi_gcp/compute/interconnect.py +14 -7
  43. pulumi_gcp/compute/outputs.py +4522 -391
  44. pulumi_gcp/compute/public_delegated_prefix.py +69 -15
  45. pulumi_gcp/compute/resource_policy.py +169 -3
  46. pulumi_gcp/compute/router.py +54 -0
  47. pulumi_gcp/compute/router_route_policy.py +16 -0
  48. pulumi_gcp/compute/subnetwork.py +35 -5
  49. pulumi_gcp/config/__init__.pyi +8 -0
  50. pulumi_gcp/config/outputs.py +27 -0
  51. pulumi_gcp/config/vars.py +16 -0
  52. pulumi_gcp/container/_inputs.py +274 -13
  53. pulumi_gcp/container/cluster.py +101 -0
  54. pulumi_gcp/container/get_cluster.py +23 -1
  55. pulumi_gcp/container/get_registry_image.py +4 -0
  56. pulumi_gcp/container/get_registry_repository.py +4 -0
  57. pulumi_gcp/container/outputs.py +305 -10
  58. pulumi_gcp/container/registry.py +4 -0
  59. pulumi_gcp/datafusion/instance.py +68 -0
  60. pulumi_gcp/dataproc/__init__.py +8 -0
  61. pulumi_gcp/dataproc/_inputs.py +219 -0
  62. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
  63. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
  64. pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
  65. pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
  66. pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
  67. pulumi_gcp/dataproc/metastore_federation.py +38 -2
  68. pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
  69. pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
  70. pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
  71. pulumi_gcp/dataproc/outputs.py +139 -0
  72. pulumi_gcp/datastream/_inputs.py +311 -94
  73. pulumi_gcp/datastream/connection_profile.py +40 -0
  74. pulumi_gcp/datastream/outputs.py +244 -51
  75. pulumi_gcp/datastream/stream.py +216 -0
  76. pulumi_gcp/discoveryengine/__init__.py +1 -0
  77. pulumi_gcp/discoveryengine/sitemap.py +504 -0
  78. pulumi_gcp/eventarc/__init__.py +1 -0
  79. pulumi_gcp/eventarc/enrollment.py +980 -0
  80. pulumi_gcp/firebase/__init__.py +1 -0
  81. pulumi_gcp/firebase/_inputs.py +484 -0
  82. pulumi_gcp/firebase/app_hosting_build.py +1232 -0
  83. pulumi_gcp/firebase/outputs.py +333 -0
  84. pulumi_gcp/identityplatform/_inputs.py +91 -0
  85. pulumi_gcp/identityplatform/outputs.py +73 -0
  86. pulumi_gcp/identityplatform/tenant.py +56 -0
  87. pulumi_gcp/lustre/__init__.py +8 -0
  88. pulumi_gcp/lustre/instance.py +983 -0
  89. pulumi_gcp/managedkafka/cluster.py +2 -2
  90. pulumi_gcp/memorystore/__init__.py +1 -0
  91. pulumi_gcp/memorystore/_inputs.py +1252 -7
  92. pulumi_gcp/memorystore/get_instance.py +45 -1
  93. pulumi_gcp/memorystore/instance.py +481 -30
  94. pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
  95. pulumi_gcp/memorystore/outputs.py +1440 -15
  96. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  97. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  98. pulumi_gcp/networkmanagement/outputs.py +280 -61
  99. pulumi_gcp/networksecurity/_inputs.py +891 -26
  100. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  101. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  102. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  103. pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
  104. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
  105. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
  106. pulumi_gcp/networksecurity/outputs.py +531 -1
  107. pulumi_gcp/networksecurity/security_profile.py +8 -0
  108. pulumi_gcp/organizations/__init__.py +2 -0
  109. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  110. pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
  111. pulumi_gcp/organizations/outputs.py +96 -0
  112. pulumi_gcp/osconfig/__init__.py +1 -0
  113. pulumi_gcp/osconfig/_inputs.py +5413 -0
  114. pulumi_gcp/osconfig/outputs.py +3962 -0
  115. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  116. pulumi_gcp/parametermanager/get_parameter.py +16 -1
  117. pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
  118. pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
  119. pulumi_gcp/parametermanager/get_parameters.py +4 -0
  120. pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
  121. pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
  122. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
  123. pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
  124. pulumi_gcp/parametermanager/outputs.py +11 -0
  125. pulumi_gcp/parametermanager/parameter.py +88 -0
  126. pulumi_gcp/parametermanager/parameter_version.py +74 -0
  127. pulumi_gcp/parametermanager/regional_parameter.py +12 -0
  128. pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
  129. pulumi_gcp/provider.py +75 -0
  130. pulumi_gcp/pulumi-plugin.json +1 -1
  131. pulumi_gcp/redis/_inputs.py +136 -0
  132. pulumi_gcp/redis/cluster.py +54 -0
  133. pulumi_gcp/redis/outputs.py +114 -0
  134. pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
  135. pulumi_gcp/storage/__init__.py +6 -0
  136. pulumi_gcp/storage/_inputs.py +1322 -0
  137. pulumi_gcp/storage/bucket.py +7 -7
  138. pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
  139. pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
  140. pulumi_gcp/storage/control_project_intelligence_config.py +408 -0
  141. pulumi_gcp/storage/get_bucket_object_content.py +16 -1
  142. pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
  143. pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
  144. pulumi_gcp/storage/get_control_project_intelligence_config.py +160 -0
  145. pulumi_gcp/storage/outputs.py +1553 -17
  146. pulumi_gcp/workbench/instance.py +14 -2
  147. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/METADATA +1 -1
  148. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/RECORD +150 -124
  149. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.dist-info}/WHEEL +0 -0
  150. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0.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 Compute Engine network URI.
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
- protocol is TCP or UDP.
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. The Project ID can be
50
- derived from the URI if you provide a VM instance or network URI.
51
- The following are two cases where you must provide the project ID:
52
- 1. Only the IP address is specified, and the IP address is within
53
- a GCP project. 2. When you are using Shared VPC and the IP address
54
- that you provide is from the service project. In this case, the
55
- network that the IP address resides in is defined in the host
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
- internal IP. An IPv6 address is only allowed when the test's
75
- destination is a global load balancer VIP.
76
- :param pulumi.Input[str] network: A Compute Engine network URI.
77
- :param pulumi.Input[int] port: The IP protocol port of the endpoint. Only applicable when
78
- protocol is TCP or UDP.
79
- :param pulumi.Input[str] project_id: Project ID where the endpoint is located. The Project ID can be
80
- derived from the URI if you provide a VM instance or network URI.
81
- The following are two cases where you must provide the project ID:
82
- 1. Only the IP address is specified, and the IP address is within
83
- a GCP project. 2. When you are using Shared VPC and the IP address
84
- that you provide is from the service project. In this case, the
85
- network that the IP address resides in is defined in the host
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 Compute Engine network URI.
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
- protocol is TCP or UDP.
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. The Project ID can be
157
- derived from the URI if you provide a VM instance or network URI.
158
- The following are two cases where you must provide the project ID:
159
- 1. Only the IP address is specified, and the IP address is within
160
- a GCP project. 2. When you are using Shared VPC and the IP address
161
- that you provide is from the service project. In this case, the
162
- network that the IP address resides in is defined in the host
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 Compute Engine network URI.
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
- protocol is TCP or UDP.
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. The Project ID can be
203
- derived from the URI if you provide a VM instance or network URI.
204
- The following are two cases where you must provide the project ID:
205
- 1. Only the IP address is specified, and the IP address is
206
- within a GCP project.
207
- 2. When you are using Shared VPC and the IP address
208
- that you provide is from the service project. In this case,
209
- the network that the IP address resides in is defined in 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
- internal IP. An IPv6 address is only allowed when the test's
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
- protocol is TCP or UDP.
234
- :param pulumi.Input[str] project_id: Project ID where the endpoint is located. The Project ID can be
235
- derived from the URI if you provide a VM instance or network URI.
236
- The following are two cases where you must provide the project ID:
237
- 1. Only the IP address is specified, and the IP address is
238
- within a GCP project.
239
- 2. When you are using Shared VPC and the IP address
240
- that you provide is from the service project. In this case,
241
- the network that the IP address resides in is defined in 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 Compute Engine network URI.
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
- protocol is TCP or UDP.
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. The Project ID can be
326
- derived from the URI if you provide a VM instance or network URI.
327
- The following are two cases where you must provide the project ID:
328
- 1. Only the IP address is specified, and the IP address is
329
- within a GCP project.
330
- 2. When you are using Shared VPC and the IP address
331
- that you provide is from the service project. In this case,
332
- the network that the IP address resides in is defined in 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
+