pulumi-gcp 7.7.0a1705990280__py3-none-any.whl → 7.8.0a1706310284__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. pulumi_gcp/__init__.py +56 -0
  2. pulumi_gcp/alloydb/cluster.py +26 -21
  3. pulumi_gcp/bigquery/_inputs.py +231 -0
  4. pulumi_gcp/bigquery/outputs.py +229 -0
  5. pulumi_gcp/bigquery/routine.py +256 -10
  6. pulumi_gcp/bigquery/table.py +47 -0
  7. pulumi_gcp/cloudbuildv2/repository.py +60 -53
  8. pulumi_gcp/cloudrunv2/_inputs.py +176 -4
  9. pulumi_gcp/cloudrunv2/outputs.py +256 -3
  10. pulumi_gcp/cloudrunv2/service.py +148 -0
  11. pulumi_gcp/composer/_inputs.py +24 -0
  12. pulumi_gcp/composer/outputs.py +34 -0
  13. pulumi_gcp/compute/_inputs.py +4 -2
  14. pulumi_gcp/compute/disk.py +14 -14
  15. pulumi_gcp/compute/outputs.py +4 -2
  16. pulumi_gcp/healthcare/fhir_store.py +56 -0
  17. pulumi_gcp/kms/crypto_key.py +2 -2
  18. pulumi_gcp/kms/crypto_key_iam_binding.py +2 -2
  19. pulumi_gcp/kms/crypto_key_iam_member.py +2 -2
  20. pulumi_gcp/kms/crypto_key_iam_policy.py +2 -2
  21. pulumi_gcp/kms/crypto_key_version.py +2 -2
  22. pulumi_gcp/kms/secret_ciphertext.py +2 -2
  23. pulumi_gcp/netapp/__init__.py +4 -0
  24. pulumi_gcp/netapp/_inputs.py +643 -0
  25. pulumi_gcp/netapp/backup_policy.py +829 -0
  26. pulumi_gcp/netapp/kmsconfig.py +2 -2
  27. pulumi_gcp/netapp/outputs.py +651 -0
  28. pulumi_gcp/netapp/volume.py +1467 -0
  29. pulumi_gcp/networksecurity/__init__.py +5 -0
  30. pulumi_gcp/networksecurity/_inputs.py +228 -0
  31. pulumi_gcp/networksecurity/address_group_iam_binding.py +324 -0
  32. pulumi_gcp/networksecurity/address_group_iam_member.py +324 -0
  33. pulumi_gcp/networksecurity/address_group_iam_policy.py +492 -0
  34. pulumi_gcp/networksecurity/get_address_group_iam_policy.py +144 -0
  35. pulumi_gcp/networksecurity/outputs.py +212 -0
  36. pulumi_gcp/networksecurity/security_profile.py +800 -0
  37. pulumi_gcp/networkservices/gateway.py +1 -1
  38. pulumi_gcp/organizations/get_folders.py +1 -1
  39. pulumi_gcp/orgpolicy/_inputs.py +12 -12
  40. pulumi_gcp/orgpolicy/outputs.py +12 -12
  41. pulumi_gcp/securesourcemanager/instance.py +4 -2
  42. pulumi_gcp/storage/insights_report_config.py +12 -10
  43. pulumi_gcp/vertex/__init__.py +1 -0
  44. pulumi_gcp/vertex/ai_feature_group_feature.py +767 -0
  45. pulumi_gcp/workstations/workstation_config.py +47 -0
  46. {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/METADATA +1 -1
  47. {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/RECORD +49 -39
  48. {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/WHEEL +0 -0
  49. {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/top_level.txt +0 -0
@@ -65,6 +65,7 @@ __all__ = [
65
65
  'JobStatusErrorResult',
66
66
  'ReservationAutoscale',
67
67
  'RoutineArgument',
68
+ 'RoutineSparkOptions',
68
69
  'TableEncryptionConfiguration',
69
70
  'TableExternalDataConfiguration',
70
71
  'TableExternalDataConfigurationAvroOptions',
@@ -81,6 +82,7 @@ __all__ = [
81
82
  'TableTableConstraintsForeignKeyColumnReferences',
82
83
  'TableTableConstraintsForeignKeyReferencedTable',
83
84
  'TableTableConstraintsPrimaryKey',
85
+ 'TableTableReplicationInfo',
84
86
  'TableTimePartitioning',
85
87
  'TableView',
86
88
  'GetDatasetAccessResult',
@@ -3962,6 +3964,176 @@ class RoutineArgument(dict):
3962
3964
  return pulumi.get(self, "name")
3963
3965
 
3964
3966
 
3967
+ @pulumi.output_type
3968
+ class RoutineSparkOptions(dict):
3969
+ @staticmethod
3970
+ def __key_warning(key: str):
3971
+ suggest = None
3972
+ if key == "archiveUris":
3973
+ suggest = "archive_uris"
3974
+ elif key == "containerImage":
3975
+ suggest = "container_image"
3976
+ elif key == "fileUris":
3977
+ suggest = "file_uris"
3978
+ elif key == "jarUris":
3979
+ suggest = "jar_uris"
3980
+ elif key == "mainClass":
3981
+ suggest = "main_class"
3982
+ elif key == "mainFileUri":
3983
+ suggest = "main_file_uri"
3984
+ elif key == "pyFileUris":
3985
+ suggest = "py_file_uris"
3986
+ elif key == "runtimeVersion":
3987
+ suggest = "runtime_version"
3988
+
3989
+ if suggest:
3990
+ pulumi.log.warn(f"Key '{key}' not found in RoutineSparkOptions. Access the value via the '{suggest}' property getter instead.")
3991
+
3992
+ def __getitem__(self, key: str) -> Any:
3993
+ RoutineSparkOptions.__key_warning(key)
3994
+ return super().__getitem__(key)
3995
+
3996
+ def get(self, key: str, default = None) -> Any:
3997
+ RoutineSparkOptions.__key_warning(key)
3998
+ return super().get(key, default)
3999
+
4000
+ def __init__(__self__, *,
4001
+ archive_uris: Optional[Sequence[str]] = None,
4002
+ connection: Optional[str] = None,
4003
+ container_image: Optional[str] = None,
4004
+ file_uris: Optional[Sequence[str]] = None,
4005
+ jar_uris: Optional[Sequence[str]] = None,
4006
+ main_class: Optional[str] = None,
4007
+ main_file_uri: Optional[str] = None,
4008
+ properties: Optional[Mapping[str, str]] = None,
4009
+ py_file_uris: Optional[Sequence[str]] = None,
4010
+ runtime_version: Optional[str] = None):
4011
+ """
4012
+ :param Sequence[str] archive_uris: Archive files to be extracted into the working directory of each executor. For more information about Apache Spark, see Apache Spark.
4013
+ :param str connection: Fully qualified name of the user-provided Spark connection object.
4014
+ Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
4015
+ :param str container_image: Custom container image for the runtime environment.
4016
+ :param Sequence[str] file_uris: Files to be placed in the working directory of each executor. For more information about Apache Spark, see Apache Spark.
4017
+ :param Sequence[str] jar_uris: JARs to include on the driver and executor CLASSPATH. For more information about Apache Spark, see Apache Spark.
4018
+ :param str main_class: The fully qualified name of a class in jarUris, for example, com.example.wordcount.
4019
+ Exactly one of mainClass and main_jar_uri field should be set for Java/Scala language type.
4020
+ :param str main_file_uri: The main file/jar URI of the Spark application.
4021
+ Exactly one of the definitionBody field and the mainFileUri field must be set for Python.
4022
+ Exactly one of mainClass and mainFileUri field should be set for Java/Scala language type.
4023
+ :param Mapping[str, str] properties: Configuration properties as a set of key/value pairs, which will be passed on to the Spark application.
4024
+ For more information, see Apache Spark and the procedure option list.
4025
+ An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
4026
+ :param Sequence[str] py_file_uris: Python files to be placed on the PYTHONPATH for PySpark application. Supported file types: .py, .egg, and .zip. For more information about Apache Spark, see Apache Spark.
4027
+ :param str runtime_version: Runtime version. If not specified, the default runtime version is used.
4028
+ """
4029
+ if archive_uris is not None:
4030
+ pulumi.set(__self__, "archive_uris", archive_uris)
4031
+ if connection is not None:
4032
+ pulumi.set(__self__, "connection", connection)
4033
+ if container_image is not None:
4034
+ pulumi.set(__self__, "container_image", container_image)
4035
+ if file_uris is not None:
4036
+ pulumi.set(__self__, "file_uris", file_uris)
4037
+ if jar_uris is not None:
4038
+ pulumi.set(__self__, "jar_uris", jar_uris)
4039
+ if main_class is not None:
4040
+ pulumi.set(__self__, "main_class", main_class)
4041
+ if main_file_uri is not None:
4042
+ pulumi.set(__self__, "main_file_uri", main_file_uri)
4043
+ if properties is not None:
4044
+ pulumi.set(__self__, "properties", properties)
4045
+ if py_file_uris is not None:
4046
+ pulumi.set(__self__, "py_file_uris", py_file_uris)
4047
+ if runtime_version is not None:
4048
+ pulumi.set(__self__, "runtime_version", runtime_version)
4049
+
4050
+ @property
4051
+ @pulumi.getter(name="archiveUris")
4052
+ def archive_uris(self) -> Optional[Sequence[str]]:
4053
+ """
4054
+ Archive files to be extracted into the working directory of each executor. For more information about Apache Spark, see Apache Spark.
4055
+ """
4056
+ return pulumi.get(self, "archive_uris")
4057
+
4058
+ @property
4059
+ @pulumi.getter
4060
+ def connection(self) -> Optional[str]:
4061
+ """
4062
+ Fully qualified name of the user-provided Spark connection object.
4063
+ Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
4064
+ """
4065
+ return pulumi.get(self, "connection")
4066
+
4067
+ @property
4068
+ @pulumi.getter(name="containerImage")
4069
+ def container_image(self) -> Optional[str]:
4070
+ """
4071
+ Custom container image for the runtime environment.
4072
+ """
4073
+ return pulumi.get(self, "container_image")
4074
+
4075
+ @property
4076
+ @pulumi.getter(name="fileUris")
4077
+ def file_uris(self) -> Optional[Sequence[str]]:
4078
+ """
4079
+ Files to be placed in the working directory of each executor. For more information about Apache Spark, see Apache Spark.
4080
+ """
4081
+ return pulumi.get(self, "file_uris")
4082
+
4083
+ @property
4084
+ @pulumi.getter(name="jarUris")
4085
+ def jar_uris(self) -> Optional[Sequence[str]]:
4086
+ """
4087
+ JARs to include on the driver and executor CLASSPATH. For more information about Apache Spark, see Apache Spark.
4088
+ """
4089
+ return pulumi.get(self, "jar_uris")
4090
+
4091
+ @property
4092
+ @pulumi.getter(name="mainClass")
4093
+ def main_class(self) -> Optional[str]:
4094
+ """
4095
+ The fully qualified name of a class in jarUris, for example, com.example.wordcount.
4096
+ Exactly one of mainClass and main_jar_uri field should be set for Java/Scala language type.
4097
+ """
4098
+ return pulumi.get(self, "main_class")
4099
+
4100
+ @property
4101
+ @pulumi.getter(name="mainFileUri")
4102
+ def main_file_uri(self) -> Optional[str]:
4103
+ """
4104
+ The main file/jar URI of the Spark application.
4105
+ Exactly one of the definitionBody field and the mainFileUri field must be set for Python.
4106
+ Exactly one of mainClass and mainFileUri field should be set for Java/Scala language type.
4107
+ """
4108
+ return pulumi.get(self, "main_file_uri")
4109
+
4110
+ @property
4111
+ @pulumi.getter
4112
+ def properties(self) -> Optional[Mapping[str, str]]:
4113
+ """
4114
+ Configuration properties as a set of key/value pairs, which will be passed on to the Spark application.
4115
+ For more information, see Apache Spark and the procedure option list.
4116
+ An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
4117
+ """
4118
+ return pulumi.get(self, "properties")
4119
+
4120
+ @property
4121
+ @pulumi.getter(name="pyFileUris")
4122
+ def py_file_uris(self) -> Optional[Sequence[str]]:
4123
+ """
4124
+ Python files to be placed on the PYTHONPATH for PySpark application. Supported file types: .py, .egg, and .zip. For more information about Apache Spark, see Apache Spark.
4125
+ """
4126
+ return pulumi.get(self, "py_file_uris")
4127
+
4128
+ @property
4129
+ @pulumi.getter(name="runtimeVersion")
4130
+ def runtime_version(self) -> Optional[str]:
4131
+ """
4132
+ Runtime version. If not specified, the default runtime version is used.
4133
+ """
4134
+ return pulumi.get(self, "runtime_version")
4135
+
4136
+
3965
4137
  @pulumi.output_type
3966
4138
  class TableEncryptionConfiguration(dict):
3967
4139
  @staticmethod
@@ -5173,6 +5345,63 @@ class TableTableConstraintsPrimaryKey(dict):
5173
5345
  return pulumi.get(self, "columns")
5174
5346
 
5175
5347
 
5348
+ @pulumi.output_type
5349
+ class TableTableReplicationInfo(dict):
5350
+ @staticmethod
5351
+ def __key_warning(key: str):
5352
+ suggest = None
5353
+ if key == "sourceDatasetId":
5354
+ suggest = "source_dataset_id"
5355
+ elif key == "sourceProjectId":
5356
+ suggest = "source_project_id"
5357
+ elif key == "sourceTableId":
5358
+ suggest = "source_table_id"
5359
+ elif key == "replicationIntervalMs":
5360
+ suggest = "replication_interval_ms"
5361
+
5362
+ if suggest:
5363
+ pulumi.log.warn(f"Key '{key}' not found in TableTableReplicationInfo. Access the value via the '{suggest}' property getter instead.")
5364
+
5365
+ def __getitem__(self, key: str) -> Any:
5366
+ TableTableReplicationInfo.__key_warning(key)
5367
+ return super().__getitem__(key)
5368
+
5369
+ def get(self, key: str, default = None) -> Any:
5370
+ TableTableReplicationInfo.__key_warning(key)
5371
+ return super().get(key, default)
5372
+
5373
+ def __init__(__self__, *,
5374
+ source_dataset_id: str,
5375
+ source_project_id: str,
5376
+ source_table_id: str,
5377
+ replication_interval_ms: Optional[int] = None):
5378
+ pulumi.set(__self__, "source_dataset_id", source_dataset_id)
5379
+ pulumi.set(__self__, "source_project_id", source_project_id)
5380
+ pulumi.set(__self__, "source_table_id", source_table_id)
5381
+ if replication_interval_ms is not None:
5382
+ pulumi.set(__self__, "replication_interval_ms", replication_interval_ms)
5383
+
5384
+ @property
5385
+ @pulumi.getter(name="sourceDatasetId")
5386
+ def source_dataset_id(self) -> str:
5387
+ return pulumi.get(self, "source_dataset_id")
5388
+
5389
+ @property
5390
+ @pulumi.getter(name="sourceProjectId")
5391
+ def source_project_id(self) -> str:
5392
+ return pulumi.get(self, "source_project_id")
5393
+
5394
+ @property
5395
+ @pulumi.getter(name="sourceTableId")
5396
+ def source_table_id(self) -> str:
5397
+ return pulumi.get(self, "source_table_id")
5398
+
5399
+ @property
5400
+ @pulumi.getter(name="replicationIntervalMs")
5401
+ def replication_interval_ms(self) -> Optional[int]:
5402
+ return pulumi.get(self, "replication_interval_ms")
5403
+
5404
+
5176
5405
  @pulumi.output_type
5177
5406
  class TableTimePartitioning(dict):
5178
5407
  @staticmethod