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
@@ -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 == "ipAddress":
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
- internal IP. An IPv6 address is only allowed when the test's
53
- destination is a global load balancer VIP.
54
- :param str network: A Compute Engine network URI.
55
- :param int port: The IP protocol port of the endpoint. Only applicable when
56
- protocol is TCP or UDP.
57
- :param str project_id: Project ID where the endpoint is located. The Project ID can be
58
- derived from the URI if you provide a VM instance or network URI.
59
- The following are two cases where you must provide the project ID:
60
- 1. Only the IP address is specified, and the IP address is within
61
- a GCP project. 2. When you are using Shared VPC and the IP address
62
- that you provide is from the service project. In this case, the
63
- network that the IP address resides in is defined in the host
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 Compute Engine network URI.
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
- protocol is TCP or UDP.
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. The Project ID can be
119
- derived from the URI if you provide a VM instance or network URI.
120
- The following are two cases where you must provide the project ID:
121
- 1. Only the IP address is specified, and the IP address is within
122
- a GCP project. 2. When you are using Shared VPC and the IP address
123
- that you provide is from the service project. In this case, the
124
- network that the IP address resides in is defined in the host
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 == "ipAddress":
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
- internal IP. An IPv6 address is only allowed when the test's
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
- protocol is TCP or UDP.
172
- :param str project_id: Project ID where the endpoint is located. The Project ID can be
173
- derived from the URI if you provide a VM instance or network URI.
174
- The following are two cases where you must provide the project ID:
175
- 1. Only the IP address is specified, and the IP address is
176
- within a GCP project.
177
- 2. When you are using Shared VPC and the IP address
178
- that you provide is from the service project. In this case,
179
- the network that the IP address resides in is defined in 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 Compute Engine network URI.
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
- protocol is TCP or UDP.
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. The Project ID can be
244
- derived from the URI if you provide a VM instance or network URI.
245
- The following are two cases where you must provide the project ID:
246
- 1. Only the IP address is specified, and the IP address is
247
- within a GCP project.
248
- 2. When you are using Shared VPC and the IP address
249
- that you provide is from the service project. In this case,
250
- the network that the IP address resides in is defined in 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
+