pulumi-gcp 8.36.0a1751060819__py3-none-any.whl → 8.37.0a1751903932__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 (64) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/apihub/__init__.py +1 -0
  3. pulumi_gcp/apihub/_inputs.py +675 -0
  4. pulumi_gcp/apihub/outputs.py +567 -0
  5. pulumi_gcp/apihub/plugin.py +1146 -0
  6. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +7 -7
  7. pulumi_gcp/bigqueryanalyticshub/listing.py +7 -7
  8. pulumi_gcp/cloudidentity/group_membership.py +47 -0
  9. pulumi_gcp/cloudidentity/outputs.py +11 -0
  10. pulumi_gcp/cloudrunv2/_inputs.py +65 -9
  11. pulumi_gcp/cloudrunv2/job.py +44 -0
  12. pulumi_gcp/cloudrunv2/outputs.py +73 -8
  13. pulumi_gcp/cloudrunv2/service.py +0 -2
  14. pulumi_gcp/cloudrunv2/worker_pool.py +18 -20
  15. pulumi_gcp/compute/__init__.py +1 -0
  16. pulumi_gcp/compute/_inputs.py +763 -6
  17. pulumi_gcp/compute/disk.py +35 -28
  18. pulumi_gcp/compute/firewall_policy_rule.py +207 -0
  19. pulumi_gcp/compute/get_instance_group_manager.py +12 -1
  20. pulumi_gcp/compute/get_region_disk.py +12 -1
  21. pulumi_gcp/compute/instance_group_manager.py +165 -14
  22. pulumi_gcp/compute/network.py +56 -0
  23. pulumi_gcp/compute/network_firewall_policy.py +68 -0
  24. pulumi_gcp/compute/network_firewall_policy_with_rules.py +61 -0
  25. pulumi_gcp/compute/outputs.py +604 -4
  26. pulumi_gcp/compute/region_disk.py +114 -0
  27. pulumi_gcp/compute/region_network_firewall_policy.py +90 -0
  28. pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +109 -0
  29. pulumi_gcp/compute/wire_group.py +751 -0
  30. pulumi_gcp/container/_inputs.py +135 -16
  31. pulumi_gcp/container/cluster.py +54 -0
  32. pulumi_gcp/container/get_cluster.py +12 -1
  33. pulumi_gcp/container/node_pool.py +14 -0
  34. pulumi_gcp/container/outputs.py +222 -12
  35. pulumi_gcp/diagflow/__init__.py +1 -0
  36. pulumi_gcp/diagflow/_inputs.py +431 -0
  37. pulumi_gcp/diagflow/cx_generative_settings.py +625 -0
  38. pulumi_gcp/diagflow/outputs.py +370 -0
  39. pulumi_gcp/dns/record_set.py +4 -2
  40. pulumi_gcp/firestore/database.py +0 -9
  41. pulumi_gcp/iam/_inputs.py +36 -0
  42. pulumi_gcp/iam/outputs.py +38 -0
  43. pulumi_gcp/iam/workload_identity_pool_managed_identity.py +88 -2
  44. pulumi_gcp/kms/autokey_config.py +28 -0
  45. pulumi_gcp/kms/get_autokey_config.py +12 -1
  46. pulumi_gcp/memorystore/get_instance.py +12 -1
  47. pulumi_gcp/memorystore/instance.py +49 -0
  48. pulumi_gcp/monitoring/metric_descriptor.py +55 -57
  49. pulumi_gcp/notebooks/instance.py +8 -8
  50. pulumi_gcp/pulumi-plugin.json +1 -1
  51. pulumi_gcp/redis/get_instance.py +12 -1
  52. pulumi_gcp/redis/instance.py +44 -0
  53. pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
  54. pulumi_gcp/secretmanager/outputs.py +7 -0
  55. pulumi_gcp/secretmanager/regional_secret.py +38 -2
  56. pulumi_gcp/spanner/_inputs.py +24 -1
  57. pulumi_gcp/spanner/outputs.py +17 -1
  58. pulumi_gcp/storage/_inputs.py +43 -3
  59. pulumi_gcp/storage/outputs.py +53 -3
  60. pulumi_gcp/workbench/instance.py +2 -0
  61. {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/METADATA +1 -1
  62. {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/RECORD +64 -61
  63. {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/WHEEL +0 -0
  64. {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/top_level.txt +0 -0
@@ -128,6 +128,7 @@ __all__ = [
128
128
  'ClusterEnterpriseConfig',
129
129
  'ClusterFleet',
130
130
  'ClusterGatewayApiConfig',
131
+ 'ClusterGkeAutoUpgradeConfig',
131
132
  'ClusterIdentityServiceConfig',
132
133
  'ClusterIpAllocationPolicy',
133
134
  'ClusterIpAllocationPolicyAdditionalPodRangesConfig',
@@ -337,6 +338,7 @@ __all__ = [
337
338
  'GetClusterEnterpriseConfigResult',
338
339
  'GetClusterFleetResult',
339
340
  'GetClusterGatewayApiConfigResult',
341
+ 'GetClusterGkeAutoUpgradeConfigResult',
340
342
  'GetClusterIdentityServiceConfigResult',
341
343
  'GetClusterIpAllocationPolicyResult',
342
344
  'GetClusterIpAllocationPolicyAdditionalPodRangesConfigResult',
@@ -5365,13 +5367,35 @@ class ClusterClusterTelemetry(dict):
5365
5367
 
5366
5368
  @pulumi.output_type
5367
5369
  class ClusterConfidentialNodes(dict):
5370
+ @staticmethod
5371
+ def __key_warning(key: str):
5372
+ suggest = None
5373
+ if key == "confidentialInstanceType":
5374
+ suggest = "confidential_instance_type"
5375
+
5376
+ if suggest:
5377
+ pulumi.log.warn(f"Key '{key}' not found in ClusterConfidentialNodes. Access the value via the '{suggest}' property getter instead.")
5378
+
5379
+ def __getitem__(self, key: str) -> Any:
5380
+ ClusterConfidentialNodes.__key_warning(key)
5381
+ return super().__getitem__(key)
5382
+
5383
+ def get(self, key: str, default = None) -> Any:
5384
+ ClusterConfidentialNodes.__key_warning(key)
5385
+ return super().get(key, default)
5386
+
5368
5387
  def __init__(__self__, *,
5369
- enabled: builtins.bool):
5388
+ enabled: builtins.bool,
5389
+ confidential_instance_type: Optional[builtins.str] = None):
5370
5390
  """
5371
5391
  :param builtins.bool enabled: Enable Confidential GKE Nodes for this cluster, to
5372
5392
  enforce encryption of data in-use.
5393
+ :param builtins.str confidential_instance_type: Defines the type of technology used
5394
+ by the confidential node.
5373
5395
  """
5374
5396
  pulumi.set(__self__, "enabled", enabled)
5397
+ if confidential_instance_type is not None:
5398
+ pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
5375
5399
 
5376
5400
  @property
5377
5401
  @pulumi.getter
@@ -5382,6 +5406,15 @@ class ClusterConfidentialNodes(dict):
5382
5406
  """
5383
5407
  return pulumi.get(self, "enabled")
5384
5408
 
5409
+ @property
5410
+ @pulumi.getter(name="confidentialInstanceType")
5411
+ def confidential_instance_type(self) -> Optional[builtins.str]:
5412
+ """
5413
+ Defines the type of technology used
5414
+ by the confidential node.
5415
+ """
5416
+ return pulumi.get(self, "confidential_instance_type")
5417
+
5385
5418
 
5386
5419
  @pulumi.output_type
5387
5420
  class ClusterControlPlaneEndpointsConfig(dict):
@@ -5860,6 +5893,45 @@ class ClusterGatewayApiConfig(dict):
5860
5893
  return pulumi.get(self, "channel")
5861
5894
 
5862
5895
 
5896
+ @pulumi.output_type
5897
+ class ClusterGkeAutoUpgradeConfig(dict):
5898
+ @staticmethod
5899
+ def __key_warning(key: str):
5900
+ suggest = None
5901
+ if key == "patchMode":
5902
+ suggest = "patch_mode"
5903
+
5904
+ if suggest:
5905
+ pulumi.log.warn(f"Key '{key}' not found in ClusterGkeAutoUpgradeConfig. Access the value via the '{suggest}' property getter instead.")
5906
+
5907
+ def __getitem__(self, key: str) -> Any:
5908
+ ClusterGkeAutoUpgradeConfig.__key_warning(key)
5909
+ return super().__getitem__(key)
5910
+
5911
+ def get(self, key: str, default = None) -> Any:
5912
+ ClusterGkeAutoUpgradeConfig.__key_warning(key)
5913
+ return super().get(key, default)
5914
+
5915
+ def __init__(__self__, *,
5916
+ patch_mode: builtins.str):
5917
+ """
5918
+ :param builtins.str patch_mode: The selected patch mode.
5919
+ Accepted values are:
5920
+ * ACCELERATED: Upgrades to the latest available patch version in a given minor and release channel.
5921
+ """
5922
+ pulumi.set(__self__, "patch_mode", patch_mode)
5923
+
5924
+ @property
5925
+ @pulumi.getter(name="patchMode")
5926
+ def patch_mode(self) -> builtins.str:
5927
+ """
5928
+ The selected patch mode.
5929
+ Accepted values are:
5930
+ * ACCELERATED: Upgrades to the latest available patch version in a given minor and release channel.
5931
+ """
5932
+ return pulumi.get(self, "patch_mode")
5933
+
5934
+
5863
5935
  @pulumi.output_type
5864
5936
  class ClusterIdentityServiceConfig(dict):
5865
5937
  def __init__(__self__, *,
@@ -7829,13 +7901,35 @@ class ClusterNodeConfigAdvancedMachineFeatures(dict):
7829
7901
 
7830
7902
  @pulumi.output_type
7831
7903
  class ClusterNodeConfigConfidentialNodes(dict):
7904
+ @staticmethod
7905
+ def __key_warning(key: str):
7906
+ suggest = None
7907
+ if key == "confidentialInstanceType":
7908
+ suggest = "confidential_instance_type"
7909
+
7910
+ if suggest:
7911
+ pulumi.log.warn(f"Key '{key}' not found in ClusterNodeConfigConfidentialNodes. Access the value via the '{suggest}' property getter instead.")
7912
+
7913
+ def __getitem__(self, key: str) -> Any:
7914
+ ClusterNodeConfigConfidentialNodes.__key_warning(key)
7915
+ return super().__getitem__(key)
7916
+
7917
+ def get(self, key: str, default = None) -> Any:
7918
+ ClusterNodeConfigConfidentialNodes.__key_warning(key)
7919
+ return super().get(key, default)
7920
+
7832
7921
  def __init__(__self__, *,
7833
- enabled: builtins.bool):
7922
+ enabled: builtins.bool,
7923
+ confidential_instance_type: Optional[builtins.str] = None):
7834
7924
  """
7835
7925
  :param builtins.bool enabled: Enable Confidential GKE Nodes for this cluster, to
7836
7926
  enforce encryption of data in-use.
7927
+ :param builtins.str confidential_instance_type: Defines the type of technology used
7928
+ by the confidential node.
7837
7929
  """
7838
7930
  pulumi.set(__self__, "enabled", enabled)
7931
+ if confidential_instance_type is not None:
7932
+ pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
7839
7933
 
7840
7934
  @property
7841
7935
  @pulumi.getter
@@ -7846,6 +7940,15 @@ class ClusterNodeConfigConfidentialNodes(dict):
7846
7940
  """
7847
7941
  return pulumi.get(self, "enabled")
7848
7942
 
7943
+ @property
7944
+ @pulumi.getter(name="confidentialInstanceType")
7945
+ def confidential_instance_type(self) -> Optional[builtins.str]:
7946
+ """
7947
+ Defines the type of technology used
7948
+ by the confidential node.
7949
+ """
7950
+ return pulumi.get(self, "confidential_instance_type")
7951
+
7849
7952
 
7850
7953
  @pulumi.output_type
7851
7954
  class ClusterNodeConfigContainerdConfig(dict):
@@ -11184,13 +11287,35 @@ class ClusterNodePoolNodeConfigAdvancedMachineFeatures(dict):
11184
11287
 
11185
11288
  @pulumi.output_type
11186
11289
  class ClusterNodePoolNodeConfigConfidentialNodes(dict):
11290
+ @staticmethod
11291
+ def __key_warning(key: str):
11292
+ suggest = None
11293
+ if key == "confidentialInstanceType":
11294
+ suggest = "confidential_instance_type"
11295
+
11296
+ if suggest:
11297
+ pulumi.log.warn(f"Key '{key}' not found in ClusterNodePoolNodeConfigConfidentialNodes. Access the value via the '{suggest}' property getter instead.")
11298
+
11299
+ def __getitem__(self, key: str) -> Any:
11300
+ ClusterNodePoolNodeConfigConfidentialNodes.__key_warning(key)
11301
+ return super().__getitem__(key)
11302
+
11303
+ def get(self, key: str, default = None) -> Any:
11304
+ ClusterNodePoolNodeConfigConfidentialNodes.__key_warning(key)
11305
+ return super().get(key, default)
11306
+
11187
11307
  def __init__(__self__, *,
11188
- enabled: builtins.bool):
11308
+ enabled: builtins.bool,
11309
+ confidential_instance_type: Optional[builtins.str] = None):
11189
11310
  """
11190
11311
  :param builtins.bool enabled: Enable Confidential GKE Nodes for this cluster, to
11191
11312
  enforce encryption of data in-use.
11313
+ :param builtins.str confidential_instance_type: Defines the type of technology used
11314
+ by the confidential node.
11192
11315
  """
11193
11316
  pulumi.set(__self__, "enabled", enabled)
11317
+ if confidential_instance_type is not None:
11318
+ pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
11194
11319
 
11195
11320
  @property
11196
11321
  @pulumi.getter
@@ -11201,6 +11326,15 @@ class ClusterNodePoolNodeConfigConfidentialNodes(dict):
11201
11326
  """
11202
11327
  return pulumi.get(self, "enabled")
11203
11328
 
11329
+ @property
11330
+ @pulumi.getter(name="confidentialInstanceType")
11331
+ def confidential_instance_type(self) -> Optional[builtins.str]:
11332
+ """
11333
+ Defines the type of technology used
11334
+ by the confidential node.
11335
+ """
11336
+ return pulumi.get(self, "confidential_instance_type")
11337
+
11204
11338
 
11205
11339
  @pulumi.output_type
11206
11340
  class ClusterNodePoolNodeConfigContainerdConfig(dict):
@@ -14351,10 +14485,7 @@ class NodePoolNodeConfig(dict):
14351
14485
  :param builtins.str node_group: Setting this field will assign instances of this pool to run on the specified node group. This is useful for running workloads on sole tenant nodes.
14352
14486
  :param Sequence[builtins.str] oauth_scopes: The set of Google API scopes to be made available on all of the node VMs.
14353
14487
  :param builtins.bool preemptible: Whether the nodes are created as preemptible VM instances.
14354
- :param 'NodePoolNodeConfigReservationAffinityArgs' reservation_affinity: The configuration of the desired reservation which instances could take capacity from.
14355
- Structure is documented below.
14356
-
14357
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
14488
+ :param 'NodePoolNodeConfigReservationAffinityArgs' reservation_affinity: The reservation affinity configuration for the node pool.
14358
14489
  :param Mapping[str, builtins.str] resource_labels: The GCE resource labels (a map of key/value pairs) to be applied to the node pool.
14359
14490
  :param Mapping[str, builtins.str] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
14360
14491
  :param 'NodePoolNodeConfigSandboxConfigArgs' sandbox_config: Sandbox configuration for this node.
@@ -14712,10 +14843,7 @@ class NodePoolNodeConfig(dict):
14712
14843
  @pulumi.getter(name="reservationAffinity")
14713
14844
  def reservation_affinity(self) -> Optional['outputs.NodePoolNodeConfigReservationAffinity']:
14714
14845
  """
14715
- The configuration of the desired reservation which instances could take capacity from.
14716
- Structure is documented below.
14717
-
14718
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
14846
+ The reservation affinity configuration for the node pool.
14719
14847
  """
14720
14848
  return pulumi.get(self, "reservation_affinity")
14721
14849
 
@@ -14889,12 +15017,33 @@ class NodePoolNodeConfigAdvancedMachineFeatures(dict):
14889
15017
 
14890
15018
  @pulumi.output_type
14891
15019
  class NodePoolNodeConfigConfidentialNodes(dict):
15020
+ @staticmethod
15021
+ def __key_warning(key: str):
15022
+ suggest = None
15023
+ if key == "confidentialInstanceType":
15024
+ suggest = "confidential_instance_type"
15025
+
15026
+ if suggest:
15027
+ pulumi.log.warn(f"Key '{key}' not found in NodePoolNodeConfigConfidentialNodes. Access the value via the '{suggest}' property getter instead.")
15028
+
15029
+ def __getitem__(self, key: str) -> Any:
15030
+ NodePoolNodeConfigConfidentialNodes.__key_warning(key)
15031
+ return super().__getitem__(key)
15032
+
15033
+ def get(self, key: str, default = None) -> Any:
15034
+ NodePoolNodeConfigConfidentialNodes.__key_warning(key)
15035
+ return super().get(key, default)
15036
+
14892
15037
  def __init__(__self__, *,
14893
- enabled: builtins.bool):
15038
+ enabled: builtins.bool,
15039
+ confidential_instance_type: Optional[builtins.str] = None):
14894
15040
  """
14895
15041
  :param builtins.bool enabled: Whether Confidential Nodes feature is enabled for all nodes in this pool.
15042
+ :param builtins.str confidential_instance_type: Defines the type of technology used by the confidential node.
14896
15043
  """
14897
15044
  pulumi.set(__self__, "enabled", enabled)
15045
+ if confidential_instance_type is not None:
15046
+ pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
14898
15047
 
14899
15048
  @property
14900
15049
  @pulumi.getter
@@ -14904,6 +15053,14 @@ class NodePoolNodeConfigConfidentialNodes(dict):
14904
15053
  """
14905
15054
  return pulumi.get(self, "enabled")
14906
15055
 
15056
+ @property
15057
+ @pulumi.getter(name="confidentialInstanceType")
15058
+ def confidential_instance_type(self) -> Optional[builtins.str]:
15059
+ """
15060
+ Defines the type of technology used by the confidential node.
15061
+ """
15062
+ return pulumi.get(self, "confidential_instance_type")
15063
+
14907
15064
 
14908
15065
  @pulumi.output_type
14909
15066
  class NodePoolNodeConfigContainerdConfig(dict):
@@ -17375,12 +17532,23 @@ class GetClusterClusterTelemetryResult(dict):
17375
17532
  @pulumi.output_type
17376
17533
  class GetClusterConfidentialNodeResult(dict):
17377
17534
  def __init__(__self__, *,
17535
+ confidential_instance_type: builtins.str,
17378
17536
  enabled: builtins.bool):
17379
17537
  """
17538
+ :param builtins.str confidential_instance_type: Defines the type of technology used by the confidential node.
17380
17539
  :param builtins.bool enabled: Whether Confidential Nodes feature is enabled for all nodes in this cluster.
17381
17540
  """
17541
+ pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
17382
17542
  pulumi.set(__self__, "enabled", enabled)
17383
17543
 
17544
+ @property
17545
+ @pulumi.getter(name="confidentialInstanceType")
17546
+ def confidential_instance_type(self) -> builtins.str:
17547
+ """
17548
+ Defines the type of technology used by the confidential node.
17549
+ """
17550
+ return pulumi.get(self, "confidential_instance_type")
17551
+
17384
17552
  @property
17385
17553
  @pulumi.getter
17386
17554
  def enabled(self) -> builtins.bool:
@@ -17711,6 +17879,26 @@ class GetClusterGatewayApiConfigResult(dict):
17711
17879
  return pulumi.get(self, "channel")
17712
17880
 
17713
17881
 
17882
+ @pulumi.output_type
17883
+ class GetClusterGkeAutoUpgradeConfigResult(dict):
17884
+ def __init__(__self__, *,
17885
+ patch_mode: builtins.str):
17886
+ """
17887
+ :param builtins.str patch_mode: The selected auto-upgrade patch type. Accepted values are:
17888
+ * ACCELERATED: Upgrades to the latest available patch version in a given minor and release channel.
17889
+ """
17890
+ pulumi.set(__self__, "patch_mode", patch_mode)
17891
+
17892
+ @property
17893
+ @pulumi.getter(name="patchMode")
17894
+ def patch_mode(self) -> builtins.str:
17895
+ """
17896
+ The selected auto-upgrade patch type. Accepted values are:
17897
+ * ACCELERATED: Upgrades to the latest available patch version in a given minor and release channel.
17898
+ """
17899
+ return pulumi.get(self, "patch_mode")
17900
+
17901
+
17714
17902
  @pulumi.output_type
17715
17903
  class GetClusterIdentityServiceConfigResult(dict):
17716
17904
  def __init__(__self__, *,
@@ -18867,12 +19055,23 @@ class GetClusterNodeConfigAdvancedMachineFeatureResult(dict):
18867
19055
  @pulumi.output_type
18868
19056
  class GetClusterNodeConfigConfidentialNodeResult(dict):
18869
19057
  def __init__(__self__, *,
19058
+ confidential_instance_type: builtins.str,
18870
19059
  enabled: builtins.bool):
18871
19060
  """
19061
+ :param builtins.str confidential_instance_type: Defines the type of technology used by the confidential node.
18872
19062
  :param builtins.bool enabled: Whether Confidential Nodes feature is enabled for all nodes in this pool.
18873
19063
  """
19064
+ pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
18874
19065
  pulumi.set(__self__, "enabled", enabled)
18875
19066
 
19067
+ @property
19068
+ @pulumi.getter(name="confidentialInstanceType")
19069
+ def confidential_instance_type(self) -> builtins.str:
19070
+ """
19071
+ Defines the type of technology used by the confidential node.
19072
+ """
19073
+ return pulumi.get(self, "confidential_instance_type")
19074
+
18876
19075
  @property
18877
19076
  @pulumi.getter
18878
19077
  def enabled(self) -> builtins.bool:
@@ -21015,12 +21214,23 @@ class GetClusterNodePoolNodeConfigAdvancedMachineFeatureResult(dict):
21015
21214
  @pulumi.output_type
21016
21215
  class GetClusterNodePoolNodeConfigConfidentialNodeResult(dict):
21017
21216
  def __init__(__self__, *,
21217
+ confidential_instance_type: builtins.str,
21018
21218
  enabled: builtins.bool):
21019
21219
  """
21220
+ :param builtins.str confidential_instance_type: Defines the type of technology used by the confidential node.
21020
21221
  :param builtins.bool enabled: Whether Confidential Nodes feature is enabled for all nodes in this pool.
21021
21222
  """
21223
+ pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
21022
21224
  pulumi.set(__self__, "enabled", enabled)
21023
21225
 
21226
+ @property
21227
+ @pulumi.getter(name="confidentialInstanceType")
21228
+ def confidential_instance_type(self) -> builtins.str:
21229
+ """
21230
+ Defines the type of technology used by the confidential node.
21231
+ """
21232
+ return pulumi.get(self, "confidential_instance_type")
21233
+
21024
21234
  @property
21025
21235
  @pulumi.getter
21026
21236
  def enabled(self) -> builtins.bool:
@@ -11,6 +11,7 @@ from .cx_agent import *
11
11
  from .cx_entity_type import *
12
12
  from .cx_environment import *
13
13
  from .cx_flow import *
14
+ from .cx_generative_settings import *
14
15
  from .cx_intent import *
15
16
  from .cx_page import *
16
17
  from .cx_security_settings import *