pulumi-gcp 8.26.0a1744267117__py3-none-any.whl → 8.27.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 (116) hide show
  1. pulumi_gcp/__init__.py +128 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +117 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +81 -26
  4. pulumi_gcp/accesscontextmanager/outputs.py +95 -0
  5. pulumi_gcp/apigee/__init__.py +1 -0
  6. pulumi_gcp/apigee/control_plane_access.py +419 -0
  7. pulumi_gcp/bigquery/_inputs.py +87 -30
  8. pulumi_gcp/bigquery/outputs.py +58 -20
  9. pulumi_gcp/bigquery/table.py +28 -14
  10. pulumi_gcp/clouddeploy/__init__.py +1 -0
  11. pulumi_gcp/clouddeploy/_inputs.py +2876 -1314
  12. pulumi_gcp/clouddeploy/automation.py +64 -2
  13. pulumi_gcp/clouddeploy/deploy_policy.py +1179 -0
  14. pulumi_gcp/clouddeploy/outputs.py +1130 -5
  15. pulumi_gcp/cloudrun/service.py +46 -0
  16. pulumi_gcp/cloudrunv2/get_service.py +12 -1
  17. pulumi_gcp/cloudrunv2/service.py +87 -2
  18. pulumi_gcp/compute/_inputs.py +448 -1
  19. pulumi_gcp/compute/image.py +183 -0
  20. pulumi_gcp/compute/outputs.py +387 -3
  21. pulumi_gcp/compute/region_backend_service.py +6 -2
  22. pulumi_gcp/compute/resource_policy.py +30 -0
  23. pulumi_gcp/compute/snapshot.py +6 -0
  24. pulumi_gcp/databasemigrationservice/_inputs.py +27 -24
  25. pulumi_gcp/databasemigrationservice/connection_profile.py +168 -0
  26. pulumi_gcp/databasemigrationservice/migration_job.py +6 -0
  27. pulumi_gcp/databasemigrationservice/outputs.py +18 -15
  28. pulumi_gcp/datastream/_inputs.py +506 -0
  29. pulumi_gcp/datastream/outputs.py +376 -0
  30. pulumi_gcp/datastream/stream.py +0 -2
  31. pulumi_gcp/developerconnect/__init__.py +1 -0
  32. pulumi_gcp/developerconnect/_inputs.py +77 -0
  33. pulumi_gcp/developerconnect/account_connector.py +866 -0
  34. pulumi_gcp/developerconnect/outputs.py +64 -0
  35. pulumi_gcp/firebase/hosting_version.py +34 -14
  36. pulumi_gcp/firestore/database.py +82 -0
  37. pulumi_gcp/firestore/index.py +263 -7
  38. pulumi_gcp/folder/__init__.py +1 -0
  39. pulumi_gcp/folder/service_identity.py +314 -0
  40. pulumi_gcp/gemini/__init__.py +2 -0
  41. pulumi_gcp/gemini/_inputs.py +176 -0
  42. pulumi_gcp/gemini/code_tools_setting.py +601 -0
  43. pulumi_gcp/gemini/code_tools_setting_binding.py +753 -0
  44. pulumi_gcp/gemini/outputs.py +124 -0
  45. pulumi_gcp/gkeonprem/v_mware_cluster.py +49 -0
  46. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +28 -0
  47. pulumi_gcp/managedkafka/_inputs.py +6 -6
  48. pulumi_gcp/managedkafka/connect_cluster.py +84 -40
  49. pulumi_gcp/managedkafka/connector.py +98 -44
  50. pulumi_gcp/managedkafka/outputs.py +4 -4
  51. pulumi_gcp/memorystore/_inputs.py +205 -0
  52. pulumi_gcp/memorystore/get_instance.py +45 -1
  53. pulumi_gcp/memorystore/instance.py +194 -0
  54. pulumi_gcp/memorystore/outputs.py +270 -0
  55. pulumi_gcp/ml/engine_model.py +0 -22
  56. pulumi_gcp/monitoring/_inputs.py +37 -19
  57. pulumi_gcp/monitoring/outputs.py +39 -11
  58. pulumi_gcp/monitoring/uptime_check_config.py +8 -0
  59. pulumi_gcp/netapp/_inputs.py +92 -6
  60. pulumi_gcp/netapp/outputs.py +77 -4
  61. pulumi_gcp/netapp/volume_replication.py +12 -2
  62. pulumi_gcp/networkconnectivity/service_connection_policy.py +4 -2
  63. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  64. pulumi_gcp/orgpolicy/policy.py +2 -2
  65. pulumi_gcp/osconfig/__init__.py +1 -0
  66. pulumi_gcp/osconfig/_inputs.py +5439 -0
  67. pulumi_gcp/osconfig/outputs.py +3978 -0
  68. pulumi_gcp/osconfig/v2_policy_orchestrator.py +8 -0
  69. pulumi_gcp/osconfig/v2_policy_orchestrator_for_organization.py +1055 -0
  70. pulumi_gcp/parametermanager/get_regional_parameter.py +12 -1
  71. pulumi_gcp/parametermanager/get_regional_parameter_version.py +15 -1
  72. pulumi_gcp/parametermanager/outputs.py +11 -0
  73. pulumi_gcp/parametermanager/regional_parameter.py +78 -0
  74. pulumi_gcp/parametermanager/regional_parameter_version.py +66 -0
  75. pulumi_gcp/pubsub/subscription.py +6 -6
  76. pulumi_gcp/pulumi-plugin.json +1 -1
  77. pulumi_gcp/redis/_inputs.py +69 -0
  78. pulumi_gcp/redis/cluster.py +140 -0
  79. pulumi_gcp/redis/outputs.py +40 -0
  80. pulumi_gcp/spanner/database.py +0 -34
  81. pulumi_gcp/storage/_inputs.py +111 -0
  82. pulumi_gcp/storage/bucket_object.py +28 -0
  83. pulumi_gcp/storage/control_folder_intelligence_config.py +32 -0
  84. pulumi_gcp/storage/control_organization_intelligence_config.py +32 -0
  85. pulumi_gcp/storage/control_project_intelligence_config.py +32 -0
  86. pulumi_gcp/storage/get_bucket_object.py +12 -1
  87. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  88. pulumi_gcp/storage/get_control_folder_intelligence_config.py +12 -1
  89. pulumi_gcp/storage/get_control_organization_intelligence_config.py +12 -1
  90. pulumi_gcp/storage/get_control_project_intelligence_config.py +12 -1
  91. pulumi_gcp/storage/outputs.py +174 -0
  92. pulumi_gcp/vertex/__init__.py +12 -0
  93. pulumi_gcp/vertex/_inputs.py +294 -0
  94. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  95. pulumi_gcp/vertex/ai_feature_group.py +1 -1
  96. pulumi_gcp/vertex/ai_feature_group_iam_binding.py +583 -0
  97. pulumi_gcp/vertex/ai_feature_group_iam_member.py +583 -0
  98. pulumi_gcp/vertex/ai_feature_group_iam_policy.py +422 -0
  99. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +26 -27
  100. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +614 -0
  101. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +614 -0
  102. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +453 -0
  103. pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +583 -0
  104. pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +583 -0
  105. pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +422 -0
  106. pulumi_gcp/vertex/get_ai_feature_group_iam_policy.py +177 -0
  107. pulumi_gcp/vertex/get_ai_feature_online_store_featureview_iam_policy.py +194 -0
  108. pulumi_gcp/vertex/get_ai_feature_online_store_iam_policy.py +177 -0
  109. pulumi_gcp/vertex/outputs.py +168 -0
  110. pulumi_gcp/workbench/_inputs.py +60 -0
  111. pulumi_gcp/workbench/instance.py +48 -0
  112. pulumi_gcp/workbench/outputs.py +55 -0
  113. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/METADATA +1 -1
  114. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/RECORD +116 -97
  115. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/WHEEL +0 -0
  116. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/top_level.txt +0 -0
