pulumi-gcp 8.14.0a1736853524__py3-none-any.whl → 8.14.0a1736952890__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 (62) hide show
  1. pulumi_gcp/__init__.py +32 -0
  2. pulumi_gcp/applicationintegration/_inputs.py +3 -3
  3. pulumi_gcp/applicationintegration/outputs.py +2 -2
  4. pulumi_gcp/beyondcorp/__init__.py +1 -0
  5. pulumi_gcp/beyondcorp/_inputs.py +93 -0
  6. pulumi_gcp/beyondcorp/outputs.py +89 -0
  7. pulumi_gcp/beyondcorp/security_gateway.py +670 -0
  8. pulumi_gcp/blockchainnodeengine/_inputs.py +3 -3
  9. pulumi_gcp/blockchainnodeengine/outputs.py +2 -2
  10. pulumi_gcp/certificateauthority/_inputs.py +6 -6
  11. pulumi_gcp/certificateauthority/outputs.py +4 -4
  12. pulumi_gcp/certificatemanager/_inputs.py +3 -3
  13. pulumi_gcp/certificatemanager/outputs.py +2 -2
  14. pulumi_gcp/chronicle/__init__.py +2 -0
  15. pulumi_gcp/chronicle/_inputs.py +388 -0
  16. pulumi_gcp/chronicle/data_access_label.py +690 -0
  17. pulumi_gcp/chronicle/data_access_scope.py +1094 -0
  18. pulumi_gcp/chronicle/outputs.py +322 -0
  19. pulumi_gcp/chronicle/watchlist.py +68 -45
  20. pulumi_gcp/cloudbuild/_inputs.py +3 -3
  21. pulumi_gcp/cloudbuild/outputs.py +2 -2
  22. pulumi_gcp/cloudquota/__init__.py +1 -0
  23. pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +336 -0
  24. pulumi_gcp/compute/_inputs.py +33 -33
  25. pulumi_gcp/compute/instance_group_manager.py +9 -9
  26. pulumi_gcp/compute/outputs.py +22 -22
  27. pulumi_gcp/compute/region_instance_group_manager.py +9 -9
  28. pulumi_gcp/datacatalog/_inputs.py +3 -3
  29. pulumi_gcp/datacatalog/outputs.py +2 -2
  30. pulumi_gcp/developerconnect/_inputs.py +910 -42
  31. pulumi_gcp/developerconnect/connection.py +614 -86
  32. pulumi_gcp/developerconnect/git_repository_link.py +4 -0
  33. pulumi_gcp/developerconnect/outputs.py +717 -28
  34. pulumi_gcp/dns/_inputs.py +124 -20
  35. pulumi_gcp/dns/outputs.py +90 -16
  36. pulumi_gcp/dns/record_set.py +82 -0
  37. pulumi_gcp/edgecontainer/_inputs.py +3 -3
  38. pulumi_gcp/edgecontainer/outputs.py +2 -2
  39. pulumi_gcp/gkeonprem/_inputs.py +15 -15
  40. pulumi_gcp/gkeonprem/outputs.py +10 -10
  41. pulumi_gcp/gkeonprem/v_mware_cluster.py +1 -1
  42. pulumi_gcp/iap/_inputs.py +9 -3
  43. pulumi_gcp/iap/outputs.py +6 -2
  44. pulumi_gcp/iap/settings.py +63 -63
  45. pulumi_gcp/identityplatform/_inputs.py +9 -9
  46. pulumi_gcp/identityplatform/outputs.py +6 -6
  47. pulumi_gcp/integrationconnectors/_inputs.py +6 -6
  48. pulumi_gcp/integrationconnectors/outputs.py +4 -4
  49. pulumi_gcp/monitoring/_inputs.py +3 -3
  50. pulumi_gcp/monitoring/outputs.py +2 -2
  51. pulumi_gcp/oracledatabase/_inputs.py +3 -3
  52. pulumi_gcp/oracledatabase/outputs.py +2 -2
  53. pulumi_gcp/pulumi-plugin.json +1 -1
  54. pulumi_gcp/sql/_inputs.py +20 -0
  55. pulumi_gcp/sql/database_instance.py +2 -2
  56. pulumi_gcp/sql/outputs.py +36 -0
  57. pulumi_gcp/transcoder/_inputs.py +6 -6
  58. pulumi_gcp/transcoder/outputs.py +4 -4
  59. {pulumi_gcp-8.14.0a1736853524.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/METADATA +1 -1
  60. {pulumi_gcp-8.14.0a1736853524.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/RECORD +62 -58
  61. {pulumi_gcp-8.14.0a1736853524.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/WHEEL +0 -0
  62. {pulumi_gcp-8.14.0a1736853524.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py CHANGED
@@ -1129,6 +1129,14 @@ _utilities.register(
1129
1129
  "gcp:beyondcorp/appGateway:AppGateway": "AppGateway"
1130
1130
  }
1131
1131
  },
1132
+ {
1133
+ "pkg": "gcp",
1134
+ "mod": "beyondcorp/securityGateway",
1135
+ "fqn": "pulumi_gcp.beyondcorp",
1136
+ "classes": {
1137
+ "gcp:beyondcorp/securityGateway:SecurityGateway": "SecurityGateway"
1138
+ }
1139
+ },
1132
1140
  {
1133
1141
  "pkg": "gcp",
1134
1142
  "mod": "biglake/catalog",
@@ -1721,6 +1729,22 @@ _utilities.register(
1721
1729
  "gcp:certificatemanager/trustConfig:TrustConfig": "TrustConfig"
1722
1730
  }
1723
1731
  },
1732
+ {
1733
+ "pkg": "gcp",
1734
+ "mod": "chronicle/dataAccessLabel",
1735
+ "fqn": "pulumi_gcp.chronicle",
1736
+ "classes": {
1737
+ "gcp:chronicle/dataAccessLabel:DataAccessLabel": "DataAccessLabel"
1738
+ }
1739
+ },
1740
+ {
1741
+ "pkg": "gcp",
1742
+ "mod": "chronicle/dataAccessScope",
1743
+ "fqn": "pulumi_gcp.chronicle",
1744
+ "classes": {
1745
+ "gcp:chronicle/dataAccessScope:DataAccessScope": "DataAccessScope"
1746
+ }
1747
+ },
1724
1748
  {
1725
1749
  "pkg": "gcp",
1726
1750
  "mod": "chronicle/watchlist",
@@ -2017,6 +2041,14 @@ _utilities.register(
2017
2041
  "gcp:cloudids/endpoint:Endpoint": "Endpoint"
2018
2042
  }
2019
2043
  },
2044
+ {
2045
+ "pkg": "gcp",
2046
+ "mod": "cloudquota/sQuotaAdjusterSettings",
2047
+ "fqn": "pulumi_gcp.cloudquota",
2048
+ "classes": {
2049
+ "gcp:cloudquota/sQuotaAdjusterSettings:SQuotaAdjusterSettings": "SQuotaAdjusterSettings"
2050
+ }
2051
+ },
2020
2052
  {
2021
2053
  "pkg": "gcp",
2022
2054
  "mod": "cloudquota/sQuotaPreference",
@@ -1093,7 +1093,7 @@ if not MYPY:
1093
1093
  """
1094
1094
  Password to be used.
1095
1095
 
1096
- <a name="nested_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
1096
+ <a name="nested_decrypted_credential_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
1097
1097
  """
1098
1098
  username: NotRequired[pulumi.Input[str]]
1099
1099
  """
@@ -1110,7 +1110,7 @@ class AuthConfigDecryptedCredentialUsernameAndPasswordArgs:
1110
1110
  """
1111
1111
  :param pulumi.Input[str] password: Password to be used.
1112
1112
 
1113
- <a name="nested_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
1113
+ <a name="nested_decrypted_credential_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
1114
1114
  :param pulumi.Input[str] username: Username to be used.
1115
1115
  """
1116
1116
  if password is not None:
@@ -1124,7 +1124,7 @@ class AuthConfigDecryptedCredentialUsernameAndPasswordArgs:
1124
1124
  """
1125
1125
  Password to be used.
1126
1126
 
1127
- <a name="nested_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
1127
+ <a name="nested_decrypted_credential_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
1128
1128
  """
1129
1129
  return pulumi.get(self, "password")
1130
1130
 
@@ -882,7 +882,7 @@ class AuthConfigDecryptedCredentialUsernameAndPassword(dict):
882
882
  """
883
883
  :param str password: Password to be used.
884
884
 
885
- <a name="nested_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
885
+ <a name="nested_decrypted_credential_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
886
886
  :param str username: Username to be used.
887
887
  """
888
888
  if password is not None:
@@ -896,7 +896,7 @@ class AuthConfigDecryptedCredentialUsernameAndPassword(dict):
896
896
  """
897
897
  Password to be used.
898
898
 
899
- <a name="nested_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
899
+ <a name="nested_decrypted_credential_oauth2_authorization_code"></a>The `oauth2_authorization_code` block supports:
900
900
  """
901
901
  return pulumi.get(self, "password")
902
902
 
@@ -11,5 +11,6 @@ from .app_gateway import *
11
11
  from .get_app_connection import *
12
12
  from .get_app_connector import *
13
13
  from .get_app_gateway import *
14
+ from .security_gateway import *
14
15
  from ._inputs import *
15
16
  from . import outputs
@@ -25,6 +25,10 @@ __all__ = [
25
25
  'AppConnectorPrincipalInfoServiceAccountArgsDict',
26
26
  'AppGatewayAllocatedConnectionArgs',
27
27
  'AppGatewayAllocatedConnectionArgsDict',
28
+ 'SecurityGatewayHubArgs',
29
+ 'SecurityGatewayHubArgsDict',
30
+ 'SecurityGatewayHubInternetGatewayArgs',
31
+ 'SecurityGatewayHubInternetGatewayArgsDict',
28
32
  ]
29
33
 
30
34
  MYPY = False
@@ -311,3 +315,92 @@ class AppGatewayAllocatedConnectionArgs:
311
315
  pulumi.set(self, "psc_uri", value)
312
316
 
313
317
 
318
+ if not MYPY:
319
+ class SecurityGatewayHubArgsDict(TypedDict):
320
+ region: pulumi.Input[str]
321
+ """
322
+ The identifier for this object. Format specified above.
323
+ """
324
+ internet_gateway: NotRequired[pulumi.Input['SecurityGatewayHubInternetGatewayArgsDict']]
325
+ """
326
+ Internet Gateway configuration.
327
+ Structure is documented below.
328
+ """
329
+ elif False:
330
+ SecurityGatewayHubArgsDict: TypeAlias = Mapping[str, Any]
331
+
332
+ @pulumi.input_type
333
+ class SecurityGatewayHubArgs:
334
+ def __init__(__self__, *,
335
+ region: pulumi.Input[str],
336
+ internet_gateway: Optional[pulumi.Input['SecurityGatewayHubInternetGatewayArgs']] = None):
337
+ """
338
+ :param pulumi.Input[str] region: The identifier for this object. Format specified above.
339
+ :param pulumi.Input['SecurityGatewayHubInternetGatewayArgs'] internet_gateway: Internet Gateway configuration.
340
+ Structure is documented below.
341
+ """
342
+ pulumi.set(__self__, "region", region)
343
+ if internet_gateway is not None:
344
+ pulumi.set(__self__, "internet_gateway", internet_gateway)
345
+
346
+ @property
347
+ @pulumi.getter
348
+ def region(self) -> pulumi.Input[str]:
349
+ """
350
+ The identifier for this object. Format specified above.
351
+ """
352
+ return pulumi.get(self, "region")
353
+
354
+ @region.setter
355
+ def region(self, value: pulumi.Input[str]):
356
+ pulumi.set(self, "region", value)
357
+
358
+ @property
359
+ @pulumi.getter(name="internetGateway")
360
+ def internet_gateway(self) -> Optional[pulumi.Input['SecurityGatewayHubInternetGatewayArgs']]:
361
+ """
362
+ Internet Gateway configuration.
363
+ Structure is documented below.
364
+ """
365
+ return pulumi.get(self, "internet_gateway")
366
+
367
+ @internet_gateway.setter
368
+ def internet_gateway(self, value: Optional[pulumi.Input['SecurityGatewayHubInternetGatewayArgs']]):
369
+ pulumi.set(self, "internet_gateway", value)
370
+
371
+
372
+ if not MYPY:
373
+ class SecurityGatewayHubInternetGatewayArgsDict(TypedDict):
374
+ assigned_ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
375
+ """
376
+ (Output)
377
+ Output only. List of IP addresses assigned to the Cloud NAT.
378
+ """
379
+ elif False:
380
+ SecurityGatewayHubInternetGatewayArgsDict: TypeAlias = Mapping[str, Any]
381
+
382
+ @pulumi.input_type
383
+ class SecurityGatewayHubInternetGatewayArgs:
384
+ def __init__(__self__, *,
385
+ assigned_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
386
+ """
387
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] assigned_ips: (Output)
388
+ Output only. List of IP addresses assigned to the Cloud NAT.
389
+ """
390
+ if assigned_ips is not None:
391
+ pulumi.set(__self__, "assigned_ips", assigned_ips)
392
+
393
+ @property
394
+ @pulumi.getter(name="assignedIps")
395
+ def assigned_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
396
+ """
397
+ (Output)
398
+ Output only. List of IP addresses assigned to the Cloud NAT.
399
+ """
400
+ return pulumi.get(self, "assigned_ips")
401
+
402
+ @assigned_ips.setter
403
+ def assigned_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
404
+ pulumi.set(self, "assigned_ips", value)
405
+
406
+
@@ -21,6 +21,8 @@ __all__ = [
21
21
  'AppConnectorPrincipalInfo',
22
22
  'AppConnectorPrincipalInfoServiceAccount',
23
23
  'AppGatewayAllocatedConnection',
24
+ 'SecurityGatewayHub',
25
+ 'SecurityGatewayHubInternetGateway',
24
26
  'GetAppConnectionApplicationEndpointResult',
25
27
  'GetAppConnectionGatewayResult',
26
28
  'GetAppConnectorPrincipalInfoResult',
@@ -251,6 +253,93 @@ class AppGatewayAllocatedConnection(dict):
251
253
  return pulumi.get(self, "psc_uri")
252
254
 
253
255
 
256
+ @pulumi.output_type
257
+ class SecurityGatewayHub(dict):
258
+ @staticmethod
259
+ def __key_warning(key: str):
260
+ suggest = None
261
+ if key == "internetGateway":
262
+ suggest = "internet_gateway"
263
+
264
+ if suggest:
265
+ pulumi.log.warn(f"Key '{key}' not found in SecurityGatewayHub. Access the value via the '{suggest}' property getter instead.")
266
+
267
+ def __getitem__(self, key: str) -> Any:
268
+ SecurityGatewayHub.__key_warning(key)
269
+ return super().__getitem__(key)
270
+
271
+ def get(self, key: str, default = None) -> Any:
272
+ SecurityGatewayHub.__key_warning(key)
273
+ return super().get(key, default)
274
+
275
+ def __init__(__self__, *,
276
+ region: str,
277
+ internet_gateway: Optional['outputs.SecurityGatewayHubInternetGateway'] = None):
278
+ """
279
+ :param str region: The identifier for this object. Format specified above.
280
+ :param 'SecurityGatewayHubInternetGatewayArgs' internet_gateway: Internet Gateway configuration.
281
+ Structure is documented below.
282
+ """
283
+ pulumi.set(__self__, "region", region)
284
+ if internet_gateway is not None:
285
+ pulumi.set(__self__, "internet_gateway", internet_gateway)
286
+
287
+ @property
288
+ @pulumi.getter
289
+ def region(self) -> str:
290
+ """
291
+ The identifier for this object. Format specified above.
292
+ """
293
+ return pulumi.get(self, "region")
294
+
295
+ @property
296
+ @pulumi.getter(name="internetGateway")
297
+ def internet_gateway(self) -> Optional['outputs.SecurityGatewayHubInternetGateway']:
298
+ """
299
+ Internet Gateway configuration.
300
+ Structure is documented below.
301
+ """
302
+ return pulumi.get(self, "internet_gateway")
303
+
304
+
305
+ @pulumi.output_type
306
+ class SecurityGatewayHubInternetGateway(dict):
307
+ @staticmethod
308
+ def __key_warning(key: str):
309
+ suggest = None
310
+ if key == "assignedIps":
311
+ suggest = "assigned_ips"
312
+
313
+ if suggest:
314
+ pulumi.log.warn(f"Key '{key}' not found in SecurityGatewayHubInternetGateway. Access the value via the '{suggest}' property getter instead.")
315
+
316
+ def __getitem__(self, key: str) -> Any:
317
+ SecurityGatewayHubInternetGateway.__key_warning(key)
318
+ return super().__getitem__(key)
319
+
320
+ def get(self, key: str, default = None) -> Any:
321
+ SecurityGatewayHubInternetGateway.__key_warning(key)
322
+ return super().get(key, default)
323
+
324
+ def __init__(__self__, *,
325
+ assigned_ips: Optional[Sequence[str]] = None):
326
+ """
327
+ :param Sequence[str] assigned_ips: (Output)
328
+ Output only. List of IP addresses assigned to the Cloud NAT.
329
+ """
330
+ if assigned_ips is not None:
331
+ pulumi.set(__self__, "assigned_ips", assigned_ips)
332
+
333
+ @property
334
+ @pulumi.getter(name="assignedIps")
335
+ def assigned_ips(self) -> Optional[Sequence[str]]:
336
+ """
337
+ (Output)
338
+ Output only. List of IP addresses assigned to the Cloud NAT.
339
+ """
340
+ return pulumi.get(self, "assigned_ips")
341
+
342
+
254
343
  @pulumi.output_type
255
344
  class GetAppConnectionApplicationEndpointResult(dict):
256
345
  def __init__(__self__, *,