pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.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.
- pulumi_oci/__init__.py +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
@@ -32,7 +32,8 @@ class PipelineArgs:
|
|
32
32
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
33
33
|
infrastructure_configuration_details: Optional[pulumi.Input['PipelineInfrastructureConfigurationDetailsArgs']] = None,
|
34
34
|
log_configuration_details: Optional[pulumi.Input['PipelineLogConfigurationDetailsArgs']] = None,
|
35
|
-
step_artifacts: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStepArtifactArgs']]]] = None
|
35
|
+
step_artifacts: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStepArtifactArgs']]]] = None,
|
36
|
+
storage_mount_configuration_details_lists: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStorageMountConfigurationDetailsListArgs']]]] = None):
|
36
37
|
"""
|
37
38
|
The set of arguments for constructing a Pipeline resource.
|
38
39
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the pipeline.
|
@@ -45,6 +46,7 @@ class PipelineArgs:
|
|
45
46
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
46
47
|
:param pulumi.Input['PipelineInfrastructureConfigurationDetailsArgs'] infrastructure_configuration_details: (Updatable) The infrastructure configuration details of a pipeline or a step.
|
47
48
|
:param pulumi.Input['PipelineLogConfigurationDetailsArgs'] log_configuration_details: (Updatable) The pipeline log configuration details.
|
49
|
+
:param pulumi.Input[Sequence[pulumi.Input['PipelineStorageMountConfigurationDetailsListArgs']]] storage_mount_configuration_details_lists: (Updatable) The storage mount details to mount to the instance running the pipeline step.
|
48
50
|
"""
|
49
51
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
50
52
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -67,6 +69,8 @@ class PipelineArgs:
|
|
67
69
|
pulumi.set(__self__, "log_configuration_details", log_configuration_details)
|
68
70
|
if step_artifacts is not None:
|
69
71
|
pulumi.set(__self__, "step_artifacts", step_artifacts)
|
72
|
+
if storage_mount_configuration_details_lists is not None:
|
73
|
+
pulumi.set(__self__, "storage_mount_configuration_details_lists", storage_mount_configuration_details_lists)
|
70
74
|
|
71
75
|
@property
|
72
76
|
@pulumi.getter(name="compartmentId")
|
@@ -206,6 +210,18 @@ class PipelineArgs:
|
|
206
210
|
def step_artifacts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStepArtifactArgs']]]]):
|
207
211
|
pulumi.set(self, "step_artifacts", value)
|
208
212
|
|
213
|
+
@property
|
214
|
+
@pulumi.getter(name="storageMountConfigurationDetailsLists")
|
215
|
+
def storage_mount_configuration_details_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStorageMountConfigurationDetailsListArgs']]]]:
|
216
|
+
"""
|
217
|
+
(Updatable) The storage mount details to mount to the instance running the pipeline step.
|
218
|
+
"""
|
219
|
+
return pulumi.get(self, "storage_mount_configuration_details_lists")
|
220
|
+
|
221
|
+
@storage_mount_configuration_details_lists.setter
|
222
|
+
def storage_mount_configuration_details_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStorageMountConfigurationDetailsListArgs']]]]):
|
223
|
+
pulumi.set(self, "storage_mount_configuration_details_lists", value)
|
224
|
+
|
209
225
|
|
210
226
|
@pulumi.input_type
|
211
227
|
class _PipelineState:
|
@@ -225,6 +241,7 @@ class _PipelineState:
|
|
225
241
|
state: Optional[pulumi.Input[str]] = None,
|
226
242
|
step_artifacts: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStepArtifactArgs']]]] = None,
|
227
243
|
step_details: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStepDetailArgs']]]] = None,
|
244
|
+
storage_mount_configuration_details_lists: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStorageMountConfigurationDetailsListArgs']]]] = None,
|
228
245
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
229
246
|
time_created: Optional[pulumi.Input[str]] = None,
|
230
247
|
time_updated: Optional[pulumi.Input[str]] = None):
|
@@ -243,6 +260,7 @@ class _PipelineState:
|
|
243
260
|
:param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the pipeline with.
|
244
261
|
:param pulumi.Input[str] state: The current state of the pipeline.
|
245
262
|
:param pulumi.Input[Sequence[pulumi.Input['PipelineStepDetailArgs']]] step_details: (Updatable) Array of step details for each step.
|
263
|
+
:param pulumi.Input[Sequence[pulumi.Input['PipelineStorageMountConfigurationDetailsListArgs']]] storage_mount_configuration_details_lists: (Updatable) The storage mount details to mount to the instance running the pipeline step.
|
246
264
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
247
265
|
:param pulumi.Input[str] time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2020-08-06T21:10:29.41Z
|
248
266
|
:param pulumi.Input[str] time_updated: The date and time the resource was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2020-08-06T21:10:29.41Z
|
@@ -277,6 +295,8 @@ class _PipelineState:
|
|
277
295
|
pulumi.set(__self__, "step_artifacts", step_artifacts)
|
278
296
|
if step_details is not None:
|
279
297
|
pulumi.set(__self__, "step_details", step_details)
|
298
|
+
if storage_mount_configuration_details_lists is not None:
|
299
|
+
pulumi.set(__self__, "storage_mount_configuration_details_lists", storage_mount_configuration_details_lists)
|
280
300
|
if system_tags is not None:
|
281
301
|
pulumi.set(__self__, "system_tags", system_tags)
|
282
302
|
if time_created is not None:
|
@@ -458,6 +478,18 @@ class _PipelineState:
|
|
458
478
|
def step_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStepDetailArgs']]]]):
|
459
479
|
pulumi.set(self, "step_details", value)
|
460
480
|
|
481
|
+
@property
|
482
|
+
@pulumi.getter(name="storageMountConfigurationDetailsLists")
|
483
|
+
def storage_mount_configuration_details_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStorageMountConfigurationDetailsListArgs']]]]:
|
484
|
+
"""
|
485
|
+
(Updatable) The storage mount details to mount to the instance running the pipeline step.
|
486
|
+
"""
|
487
|
+
return pulumi.get(self, "storage_mount_configuration_details_lists")
|
488
|
+
|
489
|
+
@storage_mount_configuration_details_lists.setter
|
490
|
+
def storage_mount_configuration_details_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PipelineStorageMountConfigurationDetailsListArgs']]]]):
|
491
|
+
pulumi.set(self, "storage_mount_configuration_details_lists", value)
|
492
|
+
|
461
493
|
@property
|
462
494
|
@pulumi.getter(name="systemTags")
|
463
495
|
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -512,82 +544,13 @@ class Pipeline(pulumi.CustomResource):
|
|
512
544
|
project_id: Optional[pulumi.Input[str]] = None,
|
513
545
|
step_artifacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStepArtifactArgs', 'PipelineStepArtifactArgsDict']]]]] = None,
|
514
546
|
step_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStepDetailArgs', 'PipelineStepDetailArgsDict']]]]] = None,
|
547
|
+
storage_mount_configuration_details_lists: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStorageMountConfigurationDetailsListArgs', 'PipelineStorageMountConfigurationDetailsListArgsDict']]]]] = None,
|
515
548
|
__props__=None):
|
516
549
|
"""
|
517
550
|
This resource provides the Pipeline resource in Oracle Cloud Infrastructure Data Science service.
|
518
551
|
|
519
552
|
Creates a new Pipeline.
|
520
553
|
|
521
|
-
## Example Usage
|
522
|
-
|
523
|
-
```python
|
524
|
-
import pulumi
|
525
|
-
import pulumi_oci as oci
|
526
|
-
|
527
|
-
test_pipeline = oci.data_science.Pipeline("test_pipeline",
|
528
|
-
compartment_id=compartment_id,
|
529
|
-
project_id=test_project["id"],
|
530
|
-
step_details=[{
|
531
|
-
"step_name": pipeline_step_details_step_name,
|
532
|
-
"step_type": pipeline_step_details_step_type,
|
533
|
-
"depends_ons": pipeline_step_details_depends_on,
|
534
|
-
"description": pipeline_step_details_description,
|
535
|
-
"is_artifact_uploaded": pipeline_step_details_is_artifact_uploaded,
|
536
|
-
"job_id": test_job["id"],
|
537
|
-
"step_configuration_details": {
|
538
|
-
"command_line_arguments": pipeline_step_details_step_configuration_details_command_line_arguments,
|
539
|
-
"environment_variables": pipeline_step_details_step_configuration_details_environment_variables,
|
540
|
-
"maximum_runtime_in_minutes": pipeline_step_details_step_configuration_details_maximum_runtime_in_minutes,
|
541
|
-
},
|
542
|
-
"step_container_configuration_details": {
|
543
|
-
"container_type": pipeline_step_details_step_container_configuration_details_container_type,
|
544
|
-
"image": pipeline_step_details_step_container_configuration_details_image,
|
545
|
-
"cmds": pipeline_step_details_step_container_configuration_details_cmd,
|
546
|
-
"entrypoints": pipeline_step_details_step_container_configuration_details_entrypoint,
|
547
|
-
"image_digest": pipeline_step_details_step_container_configuration_details_image_digest,
|
548
|
-
"image_signature_id": test_image_signature["id"],
|
549
|
-
},
|
550
|
-
"step_infrastructure_configuration_details": {
|
551
|
-
"block_storage_size_in_gbs": pipeline_step_details_step_infrastructure_configuration_details_block_storage_size_in_gbs,
|
552
|
-
"shape_config_details": {
|
553
|
-
"memory_in_gbs": pipeline_step_details_step_infrastructure_configuration_details_shape_config_details_memory_in_gbs,
|
554
|
-
"ocpus": pipeline_step_details_step_infrastructure_configuration_details_shape_config_details_ocpus,
|
555
|
-
},
|
556
|
-
"shape_name": test_shape["name"],
|
557
|
-
"subnet_id": test_subnet["id"],
|
558
|
-
},
|
559
|
-
}],
|
560
|
-
configuration_details={
|
561
|
-
"type": pipeline_configuration_details_type,
|
562
|
-
"command_line_arguments": pipeline_configuration_details_command_line_arguments,
|
563
|
-
"environment_variables": pipeline_configuration_details_environment_variables,
|
564
|
-
"maximum_runtime_in_minutes": pipeline_configuration_details_maximum_runtime_in_minutes,
|
565
|
-
},
|
566
|
-
defined_tags={
|
567
|
-
"Operations.CostCenter": "42",
|
568
|
-
},
|
569
|
-
description=pipeline_description,
|
570
|
-
display_name=pipeline_display_name,
|
571
|
-
freeform_tags={
|
572
|
-
"Department": "Finance",
|
573
|
-
},
|
574
|
-
infrastructure_configuration_details={
|
575
|
-
"block_storage_size_in_gbs": pipeline_infrastructure_configuration_details_block_storage_size_in_gbs,
|
576
|
-
"shape_name": test_shape["name"],
|
577
|
-
"shape_config_details": {
|
578
|
-
"memory_in_gbs": pipeline_infrastructure_configuration_details_shape_config_details_memory_in_gbs,
|
579
|
-
"ocpus": pipeline_infrastructure_configuration_details_shape_config_details_ocpus,
|
580
|
-
},
|
581
|
-
"subnet_id": test_subnet["id"],
|
582
|
-
},
|
583
|
-
log_configuration_details={
|
584
|
-
"enable_auto_log_creation": pipeline_log_configuration_details_enable_auto_log_creation,
|
585
|
-
"enable_logging": pipeline_log_configuration_details_enable_logging,
|
586
|
-
"log_group_id": test_log_group["id"],
|
587
|
-
"log_id": test_log["id"],
|
588
|
-
})
|
589
|
-
```
|
590
|
-
|
591
554
|
## Import
|
592
555
|
|
593
556
|
Pipelines can be imported using the `id`, e.g.
|
@@ -608,6 +571,7 @@ class Pipeline(pulumi.CustomResource):
|
|
608
571
|
:param pulumi.Input[Union['PipelineLogConfigurationDetailsArgs', 'PipelineLogConfigurationDetailsArgsDict']] log_configuration_details: (Updatable) The pipeline log configuration details.
|
609
572
|
:param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the pipeline with.
|
610
573
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineStepDetailArgs', 'PipelineStepDetailArgsDict']]]] step_details: (Updatable) Array of step details for each step.
|
574
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineStorageMountConfigurationDetailsListArgs', 'PipelineStorageMountConfigurationDetailsListArgsDict']]]] storage_mount_configuration_details_lists: (Updatable) The storage mount details to mount to the instance running the pipeline step.
|
611
575
|
"""
|
612
576
|
...
|
613
577
|
@overload
|
@@ -620,76 +584,6 @@ class Pipeline(pulumi.CustomResource):
|
|
620
584
|
|
621
585
|
Creates a new Pipeline.
|
622
586
|
|
623
|
-
## Example Usage
|
624
|
-
|
625
|
-
```python
|
626
|
-
import pulumi
|
627
|
-
import pulumi_oci as oci
|
628
|
-
|
629
|
-
test_pipeline = oci.data_science.Pipeline("test_pipeline",
|
630
|
-
compartment_id=compartment_id,
|
631
|
-
project_id=test_project["id"],
|
632
|
-
step_details=[{
|
633
|
-
"step_name": pipeline_step_details_step_name,
|
634
|
-
"step_type": pipeline_step_details_step_type,
|
635
|
-
"depends_ons": pipeline_step_details_depends_on,
|
636
|
-
"description": pipeline_step_details_description,
|
637
|
-
"is_artifact_uploaded": pipeline_step_details_is_artifact_uploaded,
|
638
|
-
"job_id": test_job["id"],
|
639
|
-
"step_configuration_details": {
|
640
|
-
"command_line_arguments": pipeline_step_details_step_configuration_details_command_line_arguments,
|
641
|
-
"environment_variables": pipeline_step_details_step_configuration_details_environment_variables,
|
642
|
-
"maximum_runtime_in_minutes": pipeline_step_details_step_configuration_details_maximum_runtime_in_minutes,
|
643
|
-
},
|
644
|
-
"step_container_configuration_details": {
|
645
|
-
"container_type": pipeline_step_details_step_container_configuration_details_container_type,
|
646
|
-
"image": pipeline_step_details_step_container_configuration_details_image,
|
647
|
-
"cmds": pipeline_step_details_step_container_configuration_details_cmd,
|
648
|
-
"entrypoints": pipeline_step_details_step_container_configuration_details_entrypoint,
|
649
|
-
"image_digest": pipeline_step_details_step_container_configuration_details_image_digest,
|
650
|
-
"image_signature_id": test_image_signature["id"],
|
651
|
-
},
|
652
|
-
"step_infrastructure_configuration_details": {
|
653
|
-
"block_storage_size_in_gbs": pipeline_step_details_step_infrastructure_configuration_details_block_storage_size_in_gbs,
|
654
|
-
"shape_config_details": {
|
655
|
-
"memory_in_gbs": pipeline_step_details_step_infrastructure_configuration_details_shape_config_details_memory_in_gbs,
|
656
|
-
"ocpus": pipeline_step_details_step_infrastructure_configuration_details_shape_config_details_ocpus,
|
657
|
-
},
|
658
|
-
"shape_name": test_shape["name"],
|
659
|
-
"subnet_id": test_subnet["id"],
|
660
|
-
},
|
661
|
-
}],
|
662
|
-
configuration_details={
|
663
|
-
"type": pipeline_configuration_details_type,
|
664
|
-
"command_line_arguments": pipeline_configuration_details_command_line_arguments,
|
665
|
-
"environment_variables": pipeline_configuration_details_environment_variables,
|
666
|
-
"maximum_runtime_in_minutes": pipeline_configuration_details_maximum_runtime_in_minutes,
|
667
|
-
},
|
668
|
-
defined_tags={
|
669
|
-
"Operations.CostCenter": "42",
|
670
|
-
},
|
671
|
-
description=pipeline_description,
|
672
|
-
display_name=pipeline_display_name,
|
673
|
-
freeform_tags={
|
674
|
-
"Department": "Finance",
|
675
|
-
},
|
676
|
-
infrastructure_configuration_details={
|
677
|
-
"block_storage_size_in_gbs": pipeline_infrastructure_configuration_details_block_storage_size_in_gbs,
|
678
|
-
"shape_name": test_shape["name"],
|
679
|
-
"shape_config_details": {
|
680
|
-
"memory_in_gbs": pipeline_infrastructure_configuration_details_shape_config_details_memory_in_gbs,
|
681
|
-
"ocpus": pipeline_infrastructure_configuration_details_shape_config_details_ocpus,
|
682
|
-
},
|
683
|
-
"subnet_id": test_subnet["id"],
|
684
|
-
},
|
685
|
-
log_configuration_details={
|
686
|
-
"enable_auto_log_creation": pipeline_log_configuration_details_enable_auto_log_creation,
|
687
|
-
"enable_logging": pipeline_log_configuration_details_enable_logging,
|
688
|
-
"log_group_id": test_log_group["id"],
|
689
|
-
"log_id": test_log["id"],
|
690
|
-
})
|
691
|
-
```
|
692
|
-
|
693
587
|
## Import
|
694
588
|
|
695
589
|
Pipelines can be imported using the `id`, e.g.
|
@@ -725,6 +619,7 @@ class Pipeline(pulumi.CustomResource):
|
|
725
619
|
project_id: Optional[pulumi.Input[str]] = None,
|
726
620
|
step_artifacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStepArtifactArgs', 'PipelineStepArtifactArgsDict']]]]] = None,
|
727
621
|
step_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStepDetailArgs', 'PipelineStepDetailArgsDict']]]]] = None,
|
622
|
+
storage_mount_configuration_details_lists: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStorageMountConfigurationDetailsListArgs', 'PipelineStorageMountConfigurationDetailsListArgsDict']]]]] = None,
|
728
623
|
__props__=None):
|
729
624
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
730
625
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -752,6 +647,7 @@ class Pipeline(pulumi.CustomResource):
|
|
752
647
|
if step_details is None and not opts.urn:
|
753
648
|
raise TypeError("Missing required property 'step_details'")
|
754
649
|
__props__.__dict__["step_details"] = step_details
|
650
|
+
__props__.__dict__["storage_mount_configuration_details_lists"] = storage_mount_configuration_details_lists
|
755
651
|
__props__.__dict__["created_by"] = None
|
756
652
|
__props__.__dict__["lifecycle_details"] = None
|
757
653
|
__props__.__dict__["state"] = None
|
@@ -783,6 +679,7 @@ class Pipeline(pulumi.CustomResource):
|
|
783
679
|
state: Optional[pulumi.Input[str]] = None,
|
784
680
|
step_artifacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStepArtifactArgs', 'PipelineStepArtifactArgsDict']]]]] = None,
|
785
681
|
step_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStepDetailArgs', 'PipelineStepDetailArgsDict']]]]] = None,
|
682
|
+
storage_mount_configuration_details_lists: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PipelineStorageMountConfigurationDetailsListArgs', 'PipelineStorageMountConfigurationDetailsListArgsDict']]]]] = None,
|
786
683
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
787
684
|
time_created: Optional[pulumi.Input[str]] = None,
|
788
685
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'Pipeline':
|
@@ -806,6 +703,7 @@ class Pipeline(pulumi.CustomResource):
|
|
806
703
|
:param pulumi.Input[str] project_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the pipeline with.
|
807
704
|
:param pulumi.Input[str] state: The current state of the pipeline.
|
808
705
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineStepDetailArgs', 'PipelineStepDetailArgsDict']]]] step_details: (Updatable) Array of step details for each step.
|
706
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['PipelineStorageMountConfigurationDetailsListArgs', 'PipelineStorageMountConfigurationDetailsListArgsDict']]]] storage_mount_configuration_details_lists: (Updatable) The storage mount details to mount to the instance running the pipeline step.
|
809
707
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
810
708
|
:param pulumi.Input[str] time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2020-08-06T21:10:29.41Z
|
811
709
|
:param pulumi.Input[str] time_updated: The date and time the resource was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2020-08-06T21:10:29.41Z
|
@@ -829,6 +727,7 @@ class Pipeline(pulumi.CustomResource):
|
|
829
727
|
__props__.__dict__["state"] = state
|
830
728
|
__props__.__dict__["step_artifacts"] = step_artifacts
|
831
729
|
__props__.__dict__["step_details"] = step_details
|
730
|
+
__props__.__dict__["storage_mount_configuration_details_lists"] = storage_mount_configuration_details_lists
|
832
731
|
__props__.__dict__["system_tags"] = system_tags
|
833
732
|
__props__.__dict__["time_created"] = time_created
|
834
733
|
__props__.__dict__["time_updated"] = time_updated
|
@@ -948,6 +847,14 @@ class Pipeline(pulumi.CustomResource):
|
|
948
847
|
"""
|
949
848
|
return pulumi.get(self, "step_details")
|
950
849
|
|
850
|
+
@property
|
851
|
+
@pulumi.getter(name="storageMountConfigurationDetailsLists")
|
852
|
+
def storage_mount_configuration_details_lists(self) -> pulumi.Output[Sequence['outputs.PipelineStorageMountConfigurationDetailsList']]:
|
853
|
+
"""
|
854
|
+
(Updatable) The storage mount details to mount to the instance running the pipeline step.
|
855
|
+
"""
|
856
|
+
return pulumi.get(self, "storage_mount_configuration_details_lists")
|
857
|
+
|
951
858
|
@property
|
952
859
|
@pulumi.getter(name="systemTags")
|
953
860
|
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
@@ -651,6 +651,22 @@ class PipelineRun(pulumi.CustomResource):
|
|
651
651
|
"image_digest": pipeline_run_step_override_details_step_container_configuration_details_image_digest,
|
652
652
|
"image_signature_id": test_image_signature["id"],
|
653
653
|
},
|
654
|
+
"step_dataflow_configuration_details": {
|
655
|
+
"configuration": pipeline_run_step_override_details_step_dataflow_configuration_details_configuration,
|
656
|
+
"driver_shape": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape,
|
657
|
+
"driver_shape_config_details": {
|
658
|
+
"memory_in_gbs": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape_config_details_memory_in_gbs,
|
659
|
+
"ocpus": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape_config_details_ocpus,
|
660
|
+
},
|
661
|
+
"executor_shape": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape,
|
662
|
+
"executor_shape_config_details": {
|
663
|
+
"memory_in_gbs": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape_config_details_memory_in_gbs,
|
664
|
+
"ocpus": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape_config_details_ocpus,
|
665
|
+
},
|
666
|
+
"logs_bucket_uri": pipeline_run_step_override_details_step_dataflow_configuration_details_logs_bucket_uri,
|
667
|
+
"num_executors": pipeline_run_step_override_details_step_dataflow_configuration_details_num_executors,
|
668
|
+
"warehouse_bucket_uri": pipeline_run_step_override_details_step_dataflow_configuration_details_warehouse_bucket_uri,
|
669
|
+
},
|
654
670
|
}],
|
655
671
|
system_tags=pipeline_run_system_tags)
|
656
672
|
```
|
@@ -737,6 +753,22 @@ class PipelineRun(pulumi.CustomResource):
|
|
737
753
|
"image_digest": pipeline_run_step_override_details_step_container_configuration_details_image_digest,
|
738
754
|
"image_signature_id": test_image_signature["id"],
|
739
755
|
},
|
756
|
+
"step_dataflow_configuration_details": {
|
757
|
+
"configuration": pipeline_run_step_override_details_step_dataflow_configuration_details_configuration,
|
758
|
+
"driver_shape": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape,
|
759
|
+
"driver_shape_config_details": {
|
760
|
+
"memory_in_gbs": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape_config_details_memory_in_gbs,
|
761
|
+
"ocpus": pipeline_run_step_override_details_step_dataflow_configuration_details_driver_shape_config_details_ocpus,
|
762
|
+
},
|
763
|
+
"executor_shape": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape,
|
764
|
+
"executor_shape_config_details": {
|
765
|
+
"memory_in_gbs": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape_config_details_memory_in_gbs,
|
766
|
+
"ocpus": pipeline_run_step_override_details_step_dataflow_configuration_details_executor_shape_config_details_ocpus,
|
767
|
+
},
|
768
|
+
"logs_bucket_uri": pipeline_run_step_override_details_step_dataflow_configuration_details_logs_bucket_uri,
|
769
|
+
"num_executors": pipeline_run_step_override_details_step_dataflow_configuration_details_num_executors,
|
770
|
+
"warehouse_bucket_uri": pipeline_run_step_override_details_step_dataflow_configuration_details_warehouse_bucket_uri,
|
771
|
+
},
|
740
772
|
}],
|
741
773
|
system_tags=pipeline_run_system_tags)
|
742
774
|
```
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .get_vulnerability import *
|
9
|
+
from .get_vulnerability_aggregated_vulnerability_data import *
|
10
|
+
from .get_vulnerability_notifications import *
|
11
|
+
from .get_vulnerability_resources import *
|
12
|
+
from .get_vulnerability_scan import *
|
13
|
+
from .get_vulnerability_scans import *
|
14
|
+
from .get_vulnerability_vulnerabilities import *
|
15
|
+
from .vulnerability_scan import *
|
16
|
+
from ._inputs import *
|
17
|
+
from . import outputs
|
@@ -0,0 +1,275 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetVulnerabilityAggregatedVulnerabilityDataFilterArgs',
|
19
|
+
'GetVulnerabilityAggregatedVulnerabilityDataFilterArgsDict',
|
20
|
+
'GetVulnerabilityNotificationsFilterArgs',
|
21
|
+
'GetVulnerabilityNotificationsFilterArgsDict',
|
22
|
+
'GetVulnerabilityResourcesFilterArgs',
|
23
|
+
'GetVulnerabilityResourcesFilterArgsDict',
|
24
|
+
'GetVulnerabilityScansFilterArgs',
|
25
|
+
'GetVulnerabilityScansFilterArgsDict',
|
26
|
+
'GetVulnerabilityVulnerabilitiesFilterArgs',
|
27
|
+
'GetVulnerabilityVulnerabilitiesFilterArgsDict',
|
28
|
+
]
|
29
|
+
|
30
|
+
MYPY = False
|
31
|
+
|
32
|
+
if not MYPY:
|
33
|
+
class GetVulnerabilityAggregatedVulnerabilityDataFilterArgsDict(TypedDict):
|
34
|
+
name: str
|
35
|
+
values: Sequence[str]
|
36
|
+
regex: NotRequired[bool]
|
37
|
+
elif False:
|
38
|
+
GetVulnerabilityAggregatedVulnerabilityDataFilterArgsDict: TypeAlias = Mapping[str, Any]
|
39
|
+
|
40
|
+
@pulumi.input_type
|
41
|
+
class GetVulnerabilityAggregatedVulnerabilityDataFilterArgs:
|
42
|
+
def __init__(__self__, *,
|
43
|
+
name: str,
|
44
|
+
values: Sequence[str],
|
45
|
+
regex: Optional[bool] = None):
|
46
|
+
pulumi.set(__self__, "name", name)
|
47
|
+
pulumi.set(__self__, "values", values)
|
48
|
+
if regex is not None:
|
49
|
+
pulumi.set(__self__, "regex", regex)
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter
|
53
|
+
def name(self) -> str:
|
54
|
+
return pulumi.get(self, "name")
|
55
|
+
|
56
|
+
@name.setter
|
57
|
+
def name(self, value: str):
|
58
|
+
pulumi.set(self, "name", value)
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter
|
62
|
+
def values(self) -> Sequence[str]:
|
63
|
+
return pulumi.get(self, "values")
|
64
|
+
|
65
|
+
@values.setter
|
66
|
+
def values(self, value: Sequence[str]):
|
67
|
+
pulumi.set(self, "values", value)
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter
|
71
|
+
def regex(self) -> Optional[bool]:
|
72
|
+
return pulumi.get(self, "regex")
|
73
|
+
|
74
|
+
@regex.setter
|
75
|
+
def regex(self, value: Optional[bool]):
|
76
|
+
pulumi.set(self, "regex", value)
|
77
|
+
|
78
|
+
|
79
|
+
if not MYPY:
|
80
|
+
class GetVulnerabilityNotificationsFilterArgsDict(TypedDict):
|
81
|
+
name: str
|
82
|
+
values: Sequence[str]
|
83
|
+
regex: NotRequired[bool]
|
84
|
+
elif False:
|
85
|
+
GetVulnerabilityNotificationsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
86
|
+
|
87
|
+
@pulumi.input_type
|
88
|
+
class GetVulnerabilityNotificationsFilterArgs:
|
89
|
+
def __init__(__self__, *,
|
90
|
+
name: str,
|
91
|
+
values: Sequence[str],
|
92
|
+
regex: Optional[bool] = None):
|
93
|
+
pulumi.set(__self__, "name", name)
|
94
|
+
pulumi.set(__self__, "values", values)
|
95
|
+
if regex is not None:
|
96
|
+
pulumi.set(__self__, "regex", regex)
|
97
|
+
|
98
|
+
@property
|
99
|
+
@pulumi.getter
|
100
|
+
def name(self) -> str:
|
101
|
+
return pulumi.get(self, "name")
|
102
|
+
|
103
|
+
@name.setter
|
104
|
+
def name(self, value: str):
|
105
|
+
pulumi.set(self, "name", value)
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter
|
109
|
+
def values(self) -> Sequence[str]:
|
110
|
+
return pulumi.get(self, "values")
|
111
|
+
|
112
|
+
@values.setter
|
113
|
+
def values(self, value: Sequence[str]):
|
114
|
+
pulumi.set(self, "values", value)
|
115
|
+
|
116
|
+
@property
|
117
|
+
@pulumi.getter
|
118
|
+
def regex(self) -> Optional[bool]:
|
119
|
+
return pulumi.get(self, "regex")
|
120
|
+
|
121
|
+
@regex.setter
|
122
|
+
def regex(self, value: Optional[bool]):
|
123
|
+
pulumi.set(self, "regex", value)
|
124
|
+
|
125
|
+
|
126
|
+
if not MYPY:
|
127
|
+
class GetVulnerabilityResourcesFilterArgsDict(TypedDict):
|
128
|
+
name: str
|
129
|
+
"""
|
130
|
+
The name of the resource.
|
131
|
+
"""
|
132
|
+
values: Sequence[str]
|
133
|
+
regex: NotRequired[bool]
|
134
|
+
elif False:
|
135
|
+
GetVulnerabilityResourcesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
136
|
+
|
137
|
+
@pulumi.input_type
|
138
|
+
class GetVulnerabilityResourcesFilterArgs:
|
139
|
+
def __init__(__self__, *,
|
140
|
+
name: str,
|
141
|
+
values: Sequence[str],
|
142
|
+
regex: Optional[bool] = None):
|
143
|
+
"""
|
144
|
+
:param str name: The name of the resource.
|
145
|
+
"""
|
146
|
+
pulumi.set(__self__, "name", name)
|
147
|
+
pulumi.set(__self__, "values", values)
|
148
|
+
if regex is not None:
|
149
|
+
pulumi.set(__self__, "regex", regex)
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter
|
153
|
+
def name(self) -> str:
|
154
|
+
"""
|
155
|
+
The name of the resource.
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "name")
|
158
|
+
|
159
|
+
@name.setter
|
160
|
+
def name(self, value: str):
|
161
|
+
pulumi.set(self, "name", value)
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter
|
165
|
+
def values(self) -> Sequence[str]:
|
166
|
+
return pulumi.get(self, "values")
|
167
|
+
|
168
|
+
@values.setter
|
169
|
+
def values(self, value: Sequence[str]):
|
170
|
+
pulumi.set(self, "values", value)
|
171
|
+
|
172
|
+
@property
|
173
|
+
@pulumi.getter
|
174
|
+
def regex(self) -> Optional[bool]:
|
175
|
+
return pulumi.get(self, "regex")
|
176
|
+
|
177
|
+
@regex.setter
|
178
|
+
def regex(self, value: Optional[bool]):
|
179
|
+
pulumi.set(self, "regex", value)
|
180
|
+
|
181
|
+
|
182
|
+
if not MYPY:
|
183
|
+
class GetVulnerabilityScansFilterArgsDict(TypedDict):
|
184
|
+
name: str
|
185
|
+
values: Sequence[str]
|
186
|
+
regex: NotRequired[bool]
|
187
|
+
elif False:
|
188
|
+
GetVulnerabilityScansFilterArgsDict: TypeAlias = Mapping[str, Any]
|
189
|
+
|
190
|
+
@pulumi.input_type
|
191
|
+
class GetVulnerabilityScansFilterArgs:
|
192
|
+
def __init__(__self__, *,
|
193
|
+
name: str,
|
194
|
+
values: Sequence[str],
|
195
|
+
regex: Optional[bool] = None):
|
196
|
+
pulumi.set(__self__, "name", name)
|
197
|
+
pulumi.set(__self__, "values", values)
|
198
|
+
if regex is not None:
|
199
|
+
pulumi.set(__self__, "regex", regex)
|
200
|
+
|
201
|
+
@property
|
202
|
+
@pulumi.getter
|
203
|
+
def name(self) -> str:
|
204
|
+
return pulumi.get(self, "name")
|
205
|
+
|
206
|
+
@name.setter
|
207
|
+
def name(self, value: str):
|
208
|
+
pulumi.set(self, "name", value)
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter
|
212
|
+
def values(self) -> Sequence[str]:
|
213
|
+
return pulumi.get(self, "values")
|
214
|
+
|
215
|
+
@values.setter
|
216
|
+
def values(self, value: Sequence[str]):
|
217
|
+
pulumi.set(self, "values", value)
|
218
|
+
|
219
|
+
@property
|
220
|
+
@pulumi.getter
|
221
|
+
def regex(self) -> Optional[bool]:
|
222
|
+
return pulumi.get(self, "regex")
|
223
|
+
|
224
|
+
@regex.setter
|
225
|
+
def regex(self, value: Optional[bool]):
|
226
|
+
pulumi.set(self, "regex", value)
|
227
|
+
|
228
|
+
|
229
|
+
if not MYPY:
|
230
|
+
class GetVulnerabilityVulnerabilitiesFilterArgsDict(TypedDict):
|
231
|
+
name: str
|
232
|
+
values: Sequence[str]
|
233
|
+
regex: NotRequired[bool]
|
234
|
+
elif False:
|
235
|
+
GetVulnerabilityVulnerabilitiesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
236
|
+
|
237
|
+
@pulumi.input_type
|
238
|
+
class GetVulnerabilityVulnerabilitiesFilterArgs:
|
239
|
+
def __init__(__self__, *,
|
240
|
+
name: str,
|
241
|
+
values: Sequence[str],
|
242
|
+
regex: Optional[bool] = None):
|
243
|
+
pulumi.set(__self__, "name", name)
|
244
|
+
pulumi.set(__self__, "values", values)
|
245
|
+
if regex is not None:
|
246
|
+
pulumi.set(__self__, "regex", regex)
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter
|
250
|
+
def name(self) -> str:
|
251
|
+
return pulumi.get(self, "name")
|
252
|
+
|
253
|
+
@name.setter
|
254
|
+
def name(self, value: str):
|
255
|
+
pulumi.set(self, "name", value)
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter
|
259
|
+
def values(self) -> Sequence[str]:
|
260
|
+
return pulumi.get(self, "values")
|
261
|
+
|
262
|
+
@values.setter
|
263
|
+
def values(self, value: Sequence[str]):
|
264
|
+
pulumi.set(self, "values", value)
|
265
|
+
|
266
|
+
@property
|
267
|
+
@pulumi.getter
|
268
|
+
def regex(self) -> Optional[bool]:
|
269
|
+
return pulumi.get(self, "regex")
|
270
|
+
|
271
|
+
@regex.setter
|
272
|
+
def regex(self, value: Optional[bool]):
|
273
|
+
pulumi.set(self, "regex", value)
|
274
|
+
|
275
|
+
|