pulumi-oci 1.35.0a1715306721__py3-none-any.whl → 1.36.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 +208 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
- pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
- pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
- pulumi_oci/core/outputs.py +261 -0
- pulumi_oci/database/_inputs.py +304 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_vm_cluster.py +55 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
- pulumi_oci/database/get_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_vm_cluster.py +14 -1
- pulumi_oci/database/outputs.py +734 -6
- pulumi_oci/database/vm_cluster.py +55 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/disasterrecovery/_inputs.py +16 -0
- pulumi_oci/disasterrecovery/outputs.py +36 -0
- pulumi_oci/email/__init__.py +3 -0
- pulumi_oci/email/_inputs.py +46 -0
- pulumi_oci/email/dkim.py +4 -4
- pulumi_oci/email/email_domain.py +77 -0
- pulumi_oci/email/email_return_path.py +642 -0
- pulumi_oci/email/get_email_domain.py +27 -1
- pulumi_oci/email/get_email_return_path.py +274 -0
- pulumi_oci/email/get_email_return_paths.py +203 -0
- pulumi_oci/email/outputs.py +231 -0
- pulumi_oci/loadbalancer/_inputs.py +160 -20
- pulumi_oci/loadbalancer/backend.py +49 -0
- pulumi_oci/loadbalancer/backend_set.py +57 -0
- pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
- pulumi_oci/loadbalancer/listener.py +2 -0
- pulumi_oci/loadbalancer/load_balancer.py +98 -7
- pulumi_oci/loadbalancer/outputs.py +375 -36
- pulumi_oci/loadbalancer/rule_set.py +10 -0
- pulumi_oci/loganalytics/namespace.py +4 -4
- pulumi_oci/networkloadbalancer/get_listener.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +51 -2
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/osmanagementhub/__init__.py +48 -0
- pulumi_oci/osmanagementhub/_inputs.py +3635 -493
- pulumi_oci/osmanagementhub/event.py +701 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
- pulumi_oci/osmanagementhub/get_errata.py +283 -0
- pulumi_oci/osmanagementhub/get_erratum.py +308 -0
- pulumi_oci/osmanagementhub/get_event.py +314 -0
- pulumi_oci/osmanagementhub/get_events.py +314 -0
- pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
- pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
- pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
- pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
- pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
- pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
- pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
- pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
- pulumi_oci/osmanagementhub/get_management_station.py +42 -19
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
- pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
- pulumi_oci/osmanagementhub/get_profile.py +51 -12
- pulumi_oci/osmanagementhub/get_profiles.py +76 -16
- pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
- pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
- pulumi_oci/osmanagementhub/get_software_package.py +301 -0
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
- pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
- pulumi_oci/osmanagementhub/get_software_source.py +109 -18
- pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
- pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
- pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
- pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
- pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
- pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
- pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
- pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
- pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
- pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
- pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
- pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
- pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
- pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
- pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
- pulumi_oci/osmanagementhub/management_station.py +184 -81
- pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
- pulumi_oci/osmanagementhub/outputs.py +10867 -2365
- pulumi_oci/osmanagementhub/profile.py +200 -78
- pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
- pulumi_oci/osmanagementhub/software_source.py +365 -181
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
- pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
- pulumi_oci/pulumi-plugin.json +2 -1
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +130 -75
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
@@ -449,6 +449,7 @@ class _ExadataInfrastructureState:
|
|
449
449
|
data_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
|
450
450
|
db_node_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
451
451
|
db_server_version: Optional[pulumi.Input[str]] = None,
|
452
|
+
defined_file_system_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureDefinedFileSystemConfigurationArgs']]]] = None,
|
452
453
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
453
454
|
display_name: Optional[pulumi.Input[str]] = None,
|
454
455
|
dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -500,6 +501,7 @@ class _ExadataInfrastructureState:
|
|
500
501
|
:param pulumi.Input[float] data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
501
502
|
:param pulumi.Input[int] db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
502
503
|
:param pulumi.Input[str] db_server_version: The software version of the database servers (dom0) in the Exadata infrastructure.
|
504
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureDefinedFileSystemConfigurationArgs']]] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
503
505
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
504
506
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata infrastructure. The name does not need to be unique.
|
505
507
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers: (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
|
@@ -567,6 +569,8 @@ class _ExadataInfrastructureState:
|
|
567
569
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
568
570
|
if db_server_version is not None:
|
569
571
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
572
|
+
if defined_file_system_configurations is not None:
|
573
|
+
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
570
574
|
if defined_tags is not None:
|
571
575
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
572
576
|
if display_name is not None:
|
@@ -852,6 +856,18 @@ class _ExadataInfrastructureState:
|
|
852
856
|
def db_server_version(self, value: Optional[pulumi.Input[str]]):
|
853
857
|
pulumi.set(self, "db_server_version", value)
|
854
858
|
|
859
|
+
@property
|
860
|
+
@pulumi.getter(name="definedFileSystemConfigurations")
|
861
|
+
def defined_file_system_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureDefinedFileSystemConfigurationArgs']]]]:
|
862
|
+
"""
|
863
|
+
Details of the file system configuration of the Exadata infrastructure.
|
864
|
+
"""
|
865
|
+
return pulumi.get(self, "defined_file_system_configurations")
|
866
|
+
|
867
|
+
@defined_file_system_configurations.setter
|
868
|
+
def defined_file_system_configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureDefinedFileSystemConfigurationArgs']]]]):
|
869
|
+
pulumi.set(self, "defined_file_system_configurations", value)
|
870
|
+
|
855
871
|
@property
|
856
872
|
@pulumi.getter(name="definedTags")
|
857
873
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -1515,6 +1531,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1515
1531
|
__props__.__dict__["data_storage_size_in_tbs"] = None
|
1516
1532
|
__props__.__dict__["db_node_storage_size_in_gbs"] = None
|
1517
1533
|
__props__.__dict__["db_server_version"] = None
|
1534
|
+
__props__.__dict__["defined_file_system_configurations"] = None
|
1518
1535
|
__props__.__dict__["lifecycle_details"] = None
|
1519
1536
|
__props__.__dict__["maintenance_slo_status"] = None
|
1520
1537
|
__props__.__dict__["max_cpu_count"] = None
|
@@ -1556,6 +1573,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1556
1573
|
data_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
|
1557
1574
|
db_node_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
1558
1575
|
db_server_version: Optional[pulumi.Input[str]] = None,
|
1576
|
+
defined_file_system_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadataInfrastructureDefinedFileSystemConfigurationArgs']]]]] = None,
|
1559
1577
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1560
1578
|
display_name: Optional[pulumi.Input[str]] = None,
|
1561
1579
|
dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -1612,6 +1630,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1612
1630
|
:param pulumi.Input[float] data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
1613
1631
|
:param pulumi.Input[int] db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
1614
1632
|
:param pulumi.Input[str] db_server_version: The software version of the database servers (dom0) in the Exadata infrastructure.
|
1633
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExadataInfrastructureDefinedFileSystemConfigurationArgs']]]] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
1615
1634
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1616
1635
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata infrastructure. The name does not need to be unique.
|
1617
1636
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers: (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
|
@@ -1664,6 +1683,7 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1664
1683
|
__props__.__dict__["data_storage_size_in_tbs"] = data_storage_size_in_tbs
|
1665
1684
|
__props__.__dict__["db_node_storage_size_in_gbs"] = db_node_storage_size_in_gbs
|
1666
1685
|
__props__.__dict__["db_server_version"] = db_server_version
|
1686
|
+
__props__.__dict__["defined_file_system_configurations"] = defined_file_system_configurations
|
1667
1687
|
__props__.__dict__["defined_tags"] = defined_tags
|
1668
1688
|
__props__.__dict__["display_name"] = display_name
|
1669
1689
|
__props__.__dict__["dns_servers"] = dns_servers
|
@@ -1846,6 +1866,14 @@ class ExadataInfrastructure(pulumi.CustomResource):
|
|
1846
1866
|
"""
|
1847
1867
|
return pulumi.get(self, "db_server_version")
|
1848
1868
|
|
1869
|
+
@property
|
1870
|
+
@pulumi.getter(name="definedFileSystemConfigurations")
|
1871
|
+
def defined_file_system_configurations(self) -> pulumi.Output[Sequence['outputs.ExadataInfrastructureDefinedFileSystemConfiguration']]:
|
1872
|
+
"""
|
1873
|
+
Details of the file system configuration of the Exadata infrastructure.
|
1874
|
+
"""
|
1875
|
+
return pulumi.get(self, "defined_file_system_configurations")
|
1876
|
+
|
1849
1877
|
@property
|
1850
1878
|
@pulumi.getter(name="definedTags")
|
1851
1879
|
def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
@@ -22,7 +22,7 @@ class GetCloudExadataInfrastructureResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getCloudExadataInfrastructure.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, activated_storage_count=None, additional_storage_count=None, availability_domain=None, available_storage_size_in_gbs=None, cloud_exadata_infrastructure_id=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, cpu_count=None, customer_contacts=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, last_maintenance_run_id=None, lifecycle_details=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, monthly_storage_server_version=None, next_maintenance_run_id=None, shape=None, state=None, storage_count=None, storage_server_version=None, system_tags=None, time_created=None, total_storage_size_in_gbs=None):
|
25
|
+
def __init__(__self__, activated_storage_count=None, additional_storage_count=None, availability_domain=None, available_storage_size_in_gbs=None, cloud_exadata_infrastructure_id=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, cpu_count=None, customer_contacts=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_file_system_configurations=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, last_maintenance_run_id=None, lifecycle_details=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, monthly_storage_server_version=None, next_maintenance_run_id=None, shape=None, state=None, storage_count=None, storage_server_version=None, system_tags=None, time_created=None, total_storage_size_in_gbs=None):
|
26
26
|
if activated_storage_count and not isinstance(activated_storage_count, int):
|
27
27
|
raise TypeError("Expected argument 'activated_storage_count' to be a int")
|
28
28
|
pulumi.set(__self__, "activated_storage_count", activated_storage_count)
|
@@ -62,6 +62,9 @@ class GetCloudExadataInfrastructureResult:
|
|
62
62
|
if db_server_version and not isinstance(db_server_version, str):
|
63
63
|
raise TypeError("Expected argument 'db_server_version' to be a str")
|
64
64
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
65
|
+
if defined_file_system_configurations and not isinstance(defined_file_system_configurations, list):
|
66
|
+
raise TypeError("Expected argument 'defined_file_system_configurations' to be a list")
|
67
|
+
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
65
68
|
if defined_tags and not isinstance(defined_tags, dict):
|
66
69
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
67
70
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -230,6 +233,14 @@ class GetCloudExadataInfrastructureResult:
|
|
230
233
|
"""
|
231
234
|
return pulumi.get(self, "db_server_version")
|
232
235
|
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="definedFileSystemConfigurations")
|
238
|
+
def defined_file_system_configurations(self) -> Sequence['outputs.GetCloudExadataInfrastructureDefinedFileSystemConfigurationResult']:
|
239
|
+
"""
|
240
|
+
Details of the file system configuration of the Exadata infrastructure.
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "defined_file_system_configurations")
|
243
|
+
|
233
244
|
@property
|
234
245
|
@pulumi.getter(name="definedTags")
|
235
246
|
def defined_tags(self) -> Mapping[str, Any]:
|
@@ -426,6 +437,7 @@ class AwaitableGetCloudExadataInfrastructureResult(GetCloudExadataInfrastructure
|
|
426
437
|
data_storage_size_in_tbs=self.data_storage_size_in_tbs,
|
427
438
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
428
439
|
db_server_version=self.db_server_version,
|
440
|
+
defined_file_system_configurations=self.defined_file_system_configurations,
|
429
441
|
defined_tags=self.defined_tags,
|
430
442
|
display_name=self.display_name,
|
431
443
|
freeform_tags=self.freeform_tags,
|
@@ -488,6 +500,7 @@ def get_cloud_exadata_infrastructure(cloud_exadata_infrastructure_id: Optional[s
|
|
488
500
|
data_storage_size_in_tbs=pulumi.get(__ret__, 'data_storage_size_in_tbs'),
|
489
501
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
490
502
|
db_server_version=pulumi.get(__ret__, 'db_server_version'),
|
503
|
+
defined_file_system_configurations=pulumi.get(__ret__, 'defined_file_system_configurations'),
|
491
504
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
492
505
|
display_name=pulumi.get(__ret__, 'display_name'),
|
493
506
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
@@ -22,7 +22,7 @@ class GetCloudVmClusterResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getCloudVmCluster.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cloud_exadata_infrastructure_id=None, cloud_vm_cluster_id=None, cluster_name=None, compartment_id=None, cpu_core_count=None, create_async=None, data_collection_options=None, data_storage_percentage=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, disk_redundancy=None, display_name=None, domain=None, freeform_tags=None, gi_version=None, hostname=None, id=None, iorm_config_caches=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, memory_size_in_gbs=None, node_count=None, nsg_ids=None, ocpu_count=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, shape=None, ssh_public_keys=None, state=None, storage_size_in_gbs=None, subnet_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, zone_id=None):
|
25
|
+
def __init__(__self__, availability_domain=None, backup_network_nsg_ids=None, backup_subnet_id=None, cloud_exadata_infrastructure_id=None, cloud_vm_cluster_id=None, cluster_name=None, compartment_id=None, cpu_core_count=None, create_async=None, data_collection_options=None, data_storage_percentage=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, disk_redundancy=None, display_name=None, domain=None, file_system_configuration_details=None, freeform_tags=None, gi_version=None, hostname=None, id=None, iorm_config_caches=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_update_history_entry_id=None, license_model=None, lifecycle_details=None, listener_port=None, memory_size_in_gbs=None, node_count=None, nsg_ids=None, ocpu_count=None, private_zone_id=None, scan_dns_name=None, scan_dns_record_id=None, scan_ip_ids=None, scan_listener_port_tcp=None, scan_listener_port_tcp_ssl=None, shape=None, ssh_public_keys=None, state=None, storage_size_in_gbs=None, subnet_id=None, system_tags=None, system_version=None, time_created=None, time_zone=None, vip_ids=None, zone_id=None):
|
26
26
|
if availability_domain and not isinstance(availability_domain, str):
|
27
27
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
28
28
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -77,6 +77,9 @@ class GetCloudVmClusterResult:
|
|
77
77
|
if domain and not isinstance(domain, str):
|
78
78
|
raise TypeError("Expected argument 'domain' to be a str")
|
79
79
|
pulumi.set(__self__, "domain", domain)
|
80
|
+
if file_system_configuration_details and not isinstance(file_system_configuration_details, list):
|
81
|
+
raise TypeError("Expected argument 'file_system_configuration_details' to be a list")
|
82
|
+
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
80
83
|
if freeform_tags and not isinstance(freeform_tags, dict):
|
81
84
|
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
82
85
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
@@ -312,6 +315,14 @@ class GetCloudVmClusterResult:
|
|
312
315
|
"""
|
313
316
|
return pulumi.get(self, "domain")
|
314
317
|
|
318
|
+
@property
|
319
|
+
@pulumi.getter(name="fileSystemConfigurationDetails")
|
320
|
+
def file_system_configuration_details(self) -> Sequence['outputs.GetCloudVmClusterFileSystemConfigurationDetailResult']:
|
321
|
+
"""
|
322
|
+
Details of the file system configuration of the VM cluster.
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "file_system_configuration_details")
|
325
|
+
|
315
326
|
@property
|
316
327
|
@pulumi.getter(name="freeformTags")
|
317
328
|
def freeform_tags(self) -> Mapping[str, Any]:
|
@@ -591,6 +602,7 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
|
|
591
602
|
disk_redundancy=self.disk_redundancy,
|
592
603
|
display_name=self.display_name,
|
593
604
|
domain=self.domain,
|
605
|
+
file_system_configuration_details=self.file_system_configuration_details,
|
594
606
|
freeform_tags=self.freeform_tags,
|
595
607
|
gi_version=self.gi_version,
|
596
608
|
hostname=self.hostname,
|
@@ -668,6 +680,7 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[str] = None,
|
|
668
680
|
disk_redundancy=pulumi.get(__ret__, 'disk_redundancy'),
|
669
681
|
display_name=pulumi.get(__ret__, 'display_name'),
|
670
682
|
domain=pulumi.get(__ret__, 'domain'),
|
683
|
+
file_system_configuration_details=pulumi.get(__ret__, 'file_system_configuration_details'),
|
671
684
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
672
685
|
gi_version=pulumi.get(__ret__, 'gi_version'),
|
673
686
|
hostname=pulumi.get(__ret__, 'hostname'),
|
@@ -22,7 +22,7 @@ class GetExadataInfrastructureResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getExadataInfrastructure.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, activated_storage_count=None, activation_file=None, additional_compute_count=None, additional_compute_system_model=None, additional_storage_count=None, admin_network_cidr=None, availability_domain=None, cloud_control_plane_server1=None, cloud_control_plane_server2=None, compartment_id=None, compute_count=None, contacts=None, corporate_proxy=None, cpus_enabled=None, create_async=None, csi_number=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_tags=None, display_name=None, dns_servers=None, exadata_infrastructure_id=None, freeform_tags=None, gateway=None, id=None, infini_band_network_cidr=None, is_cps_offline_report_enabled=None, is_multi_rack_deployment=None, lifecycle_details=None, maintenance_slo_status=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, multi_rack_configuration_file=None, netmask=None, network_bonding_mode_details=None, ntp_servers=None, rack_serial_number=None, shape=None, state=None, storage_count=None, storage_server_version=None, time_created=None, time_zone=None):
|
25
|
+
def __init__(__self__, activated_storage_count=None, activation_file=None, additional_compute_count=None, additional_compute_system_model=None, additional_storage_count=None, admin_network_cidr=None, availability_domain=None, cloud_control_plane_server1=None, cloud_control_plane_server2=None, compartment_id=None, compute_count=None, contacts=None, corporate_proxy=None, cpus_enabled=None, create_async=None, csi_number=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_server_version=None, defined_file_system_configurations=None, defined_tags=None, display_name=None, dns_servers=None, exadata_infrastructure_id=None, freeform_tags=None, gateway=None, id=None, infini_band_network_cidr=None, is_cps_offline_report_enabled=None, is_multi_rack_deployment=None, lifecycle_details=None, maintenance_slo_status=None, maintenance_windows=None, max_cpu_count=None, max_data_storage_in_tbs=None, max_db_node_storage_in_gbs=None, max_memory_in_gbs=None, memory_size_in_gbs=None, monthly_db_server_version=None, multi_rack_configuration_file=None, netmask=None, network_bonding_mode_details=None, ntp_servers=None, rack_serial_number=None, shape=None, state=None, storage_count=None, storage_server_version=None, time_created=None, time_zone=None):
|
26
26
|
if activated_storage_count and not isinstance(activated_storage_count, int):
|
27
27
|
raise TypeError("Expected argument 'activated_storage_count' to be a int")
|
28
28
|
pulumi.set(__self__, "activated_storage_count", activated_storage_count)
|
@@ -80,6 +80,9 @@ class GetExadataInfrastructureResult:
|
|
80
80
|
if db_server_version and not isinstance(db_server_version, str):
|
81
81
|
raise TypeError("Expected argument 'db_server_version' to be a str")
|
82
82
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
83
|
+
if defined_file_system_configurations and not isinstance(defined_file_system_configurations, list):
|
84
|
+
raise TypeError("Expected argument 'defined_file_system_configurations' to be a list")
|
85
|
+
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
83
86
|
if defined_tags and not isinstance(defined_tags, dict):
|
84
87
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
85
88
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -317,6 +320,14 @@ class GetExadataInfrastructureResult:
|
|
317
320
|
"""
|
318
321
|
return pulumi.get(self, "db_server_version")
|
319
322
|
|
323
|
+
@property
|
324
|
+
@pulumi.getter(name="definedFileSystemConfigurations")
|
325
|
+
def defined_file_system_configurations(self) -> Sequence['outputs.GetExadataInfrastructureDefinedFileSystemConfigurationResult']:
|
326
|
+
"""
|
327
|
+
Details of the file system configuration of the Exadata infrastructure.
|
328
|
+
"""
|
329
|
+
return pulumi.get(self, "defined_file_system_configurations")
|
330
|
+
|
320
331
|
@property
|
321
332
|
@pulumi.getter(name="definedTags")
|
322
333
|
def defined_tags(self) -> Mapping[str, Any]:
|
@@ -580,6 +591,7 @@ class AwaitableGetExadataInfrastructureResult(GetExadataInfrastructureResult):
|
|
580
591
|
data_storage_size_in_tbs=self.data_storage_size_in_tbs,
|
581
592
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
582
593
|
db_server_version=self.db_server_version,
|
594
|
+
defined_file_system_configurations=self.defined_file_system_configurations,
|
583
595
|
defined_tags=self.defined_tags,
|
584
596
|
display_name=self.display_name,
|
585
597
|
dns_servers=self.dns_servers,
|
@@ -648,6 +660,7 @@ def get_exadata_infrastructure(exadata_infrastructure_id: Optional[str] = None,
|
|
648
660
|
data_storage_size_in_tbs=pulumi.get(__ret__, 'data_storage_size_in_tbs'),
|
649
661
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
650
662
|
db_server_version=pulumi.get(__ret__, 'db_server_version'),
|
663
|
+
defined_file_system_configurations=pulumi.get(__ret__, 'defined_file_system_configurations'),
|
651
664
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
652
665
|
display_name=pulumi.get(__ret__, 'display_name'),
|
653
666
|
dns_servers=pulumi.get(__ret__, 'dns_servers'),
|
@@ -22,7 +22,7 @@ class GetVmClusterResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getVmCluster.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, cpu_core_count=None, cpus_enabled=None, data_collection_options=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, freeform_tags=None, gi_version=None, id=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_patch_history_entry_id=None, license_model=None, lifecycle_details=None, memory_size_in_gbs=None, ocpu_count=None, ocpus_enabled=None, shape=None, ssh_public_keys=None, state=None, system_version=None, time_created=None, time_zone=None, vm_cluster_id=None, vm_cluster_network_id=None):
|
25
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, cpu_core_count=None, cpus_enabled=None, data_collection_options=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, db_node_storage_size_in_gbs=None, db_servers=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, file_system_configuration_details=None, freeform_tags=None, gi_version=None, id=None, is_local_backup_enabled=None, is_sparse_diskgroup_enabled=None, last_patch_history_entry_id=None, license_model=None, lifecycle_details=None, memory_size_in_gbs=None, ocpu_count=None, ocpus_enabled=None, shape=None, ssh_public_keys=None, state=None, system_version=None, time_created=None, time_zone=None, vm_cluster_id=None, vm_cluster_network_id=None):
|
26
26
|
if availability_domain and not isinstance(availability_domain, str):
|
27
27
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
28
28
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -59,6 +59,9 @@ class GetVmClusterResult:
|
|
59
59
|
if exadata_infrastructure_id and not isinstance(exadata_infrastructure_id, str):
|
60
60
|
raise TypeError("Expected argument 'exadata_infrastructure_id' to be a str")
|
61
61
|
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
62
|
+
if file_system_configuration_details and not isinstance(file_system_configuration_details, list):
|
63
|
+
raise TypeError("Expected argument 'file_system_configuration_details' to be a list")
|
64
|
+
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
62
65
|
if freeform_tags and not isinstance(freeform_tags, dict):
|
63
66
|
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
64
67
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
@@ -210,6 +213,14 @@ class GetVmClusterResult:
|
|
210
213
|
"""
|
211
214
|
return pulumi.get(self, "exadata_infrastructure_id")
|
212
215
|
|
216
|
+
@property
|
217
|
+
@pulumi.getter(name="fileSystemConfigurationDetails")
|
218
|
+
def file_system_configuration_details(self) -> Sequence['outputs.GetVmClusterFileSystemConfigurationDetailResult']:
|
219
|
+
"""
|
220
|
+
Details of the file system configuration of the VM cluster.
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "file_system_configuration_details")
|
223
|
+
|
213
224
|
@property
|
214
225
|
@pulumi.getter(name="freeformTags")
|
215
226
|
def freeform_tags(self) -> Mapping[str, Any]:
|
@@ -372,6 +383,7 @@ class AwaitableGetVmClusterResult(GetVmClusterResult):
|
|
372
383
|
defined_tags=self.defined_tags,
|
373
384
|
display_name=self.display_name,
|
374
385
|
exadata_infrastructure_id=self.exadata_infrastructure_id,
|
386
|
+
file_system_configuration_details=self.file_system_configuration_details,
|
375
387
|
freeform_tags=self.freeform_tags,
|
376
388
|
gi_version=self.gi_version,
|
377
389
|
id=self.id,
|
@@ -430,6 +442,7 @@ def get_vm_cluster(vm_cluster_id: Optional[str] = None,
|
|
430
442
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
431
443
|
display_name=pulumi.get(__ret__, 'display_name'),
|
432
444
|
exadata_infrastructure_id=pulumi.get(__ret__, 'exadata_infrastructure_id'),
|
445
|
+
file_system_configuration_details=pulumi.get(__ret__, 'file_system_configuration_details'),
|
433
446
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
434
447
|
gi_version=pulumi.get(__ret__, 'gi_version'),
|
435
448
|
id=pulumi.get(__ret__, 'id'),
|