@@ -188,6 +188,12 @@ __all__ = [
188
188
  'ImageShieldedInstanceInitialStateKekArgsDict',
189
189
  'ImageShieldedInstanceInitialStatePkArgs',
190
190
  'ImageShieldedInstanceInitialStatePkArgsDict',
191
+ 'ImageSourceDiskEncryptionKeyArgs',
192
+ 'ImageSourceDiskEncryptionKeyArgsDict',
193
+ 'ImageSourceImageEncryptionKeyArgs',
194
+ 'ImageSourceImageEncryptionKeyArgsDict',
195
+ 'ImageSourceSnapshotEncryptionKeyArgs',
196
+ 'ImageSourceSnapshotEncryptionKeyArgsDict',
191
197
  'InstanceAdvancedMachineFeaturesArgs',
192
198
  'InstanceAdvancedMachineFeaturesArgsDict',
193
199
  'InstanceAttachedDiskArgs',
@@ -10978,6 +10984,381 @@ class ImageShieldedInstanceInitialStatePkArgs:
10978
10984
  pulumi.set(self, "file_type", value)
10979
10985
 
10980
10986
 
10987
+ if not MYPY:
10988
+ class ImageSourceDiskEncryptionKeyArgsDict(TypedDict):
10989
+ kms_key_self_link: NotRequired[pulumi.Input[builtins.str]]
10990
+ """
10991
+ The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
10992
+ in the cloud console. Your project's Compute Engine System service account
10993
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
10994
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
10995
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
10996
+ """
10997
+ kms_key_service_account: NotRequired[pulumi.Input[builtins.str]]
10998
+ """
10999
+ The service account being used for the encryption request for the
11000
+ given KMS key. If absent, the Compute Engine default service
11001
+ account is used.
11002
+ """
11003
+ raw_key: NotRequired[pulumi.Input[builtins.str]]
11004
+ """
11005
+ Specifies a 256-bit customer-supplied encryption key, encoded in
11006
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11007
+ **Note**: This property is sensitive and will not be displayed in the plan.
11008
+ """
11009
+ rsa_encrypted_key: NotRequired[pulumi.Input[builtins.str]]
11010
+ """
11011
+ Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11012
+ customer-supplied encryption key to either encrypt or decrypt
11013
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11014
+ **Note**: This property is sensitive and will not be displayed in the plan.
11015
+ """
11016
+ elif False:
11017
+ ImageSourceDiskEncryptionKeyArgsDict: TypeAlias = Mapping[str, Any]
11018
+
11019
+ @pulumi.input_type
11020
+ class ImageSourceDiskEncryptionKeyArgs:
11021
+ def __init__(__self__, *,
11022
+ kms_key_self_link: Optional[pulumi.Input[builtins.str]] = None,
11023
+ kms_key_service_account: Optional[pulumi.Input[builtins.str]] = None,
11024
+ raw_key: Optional[pulumi.Input[builtins.str]] = None,
11025
+ rsa_encrypted_key: Optional[pulumi.Input[builtins.str]] = None):
11026
+ """
11027
+ :param pulumi.Input[builtins.str] kms_key_self_link: The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
11028
+ in the cloud console. Your project's Compute Engine System service account
11029
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
11030
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
11031
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
11032
+ :param pulumi.Input[builtins.str] kms_key_service_account: The service account being used for the encryption request for the
11033
+ given KMS key. If absent, the Compute Engine default service
11034
+ account is used.
11035
+ :param pulumi.Input[builtins.str] raw_key: Specifies a 256-bit customer-supplied encryption key, encoded in
11036
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11037
+ **Note**: This property is sensitive and will not be displayed in the plan.
11038
+ :param pulumi.Input[builtins.str] rsa_encrypted_key: Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11039
+ customer-supplied encryption key to either encrypt or decrypt
11040
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11041
+ **Note**: This property is sensitive and will not be displayed in the plan.
11042
+ """
11043
+ if kms_key_self_link is not None:
11044
+ pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
11045
+ if kms_key_service_account is not None:
11046
+ pulumi.set(__self__, "kms_key_service_account", kms_key_service_account)
11047
+ if raw_key is not None:
11048
+ pulumi.set(__self__, "raw_key", raw_key)
11049
+ if rsa_encrypted_key is not None:
11050
+ pulumi.set(__self__, "rsa_encrypted_key", rsa_encrypted_key)
11051
+
11052
+ @property
11053
+ @pulumi.getter(name="kmsKeySelfLink")
11054
+ def kms_key_self_link(self) -> Optional[pulumi.Input[builtins.str]]:
11055
+ """
11056
+ The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
11057
+ in the cloud console. Your project's Compute Engine System service account
11058
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
11059
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
11060
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
11061
+ """
11062
+ return pulumi.get(self, "kms_key_self_link")
11063
+
11064
+ @kms_key_self_link.setter
11065
+ def kms_key_self_link(self, value: Optional[pulumi.Input[builtins.str]]):
11066
+ pulumi.set(self, "kms_key_self_link", value)
11067
+
11068
+ @property
11069
+ @pulumi.getter(name="kmsKeyServiceAccount")
11070
+ def kms_key_service_account(self) -> Optional[pulumi.Input[builtins.str]]:
11071
+ """
11072
+ The service account being used for the encryption request for the
11073
+ given KMS key. If absent, the Compute Engine default service
11074
+ account is used.
11075
+ """
11076
+ return pulumi.get(self, "kms_key_service_account")
11077
+
11078
+ @kms_key_service_account.setter
11079
+ def kms_key_service_account(self, value: Optional[pulumi.Input[builtins.str]]):
11080
+ pulumi.set(self, "kms_key_service_account", value)
11081
+
11082
+ @property
11083
+ @pulumi.getter(name="rawKey")
11084
+ def raw_key(self) -> Optional[pulumi.Input[builtins.str]]:
11085
+ """
11086
+ Specifies a 256-bit customer-supplied encryption key, encoded in
11087
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11088
+ **Note**: This property is sensitive and will not be displayed in the plan.
11089
+ """
11090
+ return pulumi.get(self, "raw_key")
11091
+
11092
+ @raw_key.setter
11093
+ def raw_key(self, value: Optional[pulumi.Input[builtins.str]]):
11094
+ pulumi.set(self, "raw_key", value)
11095
+
11096
+ @property
11097
+ @pulumi.getter(name="rsaEncryptedKey")
11098
+ def rsa_encrypted_key(self) -> Optional[pulumi.Input[builtins.str]]:
11099
+ """
11100
+ Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11101
+ customer-supplied encryption key to either encrypt or decrypt
11102
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11103
+ **Note**: This property is sensitive and will not be displayed in the plan.
11104
+ """
11105
+ return pulumi.get(self, "rsa_encrypted_key")
11106
+
11107
+ @rsa_encrypted_key.setter
11108
+ def rsa_encrypted_key(self, value: Optional[pulumi.Input[builtins.str]]):
11109
+ pulumi.set(self, "rsa_encrypted_key", value)
11110
+
11111
+
11112
+ if not MYPY:
11113
+ class ImageSourceImageEncryptionKeyArgsDict(TypedDict):
11114
+ kms_key_self_link: NotRequired[pulumi.Input[builtins.str]]
11115
+ """
11116
+ The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
11117
+ in the cloud console. Your project's Compute Engine System service account
11118
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
11119
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
11120
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
11121
+ """
11122
+ kms_key_service_account: NotRequired[pulumi.Input[builtins.str]]
11123
+ """
11124
+ The service account being used for the encryption request for the
11125
+ given KMS key. If absent, the Compute Engine default service
11126
+ account is used.
11127
+ """
11128
+ raw_key: NotRequired[pulumi.Input[builtins.str]]
11129
+ """
11130
+ Specifies a 256-bit customer-supplied encryption key, encoded in
11131
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11132
+ **Note**: This property is sensitive and will not be displayed in the plan.
11133
+ """
11134
+ rsa_encrypted_key: NotRequired[pulumi.Input[builtins.str]]
11135
+ """
11136
+ Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11137
+ customer-supplied encryption key to either encrypt or decrypt
11138
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11139
+ **Note**: This property is sensitive and will not be displayed in the plan.
11140
+ """
11141
+ elif False:
11142
+ ImageSourceImageEncryptionKeyArgsDict: TypeAlias = Mapping[str, Any]
11143
+
11144
+ @pulumi.input_type
11145
+ class ImageSourceImageEncryptionKeyArgs:
11146
+ def __init__(__self__, *,
11147
+ kms_key_self_link: Optional[pulumi.Input[builtins.str]] = None,
11148
+ kms_key_service_account: Optional[pulumi.Input[builtins.str]] = None,
11149
+ raw_key: Optional[pulumi.Input[builtins.str]] = None,
11150
+ rsa_encrypted_key: Optional[pulumi.Input[builtins.str]] = None):
11151
+ """
11152
+ :param pulumi.Input[builtins.str] kms_key_self_link: The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
11153
+ in the cloud console. Your project's Compute Engine System service account
11154
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
11155
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
11156
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
11157
+ :param pulumi.Input[builtins.str] kms_key_service_account: The service account being used for the encryption request for the
11158
+ given KMS key. If absent, the Compute Engine default service
11159
+ account is used.
11160
+ :param pulumi.Input[builtins.str] raw_key: Specifies a 256-bit customer-supplied encryption key, encoded in
11161
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11162
+ **Note**: This property is sensitive and will not be displayed in the plan.
11163
+ :param pulumi.Input[builtins.str] rsa_encrypted_key: Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11164
+ customer-supplied encryption key to either encrypt or decrypt
11165
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11166
+ **Note**: This property is sensitive and will not be displayed in the plan.
11167
+ """
11168
+ if kms_key_self_link is not None:
11169
+ pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
11170
+ if kms_key_service_account is not None:
11171
+ pulumi.set(__self__, "kms_key_service_account", kms_key_service_account)
11172
+ if raw_key is not None:
11173
+ pulumi.set(__self__, "raw_key", raw_key)
11174
+ if rsa_encrypted_key is not None:
11175
+ pulumi.set(__self__, "rsa_encrypted_key", rsa_encrypted_key)
11176
+
11177
+ @property
11178
+ @pulumi.getter(name="kmsKeySelfLink")
11179
+ def kms_key_self_link(self) -> Optional[pulumi.Input[builtins.str]]:
11180
+ """
11181
+ The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
11182
+ in the cloud console. Your project's Compute Engine System service account
11183
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
11184
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
11185
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
11186
+ """
11187
+ return pulumi.get(self, "kms_key_self_link")
11188
+
11189
+ @kms_key_self_link.setter
11190
+ def kms_key_self_link(self, value: Optional[pulumi.Input[builtins.str]]):
11191
+ pulumi.set(self, "kms_key_self_link", value)
11192
+
11193
+ @property
11194
+ @pulumi.getter(name="kmsKeyServiceAccount")
11195
+ def kms_key_service_account(self) -> Optional[pulumi.Input[builtins.str]]:
11196
+ """
11197
+ The service account being used for the encryption request for the
11198
+ given KMS key. If absent, the Compute Engine default service
11199
+ account is used.
11200
+ """
11201
+ return pulumi.get(self, "kms_key_service_account")
11202
+
11203
+ @kms_key_service_account.setter
11204
+ def kms_key_service_account(self, value: Optional[pulumi.Input[builtins.str]]):
11205
+ pulumi.set(self, "kms_key_service_account", value)
11206
+
11207
+ @property
11208
+ @pulumi.getter(name="rawKey")
11209
+ def raw_key(self) -> Optional[pulumi.Input[builtins.str]]:
11210
+ """
11211
+ Specifies a 256-bit customer-supplied encryption key, encoded in
11212
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11213
+ **Note**: This property is sensitive and will not be displayed in the plan.
11214
+ """
11215
+ return pulumi.get(self, "raw_key")
11216
+
11217
+ @raw_key.setter
11218
+ def raw_key(self, value: Optional[pulumi.Input[builtins.str]]):
11219
+ pulumi.set(self, "raw_key", value)
11220
+
11221
+ @property
11222
+ @pulumi.getter(name="rsaEncryptedKey")
11223
+ def rsa_encrypted_key(self) -> Optional[pulumi.Input[builtins.str]]:
11224
+ """
11225
+ Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11226
+ customer-supplied encryption key to either encrypt or decrypt
11227
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11228
+ **Note**: This property is sensitive and will not be displayed in the plan.
11229
+ """
11230
+ return pulumi.get(self, "rsa_encrypted_key")
11231
+
11232
+ @rsa_encrypted_key.setter
11233
+ def rsa_encrypted_key(self, value: Optional[pulumi.Input[builtins.str]]):
11234
+ pulumi.set(self, "rsa_encrypted_key", value)
11235
+
11236
+
11237
+ if not MYPY:
11238
+ class ImageSourceSnapshotEncryptionKeyArgsDict(TypedDict):
11239
+ kms_key_self_link: NotRequired[pulumi.Input[builtins.str]]
11240
+ """
11241
+ The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
11242
+ in the cloud console. Your project's Compute Engine System service account
11243
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
11244
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
11245
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
11246
+ """
11247
+ kms_key_service_account: NotRequired[pulumi.Input[builtins.str]]
11248
+ """
11249
+ The service account being used for the encryption request for the
11250
+ given KMS key. If absent, the Compute Engine default service
11251
+ account is used.
11252
+ """
11253
+ raw_key: NotRequired[pulumi.Input[builtins.str]]
11254
+ """
11255
+ Specifies a 256-bit customer-supplied encryption key, encoded in
11256
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11257
+ **Note**: This property is sensitive and will not be displayed in the plan.
11258
+ """
11259
+ rsa_encrypted_key: NotRequired[pulumi.Input[builtins.str]]
11260
+ """
11261
+ Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11262
+ customer-supplied encryption key to either encrypt or decrypt
11263
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11264
+ **Note**: This property is sensitive and will not be displayed in the plan.
11265
+ """
11266
+ elif False:
11267
+ ImageSourceSnapshotEncryptionKeyArgsDict: TypeAlias = Mapping[str, Any]
11268
+
11269
+ @pulumi.input_type
11270
+ class ImageSourceSnapshotEncryptionKeyArgs:
11271
+ def __init__(__self__, *,
11272
+ kms_key_self_link: Optional[pulumi.Input[builtins.str]] = None,
11273
+ kms_key_service_account: Optional[pulumi.Input[builtins.str]] = None,
11274
+ raw_key: Optional[pulumi.Input[builtins.str]] = None,
11275
+ rsa_encrypted_key: Optional[pulumi.Input[builtins.str]] = None):
11276
+ """
11277
+ :param pulumi.Input[builtins.str] kms_key_self_link: The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
11278
+ in the cloud console. Your project's Compute Engine System service account
11279
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
11280
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
11281
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
11282
+ :param pulumi.Input[builtins.str] kms_key_service_account: The service account being used for the encryption request for the
11283
+ given KMS key. If absent, the Compute Engine default service
11284
+ account is used.
11285
+ :param pulumi.Input[builtins.str] raw_key: Specifies a 256-bit customer-supplied encryption key, encoded in
11286
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11287
+ **Note**: This property is sensitive and will not be displayed in the plan.
11288
+ :param pulumi.Input[builtins.str] rsa_encrypted_key: Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11289
+ customer-supplied encryption key to either encrypt or decrypt
11290
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11291
+ **Note**: This property is sensitive and will not be displayed in the plan.
11292
+ """
11293
+ if kms_key_self_link is not None:
11294
+ pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
11295
+ if kms_key_service_account is not None:
11296
+ pulumi.set(__self__, "kms_key_service_account", kms_key_service_account)
11297
+ if raw_key is not None:
11298
+ pulumi.set(__self__, "raw_key", raw_key)
11299
+ if rsa_encrypted_key is not None:
11300
+ pulumi.set(__self__, "rsa_encrypted_key", rsa_encrypted_key)
11301
+
11302
+ @property
11303
+ @pulumi.getter(name="kmsKeySelfLink")
11304
+ def kms_key_self_link(self) -> Optional[pulumi.Input[builtins.str]]:
11305
+ """
11306
+ The self link of the encryption key used to decrypt this resource. Also called KmsKeyName
11307
+ in the cloud console. Your project's Compute Engine System service account
11308
+ (`service-{{PROJECT_NUMBER}}@compute-system.iam.gserviceaccount.com`) must have
11309
+ `roles/cloudkms.cryptoKeyEncrypterDecrypter` to use this feature.
11310
+ See https://cloud.google.com/compute/docs/disks/customer-managed-encryption#encrypt_a_new_persistent_disk_with_your_own_keys
11311
+ """
11312
+ return pulumi.get(self, "kms_key_self_link")
11313
+
11314
+ @kms_key_self_link.setter
11315
+ def kms_key_self_link(self, value: Optional[pulumi.Input[builtins.str]]):
11316
+ pulumi.set(self, "kms_key_self_link", value)
11317
+
11318
+ @property
11319
+ @pulumi.getter(name="kmsKeyServiceAccount")
11320
+ def kms_key_service_account(self) -> Optional[pulumi.Input[builtins.str]]:
11321
+ """
11322
+ The service account being used for the encryption request for the
11323
+ given KMS key. If absent, the Compute Engine default service
11324
+ account is used.
11325
+ """
11326
+ return pulumi.get(self, "kms_key_service_account")
11327
+
11328
+ @kms_key_service_account.setter
11329
+ def kms_key_service_account(self, value: Optional[pulumi.Input[builtins.str]]):
11330
+ pulumi.set(self, "kms_key_service_account", value)
11331
+
11332
+ @property
11333
+ @pulumi.getter(name="rawKey")
11334
+ def raw_key(self) -> Optional[pulumi.Input[builtins.str]]:
11335
+ """
11336
+ Specifies a 256-bit customer-supplied encryption key, encoded in
11337
+ RFC 4648 base64 to either encrypt or decrypt this resource.
11338
+ **Note**: This property is sensitive and will not be displayed in the plan.
11339
+ """
11340
+ return pulumi.get(self, "raw_key")
11341
+
11342
+ @raw_key.setter
11343
+ def raw_key(self, value: Optional[pulumi.Input[builtins.str]]):
11344
+ pulumi.set(self, "raw_key", value)
11345
+
11346
+ @property
11347
+ @pulumi.getter(name="rsaEncryptedKey")
11348
+ def rsa_encrypted_key(self) -> Optional[pulumi.Input[builtins.str]]:
11349
+ """
11350
+ Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
11351
+ customer-supplied encryption key to either encrypt or decrypt
11352
+ this resource. You can provide either the rawKey or the rsaEncryptedKey.
11353
+ **Note**: This property is sensitive and will not be displayed in the plan.
11354
+ """
11355
+ return pulumi.get(self, "rsa_encrypted_key")
11356
+
11357
+ @rsa_encrypted_key.setter
11358
+ def rsa_encrypted_key(self, value: Optional[pulumi.Input[builtins.str]]):
11359
+ pulumi.set(self, "rsa_encrypted_key", value)
11360
+
11361
+
10981
11362
  if not MYPY:
10982
11363
  class InstanceAdvancedMachineFeaturesArgsDict(TypedDict):
10983
11364
  enable_nested_virtualization: NotRequired[pulumi.Input[builtins.bool]]
@@ -53324,6 +53705,10 @@ if not MYPY:
53324
53705
  """
53325
53706
  Specifies the number of max logical switches.
53326
53707
  """
53708
+ tpu_topology: NotRequired[pulumi.Input[builtins.str]]
53709
+ """
53710
+ Specifies the shape of the TPU slice.
53711
+ """
53327
53712
  vm_count: NotRequired[pulumi.Input[builtins.int]]
53328
53713
  """
53329
53714
  Number of VMs in this placement group. Google does not recommend that you use this field
@@ -53340,6 +53725,7 @@ class ResourcePolicyGroupPlacementPolicyArgs:
53340
53725
  collocation: Optional[pulumi.Input[builtins.str]] = None,
53341
53726
  gpu_topology: Optional[pulumi.Input[builtins.str]] = None,
53342
53727
  max_distance: Optional[pulumi.Input[builtins.int]] = None,
53728
+ tpu_topology: Optional[pulumi.Input[builtins.str]] = None,
53343
53729
  vm_count: Optional[pulumi.Input[builtins.int]] = None):
53344
53730
  """
53345
53731
  :param pulumi.Input[builtins.int] availability_domain_count: The number of availability domains instances will be spread across. If two instances are in different
@@ -53351,6 +53737,7 @@ class ResourcePolicyGroupPlacementPolicyArgs:
53351
53737
  Possible values are: `COLLOCATED`.
53352
53738
  :param pulumi.Input[builtins.str] gpu_topology: Specifies the shape of the GPU slice, in slice based GPU families eg. A4X.
53353
53739
  :param pulumi.Input[builtins.int] max_distance: Specifies the number of max logical switches.
53740
+ :param pulumi.Input[builtins.str] tpu_topology: Specifies the shape of the TPU slice.
53354
53741
  :param pulumi.Input[builtins.int] vm_count: Number of VMs in this placement group. Google does not recommend that you use this field
53355
53742
  unless you use a compact policy and you want your policy to work only if it contains this
53356
53743
  exact number of VMs.
@@ -53363,6 +53750,8 @@ class ResourcePolicyGroupPlacementPolicyArgs:
53363
53750
  pulumi.set(__self__, "gpu_topology", gpu_topology)
53364
53751
  if max_distance is not None:
53365
53752
  pulumi.set(__self__, "max_distance", max_distance)
53753
+ if tpu_topology is not None:
53754
+ pulumi.set(__self__, "tpu_topology", tpu_topology)
53366
53755
  if vm_count is not None:
53367
53756
  pulumi.set(__self__, "vm_count", vm_count)
53368
53757
 
@@ -53419,6 +53808,18 @@ class ResourcePolicyGroupPlacementPolicyArgs:
53419
53808
  def max_distance(self, value: Optional[pulumi.Input[builtins.int]]):
53420
53809
  pulumi.set(self, "max_distance", value)
53421
53810
 
53811
+ @property
53812
+ @pulumi.getter(name="tpuTopology")
53813
+ def tpu_topology(self) -> Optional[pulumi.Input[builtins.str]]:
53814
+ """
53815
+ Specifies the shape of the TPU slice.
53816
+ """
53817
+ return pulumi.get(self, "tpu_topology")
53818
+
53819
+ @tpu_topology.setter
53820
+ def tpu_topology(self, value: Optional[pulumi.Input[builtins.str]]):
53821
+ pulumi.set(self, "tpu_topology", value)
53822
+
53422
53823
  @property
53423
53824
  @pulumi.getter(name="vmCount")
53424
53825
  def vm_count(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -58656,6 +59057,10 @@ class SnapshotSnapshotEncryptionKeyArgs:
58656
59057
 
58657
59058
  if not MYPY:
58658
59059
  class SnapshotSourceDiskEncryptionKeyArgsDict(TypedDict):
59060
+ kms_key_self_link: NotRequired[pulumi.Input[builtins.str]]
59061
+ """
59062
+ The name of the encryption key that is stored in Google Cloud KMS.
59063
+ """
58659
59064
  kms_key_service_account: NotRequired[pulumi.Input[builtins.str]]
58660
59065
  """
58661
59066
  The service account used for the encryption request for the given KMS key.
@@ -58667,25 +59072,53 @@ if not MYPY:
58667
59072
  RFC 4648 base64 to either encrypt or decrypt this resource.
58668
59073
  **Note**: This property is sensitive and will not be displayed in the plan.
58669
59074
  """
59075
+ rsa_encrypted_key: NotRequired[pulumi.Input[builtins.str]]
59076
+ """
59077
+ Specifies an encryption key stored in Google Cloud KMS, encoded in
59078
+ RFC 4648 base64 to either encrypt or decrypt this resource.
59079
+ **Note**: This property is sensitive and will not be displayed in the plan.
59080
+ """
58670
59081
  elif False:
58671
59082
  SnapshotSourceDiskEncryptionKeyArgsDict: TypeAlias = Mapping[str, Any]
58672
59083
 
58673
59084
  @pulumi.input_type
58674
59085
  class SnapshotSourceDiskEncryptionKeyArgs:
58675
59086
  def __init__(__self__, *,
59087
+ kms_key_self_link: Optional[pulumi.Input[builtins.str]] = None,
58676
59088
  kms_key_service_account: Optional[pulumi.Input[builtins.str]] = None,
58677
- raw_key: Optional[pulumi.Input[builtins.str]] = None):
59089
+ raw_key: Optional[pulumi.Input[builtins.str]] = None,
59090
+ rsa_encrypted_key: Optional[pulumi.Input[builtins.str]] = None):
58678
59091
  """
59092
+ :param pulumi.Input[builtins.str] kms_key_self_link: The name of the encryption key that is stored in Google Cloud KMS.
58679
59093
  :param pulumi.Input[builtins.str] kms_key_service_account: The service account used for the encryption request for the given KMS key.
58680
59094
  If absent, the Compute Engine Service Agent service account is used.
58681
59095
  :param pulumi.Input[builtins.str] raw_key: Specifies a 256-bit customer-supplied encryption key, encoded in
58682
59096
  RFC 4648 base64 to either encrypt or decrypt this resource.
58683
59097
  **Note**: This property is sensitive and will not be displayed in the plan.
59098
+ :param pulumi.Input[builtins.str] rsa_encrypted_key: Specifies an encryption key stored in Google Cloud KMS, encoded in
59099
+ RFC 4648 base64 to either encrypt or decrypt this resource.
59100
+ **Note**: This property is sensitive and will not be displayed in the plan.
58684
59101
  """
59102
+ if kms_key_self_link is not None:
59103
+ pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
58685
59104
  if kms_key_service_account is not None:
58686
59105
  pulumi.set(__self__, "kms_key_service_account", kms_key_service_account)
58687
59106
  if raw_key is not None:
58688
59107
  pulumi.set(__self__, "raw_key", raw_key)
59108
+ if rsa_encrypted_key is not None:
59109
+ pulumi.set(__self__, "rsa_encrypted_key", rsa_encrypted_key)
59110
+
59111
+ @property
59112
+ @pulumi.getter(name="kmsKeySelfLink")
59113
+ def kms_key_self_link(self) -> Optional[pulumi.Input[builtins.str]]:
59114
+ """
59115
+ The name of the encryption key that is stored in Google Cloud KMS.
59116
+ """
59117
+ return pulumi.get(self, "kms_key_self_link")
59118
+
59119
+ @kms_key_self_link.setter
59120
+ def kms_key_self_link(self, value: Optional[pulumi.Input[builtins.str]]):
59121
+ pulumi.set(self, "kms_key_self_link", value)
58689
59122
 
58690
59123
  @property
58691
59124
  @pulumi.getter(name="kmsKeyServiceAccount")
@@ -58714,6 +59147,20 @@ class SnapshotSourceDiskEncryptionKeyArgs:
58714
59147
  def raw_key(self, value: Optional[pulumi.Input[builtins.str]]):
58715
59148
  pulumi.set(self, "raw_key", value)
58716
59149
 
59150
+ @property
59151
+ @pulumi.getter(name="rsaEncryptedKey")
59152
+ def rsa_encrypted_key(self) -> Optional[pulumi.Input[builtins.str]]:
59153
+ """
59154
+ Specifies an encryption key stored in Google Cloud KMS, encoded in
59155
+ RFC 4648 base64 to either encrypt or decrypt this resource.
59156
+ **Note**: This property is sensitive and will not be displayed in the plan.
59157
+ """
59158
+ return pulumi.get(self, "rsa_encrypted_key")
59159
+
59160
+ @rsa_encrypted_key.setter
59161
+ def rsa_encrypted_key(self, value: Optional[pulumi.Input[builtins.str]]):
59162
+ pulumi.set(self, "rsa_encrypted_key", value)
59163
+
58717
59164
 
58718
59165
  if not MYPY:
58719
59166
  class SubnetworkIAMBindingConditionArgsDict(TypedDict):