pulumi-gcp 8.9.0a1731366299__py3-none-any.whl → 8.9.0a1731432418__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 (114) hide show
  1. pulumi_gcp/__init__.py +64 -0
  2. pulumi_gcp/activedirectory/domain.py +24 -0
  3. pulumi_gcp/apigee/__init__.py +1 -0
  4. pulumi_gcp/apigee/_inputs.py +74 -0
  5. pulumi_gcp/apigee/api.py +456 -0
  6. pulumi_gcp/apigee/outputs.py +65 -0
  7. pulumi_gcp/applicationintegration/auth_config.py +24 -0
  8. pulumi_gcp/backupdisasterrecovery/__init__.py +4 -0
  9. pulumi_gcp/backupdisasterrecovery/_inputs.py +533 -0
  10. pulumi_gcp/backupdisasterrecovery/backup_plan.py +653 -0
  11. pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +766 -0
  12. pulumi_gcp/backupdisasterrecovery/backup_vault.py +146 -6
  13. pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +204 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +243 -0
  15. pulumi_gcp/backupdisasterrecovery/outputs.py +702 -0
  16. pulumi_gcp/bigquery/data_transfer_config.py +24 -0
  17. pulumi_gcp/cloudrunv2/_inputs.py +46 -0
  18. pulumi_gcp/cloudrunv2/job.py +0 -2
  19. pulumi_gcp/cloudrunv2/outputs.py +60 -2
  20. pulumi_gcp/cloudrunv2/service.py +0 -2
  21. pulumi_gcp/compute/__init__.py +1 -0
  22. pulumi_gcp/compute/_inputs.py +2163 -256
  23. pulumi_gcp/compute/disk.py +7 -7
  24. pulumi_gcp/compute/firewall_policy_rule.py +108 -54
  25. pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
  26. pulumi_gcp/compute/health_check.py +42 -42
  27. pulumi_gcp/compute/network_firewall_policy_rule.py +4 -4
  28. pulumi_gcp/compute/network_firewall_policy_with_rules.py +10 -10
  29. pulumi_gcp/compute/node_template.py +95 -0
  30. pulumi_gcp/compute/outputs.py +1639 -213
  31. pulumi_gcp/compute/region_disk.py +7 -7
  32. pulumi_gcp/compute/region_health_check.py +42 -42
  33. pulumi_gcp/compute/region_instance_group_manager.py +54 -14
  34. pulumi_gcp/compute/region_network_firewall_policy_rule.py +4 -4
  35. pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +10 -10
  36. pulumi_gcp/compute/region_resize_request.py +772 -0
  37. pulumi_gcp/compute/region_security_policy.py +120 -0
  38. pulumi_gcp/compute/region_security_policy_rule.py +6 -6
  39. pulumi_gcp/compute/router_peer.py +56 -35
  40. pulumi_gcp/compute/security_scan_config.py +8 -8
  41. pulumi_gcp/config/__init__.pyi +4 -0
  42. pulumi_gcp/config/vars.py +8 -0
  43. pulumi_gcp/container/_inputs.py +345 -10
  44. pulumi_gcp/container/cluster.py +101 -0
  45. pulumi_gcp/container/get_cluster.py +23 -1
  46. pulumi_gcp/container/outputs.py +456 -8
  47. pulumi_gcp/dataloss/prevention_discovery_config.py +7 -7
  48. pulumi_gcp/dataproc/__init__.py +2 -0
  49. pulumi_gcp/dataproc/_inputs.py +101 -0
  50. pulumi_gcp/dataproc/gdc_application_environment.py +931 -0
  51. pulumi_gcp/dataproc/gdc_service_instance.py +1022 -0
  52. pulumi_gcp/dataproc/outputs.py +94 -0
  53. pulumi_gcp/edgecontainer/vpn_connection.py +4 -4
  54. pulumi_gcp/firebase/android_app.py +2 -2
  55. pulumi_gcp/firebase/apple_app.py +2 -2
  56. pulumi_gcp/firebase/web_app.py +2 -2
  57. pulumi_gcp/firestore/index.py +44 -0
  58. pulumi_gcp/gkeonprem/_inputs.py +15 -15
  59. pulumi_gcp/gkeonprem/outputs.py +10 -10
  60. pulumi_gcp/healthcare/dataset.py +7 -7
  61. pulumi_gcp/healthcare/dicom_store.py +7 -7
  62. pulumi_gcp/healthcare/fhir_store.py +7 -7
  63. pulumi_gcp/healthcare/hl7_store.py +14 -14
  64. pulumi_gcp/iam/__init__.py +1 -0
  65. pulumi_gcp/iam/_inputs.py +161 -0
  66. pulumi_gcp/iam/outputs.py +114 -0
  67. pulumi_gcp/iam/principal_access_boundary_policy.py +679 -0
  68. pulumi_gcp/logging/metric.py +2 -2
  69. pulumi_gcp/looker/_inputs.py +6 -0
  70. pulumi_gcp/looker/instance.py +169 -321
  71. pulumi_gcp/looker/outputs.py +4 -0
  72. pulumi_gcp/memorystore/instance.py +4 -0
  73. pulumi_gcp/monitoring/alert_policy.py +24 -0
  74. pulumi_gcp/monitoring/custom_service.py +24 -0
  75. pulumi_gcp/monitoring/group.py +24 -0
  76. pulumi_gcp/monitoring/metric_descriptor.py +24 -0
  77. pulumi_gcp/monitoring/slo.py +24 -0
  78. pulumi_gcp/monitoring/uptime_check_config.py +24 -0
  79. pulumi_gcp/networkmanagement/__init__.py +1 -0
  80. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +1358 -0
  81. pulumi_gcp/osconfig/patch_deployment.py +8 -8
  82. pulumi_gcp/provider.py +40 -0
  83. pulumi_gcp/pulumi-plugin.json +1 -1
  84. pulumi_gcp/redis/_inputs.py +3 -3
  85. pulumi_gcp/redis/outputs.py +2 -2
  86. pulumi_gcp/securitycenter/notification_config.py +4 -16
  87. pulumi_gcp/securitycenter/project_notification_config.py +0 -24
  88. pulumi_gcp/securitycenter/v2_organization_notification_config.py +4 -16
  89. pulumi_gcp/spanner/__init__.py +1 -0
  90. pulumi_gcp/spanner/_inputs.py +9 -9
  91. pulumi_gcp/spanner/get_database.py +229 -0
  92. pulumi_gcp/spanner/get_instance.py +12 -1
  93. pulumi_gcp/spanner/instance.py +70 -0
  94. pulumi_gcp/spanner/outputs.py +46 -12
  95. pulumi_gcp/sql/_inputs.py +26 -0
  96. pulumi_gcp/sql/database_instance.py +124 -11
  97. pulumi_gcp/sql/get_database_instance.py +12 -1
  98. pulumi_gcp/sql/outputs.py +51 -0
  99. pulumi_gcp/storage/_inputs.py +3 -3
  100. pulumi_gcp/storage/outputs.py +2 -2
  101. pulumi_gcp/tags/tag_binding.py +4 -4
  102. pulumi_gcp/tags/tag_value.py +2 -2
  103. pulumi_gcp/transcoder/job.py +24 -0
  104. pulumi_gcp/vertex/_inputs.py +184 -0
  105. pulumi_gcp/vertex/ai_endpoint.py +394 -8
  106. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  107. pulumi_gcp/vertex/outputs.py +166 -0
  108. pulumi_gcp/workbench/instance.py +21 -7
  109. pulumi_gcp/workflows/workflow.py +36 -0
  110. pulumi_gcp/workstations/workstation_config.py +8 -8
  111. {pulumi_gcp-8.9.0a1731366299.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/METADATA +1 -1
  112. {pulumi_gcp-8.9.0a1731366299.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/RECORD +114 -103
  113. {pulumi_gcp-8.9.0a1731366299.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/WHEEL +0 -0
  114. {pulumi_gcp-8.9.0a1731366299.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/top_level.txt +0 -0
@@ -668,20 +668,20 @@ class PatchDeployment(pulumi.CustomResource):
668
668
 
669
669
  PatchDeployment can be imported using any of these accepted formats:
670
670
 
671
- * `projects/{{project}}/patchDeployments/{{name}}`
672
-
673
671
  * `{{project}}/{{name}}`
674
672
 
673
+ * `{{project}} {{name}}`
674
+
675
675
  * `{{name}}`
676
676
 
677
677
  When using the `pulumi import` command, PatchDeployment can be imported using one of the formats above. For example:
678
678
 
679
679
  ```sh
680
- $ pulumi import gcp:osconfig/patchDeployment:PatchDeployment default projects/{{project}}/patchDeployments/{{name}}
680
+ $ pulumi import gcp:osconfig/patchDeployment:PatchDeployment default {{project}}/{{name}}
681
681
  ```
682
682
 
683
683
  ```sh
684
- $ pulumi import gcp:osconfig/patchDeployment:PatchDeployment default {{project}}/{{name}}
684
+ $ pulumi import gcp:osconfig/patchDeployment:PatchDeployment default "{{project}} {{name}}"
685
685
  ```
686
686
 
687
687
  ```sh
@@ -953,20 +953,20 @@ class PatchDeployment(pulumi.CustomResource):
953
953
 
954
954
  PatchDeployment can be imported using any of these accepted formats:
955
955
 
956
- * `projects/{{project}}/patchDeployments/{{name}}`
957
-
958
956
  * `{{project}}/{{name}}`
959
957
 
958
+ * `{{project}} {{name}}`
959
+
960
960
  * `{{name}}`
961
961
 
962
962
  When using the `pulumi import` command, PatchDeployment can be imported using one of the formats above. For example:
963
963
 
964
964
  ```sh
965
- $ pulumi import gcp:osconfig/patchDeployment:PatchDeployment default projects/{{project}}/patchDeployments/{{name}}
965
+ $ pulumi import gcp:osconfig/patchDeployment:PatchDeployment default {{project}}/{{name}}
966
966
  ```
967
967
 
968
968
  ```sh
969
- $ pulumi import gcp:osconfig/patchDeployment:PatchDeployment default {{project}}/{{name}}
969
+ $ pulumi import gcp:osconfig/patchDeployment:PatchDeployment default "{{project}} {{name}}"
970
970
  ```
971
971
 
972
972
  ```sh
pulumi_gcp/provider.py CHANGED
@@ -84,6 +84,7 @@ class ProviderArgs:
84
84
  dataform_custom_endpoint: Optional[pulumi.Input[str]] = None,
85
85
  dataplex_custom_endpoint: Optional[pulumi.Input[str]] = None,
86
86
  dataproc_custom_endpoint: Optional[pulumi.Input[str]] = None,
87
+ dataproc_gdc_custom_endpoint: Optional[pulumi.Input[str]] = None,
87
88
  dataproc_metastore_custom_endpoint: Optional[pulumi.Input[str]] = None,
88
89
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
89
90
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -117,6 +118,7 @@ class ProviderArgs:
117
118
  google_partner_name: Optional[pulumi.Input[str]] = None,
118
119
  healthcare_custom_endpoint: Optional[pulumi.Input[str]] = None,
119
120
  iam2_custom_endpoint: Optional[pulumi.Input[str]] = None,
121
+ iam3_custom_endpoint: Optional[pulumi.Input[str]] = None,
120
122
  iam_beta_custom_endpoint: Optional[pulumi.Input[str]] = None,
121
123
  iam_credentials_custom_endpoint: Optional[pulumi.Input[str]] = None,
122
124
  iam_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -328,6 +330,8 @@ class ProviderArgs:
328
330
  pulumi.set(__self__, "dataplex_custom_endpoint", dataplex_custom_endpoint)
329
331
  if dataproc_custom_endpoint is not None:
330
332
  pulumi.set(__self__, "dataproc_custom_endpoint", dataproc_custom_endpoint)
333
+ if dataproc_gdc_custom_endpoint is not None:
334
+ pulumi.set(__self__, "dataproc_gdc_custom_endpoint", dataproc_gdc_custom_endpoint)
331
335
  if dataproc_metastore_custom_endpoint is not None:
332
336
  pulumi.set(__self__, "dataproc_metastore_custom_endpoint", dataproc_metastore_custom_endpoint)
333
337
  if datastream_custom_endpoint is not None:
@@ -394,6 +398,8 @@ class ProviderArgs:
394
398
  pulumi.set(__self__, "healthcare_custom_endpoint", healthcare_custom_endpoint)
395
399
  if iam2_custom_endpoint is not None:
396
400
  pulumi.set(__self__, "iam2_custom_endpoint", iam2_custom_endpoint)
401
+ if iam3_custom_endpoint is not None:
402
+ pulumi.set(__self__, "iam3_custom_endpoint", iam3_custom_endpoint)
397
403
  if iam_beta_custom_endpoint is not None:
398
404
  pulumi.set(__self__, "iam_beta_custom_endpoint", iam_beta_custom_endpoint)
399
405
  if iam_credentials_custom_endpoint is not None:
@@ -1137,6 +1143,15 @@ class ProviderArgs:
1137
1143
  def dataproc_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1138
1144
  pulumi.set(self, "dataproc_custom_endpoint", value)
1139
1145
 
1146
+ @property
1147
+ @pulumi.getter(name="dataprocGdcCustomEndpoint")
1148
+ def dataproc_gdc_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1149
+ return pulumi.get(self, "dataproc_gdc_custom_endpoint")
1150
+
1151
+ @dataproc_gdc_custom_endpoint.setter
1152
+ def dataproc_gdc_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1153
+ pulumi.set(self, "dataproc_gdc_custom_endpoint", value)
1154
+
1140
1155
  @property
1141
1156
  @pulumi.getter(name="dataprocMetastoreCustomEndpoint")
1142
1157
  def dataproc_metastore_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -1434,6 +1449,15 @@ class ProviderArgs:
1434
1449
  def iam2_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1435
1450
  pulumi.set(self, "iam2_custom_endpoint", value)
1436
1451
 
1452
+ @property
1453
+ @pulumi.getter(name="iam3CustomEndpoint")
1454
+ def iam3_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1455
+ return pulumi.get(self, "iam3_custom_endpoint")
1456
+
1457
+ @iam3_custom_endpoint.setter
1458
+ def iam3_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1459
+ pulumi.set(self, "iam3_custom_endpoint", value)
1460
+
1437
1461
  @property
1438
1462
  @pulumi.getter(name="iamBetaCustomEndpoint")
1439
1463
  def iam_beta_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -2224,6 +2248,7 @@ class Provider(pulumi.ProviderResource):
2224
2248
  dataform_custom_endpoint: Optional[pulumi.Input[str]] = None,
2225
2249
  dataplex_custom_endpoint: Optional[pulumi.Input[str]] = None,
2226
2250
  dataproc_custom_endpoint: Optional[pulumi.Input[str]] = None,
2251
+ dataproc_gdc_custom_endpoint: Optional[pulumi.Input[str]] = None,
2227
2252
  dataproc_metastore_custom_endpoint: Optional[pulumi.Input[str]] = None,
2228
2253
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
2229
2254
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -2257,6 +2282,7 @@ class Provider(pulumi.ProviderResource):
2257
2282
  google_partner_name: Optional[pulumi.Input[str]] = None,
2258
2283
  healthcare_custom_endpoint: Optional[pulumi.Input[str]] = None,
2259
2284
  iam2_custom_endpoint: Optional[pulumi.Input[str]] = None,
2285
+ iam3_custom_endpoint: Optional[pulumi.Input[str]] = None,
2260
2286
  iam_beta_custom_endpoint: Optional[pulumi.Input[str]] = None,
2261
2287
  iam_credentials_custom_endpoint: Optional[pulumi.Input[str]] = None,
2262
2288
  iam_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2438,6 +2464,7 @@ class Provider(pulumi.ProviderResource):
2438
2464
  dataform_custom_endpoint: Optional[pulumi.Input[str]] = None,
2439
2465
  dataplex_custom_endpoint: Optional[pulumi.Input[str]] = None,
2440
2466
  dataproc_custom_endpoint: Optional[pulumi.Input[str]] = None,
2467
+ dataproc_gdc_custom_endpoint: Optional[pulumi.Input[str]] = None,
2441
2468
  dataproc_metastore_custom_endpoint: Optional[pulumi.Input[str]] = None,
2442
2469
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
2443
2470
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -2471,6 +2498,7 @@ class Provider(pulumi.ProviderResource):
2471
2498
  google_partner_name: Optional[pulumi.Input[str]] = None,
2472
2499
  healthcare_custom_endpoint: Optional[pulumi.Input[str]] = None,
2473
2500
  iam2_custom_endpoint: Optional[pulumi.Input[str]] = None,
2501
+ iam3_custom_endpoint: Optional[pulumi.Input[str]] = None,
2474
2502
  iam_beta_custom_endpoint: Optional[pulumi.Input[str]] = None,
2475
2503
  iam_credentials_custom_endpoint: Optional[pulumi.Input[str]] = None,
2476
2504
  iam_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2624,6 +2652,7 @@ class Provider(pulumi.ProviderResource):
2624
2652
  __props__.__dict__["dataform_custom_endpoint"] = dataform_custom_endpoint
2625
2653
  __props__.__dict__["dataplex_custom_endpoint"] = dataplex_custom_endpoint
2626
2654
  __props__.__dict__["dataproc_custom_endpoint"] = dataproc_custom_endpoint
2655
+ __props__.__dict__["dataproc_gdc_custom_endpoint"] = dataproc_gdc_custom_endpoint
2627
2656
  __props__.__dict__["dataproc_metastore_custom_endpoint"] = dataproc_metastore_custom_endpoint
2628
2657
  __props__.__dict__["datastream_custom_endpoint"] = datastream_custom_endpoint
2629
2658
  __props__.__dict__["default_labels"] = pulumi.Output.from_input(default_labels).apply(pulumi.runtime.to_json) if default_labels is not None else None
@@ -2657,6 +2686,7 @@ class Provider(pulumi.ProviderResource):
2657
2686
  __props__.__dict__["google_partner_name"] = google_partner_name
2658
2687
  __props__.__dict__["healthcare_custom_endpoint"] = healthcare_custom_endpoint
2659
2688
  __props__.__dict__["iam2_custom_endpoint"] = iam2_custom_endpoint
2689
+ __props__.__dict__["iam3_custom_endpoint"] = iam3_custom_endpoint
2660
2690
  __props__.__dict__["iam_beta_custom_endpoint"] = iam_beta_custom_endpoint
2661
2691
  __props__.__dict__["iam_credentials_custom_endpoint"] = iam_credentials_custom_endpoint
2662
2692
  __props__.__dict__["iam_custom_endpoint"] = iam_custom_endpoint
@@ -3061,6 +3091,11 @@ class Provider(pulumi.ProviderResource):
3061
3091
  def dataproc_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3062
3092
  return pulumi.get(self, "dataproc_custom_endpoint")
3063
3093
 
3094
+ @property
3095
+ @pulumi.getter(name="dataprocGdcCustomEndpoint")
3096
+ def dataproc_gdc_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3097
+ return pulumi.get(self, "dataproc_gdc_custom_endpoint")
3098
+
3064
3099
  @property
3065
3100
  @pulumi.getter(name="dataprocMetastoreCustomEndpoint")
3066
3101
  def dataproc_metastore_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -3216,6 +3251,11 @@ class Provider(pulumi.ProviderResource):
3216
3251
  def iam2_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3217
3252
  return pulumi.get(self, "iam2_custom_endpoint")
3218
3253
 
3254
+ @property
3255
+ @pulumi.getter(name="iam3CustomEndpoint")
3256
+ def iam3_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3257
+ return pulumi.get(self, "iam3_custom_endpoint")
3258
+
3219
3259
  @property
3220
3260
  @pulumi.getter(name="iamBetaCustomEndpoint")
3221
3261
  def iam_beta_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "gcp",
4
- "version": "8.9.0-alpha.1731366299"
4
+ "version": "8.9.0-alpha.1731432418"
5
5
  }
@@ -735,7 +735,7 @@ if not MYPY:
735
735
  class ClusterStateInfoArgsDict(TypedDict):
736
736
  update_info: NotRequired[pulumi.Input['ClusterStateInfoUpdateInfoArgsDict']]
737
737
  """
738
- A nested object resource
738
+ A nested object resource.
739
739
  Structure is documented below.
740
740
  """
741
741
  elif False:
@@ -746,7 +746,7 @@ class ClusterStateInfoArgs:
746
746
  def __init__(__self__, *,
747
747
  update_info: Optional[pulumi.Input['ClusterStateInfoUpdateInfoArgs']] = None):
748
748
  """
749
- :param pulumi.Input['ClusterStateInfoUpdateInfoArgs'] update_info: A nested object resource
749
+ :param pulumi.Input['ClusterStateInfoUpdateInfoArgs'] update_info: A nested object resource.
750
750
  Structure is documented below.
751
751
  """
752
752
  if update_info is not None:
@@ -756,7 +756,7 @@ class ClusterStateInfoArgs:
756
756
  @pulumi.getter(name="updateInfo")
757
757
  def update_info(self) -> Optional[pulumi.Input['ClusterStateInfoUpdateInfoArgs']]:
758
758
  """
759
- A nested object resource
759
+ A nested object resource.
760
760
  Structure is documented below.
761
761
  """
762
762
  return pulumi.get(self, "update_info")
@@ -573,7 +573,7 @@ class ClusterStateInfo(dict):
573
573
  def __init__(__self__, *,
574
574
  update_info: Optional['outputs.ClusterStateInfoUpdateInfo'] = None):
575
575
  """
576
- :param 'ClusterStateInfoUpdateInfoArgs' update_info: A nested object resource
576
+ :param 'ClusterStateInfoUpdateInfoArgs' update_info: A nested object resource.
577
577
  Structure is documented below.
578
578
  """
579
579
  if update_info is not None:
@@ -583,7 +583,7 @@ class ClusterStateInfo(dict):
583
583
  @pulumi.getter(name="updateInfo")
584
584
  def update_info(self) -> Optional['outputs.ClusterStateInfoUpdateInfo']:
585
585
  """
586
- A nested object resource
586
+ A nested object resource.
587
587
  Structure is documented below.
588
588
  """
589
589
  return pulumi.get(self, "update_info")
@@ -287,18 +287,12 @@ class NotificationConfig(pulumi.CustomResource):
287
287
 
288
288
  NotificationConfig can be imported using any of these accepted formats:
289
289
 
290
- * `organizations/{{organization}}/notificationConfigs/{{name}}`
291
-
292
- * `{{organization}}/{{name}}`
290
+ * `{{name}}`
293
291
 
294
292
  When using the `pulumi import` command, NotificationConfig can be imported using one of the formats above. For example:
295
293
 
296
294
  ```sh
297
- $ pulumi import gcp:securitycenter/notificationConfig:NotificationConfig default organizations/{{organization}}/notificationConfigs/{{name}}
298
- ```
299
-
300
- ```sh
301
- $ pulumi import gcp:securitycenter/notificationConfig:NotificationConfig default {{organization}}/{{name}}
295
+ $ pulumi import gcp:securitycenter/notificationConfig:NotificationConfig default {{name}}
302
296
  ```
303
297
 
304
298
  :param str resource_name: The name of the resource.
@@ -356,18 +350,12 @@ class NotificationConfig(pulumi.CustomResource):
356
350
 
357
351
  NotificationConfig can be imported using any of these accepted formats:
358
352
 
359
- * `organizations/{{organization}}/notificationConfigs/{{name}}`
360
-
361
- * `{{organization}}/{{name}}`
353
+ * `{{name}}`
362
354
 
363
355
  When using the `pulumi import` command, NotificationConfig can be imported using one of the formats above. For example:
364
356
 
365
357
  ```sh
366
- $ pulumi import gcp:securitycenter/notificationConfig:NotificationConfig default organizations/{{organization}}/notificationConfigs/{{name}}
367
- ```
368
-
369
- ```sh
370
- $ pulumi import gcp:securitycenter/notificationConfig:NotificationConfig default {{organization}}/{{name}}
358
+ $ pulumi import gcp:securitycenter/notificationConfig:NotificationConfig default {{name}}
371
359
  ```
372
360
 
373
361
  :param str resource_name: The name of the resource.
@@ -276,22 +276,10 @@ class ProjectNotificationConfig(pulumi.CustomResource):
276
276
 
277
277
  ProjectNotificationConfig can be imported using any of these accepted formats:
278
278
 
279
- * `projects/{{project}}/notificationConfigs/{{name}}`
280
-
281
- * `{{project}}/{{name}}`
282
-
283
279
  * `{{name}}`
284
280
 
285
281
  When using the `pulumi import` command, ProjectNotificationConfig can be imported using one of the formats above. For example:
286
282
 
287
- ```sh
288
- $ pulumi import gcp:securitycenter/projectNotificationConfig:ProjectNotificationConfig default projects/{{project}}/notificationConfigs/{{name}}
289
- ```
290
-
291
- ```sh
292
- $ pulumi import gcp:securitycenter/projectNotificationConfig:ProjectNotificationConfig default {{project}}/{{name}}
293
- ```
294
-
295
283
  ```sh
296
284
  $ pulumi import gcp:securitycenter/projectNotificationConfig:ProjectNotificationConfig default {{name}}
297
285
  ```
@@ -349,22 +337,10 @@ class ProjectNotificationConfig(pulumi.CustomResource):
349
337
 
350
338
  ProjectNotificationConfig can be imported using any of these accepted formats:
351
339
 
352
- * `projects/{{project}}/notificationConfigs/{{name}}`
353
-
354
- * `{{project}}/{{name}}`
355
-
356
340
  * `{{name}}`
357
341
 
358
342
  When using the `pulumi import` command, ProjectNotificationConfig can be imported using one of the formats above. For example:
359
343
 
360
- ```sh
361
- $ pulumi import gcp:securitycenter/projectNotificationConfig:ProjectNotificationConfig default projects/{{project}}/notificationConfigs/{{name}}
362
- ```
363
-
364
- ```sh
365
- $ pulumi import gcp:securitycenter/projectNotificationConfig:ProjectNotificationConfig default {{project}}/{{name}}
366
- ```
367
-
368
344
  ```sh
369
345
  $ pulumi import gcp:securitycenter/projectNotificationConfig:ProjectNotificationConfig default {{name}}
370
346
  ```
@@ -321,18 +321,12 @@ class V2OrganizationNotificationConfig(pulumi.CustomResource):
321
321
 
322
322
  OrganizationNotificationConfig can be imported using any of these accepted formats:
323
323
 
324
- * `organizations/{{organization}}/locations/{{location}}/notificationConfigs/{{name}}`
325
-
326
- * `{{organization}}/{{location}}/{{name}}`
324
+ * `{{name}}`
327
325
 
328
326
  When using the `pulumi import` command, OrganizationNotificationConfig can be imported using one of the formats above. For example:
329
327
 
330
328
  ```sh
331
- $ pulumi import gcp:securitycenter/v2OrganizationNotificationConfig:V2OrganizationNotificationConfig default organizations/{{organization}}/locations/{{location}}/notificationConfigs/{{name}}
332
- ```
333
-
334
- ```sh
335
- $ pulumi import gcp:securitycenter/v2OrganizationNotificationConfig:V2OrganizationNotificationConfig default {{organization}}/{{location}}/{{name}}
329
+ $ pulumi import gcp:securitycenter/v2OrganizationNotificationConfig:V2OrganizationNotificationConfig default {{name}}
336
330
  ```
337
331
 
338
332
  :param str resource_name: The name of the resource.
@@ -392,18 +386,12 @@ class V2OrganizationNotificationConfig(pulumi.CustomResource):
392
386
 
393
387
  OrganizationNotificationConfig can be imported using any of these accepted formats:
394
388
 
395
- * `organizations/{{organization}}/locations/{{location}}/notificationConfigs/{{name}}`
396
-
397
- * `{{organization}}/{{location}}/{{name}}`
389
+ * `{{name}}`
398
390
 
399
391
  When using the `pulumi import` command, OrganizationNotificationConfig can be imported using one of the formats above. For example:
400
392
 
401
393
  ```sh
402
- $ pulumi import gcp:securitycenter/v2OrganizationNotificationConfig:V2OrganizationNotificationConfig default organizations/{{organization}}/locations/{{location}}/notificationConfigs/{{name}}
403
- ```
404
-
405
- ```sh
406
- $ pulumi import gcp:securitycenter/v2OrganizationNotificationConfig:V2OrganizationNotificationConfig default {{organization}}/{{location}}/{{name}}
394
+ $ pulumi import gcp:securitycenter/v2OrganizationNotificationConfig:V2OrganizationNotificationConfig default {{name}}
407
395
  ```
408
396
 
409
397
  :param str resource_name: The name of the resource.
@@ -10,6 +10,7 @@ from .database import *
10
10
  from .database_iam_binding import *
11
11
  from .database_iam_member import *
12
12
  from .database_iam_policy import *
13
+ from .get_database import *
13
14
  from .get_database_iam_policy import *
14
15
  from .get_instance import *
15
16
  from .get_instance_iam_policy import *
@@ -461,12 +461,12 @@ if not MYPY:
461
461
  class InstanceAutoscalingConfigAsymmetricAutoscalingOptionArgsDict(TypedDict):
462
462
  overrides: pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesArgsDict']
463
463
  """
464
- A nested object resource
464
+ A nested object resource.
465
465
  Structure is documented below.
466
466
  """
467
467
  replica_selection: pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionReplicaSelectionArgsDict']
468
468
  """
469
- A nested object resource
469
+ A nested object resource.
470
470
  Structure is documented below.
471
471
  """
472
472
  elif False:
@@ -478,9 +478,9 @@ class InstanceAutoscalingConfigAsymmetricAutoscalingOptionArgs:
478
478
  overrides: pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesArgs'],
479
479
  replica_selection: pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionReplicaSelectionArgs']):
480
480
  """
481
- :param pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesArgs'] overrides: A nested object resource
481
+ :param pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesArgs'] overrides: A nested object resource.
482
482
  Structure is documented below.
483
- :param pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionReplicaSelectionArgs'] replica_selection: A nested object resource
483
+ :param pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionReplicaSelectionArgs'] replica_selection: A nested object resource.
484
484
  Structure is documented below.
485
485
  """
486
486
  pulumi.set(__self__, "overrides", overrides)
@@ -490,7 +490,7 @@ class InstanceAutoscalingConfigAsymmetricAutoscalingOptionArgs:
490
490
  @pulumi.getter
491
491
  def overrides(self) -> pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesArgs']:
492
492
  """
493
- A nested object resource
493
+ A nested object resource.
494
494
  Structure is documented below.
495
495
  """
496
496
  return pulumi.get(self, "overrides")
@@ -503,7 +503,7 @@ class InstanceAutoscalingConfigAsymmetricAutoscalingOptionArgs:
503
503
  @pulumi.getter(name="replicaSelection")
504
504
  def replica_selection(self) -> pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionReplicaSelectionArgs']:
505
505
  """
506
- A nested object resource
506
+ A nested object resource.
507
507
  Structure is documented below.
508
508
  """
509
509
  return pulumi.get(self, "replica_selection")
@@ -517,7 +517,7 @@ if not MYPY:
517
517
  class InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesArgsDict(TypedDict):
518
518
  autoscaling_limits: pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesAutoscalingLimitsArgsDict']
519
519
  """
520
- A nested object resource
520
+ A nested object resource.
521
521
  Structure is documented below.
522
522
  """
523
523
  elif False:
@@ -528,7 +528,7 @@ class InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesArgs:
528
528
  def __init__(__self__, *,
529
529
  autoscaling_limits: pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesAutoscalingLimitsArgs']):
530
530
  """
531
- :param pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesAutoscalingLimitsArgs'] autoscaling_limits: A nested object resource
531
+ :param pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesAutoscalingLimitsArgs'] autoscaling_limits: A nested object resource.
532
532
  Structure is documented below.
533
533
  """
534
534
  pulumi.set(__self__, "autoscaling_limits", autoscaling_limits)
@@ -537,7 +537,7 @@ class InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesArgs:
537
537
  @pulumi.getter(name="autoscalingLimits")
538
538
  def autoscaling_limits(self) -> pulumi.Input['InstanceAutoscalingConfigAsymmetricAutoscalingOptionOverridesAutoscalingLimitsArgs']:
539
539
  """
540
- A nested object resource
540
+ A nested object resource.
541
541
  Structure is documented below.
542
542
  """
543
543
  return pulumi.get(self, "autoscaling_limits")