pulumi-oci 1.35.0__py3-none-any.whl → 1.35.0a1715230204__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/database/_inputs.py +0 -112
- pulumi_oci/database/cloud_exadata_infrastructure.py +0 -28
- pulumi_oci/database/cloud_vm_cluster.py +0 -55
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +1 -14
- pulumi_oci/database/get_cloud_vm_cluster.py +1 -14
- pulumi_oci/database/outputs.py +6 -316
- pulumi_oci/disasterrecovery/_inputs.py +0 -16
- pulumi_oci/disasterrecovery/outputs.py +0 -36
- pulumi_oci/loadbalancer/_inputs.py +20 -144
- pulumi_oci/loadbalancer/backend.py +0 -49
- pulumi_oci/loadbalancer/backend_set.py +0 -57
- pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
- pulumi_oci/loadbalancer/load_balancer.py +7 -98
- pulumi_oci/loadbalancer/outputs.py +36 -361
- pulumi_oci/loadbalancer/rule_set.py +0 -10
- pulumi_oci/provider.py +8 -0
- {pulumi_oci-1.35.0.dist-info → pulumi_oci-1.35.0a1715230204.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0.dist-info → pulumi_oci-1.35.0a1715230204.dist-info}/RECORD +20 -20
- {pulumi_oci-1.35.0.dist-info → pulumi_oci-1.35.0a1715230204.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0.dist-info → pulumi_oci-1.35.0a1715230204.dist-info}/top_level.txt +0 -0
pulumi_oci/database/_inputs.py
CHANGED
@@ -61,12 +61,10 @@ __all__ = [
|
|
61
61
|
'CloudAutonomousVmClusterMaintenanceWindowMonthArgs',
|
62
62
|
'CloudDatabaseManagementCredentialdetailsArgs',
|
63
63
|
'CloudExadataInfrastructureCustomerContactArgs',
|
64
|
-
'CloudExadataInfrastructureDefinedFileSystemConfigurationArgs',
|
65
64
|
'CloudExadataInfrastructureMaintenanceWindowArgs',
|
66
65
|
'CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs',
|
67
66
|
'CloudExadataInfrastructureMaintenanceWindowMonthArgs',
|
68
67
|
'CloudVmClusterDataCollectionOptionsArgs',
|
69
|
-
'CloudVmClusterFileSystemConfigurationDetailArgs',
|
70
68
|
'CloudVmClusterIormConfigCachArgs',
|
71
69
|
'CloudVmClusterIormConfigCachDbPlanArgs',
|
72
70
|
'CloudVmClusterIormConfigDbPlanArgs',
|
@@ -3817,77 +3815,6 @@ class CloudExadataInfrastructureCustomerContactArgs:
|
|
3817
3815
|
pulumi.set(self, "email", value)
|
3818
3816
|
|
3819
3817
|
|
3820
|
-
@pulumi.input_type
|
3821
|
-
class CloudExadataInfrastructureDefinedFileSystemConfigurationArgs:
|
3822
|
-
def __init__(__self__, *,
|
3823
|
-
is_backup_partition: Optional[pulumi.Input[bool]] = None,
|
3824
|
-
is_resizable: Optional[pulumi.Input[bool]] = None,
|
3825
|
-
min_size_gb: Optional[pulumi.Input[int]] = None,
|
3826
|
-
mount_point: Optional[pulumi.Input[str]] = None):
|
3827
|
-
"""
|
3828
|
-
:param pulumi.Input[bool] is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
3829
|
-
:param pulumi.Input[bool] is_resizable: If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
3830
|
-
:param pulumi.Input[int] min_size_gb: The minimum size of file system.
|
3831
|
-
:param pulumi.Input[str] mount_point: The mount point of file system.
|
3832
|
-
"""
|
3833
|
-
if is_backup_partition is not None:
|
3834
|
-
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
3835
|
-
if is_resizable is not None:
|
3836
|
-
pulumi.set(__self__, "is_resizable", is_resizable)
|
3837
|
-
if min_size_gb is not None:
|
3838
|
-
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
3839
|
-
if mount_point is not None:
|
3840
|
-
pulumi.set(__self__, "mount_point", mount_point)
|
3841
|
-
|
3842
|
-
@property
|
3843
|
-
@pulumi.getter(name="isBackupPartition")
|
3844
|
-
def is_backup_partition(self) -> Optional[pulumi.Input[bool]]:
|
3845
|
-
"""
|
3846
|
-
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
3847
|
-
"""
|
3848
|
-
return pulumi.get(self, "is_backup_partition")
|
3849
|
-
|
3850
|
-
@is_backup_partition.setter
|
3851
|
-
def is_backup_partition(self, value: Optional[pulumi.Input[bool]]):
|
3852
|
-
pulumi.set(self, "is_backup_partition", value)
|
3853
|
-
|
3854
|
-
@property
|
3855
|
-
@pulumi.getter(name="isResizable")
|
3856
|
-
def is_resizable(self) -> Optional[pulumi.Input[bool]]:
|
3857
|
-
"""
|
3858
|
-
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
3859
|
-
"""
|
3860
|
-
return pulumi.get(self, "is_resizable")
|
3861
|
-
|
3862
|
-
@is_resizable.setter
|
3863
|
-
def is_resizable(self, value: Optional[pulumi.Input[bool]]):
|
3864
|
-
pulumi.set(self, "is_resizable", value)
|
3865
|
-
|
3866
|
-
@property
|
3867
|
-
@pulumi.getter(name="minSizeGb")
|
3868
|
-
def min_size_gb(self) -> Optional[pulumi.Input[int]]:
|
3869
|
-
"""
|
3870
|
-
The minimum size of file system.
|
3871
|
-
"""
|
3872
|
-
return pulumi.get(self, "min_size_gb")
|
3873
|
-
|
3874
|
-
@min_size_gb.setter
|
3875
|
-
def min_size_gb(self, value: Optional[pulumi.Input[int]]):
|
3876
|
-
pulumi.set(self, "min_size_gb", value)
|
3877
|
-
|
3878
|
-
@property
|
3879
|
-
@pulumi.getter(name="mountPoint")
|
3880
|
-
def mount_point(self) -> Optional[pulumi.Input[str]]:
|
3881
|
-
"""
|
3882
|
-
The mount point of file system.
|
3883
|
-
"""
|
3884
|
-
return pulumi.get(self, "mount_point")
|
3885
|
-
|
3886
|
-
@mount_point.setter
|
3887
|
-
def mount_point(self, value: Optional[pulumi.Input[str]]):
|
3888
|
-
pulumi.set(self, "mount_point", value)
|
3889
|
-
|
3890
|
-
|
3891
3818
|
@pulumi.input_type
|
3892
3819
|
class CloudExadataInfrastructureMaintenanceWindowArgs:
|
3893
3820
|
def __init__(__self__, *,
|
@@ -4172,45 +4099,6 @@ class CloudVmClusterDataCollectionOptionsArgs:
|
|
4172
4099
|
pulumi.set(self, "is_incident_logs_enabled", value)
|
4173
4100
|
|
4174
4101
|
|
4175
|
-
@pulumi.input_type
|
4176
|
-
class CloudVmClusterFileSystemConfigurationDetailArgs:
|
4177
|
-
def __init__(__self__, *,
|
4178
|
-
file_system_size_gb: Optional[pulumi.Input[int]] = None,
|
4179
|
-
mount_point: Optional[pulumi.Input[str]] = None):
|
4180
|
-
"""
|
4181
|
-
:param pulumi.Input[int] file_system_size_gb: (Updatable) The file system size to be allocated in GBs.
|
4182
|
-
:param pulumi.Input[str] mount_point: (Updatable) The mount point of file system.
|
4183
|
-
"""
|
4184
|
-
if file_system_size_gb is not None:
|
4185
|
-
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
4186
|
-
if mount_point is not None:
|
4187
|
-
pulumi.set(__self__, "mount_point", mount_point)
|
4188
|
-
|
4189
|
-
@property
|
4190
|
-
@pulumi.getter(name="fileSystemSizeGb")
|
4191
|
-
def file_system_size_gb(self) -> Optional[pulumi.Input[int]]:
|
4192
|
-
"""
|
4193
|
-
(Updatable) The file system size to be allocated in GBs.
|
4194
|
-
"""
|
4195
|
-
return pulumi.get(self, "file_system_size_gb")
|
4196
|
-
|
4197
|
-
@file_system_size_gb.setter
|
4198
|
-
def file_system_size_gb(self, value: Optional[pulumi.Input[int]]):
|
4199
|
-
pulumi.set(self, "file_system_size_gb", value)
|
4200
|
-
|
4201
|
-
@property
|
4202
|
-
@pulumi.getter(name="mountPoint")
|
4203
|
-
def mount_point(self) -> Optional[pulumi.Input[str]]:
|
4204
|
-
"""
|
4205
|
-
(Updatable) The mount point of file system.
|
4206
|
-
"""
|
4207
|
-
return pulumi.get(self, "mount_point")
|
4208
|
-
|
4209
|
-
@mount_point.setter
|
4210
|
-
def mount_point(self, value: Optional[pulumi.Input[str]]):
|
4211
|
-
pulumi.set(self, "mount_point", value)
|
4212
|
-
|
4213
|
-
|
4214
4102
|
@pulumi.input_type
|
4215
4103
|
class CloudVmClusterIormConfigCachArgs:
|
4216
4104
|
def __init__(__self__, *,
|
@@ -216,7 +216,6 @@ class _CloudExadataInfrastructureState:
|
|
216
216
|
data_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
|
217
217
|
db_node_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
218
218
|
db_server_version: Optional[pulumi.Input[str]] = None,
|
219
|
-
defined_file_system_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureDefinedFileSystemConfigurationArgs']]]] = None,
|
220
219
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
221
220
|
display_name: Optional[pulumi.Input[str]] = None,
|
222
221
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -252,7 +251,6 @@ class _CloudExadataInfrastructureState:
|
|
252
251
|
:param pulumi.Input[float] data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
253
252
|
:param pulumi.Input[int] db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
254
253
|
:param pulumi.Input[str] db_server_version: The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
255
|
-
:param pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureDefinedFileSystemConfigurationArgs']]] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
256
254
|
: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).
|
257
255
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
|
258
256
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
@@ -303,8 +301,6 @@ class _CloudExadataInfrastructureState:
|
|
303
301
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
304
302
|
if db_server_version is not None:
|
305
303
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
306
|
-
if defined_file_system_configurations is not None:
|
307
|
-
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
308
304
|
if defined_tags is not None:
|
309
305
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
310
306
|
if display_name is not None:
|
@@ -492,18 +488,6 @@ class _CloudExadataInfrastructureState:
|
|
492
488
|
def db_server_version(self, value: Optional[pulumi.Input[str]]):
|
493
489
|
pulumi.set(self, "db_server_version", value)
|
494
490
|
|
495
|
-
@property
|
496
|
-
@pulumi.getter(name="definedFileSystemConfigurations")
|
497
|
-
def defined_file_system_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureDefinedFileSystemConfigurationArgs']]]]:
|
498
|
-
"""
|
499
|
-
Details of the file system configuration of the Exadata infrastructure.
|
500
|
-
"""
|
501
|
-
return pulumi.get(self, "defined_file_system_configurations")
|
502
|
-
|
503
|
-
@defined_file_system_configurations.setter
|
504
|
-
def defined_file_system_configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureDefinedFileSystemConfigurationArgs']]]]):
|
505
|
-
pulumi.set(self, "defined_file_system_configurations", value)
|
506
|
-
|
507
491
|
@property
|
508
492
|
@pulumi.getter(name="definedTags")
|
509
493
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -967,7 +951,6 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
|
|
967
951
|
__props__.__dict__["data_storage_size_in_tbs"] = None
|
968
952
|
__props__.__dict__["db_node_storage_size_in_gbs"] = None
|
969
953
|
__props__.__dict__["db_server_version"] = None
|
970
|
-
__props__.__dict__["defined_file_system_configurations"] = None
|
971
954
|
__props__.__dict__["last_maintenance_run_id"] = None
|
972
955
|
__props__.__dict__["lifecycle_details"] = None
|
973
956
|
__props__.__dict__["max_cpu_count"] = None
|
@@ -1005,7 +988,6 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
|
|
1005
988
|
data_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
|
1006
989
|
db_node_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
1007
990
|
db_server_version: Optional[pulumi.Input[str]] = None,
|
1008
|
-
defined_file_system_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudExadataInfrastructureDefinedFileSystemConfigurationArgs']]]]] = None,
|
1009
991
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1010
992
|
display_name: Optional[pulumi.Input[str]] = None,
|
1011
993
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -1046,7 +1028,6 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
|
|
1046
1028
|
:param pulumi.Input[float] data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
1047
1029
|
:param pulumi.Input[int] db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
1048
1030
|
:param pulumi.Input[str] db_server_version: The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
1049
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudExadataInfrastructureDefinedFileSystemConfigurationArgs']]]] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
1050
1031
|
: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).
|
1051
1032
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
|
1052
1033
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
@@ -1089,7 +1070,6 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
|
|
1089
1070
|
__props__.__dict__["data_storage_size_in_tbs"] = data_storage_size_in_tbs
|
1090
1071
|
__props__.__dict__["db_node_storage_size_in_gbs"] = db_node_storage_size_in_gbs
|
1091
1072
|
__props__.__dict__["db_server_version"] = db_server_version
|
1092
|
-
__props__.__dict__["defined_file_system_configurations"] = defined_file_system_configurations
|
1093
1073
|
__props__.__dict__["defined_tags"] = defined_tags
|
1094
1074
|
__props__.__dict__["display_name"] = display_name
|
1095
1075
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
@@ -1209,14 +1189,6 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
|
|
1209
1189
|
"""
|
1210
1190
|
return pulumi.get(self, "db_server_version")
|
1211
1191
|
|
1212
|
-
@property
|
1213
|
-
@pulumi.getter(name="definedFileSystemConfigurations")
|
1214
|
-
def defined_file_system_configurations(self) -> pulumi.Output[Sequence['outputs.CloudExadataInfrastructureDefinedFileSystemConfiguration']]:
|
1215
|
-
"""
|
1216
|
-
Details of the file system configuration of the Exadata infrastructure.
|
1217
|
-
"""
|
1218
|
-
return pulumi.get(self, "defined_file_system_configurations")
|
1219
|
-
|
1220
1192
|
@property
|
1221
1193
|
@pulumi.getter(name="definedTags")
|
1222
1194
|
def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
@@ -35,7 +35,6 @@ class CloudVmClusterArgs:
|
|
35
35
|
db_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
36
36
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
37
37
|
domain: Optional[pulumi.Input[str]] = None,
|
38
|
-
file_system_configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterFileSystemConfigurationDetailArgs']]]] = None,
|
39
38
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
40
39
|
is_local_backup_enabled: Optional[pulumi.Input[bool]] = None,
|
41
40
|
is_sparse_diskgroup_enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -79,7 +78,6 @@ class CloudVmClusterArgs:
|
|
79
78
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] db_servers: The list of DB servers.
|
80
79
|
: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).
|
81
80
|
:param pulumi.Input[str] domain: A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
|
82
|
-
:param pulumi.Input[Sequence[pulumi.Input['CloudVmClusterFileSystemConfigurationDetailArgs']]] file_system_configuration_details: (Updatable) Details of the file system configuration of the VM cluster.
|
83
81
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
84
82
|
:param pulumi.Input[bool] is_local_backup_enabled: If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
|
85
83
|
:param pulumi.Input[bool] is_sparse_diskgroup_enabled: If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
|
@@ -127,8 +125,6 @@ class CloudVmClusterArgs:
|
|
127
125
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
128
126
|
if domain is not None:
|
129
127
|
pulumi.set(__self__, "domain", domain)
|
130
|
-
if file_system_configuration_details is not None:
|
131
|
-
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
132
128
|
if freeform_tags is not None:
|
133
129
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
134
130
|
if is_local_backup_enabled is not None:
|
@@ -390,18 +386,6 @@ class CloudVmClusterArgs:
|
|
390
386
|
def domain(self, value: Optional[pulumi.Input[str]]):
|
391
387
|
pulumi.set(self, "domain", value)
|
392
388
|
|
393
|
-
@property
|
394
|
-
@pulumi.getter(name="fileSystemConfigurationDetails")
|
395
|
-
def file_system_configuration_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterFileSystemConfigurationDetailArgs']]]]:
|
396
|
-
"""
|
397
|
-
(Updatable) Details of the file system configuration of the VM cluster.
|
398
|
-
"""
|
399
|
-
return pulumi.get(self, "file_system_configuration_details")
|
400
|
-
|
401
|
-
@file_system_configuration_details.setter
|
402
|
-
def file_system_configuration_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterFileSystemConfigurationDetailArgs']]]]):
|
403
|
-
pulumi.set(self, "file_system_configuration_details", value)
|
404
|
-
|
405
389
|
@property
|
406
390
|
@pulumi.getter(name="freeformTags")
|
407
391
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -572,7 +556,6 @@ class _CloudVmClusterState:
|
|
572
556
|
disk_redundancy: Optional[pulumi.Input[str]] = None,
|
573
557
|
display_name: Optional[pulumi.Input[str]] = None,
|
574
558
|
domain: Optional[pulumi.Input[str]] = None,
|
575
|
-
file_system_configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterFileSystemConfigurationDetailArgs']]]] = None,
|
576
559
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
577
560
|
gi_version: Optional[pulumi.Input[str]] = None,
|
578
561
|
hostname: Optional[pulumi.Input[str]] = None,
|
@@ -629,7 +612,6 @@ class _CloudVmClusterState:
|
|
629
612
|
:param pulumi.Input[str] disk_redundancy: The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
|
630
613
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
|
631
614
|
:param pulumi.Input[str] domain: A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
|
632
|
-
:param pulumi.Input[Sequence[pulumi.Input['CloudVmClusterFileSystemConfigurationDetailArgs']]] file_system_configuration_details: (Updatable) Details of the file system configuration of the VM cluster.
|
633
615
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
634
616
|
:param pulumi.Input[str] gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
635
617
|
:param pulumi.Input[str] hostname: The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
|
@@ -705,8 +687,6 @@ class _CloudVmClusterState:
|
|
705
687
|
pulumi.set(__self__, "display_name", display_name)
|
706
688
|
if domain is not None:
|
707
689
|
pulumi.set(__self__, "domain", domain)
|
708
|
-
if file_system_configuration_details is not None:
|
709
|
-
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
710
690
|
if freeform_tags is not None:
|
711
691
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
712
692
|
if gi_version is not None:
|
@@ -978,18 +958,6 @@ class _CloudVmClusterState:
|
|
978
958
|
def domain(self, value: Optional[pulumi.Input[str]]):
|
979
959
|
pulumi.set(self, "domain", value)
|
980
960
|
|
981
|
-
@property
|
982
|
-
@pulumi.getter(name="fileSystemConfigurationDetails")
|
983
|
-
def file_system_configuration_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterFileSystemConfigurationDetailArgs']]]]:
|
984
|
-
"""
|
985
|
-
(Updatable) Details of the file system configuration of the VM cluster.
|
986
|
-
"""
|
987
|
-
return pulumi.get(self, "file_system_configuration_details")
|
988
|
-
|
989
|
-
@file_system_configuration_details.setter
|
990
|
-
def file_system_configuration_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterFileSystemConfigurationDetailArgs']]]]):
|
991
|
-
pulumi.set(self, "file_system_configuration_details", value)
|
992
|
-
|
993
961
|
@property
|
994
962
|
@pulumi.getter(name="freeformTags")
|
995
963
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -1392,7 +1360,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1392
1360
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1393
1361
|
display_name: Optional[pulumi.Input[str]] = None,
|
1394
1362
|
domain: Optional[pulumi.Input[str]] = None,
|
1395
|
-
file_system_configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudVmClusterFileSystemConfigurationDetailArgs']]]]] = None,
|
1396
1363
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1397
1364
|
gi_version: Optional[pulumi.Input[str]] = None,
|
1398
1365
|
hostname: Optional[pulumi.Input[str]] = None,
|
@@ -1444,10 +1411,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1444
1411
|
db_servers=cloud_vm_cluster_db_servers,
|
1445
1412
|
defined_tags=cloud_vm_cluster_defined_tags,
|
1446
1413
|
domain=cloud_vm_cluster_domain,
|
1447
|
-
file_system_configuration_details=[oci.database.CloudVmClusterFileSystemConfigurationDetailArgs(
|
1448
|
-
file_system_size_gb=cloud_vm_cluster_file_system_configuration_details_file_system_size_gb,
|
1449
|
-
mount_point=cloud_vm_cluster_file_system_configuration_details_mount_point,
|
1450
|
-
)],
|
1451
1414
|
freeform_tags={
|
1452
1415
|
"Department": "Finance",
|
1453
1416
|
},
|
@@ -1495,7 +1458,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1495
1458
|
: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).
|
1496
1459
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
|
1497
1460
|
:param pulumi.Input[str] domain: A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
|
1498
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudVmClusterFileSystemConfigurationDetailArgs']]]] file_system_configuration_details: (Updatable) Details of the file system configuration of the VM cluster.
|
1499
1461
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1500
1462
|
:param pulumi.Input[str] gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
1501
1463
|
:param pulumi.Input[str] hostname: The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
|
@@ -1562,10 +1524,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1562
1524
|
db_servers=cloud_vm_cluster_db_servers,
|
1563
1525
|
defined_tags=cloud_vm_cluster_defined_tags,
|
1564
1526
|
domain=cloud_vm_cluster_domain,
|
1565
|
-
file_system_configuration_details=[oci.database.CloudVmClusterFileSystemConfigurationDetailArgs(
|
1566
|
-
file_system_size_gb=cloud_vm_cluster_file_system_configuration_details_file_system_size_gb,
|
1567
|
-
mount_point=cloud_vm_cluster_file_system_configuration_details_mount_point,
|
1568
|
-
)],
|
1569
1527
|
freeform_tags={
|
1570
1528
|
"Department": "Finance",
|
1571
1529
|
},
|
@@ -1620,7 +1578,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1620
1578
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1621
1579
|
display_name: Optional[pulumi.Input[str]] = None,
|
1622
1580
|
domain: Optional[pulumi.Input[str]] = None,
|
1623
|
-
file_system_configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudVmClusterFileSystemConfigurationDetailArgs']]]]] = None,
|
1624
1581
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1625
1582
|
gi_version: Optional[pulumi.Input[str]] = None,
|
1626
1583
|
hostname: Optional[pulumi.Input[str]] = None,
|
@@ -1671,7 +1628,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1671
1628
|
raise TypeError("Missing required property 'display_name'")
|
1672
1629
|
__props__.__dict__["display_name"] = display_name
|
1673
1630
|
__props__.__dict__["domain"] = domain
|
1674
|
-
__props__.__dict__["file_system_configuration_details"] = file_system_configuration_details
|
1675
1631
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1676
1632
|
if gi_version is None and not opts.urn:
|
1677
1633
|
raise TypeError("Missing required property 'gi_version'")
|
@@ -1740,7 +1696,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1740
1696
|
disk_redundancy: Optional[pulumi.Input[str]] = None,
|
1741
1697
|
display_name: Optional[pulumi.Input[str]] = None,
|
1742
1698
|
domain: Optional[pulumi.Input[str]] = None,
|
1743
|
-
file_system_configuration_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudVmClusterFileSystemConfigurationDetailArgs']]]]] = None,
|
1744
1699
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1745
1700
|
gi_version: Optional[pulumi.Input[str]] = None,
|
1746
1701
|
hostname: Optional[pulumi.Input[str]] = None,
|
@@ -1802,7 +1757,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1802
1757
|
:param pulumi.Input[str] disk_redundancy: The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
|
1803
1758
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
|
1804
1759
|
:param pulumi.Input[str] domain: A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
|
1805
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudVmClusterFileSystemConfigurationDetailArgs']]]] file_system_configuration_details: (Updatable) Details of the file system configuration of the VM cluster.
|
1806
1760
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1807
1761
|
:param pulumi.Input[str] gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
1808
1762
|
:param pulumi.Input[str] hostname: The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
|
@@ -1865,7 +1819,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1865
1819
|
__props__.__dict__["disk_redundancy"] = disk_redundancy
|
1866
1820
|
__props__.__dict__["display_name"] = display_name
|
1867
1821
|
__props__.__dict__["domain"] = domain
|
1868
|
-
__props__.__dict__["file_system_configuration_details"] = file_system_configuration_details
|
1869
1822
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1870
1823
|
__props__.__dict__["gi_version"] = gi_version
|
1871
1824
|
__props__.__dict__["hostname"] = hostname
|
@@ -2039,14 +1992,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2039
1992
|
"""
|
2040
1993
|
return pulumi.get(self, "domain")
|
2041
1994
|
|
2042
|
-
@property
|
2043
|
-
@pulumi.getter(name="fileSystemConfigurationDetails")
|
2044
|
-
def file_system_configuration_details(self) -> pulumi.Output[Sequence['outputs.CloudVmClusterFileSystemConfigurationDetail']]:
|
2045
|
-
"""
|
2046
|
-
(Updatable) Details of the file system configuration of the VM cluster.
|
2047
|
-
"""
|
2048
|
-
return pulumi.get(self, "file_system_configuration_details")
|
2049
|
-
|
2050
1995
|
@property
|
2051
1996
|
@pulumi.getter(name="freeformTags")
|
2052
1997
|
def freeform_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,
|
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):
|
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,9 +62,6 @@ 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)
|
68
65
|
if defined_tags and not isinstance(defined_tags, dict):
|
69
66
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
70
67
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -233,14 +230,6 @@ class GetCloudExadataInfrastructureResult:
|
|
233
230
|
"""
|
234
231
|
return pulumi.get(self, "db_server_version")
|
235
232
|
|
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
|
-
|
244
233
|
@property
|
245
234
|
@pulumi.getter(name="definedTags")
|
246
235
|
def defined_tags(self) -> Mapping[str, Any]:
|
@@ -437,7 +426,6 @@ class AwaitableGetCloudExadataInfrastructureResult(GetCloudExadataInfrastructure
|
|
437
426
|
data_storage_size_in_tbs=self.data_storage_size_in_tbs,
|
438
427
|
db_node_storage_size_in_gbs=self.db_node_storage_size_in_gbs,
|
439
428
|
db_server_version=self.db_server_version,
|
440
|
-
defined_file_system_configurations=self.defined_file_system_configurations,
|
441
429
|
defined_tags=self.defined_tags,
|
442
430
|
display_name=self.display_name,
|
443
431
|
freeform_tags=self.freeform_tags,
|
@@ -500,7 +488,6 @@ def get_cloud_exadata_infrastructure(cloud_exadata_infrastructure_id: Optional[s
|
|
500
488
|
data_storage_size_in_tbs=pulumi.get(__ret__, 'data_storage_size_in_tbs'),
|
501
489
|
db_node_storage_size_in_gbs=pulumi.get(__ret__, 'db_node_storage_size_in_gbs'),
|
502
490
|
db_server_version=pulumi.get(__ret__, 'db_server_version'),
|
503
|
-
defined_file_system_configurations=pulumi.get(__ret__, 'defined_file_system_configurations'),
|
504
491
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
505
492
|
display_name=pulumi.get(__ret__, 'display_name'),
|
506
493
|
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,
|
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):
|
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,9 +77,6 @@ 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)
|
83
80
|
if freeform_tags and not isinstance(freeform_tags, dict):
|
84
81
|
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
85
82
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
@@ -315,14 +312,6 @@ class GetCloudVmClusterResult:
|
|
315
312
|
"""
|
316
313
|
return pulumi.get(self, "domain")
|
317
314
|
|
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
|
-
|
326
315
|
@property
|
327
316
|
@pulumi.getter(name="freeformTags")
|
328
317
|
def freeform_tags(self) -> Mapping[str, Any]:
|
@@ -602,7 +591,6 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
|
|
602
591
|
disk_redundancy=self.disk_redundancy,
|
603
592
|
display_name=self.display_name,
|
604
593
|
domain=self.domain,
|
605
|
-
file_system_configuration_details=self.file_system_configuration_details,
|
606
594
|
freeform_tags=self.freeform_tags,
|
607
595
|
gi_version=self.gi_version,
|
608
596
|
hostname=self.hostname,
|
@@ -680,7 +668,6 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[str] = None,
|
|
680
668
|
disk_redundancy=pulumi.get(__ret__, 'disk_redundancy'),
|
681
669
|
display_name=pulumi.get(__ret__, 'display_name'),
|
682
670
|
domain=pulumi.get(__ret__, 'domain'),
|
683
|
-
file_system_configuration_details=pulumi.get(__ret__, 'file_system_configuration_details'),
|
684
671
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
685
672
|
gi_version=pulumi.get(__ret__, 'gi_version'),
|
686
673
|
hostname=pulumi.get(__ret__, 'hostname'),
|