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
pulumi_oci/opensearch/outputs.py
CHANGED
@@ -20,9 +20,15 @@ __all__ = [
|
|
20
20
|
'ClusterOutboundClusterConfig',
|
21
21
|
'ClusterOutboundClusterConfigOutboundCluster',
|
22
22
|
'ClusterReverseConnectionEndpoint',
|
23
|
+
'OpensearchClusterPipelineReverseConnectionEndpoint',
|
23
24
|
'GetOpensearchClusterMaintenanceDetailResult',
|
24
25
|
'GetOpensearchClusterOutboundClusterConfigResult',
|
25
26
|
'GetOpensearchClusterOutboundClusterConfigOutboundClusterResult',
|
27
|
+
'GetOpensearchClusterPipelineReverseConnectionEndpointResult',
|
28
|
+
'GetOpensearchClusterPipelinesFilterResult',
|
29
|
+
'GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionResult',
|
30
|
+
'GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemResult',
|
31
|
+
'GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointResult',
|
26
32
|
'GetOpensearchClusterReverseConnectionEndpointResult',
|
27
33
|
'GetOpensearchClustersFilterResult',
|
28
34
|
'GetOpensearchClustersOpensearchClusterCollectionResult',
|
@@ -299,6 +305,54 @@ class ClusterReverseConnectionEndpoint(dict):
|
|
299
305
|
return pulumi.get(self, "nat_ip")
|
300
306
|
|
301
307
|
|
308
|
+
@pulumi.output_type
|
309
|
+
class OpensearchClusterPipelineReverseConnectionEndpoint(dict):
|
310
|
+
@staticmethod
|
311
|
+
def __key_warning(key: str):
|
312
|
+
suggest = None
|
313
|
+
if key == "customerFqdn":
|
314
|
+
suggest = "customer_fqdn"
|
315
|
+
elif key == "customerIp":
|
316
|
+
suggest = "customer_ip"
|
317
|
+
|
318
|
+
if suggest:
|
319
|
+
pulumi.log.warn(f"Key '{key}' not found in OpensearchClusterPipelineReverseConnectionEndpoint. Access the value via the '{suggest}' property getter instead.")
|
320
|
+
|
321
|
+
def __getitem__(self, key: str) -> Any:
|
322
|
+
OpensearchClusterPipelineReverseConnectionEndpoint.__key_warning(key)
|
323
|
+
return super().__getitem__(key)
|
324
|
+
|
325
|
+
def get(self, key: str, default = None) -> Any:
|
326
|
+
OpensearchClusterPipelineReverseConnectionEndpoint.__key_warning(key)
|
327
|
+
return super().get(key, default)
|
328
|
+
|
329
|
+
def __init__(__self__, *,
|
330
|
+
customer_fqdn: str,
|
331
|
+
customer_ip: str):
|
332
|
+
"""
|
333
|
+
:param str customer_fqdn: (Updatable) The fully qualified domain name of the customerIp in the customer VCN
|
334
|
+
:param str customer_ip: (Updatable) The IPv4 address in the customer VCN
|
335
|
+
"""
|
336
|
+
pulumi.set(__self__, "customer_fqdn", customer_fqdn)
|
337
|
+
pulumi.set(__self__, "customer_ip", customer_ip)
|
338
|
+
|
339
|
+
@property
|
340
|
+
@pulumi.getter(name="customerFqdn")
|
341
|
+
def customer_fqdn(self) -> str:
|
342
|
+
"""
|
343
|
+
(Updatable) The fully qualified domain name of the customerIp in the customer VCN
|
344
|
+
"""
|
345
|
+
return pulumi.get(self, "customer_fqdn")
|
346
|
+
|
347
|
+
@property
|
348
|
+
@pulumi.getter(name="customerIp")
|
349
|
+
def customer_ip(self) -> str:
|
350
|
+
"""
|
351
|
+
(Updatable) The IPv4 address in the customer VCN
|
352
|
+
"""
|
353
|
+
return pulumi.get(self, "customer_ip")
|
354
|
+
|
355
|
+
|
302
356
|
@pulumi.output_type
|
303
357
|
class GetOpensearchClusterMaintenanceDetailResult(dict):
|
304
358
|
def __init__(__self__, *,
|
@@ -441,6 +495,370 @@ class GetOpensearchClusterOutboundClusterConfigOutboundClusterResult(dict):
|
|
441
495
|
return pulumi.get(self, "seed_cluster_id")
|
442
496
|
|
443
497
|
|
498
|
+
@pulumi.output_type
|
499
|
+
class GetOpensearchClusterPipelineReverseConnectionEndpointResult(dict):
|
500
|
+
def __init__(__self__, *,
|
501
|
+
customer_fqdn: str,
|
502
|
+
customer_ip: str):
|
503
|
+
"""
|
504
|
+
:param str customer_fqdn: The fully qualified domain name of the customerIp in the customer VCN
|
505
|
+
:param str customer_ip: The IPv4 address in the customer VCN
|
506
|
+
"""
|
507
|
+
pulumi.set(__self__, "customer_fqdn", customer_fqdn)
|
508
|
+
pulumi.set(__self__, "customer_ip", customer_ip)
|
509
|
+
|
510
|
+
@property
|
511
|
+
@pulumi.getter(name="customerFqdn")
|
512
|
+
def customer_fqdn(self) -> str:
|
513
|
+
"""
|
514
|
+
The fully qualified domain name of the customerIp in the customer VCN
|
515
|
+
"""
|
516
|
+
return pulumi.get(self, "customer_fqdn")
|
517
|
+
|
518
|
+
@property
|
519
|
+
@pulumi.getter(name="customerIp")
|
520
|
+
def customer_ip(self) -> str:
|
521
|
+
"""
|
522
|
+
The IPv4 address in the customer VCN
|
523
|
+
"""
|
524
|
+
return pulumi.get(self, "customer_ip")
|
525
|
+
|
526
|
+
|
527
|
+
@pulumi.output_type
|
528
|
+
class GetOpensearchClusterPipelinesFilterResult(dict):
|
529
|
+
def __init__(__self__, *,
|
530
|
+
name: str,
|
531
|
+
values: Sequence[str],
|
532
|
+
regex: Optional[bool] = None):
|
533
|
+
pulumi.set(__self__, "name", name)
|
534
|
+
pulumi.set(__self__, "values", values)
|
535
|
+
if regex is not None:
|
536
|
+
pulumi.set(__self__, "regex", regex)
|
537
|
+
|
538
|
+
@property
|
539
|
+
@pulumi.getter
|
540
|
+
def name(self) -> str:
|
541
|
+
return pulumi.get(self, "name")
|
542
|
+
|
543
|
+
@property
|
544
|
+
@pulumi.getter
|
545
|
+
def values(self) -> Sequence[str]:
|
546
|
+
return pulumi.get(self, "values")
|
547
|
+
|
548
|
+
@property
|
549
|
+
@pulumi.getter
|
550
|
+
def regex(self) -> Optional[bool]:
|
551
|
+
return pulumi.get(self, "regex")
|
552
|
+
|
553
|
+
|
554
|
+
@pulumi.output_type
|
555
|
+
class GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionResult(dict):
|
556
|
+
def __init__(__self__, *,
|
557
|
+
items: Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemResult']):
|
558
|
+
pulumi.set(__self__, "items", items)
|
559
|
+
|
560
|
+
@property
|
561
|
+
@pulumi.getter
|
562
|
+
def items(self) -> Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemResult']:
|
563
|
+
return pulumi.get(self, "items")
|
564
|
+
|
565
|
+
|
566
|
+
@pulumi.output_type
|
567
|
+
class GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemResult(dict):
|
568
|
+
def __init__(__self__, *,
|
569
|
+
compartment_id: str,
|
570
|
+
data_prepper_configuration_body: str,
|
571
|
+
defined_tags: Mapping[str, str],
|
572
|
+
display_name: str,
|
573
|
+
freeform_tags: Mapping[str, str],
|
574
|
+
id: str,
|
575
|
+
memory_gb: int,
|
576
|
+
node_count: int,
|
577
|
+
nsg_id: str,
|
578
|
+
ocpu_count: int,
|
579
|
+
opc_dry_run: bool,
|
580
|
+
opensearch_pipeline_fqdn: str,
|
581
|
+
opensearch_pipeline_private_ip: str,
|
582
|
+
pipeline_configuration_body: str,
|
583
|
+
pipeline_mode: str,
|
584
|
+
reverse_connection_endpoints: Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointResult'],
|
585
|
+
state: str,
|
586
|
+
subnet_compartment_id: str,
|
587
|
+
subnet_id: str,
|
588
|
+
system_tags: Mapping[str, str],
|
589
|
+
time_created: str,
|
590
|
+
time_updated: str,
|
591
|
+
vcn_compartment_id: str,
|
592
|
+
vcn_id: str):
|
593
|
+
"""
|
594
|
+
:param str compartment_id: The ID of the compartment in which to list resources.
|
595
|
+
:param str data_prepper_configuration_body: The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
596
|
+
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
597
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
598
|
+
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
599
|
+
:param str id: unique OpensearchClusterPipeline identifier
|
600
|
+
:param int memory_gb: The amount of memory in GB, for each pipeline node.
|
601
|
+
:param int node_count: The number of nodes configured for the pipeline.
|
602
|
+
:param str nsg_id: The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
603
|
+
:param int ocpu_count: The number of OCPUs configured for each pipeline node.
|
604
|
+
:param str opensearch_pipeline_fqdn: The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
605
|
+
:param str opensearch_pipeline_private_ip: The pipeline's private IP address.
|
606
|
+
:param str pipeline_configuration_body: The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
607
|
+
:param str pipeline_mode: The current state of the pipeline.
|
608
|
+
:param Sequence['GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointArgs'] reverse_connection_endpoints: The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
609
|
+
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
610
|
+
:param str subnet_compartment_id: The OCID for the compartment where the pipeline's subnet is located.
|
611
|
+
:param str subnet_id: The OCID of the pipeline's subnet.
|
612
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
613
|
+
:param str time_created: The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
614
|
+
:param str time_updated: The amount of time in milliseconds since the pipeline was updated.
|
615
|
+
:param str vcn_compartment_id: The OCID for the compartment where the pipeline's VCN is located.
|
616
|
+
:param str vcn_id: The OCID of the pipeline's VCN.
|
617
|
+
"""
|
618
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
619
|
+
pulumi.set(__self__, "data_prepper_configuration_body", data_prepper_configuration_body)
|
620
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
621
|
+
pulumi.set(__self__, "display_name", display_name)
|
622
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
623
|
+
pulumi.set(__self__, "id", id)
|
624
|
+
pulumi.set(__self__, "memory_gb", memory_gb)
|
625
|
+
pulumi.set(__self__, "node_count", node_count)
|
626
|
+
pulumi.set(__self__, "nsg_id", nsg_id)
|
627
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
628
|
+
pulumi.set(__self__, "opc_dry_run", opc_dry_run)
|
629
|
+
pulumi.set(__self__, "opensearch_pipeline_fqdn", opensearch_pipeline_fqdn)
|
630
|
+
pulumi.set(__self__, "opensearch_pipeline_private_ip", opensearch_pipeline_private_ip)
|
631
|
+
pulumi.set(__self__, "pipeline_configuration_body", pipeline_configuration_body)
|
632
|
+
pulumi.set(__self__, "pipeline_mode", pipeline_mode)
|
633
|
+
pulumi.set(__self__, "reverse_connection_endpoints", reverse_connection_endpoints)
|
634
|
+
pulumi.set(__self__, "state", state)
|
635
|
+
pulumi.set(__self__, "subnet_compartment_id", subnet_compartment_id)
|
636
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
637
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
638
|
+
pulumi.set(__self__, "time_created", time_created)
|
639
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
640
|
+
pulumi.set(__self__, "vcn_compartment_id", vcn_compartment_id)
|
641
|
+
pulumi.set(__self__, "vcn_id", vcn_id)
|
642
|
+
|
643
|
+
@property
|
644
|
+
@pulumi.getter(name="compartmentId")
|
645
|
+
def compartment_id(self) -> str:
|
646
|
+
"""
|
647
|
+
The ID of the compartment in which to list resources.
|
648
|
+
"""
|
649
|
+
return pulumi.get(self, "compartment_id")
|
650
|
+
|
651
|
+
@property
|
652
|
+
@pulumi.getter(name="dataPrepperConfigurationBody")
|
653
|
+
def data_prepper_configuration_body(self) -> str:
|
654
|
+
"""
|
655
|
+
The data prepper config in YAML format. The command accepts the data prepper config as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
656
|
+
"""
|
657
|
+
return pulumi.get(self, "data_prepper_configuration_body")
|
658
|
+
|
659
|
+
@property
|
660
|
+
@pulumi.getter(name="definedTags")
|
661
|
+
def defined_tags(self) -> Mapping[str, str]:
|
662
|
+
"""
|
663
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
664
|
+
"""
|
665
|
+
return pulumi.get(self, "defined_tags")
|
666
|
+
|
667
|
+
@property
|
668
|
+
@pulumi.getter(name="displayName")
|
669
|
+
def display_name(self) -> str:
|
670
|
+
"""
|
671
|
+
A filter to return only resources that match the entire display name given.
|
672
|
+
"""
|
673
|
+
return pulumi.get(self, "display_name")
|
674
|
+
|
675
|
+
@property
|
676
|
+
@pulumi.getter(name="freeformTags")
|
677
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
678
|
+
"""
|
679
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
680
|
+
"""
|
681
|
+
return pulumi.get(self, "freeform_tags")
|
682
|
+
|
683
|
+
@property
|
684
|
+
@pulumi.getter
|
685
|
+
def id(self) -> str:
|
686
|
+
"""
|
687
|
+
unique OpensearchClusterPipeline identifier
|
688
|
+
"""
|
689
|
+
return pulumi.get(self, "id")
|
690
|
+
|
691
|
+
@property
|
692
|
+
@pulumi.getter(name="memoryGb")
|
693
|
+
def memory_gb(self) -> int:
|
694
|
+
"""
|
695
|
+
The amount of memory in GB, for each pipeline node.
|
696
|
+
"""
|
697
|
+
return pulumi.get(self, "memory_gb")
|
698
|
+
|
699
|
+
@property
|
700
|
+
@pulumi.getter(name="nodeCount")
|
701
|
+
def node_count(self) -> int:
|
702
|
+
"""
|
703
|
+
The number of nodes configured for the pipeline.
|
704
|
+
"""
|
705
|
+
return pulumi.get(self, "node_count")
|
706
|
+
|
707
|
+
@property
|
708
|
+
@pulumi.getter(name="nsgId")
|
709
|
+
def nsg_id(self) -> str:
|
710
|
+
"""
|
711
|
+
The OCID of the NSG where the pipeline private endpoint vnic will be attached.
|
712
|
+
"""
|
713
|
+
return pulumi.get(self, "nsg_id")
|
714
|
+
|
715
|
+
@property
|
716
|
+
@pulumi.getter(name="ocpuCount")
|
717
|
+
def ocpu_count(self) -> int:
|
718
|
+
"""
|
719
|
+
The number of OCPUs configured for each pipeline node.
|
720
|
+
"""
|
721
|
+
return pulumi.get(self, "ocpu_count")
|
722
|
+
|
723
|
+
@property
|
724
|
+
@pulumi.getter(name="opcDryRun")
|
725
|
+
def opc_dry_run(self) -> bool:
|
726
|
+
return pulumi.get(self, "opc_dry_run")
|
727
|
+
|
728
|
+
@property
|
729
|
+
@pulumi.getter(name="opensearchPipelineFqdn")
|
730
|
+
def opensearch_pipeline_fqdn(self) -> str:
|
731
|
+
"""
|
732
|
+
The fully qualified domain name (FQDN) for the cluster's API endpoint.
|
733
|
+
"""
|
734
|
+
return pulumi.get(self, "opensearch_pipeline_fqdn")
|
735
|
+
|
736
|
+
@property
|
737
|
+
@pulumi.getter(name="opensearchPipelinePrivateIp")
|
738
|
+
def opensearch_pipeline_private_ip(self) -> str:
|
739
|
+
"""
|
740
|
+
The pipeline's private IP address.
|
741
|
+
"""
|
742
|
+
return pulumi.get(self, "opensearch_pipeline_private_ip")
|
743
|
+
|
744
|
+
@property
|
745
|
+
@pulumi.getter(name="pipelineConfigurationBody")
|
746
|
+
def pipeline_configuration_body(self) -> str:
|
747
|
+
"""
|
748
|
+
The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\.
|
749
|
+
"""
|
750
|
+
return pulumi.get(self, "pipeline_configuration_body")
|
751
|
+
|
752
|
+
@property
|
753
|
+
@pulumi.getter(name="pipelineMode")
|
754
|
+
def pipeline_mode(self) -> str:
|
755
|
+
"""
|
756
|
+
The current state of the pipeline.
|
757
|
+
"""
|
758
|
+
return pulumi.get(self, "pipeline_mode")
|
759
|
+
|
760
|
+
@property
|
761
|
+
@pulumi.getter(name="reverseConnectionEndpoints")
|
762
|
+
def reverse_connection_endpoints(self) -> Sequence['outputs.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointResult']:
|
763
|
+
"""
|
764
|
+
The customer IP and the corresponding fully qualified domain name that the pipeline will connect to.
|
765
|
+
"""
|
766
|
+
return pulumi.get(self, "reverse_connection_endpoints")
|
767
|
+
|
768
|
+
@property
|
769
|
+
@pulumi.getter
|
770
|
+
def state(self) -> str:
|
771
|
+
"""
|
772
|
+
A filter to return only resources their lifecycleState matches the given lifecycleState.
|
773
|
+
"""
|
774
|
+
return pulumi.get(self, "state")
|
775
|
+
|
776
|
+
@property
|
777
|
+
@pulumi.getter(name="subnetCompartmentId")
|
778
|
+
def subnet_compartment_id(self) -> str:
|
779
|
+
"""
|
780
|
+
The OCID for the compartment where the pipeline's subnet is located.
|
781
|
+
"""
|
782
|
+
return pulumi.get(self, "subnet_compartment_id")
|
783
|
+
|
784
|
+
@property
|
785
|
+
@pulumi.getter(name="subnetId")
|
786
|
+
def subnet_id(self) -> str:
|
787
|
+
"""
|
788
|
+
The OCID of the pipeline's subnet.
|
789
|
+
"""
|
790
|
+
return pulumi.get(self, "subnet_id")
|
791
|
+
|
792
|
+
@property
|
793
|
+
@pulumi.getter(name="systemTags")
|
794
|
+
def system_tags(self) -> Mapping[str, str]:
|
795
|
+
"""
|
796
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
797
|
+
"""
|
798
|
+
return pulumi.get(self, "system_tags")
|
799
|
+
|
800
|
+
@property
|
801
|
+
@pulumi.getter(name="timeCreated")
|
802
|
+
def time_created(self) -> str:
|
803
|
+
"""
|
804
|
+
The date and time the cluster pipeline was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
805
|
+
"""
|
806
|
+
return pulumi.get(self, "time_created")
|
807
|
+
|
808
|
+
@property
|
809
|
+
@pulumi.getter(name="timeUpdated")
|
810
|
+
def time_updated(self) -> str:
|
811
|
+
"""
|
812
|
+
The amount of time in milliseconds since the pipeline was updated.
|
813
|
+
"""
|
814
|
+
return pulumi.get(self, "time_updated")
|
815
|
+
|
816
|
+
@property
|
817
|
+
@pulumi.getter(name="vcnCompartmentId")
|
818
|
+
def vcn_compartment_id(self) -> str:
|
819
|
+
"""
|
820
|
+
The OCID for the compartment where the pipeline's VCN is located.
|
821
|
+
"""
|
822
|
+
return pulumi.get(self, "vcn_compartment_id")
|
823
|
+
|
824
|
+
@property
|
825
|
+
@pulumi.getter(name="vcnId")
|
826
|
+
def vcn_id(self) -> str:
|
827
|
+
"""
|
828
|
+
The OCID of the pipeline's VCN.
|
829
|
+
"""
|
830
|
+
return pulumi.get(self, "vcn_id")
|
831
|
+
|
832
|
+
|
833
|
+
@pulumi.output_type
|
834
|
+
class GetOpensearchClusterPipelinesOpensearchClusterPipelineCollectionItemReverseConnectionEndpointResult(dict):
|
835
|
+
def __init__(__self__, *,
|
836
|
+
customer_fqdn: str,
|
837
|
+
customer_ip: str):
|
838
|
+
"""
|
839
|
+
:param str customer_fqdn: The fully qualified domain name of the customerIp in the customer VCN
|
840
|
+
:param str customer_ip: The IPv4 address in the customer VCN
|
841
|
+
"""
|
842
|
+
pulumi.set(__self__, "customer_fqdn", customer_fqdn)
|
843
|
+
pulumi.set(__self__, "customer_ip", customer_ip)
|
844
|
+
|
845
|
+
@property
|
846
|
+
@pulumi.getter(name="customerFqdn")
|
847
|
+
def customer_fqdn(self) -> str:
|
848
|
+
"""
|
849
|
+
The fully qualified domain name of the customerIp in the customer VCN
|
850
|
+
"""
|
851
|
+
return pulumi.get(self, "customer_fqdn")
|
852
|
+
|
853
|
+
@property
|
854
|
+
@pulumi.getter(name="customerIp")
|
855
|
+
def customer_ip(self) -> str:
|
856
|
+
"""
|
857
|
+
The IPv4 address in the customer VCN
|
858
|
+
"""
|
859
|
+
return pulumi.get(self, "customer_ip")
|
860
|
+
|
861
|
+
|
444
862
|
@pulumi.output_type
|
445
863
|
class GetOpensearchClusterReverseConnectionEndpointResult(dict):
|
446
864
|
def __init__(__self__, *,
|
@@ -556,6 +974,7 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
|
|
556
974
|
time_deleted: str,
|
557
975
|
time_updated: str,
|
558
976
|
total_storage_gb: int,
|
977
|
+
upgrade_major_version_trigger: int,
|
559
978
|
vcn_compartment_id: str,
|
560
979
|
vcn_id: str):
|
561
980
|
"""
|
@@ -649,6 +1068,7 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
|
|
649
1068
|
pulumi.set(__self__, "time_deleted", time_deleted)
|
650
1069
|
pulumi.set(__self__, "time_updated", time_updated)
|
651
1070
|
pulumi.set(__self__, "total_storage_gb", total_storage_gb)
|
1071
|
+
pulumi.set(__self__, "upgrade_major_version_trigger", upgrade_major_version_trigger)
|
652
1072
|
pulumi.set(__self__, "vcn_compartment_id", vcn_compartment_id)
|
653
1073
|
pulumi.set(__self__, "vcn_id", vcn_id)
|
654
1074
|
|
@@ -1001,6 +1421,11 @@ class GetOpensearchClustersOpensearchClusterCollectionItemResult(dict):
|
|
1001
1421
|
"""
|
1002
1422
|
return pulumi.get(self, "total_storage_gb")
|
1003
1423
|
|
1424
|
+
@property
|
1425
|
+
@pulumi.getter(name="upgradeMajorVersionTrigger")
|
1426
|
+
def upgrade_major_version_trigger(self) -> int:
|
1427
|
+
return pulumi.get(self, "upgrade_major_version_trigger")
|
1428
|
+
|
1004
1429
|
@property
|
1005
1430
|
@pulumi.getter(name="vcnCompartmentId")
|
1006
1431
|
def vcn_compartment_id(self) -> str:
|
@@ -36,6 +36,8 @@ from .get_management_station import *
|
|
36
36
|
from .get_management_station_mirrors import *
|
37
37
|
from .get_management_stations import *
|
38
38
|
from .get_profile import *
|
39
|
+
from .get_profile_available_software_sources import *
|
40
|
+
from .get_profile_version import *
|
39
41
|
from .get_profiles import *
|
40
42
|
from .get_scheduled_job import *
|
41
43
|
from .get_scheduled_jobs import *
|
@@ -43,6 +45,8 @@ from .get_software_package import *
|
|
43
45
|
from .get_software_package_software_source import *
|
44
46
|
from .get_software_packages import *
|
45
47
|
from .get_software_source import *
|
48
|
+
from .get_software_source_available_software_packages import *
|
49
|
+
from .get_software_source_manifest import *
|
46
50
|
from .get_software_source_module_stream import *
|
47
51
|
from .get_software_source_module_stream_profile import *
|
48
52
|
from .get_software_source_module_stream_profiles import *
|
@@ -59,6 +63,7 @@ from .lifecycle_environment import *
|
|
59
63
|
from .lifecycle_stage_attach_managed_instances_management import *
|
60
64
|
from .lifecycle_stage_detach_managed_instances_management import *
|
61
65
|
from .lifecycle_stage_promote_software_source_management import *
|
66
|
+
from .lifecycle_stage_reboot_management import *
|
62
67
|
from .managed_instance import *
|
63
68
|
from .managed_instance_attach_profile_management import *
|
64
69
|
from .managed_instance_detach_profile_management import *
|
@@ -70,18 +75,31 @@ from .managed_instance_group_detach_software_sources_management import *
|
|
70
75
|
from .managed_instance_group_install_packages_management import *
|
71
76
|
from .managed_instance_group_install_windows_updates_management import *
|
72
77
|
from .managed_instance_group_manage_module_streams_management import *
|
78
|
+
from .managed_instance_group_reboot_management import *
|
73
79
|
from .managed_instance_group_remove_packages_management import *
|
74
80
|
from .managed_instance_group_update_all_packages_management import *
|
75
81
|
from .managed_instance_install_windows_updates_management import *
|
82
|
+
from .managed_instance_reboot_management import *
|
76
83
|
from .managed_instance_update_packages_management import *
|
77
84
|
from .management_station import *
|
85
|
+
from .management_station_associate_managed_instances_management import *
|
78
86
|
from .management_station_mirror_synchronize_management import *
|
79
87
|
from .management_station_refresh_management import *
|
80
88
|
from .management_station_synchronize_mirrors_management import *
|
81
89
|
from .profile import *
|
90
|
+
from .profile_attach_lifecycle_stage_management import *
|
91
|
+
from .profile_attach_managed_instance_group_management import *
|
92
|
+
from .profile_attach_management_station_management import *
|
93
|
+
from .profile_attach_software_sources_management import *
|
94
|
+
from .profile_detach_software_sources_management import *
|
82
95
|
from .scheduled_job import *
|
83
96
|
from .software_source import *
|
84
97
|
from .software_source_add_packages_management import *
|
85
98
|
from .software_source_change_availability_management import *
|
99
|
+
from .software_source_generate_metadata_management import *
|
100
|
+
from .software_source_manifest import *
|
101
|
+
from .software_source_remove_packages_management import *
|
102
|
+
from .software_source_replace_packages_management import *
|
103
|
+
from .work_request_rerun_management import *
|
86
104
|
from ._inputs import *
|
87
105
|
from . import outputs
|