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
@@ -29,6 +29,7 @@ class ManagementStationArgs:
|
|
29
29
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
30
|
description: Optional[pulumi.Input[str]] = None,
|
31
31
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
|
+
is_auto_config_enabled: Optional[pulumi.Input[bool]] = None,
|
32
33
|
refresh_trigger: Optional[pulumi.Input[int]] = None):
|
33
34
|
"""
|
34
35
|
The set of arguments for constructing a ManagementStation resource.
|
@@ -40,6 +41,7 @@ class ManagementStationArgs:
|
|
40
41
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] 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). Example: `{"Operations.CostCenter": "42"}`
|
41
42
|
:param pulumi.Input[str] description: (Updatable) User-specified description of the management station. Avoid entering confidential information.
|
42
43
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
44
|
+
:param pulumi.Input[bool] is_auto_config_enabled: (Updatable) When enabled, the station setup script automatically runs to configure the firewall and SELinux settings on the station.
|
43
45
|
:param pulumi.Input[int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
44
46
|
|
45
47
|
|
@@ -57,6 +59,8 @@ class ManagementStationArgs:
|
|
57
59
|
pulumi.set(__self__, "description", description)
|
58
60
|
if freeform_tags is not None:
|
59
61
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
62
|
+
if is_auto_config_enabled is not None:
|
63
|
+
pulumi.set(__self__, "is_auto_config_enabled", is_auto_config_enabled)
|
60
64
|
if refresh_trigger is not None:
|
61
65
|
pulumi.set(__self__, "refresh_trigger", refresh_trigger)
|
62
66
|
|
@@ -156,6 +160,18 @@ class ManagementStationArgs:
|
|
156
160
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
157
161
|
pulumi.set(self, "freeform_tags", value)
|
158
162
|
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="isAutoConfigEnabled")
|
165
|
+
def is_auto_config_enabled(self) -> Optional[pulumi.Input[bool]]:
|
166
|
+
"""
|
167
|
+
(Updatable) When enabled, the station setup script automatically runs to configure the firewall and SELinux settings on the station.
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "is_auto_config_enabled")
|
170
|
+
|
171
|
+
@is_auto_config_enabled.setter
|
172
|
+
def is_auto_config_enabled(self, value: Optional[pulumi.Input[bool]]):
|
173
|
+
pulumi.set(self, "is_auto_config_enabled", value)
|
174
|
+
|
159
175
|
@property
|
160
176
|
@pulumi.getter(name="refreshTrigger")
|
161
177
|
def refresh_trigger(self) -> Optional[pulumi.Input[int]]:
|
@@ -183,12 +199,20 @@ class _ManagementStationState:
|
|
183
199
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
184
200
|
healths: Optional[pulumi.Input[Sequence[pulumi.Input['ManagementStationHealthArgs']]]] = None,
|
185
201
|
hostname: Optional[pulumi.Input[str]] = None,
|
202
|
+
is_auto_config_enabled: Optional[pulumi.Input[bool]] = None,
|
203
|
+
location: Optional[pulumi.Input[str]] = None,
|
186
204
|
managed_instance_id: Optional[pulumi.Input[str]] = None,
|
187
205
|
mirror: Optional[pulumi.Input['ManagementStationMirrorArgs']] = None,
|
188
206
|
mirror_capacity: Optional[pulumi.Input[int]] = None,
|
207
|
+
mirror_package_count: Optional[pulumi.Input[int]] = None,
|
208
|
+
mirror_size: Optional[pulumi.Input[str]] = None,
|
209
|
+
mirror_storage_available_size: Optional[pulumi.Input[str]] = None,
|
210
|
+
mirror_storage_size: Optional[pulumi.Input[str]] = None,
|
189
211
|
mirror_sync_statuses: Optional[pulumi.Input[Sequence[pulumi.Input['ManagementStationMirrorSyncStatusArgs']]]] = None,
|
212
|
+
mirror_unique_package_count: Optional[pulumi.Input[int]] = None,
|
190
213
|
overall_percentage: Optional[pulumi.Input[int]] = None,
|
191
214
|
overall_state: Optional[pulumi.Input[str]] = None,
|
215
|
+
peer_management_stations: Optional[pulumi.Input[Sequence[pulumi.Input['ManagementStationPeerManagementStationArgs']]]] = None,
|
192
216
|
profile_id: Optional[pulumi.Input[str]] = None,
|
193
217
|
proxy: Optional[pulumi.Input['ManagementStationProxyArgs']] = None,
|
194
218
|
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
@@ -205,12 +229,20 @@ class _ManagementStationState:
|
|
205
229
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
206
230
|
:param pulumi.Input[Sequence[pulumi.Input['ManagementStationHealthArgs']]] healths: Overall health information of the management station.
|
207
231
|
:param pulumi.Input[str] hostname: (Updatable) Hostname of the management station.
|
232
|
+
:param pulumi.Input[bool] is_auto_config_enabled: (Updatable) When enabled, the station setup script automatically runs to configure the firewall and SELinux settings on the station.
|
233
|
+
:param pulumi.Input[str] location: The location of the instance that is acting as the management station.
|
208
234
|
:param pulumi.Input[str] managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance that is acting as the management station.
|
209
235
|
:param pulumi.Input['ManagementStationMirrorArgs'] mirror: (Updatable) Information used to create the mirror configuration for a management station.
|
210
236
|
:param pulumi.Input[int] mirror_capacity: A decimal number representing the amount of mirror capacity used by the sync.
|
237
|
+
:param pulumi.Input[int] mirror_package_count: The total number of all packages within the mirrored software sources.
|
238
|
+
:param pulumi.Input[str] mirror_size: The total size of all software source mirrors in bytes.
|
239
|
+
:param pulumi.Input[str] mirror_storage_available_size: Amount of available mirror storage in bytes.
|
240
|
+
:param pulumi.Input[str] mirror_storage_size: Total mirror storage size in bytes.
|
211
241
|
:param pulumi.Input[Sequence[pulumi.Input['ManagementStationMirrorSyncStatusArgs']]] mirror_sync_statuses: Status summary of the mirror sync.
|
242
|
+
:param pulumi.Input[int] mirror_unique_package_count: The total number of unique packages within the mirrored software sources on the station. Each package is counted only once, regardless of how many versions it has.
|
212
243
|
:param pulumi.Input[int] overall_percentage: A decimal number representing the progress of the current mirror sync.
|
213
244
|
:param pulumi.Input[str] overall_state: Current state of the mirror sync for the management station.
|
245
|
+
:param pulumi.Input[Sequence[pulumi.Input['ManagementStationPeerManagementStationArgs']]] peer_management_stations: A list of other management stations that are behind the same load balancer within a high availability configuration. Stations are identified as peers if they have the same hostname and compartment.
|
214
246
|
:param pulumi.Input[str] profile_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile used for the management station.
|
215
247
|
:param pulumi.Input['ManagementStationProxyArgs'] proxy: (Updatable) Information used to create the proxy configuration for a management station.
|
216
248
|
:param pulumi.Input[int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
@@ -237,18 +269,34 @@ class _ManagementStationState:
|
|
237
269
|
pulumi.set(__self__, "healths", healths)
|
238
270
|
if hostname is not None:
|
239
271
|
pulumi.set(__self__, "hostname", hostname)
|
272
|
+
if is_auto_config_enabled is not None:
|
273
|
+
pulumi.set(__self__, "is_auto_config_enabled", is_auto_config_enabled)
|
274
|
+
if location is not None:
|
275
|
+
pulumi.set(__self__, "location", location)
|
240
276
|
if managed_instance_id is not None:
|
241
277
|
pulumi.set(__self__, "managed_instance_id", managed_instance_id)
|
242
278
|
if mirror is not None:
|
243
279
|
pulumi.set(__self__, "mirror", mirror)
|
244
280
|
if mirror_capacity is not None:
|
245
281
|
pulumi.set(__self__, "mirror_capacity", mirror_capacity)
|
282
|
+
if mirror_package_count is not None:
|
283
|
+
pulumi.set(__self__, "mirror_package_count", mirror_package_count)
|
284
|
+
if mirror_size is not None:
|
285
|
+
pulumi.set(__self__, "mirror_size", mirror_size)
|
286
|
+
if mirror_storage_available_size is not None:
|
287
|
+
pulumi.set(__self__, "mirror_storage_available_size", mirror_storage_available_size)
|
288
|
+
if mirror_storage_size is not None:
|
289
|
+
pulumi.set(__self__, "mirror_storage_size", mirror_storage_size)
|
246
290
|
if mirror_sync_statuses is not None:
|
247
291
|
pulumi.set(__self__, "mirror_sync_statuses", mirror_sync_statuses)
|
292
|
+
if mirror_unique_package_count is not None:
|
293
|
+
pulumi.set(__self__, "mirror_unique_package_count", mirror_unique_package_count)
|
248
294
|
if overall_percentage is not None:
|
249
295
|
pulumi.set(__self__, "overall_percentage", overall_percentage)
|
250
296
|
if overall_state is not None:
|
251
297
|
pulumi.set(__self__, "overall_state", overall_state)
|
298
|
+
if peer_management_stations is not None:
|
299
|
+
pulumi.set(__self__, "peer_management_stations", peer_management_stations)
|
252
300
|
if profile_id is not None:
|
253
301
|
pulumi.set(__self__, "profile_id", profile_id)
|
254
302
|
if proxy is not None:
|
@@ -348,6 +396,30 @@ class _ManagementStationState:
|
|
348
396
|
def hostname(self, value: Optional[pulumi.Input[str]]):
|
349
397
|
pulumi.set(self, "hostname", value)
|
350
398
|
|
399
|
+
@property
|
400
|
+
@pulumi.getter(name="isAutoConfigEnabled")
|
401
|
+
def is_auto_config_enabled(self) -> Optional[pulumi.Input[bool]]:
|
402
|
+
"""
|
403
|
+
(Updatable) When enabled, the station setup script automatically runs to configure the firewall and SELinux settings on the station.
|
404
|
+
"""
|
405
|
+
return pulumi.get(self, "is_auto_config_enabled")
|
406
|
+
|
407
|
+
@is_auto_config_enabled.setter
|
408
|
+
def is_auto_config_enabled(self, value: Optional[pulumi.Input[bool]]):
|
409
|
+
pulumi.set(self, "is_auto_config_enabled", value)
|
410
|
+
|
411
|
+
@property
|
412
|
+
@pulumi.getter
|
413
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
414
|
+
"""
|
415
|
+
The location of the instance that is acting as the management station.
|
416
|
+
"""
|
417
|
+
return pulumi.get(self, "location")
|
418
|
+
|
419
|
+
@location.setter
|
420
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
421
|
+
pulumi.set(self, "location", value)
|
422
|
+
|
351
423
|
@property
|
352
424
|
@pulumi.getter(name="managedInstanceId")
|
353
425
|
def managed_instance_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -384,6 +456,54 @@ class _ManagementStationState:
|
|
384
456
|
def mirror_capacity(self, value: Optional[pulumi.Input[int]]):
|
385
457
|
pulumi.set(self, "mirror_capacity", value)
|
386
458
|
|
459
|
+
@property
|
460
|
+
@pulumi.getter(name="mirrorPackageCount")
|
461
|
+
def mirror_package_count(self) -> Optional[pulumi.Input[int]]:
|
462
|
+
"""
|
463
|
+
The total number of all packages within the mirrored software sources.
|
464
|
+
"""
|
465
|
+
return pulumi.get(self, "mirror_package_count")
|
466
|
+
|
467
|
+
@mirror_package_count.setter
|
468
|
+
def mirror_package_count(self, value: Optional[pulumi.Input[int]]):
|
469
|
+
pulumi.set(self, "mirror_package_count", value)
|
470
|
+
|
471
|
+
@property
|
472
|
+
@pulumi.getter(name="mirrorSize")
|
473
|
+
def mirror_size(self) -> Optional[pulumi.Input[str]]:
|
474
|
+
"""
|
475
|
+
The total size of all software source mirrors in bytes.
|
476
|
+
"""
|
477
|
+
return pulumi.get(self, "mirror_size")
|
478
|
+
|
479
|
+
@mirror_size.setter
|
480
|
+
def mirror_size(self, value: Optional[pulumi.Input[str]]):
|
481
|
+
pulumi.set(self, "mirror_size", value)
|
482
|
+
|
483
|
+
@property
|
484
|
+
@pulumi.getter(name="mirrorStorageAvailableSize")
|
485
|
+
def mirror_storage_available_size(self) -> Optional[pulumi.Input[str]]:
|
486
|
+
"""
|
487
|
+
Amount of available mirror storage in bytes.
|
488
|
+
"""
|
489
|
+
return pulumi.get(self, "mirror_storage_available_size")
|
490
|
+
|
491
|
+
@mirror_storage_available_size.setter
|
492
|
+
def mirror_storage_available_size(self, value: Optional[pulumi.Input[str]]):
|
493
|
+
pulumi.set(self, "mirror_storage_available_size", value)
|
494
|
+
|
495
|
+
@property
|
496
|
+
@pulumi.getter(name="mirrorStorageSize")
|
497
|
+
def mirror_storage_size(self) -> Optional[pulumi.Input[str]]:
|
498
|
+
"""
|
499
|
+
Total mirror storage size in bytes.
|
500
|
+
"""
|
501
|
+
return pulumi.get(self, "mirror_storage_size")
|
502
|
+
|
503
|
+
@mirror_storage_size.setter
|
504
|
+
def mirror_storage_size(self, value: Optional[pulumi.Input[str]]):
|
505
|
+
pulumi.set(self, "mirror_storage_size", value)
|
506
|
+
|
387
507
|
@property
|
388
508
|
@pulumi.getter(name="mirrorSyncStatuses")
|
389
509
|
def mirror_sync_statuses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagementStationMirrorSyncStatusArgs']]]]:
|
@@ -396,6 +516,18 @@ class _ManagementStationState:
|
|
396
516
|
def mirror_sync_statuses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagementStationMirrorSyncStatusArgs']]]]):
|
397
517
|
pulumi.set(self, "mirror_sync_statuses", value)
|
398
518
|
|
519
|
+
@property
|
520
|
+
@pulumi.getter(name="mirrorUniquePackageCount")
|
521
|
+
def mirror_unique_package_count(self) -> Optional[pulumi.Input[int]]:
|
522
|
+
"""
|
523
|
+
The total number of unique packages within the mirrored software sources on the station. Each package is counted only once, regardless of how many versions it has.
|
524
|
+
"""
|
525
|
+
return pulumi.get(self, "mirror_unique_package_count")
|
526
|
+
|
527
|
+
@mirror_unique_package_count.setter
|
528
|
+
def mirror_unique_package_count(self, value: Optional[pulumi.Input[int]]):
|
529
|
+
pulumi.set(self, "mirror_unique_package_count", value)
|
530
|
+
|
399
531
|
@property
|
400
532
|
@pulumi.getter(name="overallPercentage")
|
401
533
|
def overall_percentage(self) -> Optional[pulumi.Input[int]]:
|
@@ -420,6 +552,18 @@ class _ManagementStationState:
|
|
420
552
|
def overall_state(self, value: Optional[pulumi.Input[str]]):
|
421
553
|
pulumi.set(self, "overall_state", value)
|
422
554
|
|
555
|
+
@property
|
556
|
+
@pulumi.getter(name="peerManagementStations")
|
557
|
+
def peer_management_stations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagementStationPeerManagementStationArgs']]]]:
|
558
|
+
"""
|
559
|
+
A list of other management stations that are behind the same load balancer within a high availability configuration. Stations are identified as peers if they have the same hostname and compartment.
|
560
|
+
"""
|
561
|
+
return pulumi.get(self, "peer_management_stations")
|
562
|
+
|
563
|
+
@peer_management_stations.setter
|
564
|
+
def peer_management_stations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagementStationPeerManagementStationArgs']]]]):
|
565
|
+
pulumi.set(self, "peer_management_stations", value)
|
566
|
+
|
423
567
|
@property
|
424
568
|
@pulumi.getter(name="profileId")
|
425
569
|
def profile_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -520,6 +664,7 @@ class ManagementStation(pulumi.CustomResource):
|
|
520
664
|
display_name: Optional[pulumi.Input[str]] = None,
|
521
665
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
522
666
|
hostname: Optional[pulumi.Input[str]] = None,
|
667
|
+
is_auto_config_enabled: Optional[pulumi.Input[bool]] = None,
|
523
668
|
mirror: Optional[pulumi.Input[Union['ManagementStationMirrorArgs', 'ManagementStationMirrorArgsDict']]] = None,
|
524
669
|
proxy: Optional[pulumi.Input[Union['ManagementStationProxyArgs', 'ManagementStationProxyArgsDict']]] = None,
|
525
670
|
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
@@ -527,7 +672,7 @@ class ManagementStation(pulumi.CustomResource):
|
|
527
672
|
"""
|
528
673
|
This resource provides the Management Station resource in Oracle Cloud Infrastructure Os Management Hub service.
|
529
674
|
|
530
|
-
|
675
|
+
Creates a management station using the proxy and mirror configuration information provided.
|
531
676
|
|
532
677
|
## Example Usage
|
533
678
|
|
@@ -543,6 +688,7 @@ class ManagementStation(pulumi.CustomResource):
|
|
543
688
|
"directory": management_station_mirror_directory,
|
544
689
|
"port": management_station_mirror_port,
|
545
690
|
"sslport": management_station_mirror_sslport,
|
691
|
+
"is_sslverify_enabled": management_station_mirror_is_sslverify_enabled,
|
546
692
|
"sslcert": management_station_mirror_sslcert,
|
547
693
|
},
|
548
694
|
proxy={
|
@@ -557,7 +703,8 @@ class ManagementStation(pulumi.CustomResource):
|
|
557
703
|
description=management_station_description,
|
558
704
|
freeform_tags={
|
559
705
|
"Department": "Finance",
|
560
|
-
}
|
706
|
+
},
|
707
|
+
is_auto_config_enabled=management_station_is_auto_config_enabled)
|
561
708
|
```
|
562
709
|
|
563
710
|
## Import
|
@@ -576,6 +723,7 @@ class ManagementStation(pulumi.CustomResource):
|
|
576
723
|
:param pulumi.Input[str] display_name: (Updatable) User-friendly name for the management station. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
577
724
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
578
725
|
:param pulumi.Input[str] hostname: (Updatable) Hostname of the management station.
|
726
|
+
:param pulumi.Input[bool] is_auto_config_enabled: (Updatable) When enabled, the station setup script automatically runs to configure the firewall and SELinux settings on the station.
|
579
727
|
:param pulumi.Input[Union['ManagementStationMirrorArgs', 'ManagementStationMirrorArgsDict']] mirror: (Updatable) Information used to create the mirror configuration for a management station.
|
580
728
|
:param pulumi.Input[Union['ManagementStationProxyArgs', 'ManagementStationProxyArgsDict']] proxy: (Updatable) Information used to create the proxy configuration for a management station.
|
581
729
|
:param pulumi.Input[int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
@@ -593,7 +741,7 @@ class ManagementStation(pulumi.CustomResource):
|
|
593
741
|
"""
|
594
742
|
This resource provides the Management Station resource in Oracle Cloud Infrastructure Os Management Hub service.
|
595
743
|
|
596
|
-
|
744
|
+
Creates a management station using the proxy and mirror configuration information provided.
|
597
745
|
|
598
746
|
## Example Usage
|
599
747
|
|
@@ -609,6 +757,7 @@ class ManagementStation(pulumi.CustomResource):
|
|
609
757
|
"directory": management_station_mirror_directory,
|
610
758
|
"port": management_station_mirror_port,
|
611
759
|
"sslport": management_station_mirror_sslport,
|
760
|
+
"is_sslverify_enabled": management_station_mirror_is_sslverify_enabled,
|
612
761
|
"sslcert": management_station_mirror_sslcert,
|
613
762
|
},
|
614
763
|
proxy={
|
@@ -623,7 +772,8 @@ class ManagementStation(pulumi.CustomResource):
|
|
623
772
|
description=management_station_description,
|
624
773
|
freeform_tags={
|
625
774
|
"Department": "Finance",
|
626
|
-
}
|
775
|
+
},
|
776
|
+
is_auto_config_enabled=management_station_is_auto_config_enabled)
|
627
777
|
```
|
628
778
|
|
629
779
|
## Import
|
@@ -655,6 +805,7 @@ class ManagementStation(pulumi.CustomResource):
|
|
655
805
|
display_name: Optional[pulumi.Input[str]] = None,
|
656
806
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
657
807
|
hostname: Optional[pulumi.Input[str]] = None,
|
808
|
+
is_auto_config_enabled: Optional[pulumi.Input[bool]] = None,
|
658
809
|
mirror: Optional[pulumi.Input[Union['ManagementStationMirrorArgs', 'ManagementStationMirrorArgsDict']]] = None,
|
659
810
|
proxy: Optional[pulumi.Input[Union['ManagementStationProxyArgs', 'ManagementStationProxyArgsDict']]] = None,
|
660
811
|
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
@@ -679,6 +830,7 @@ class ManagementStation(pulumi.CustomResource):
|
|
679
830
|
if hostname is None and not opts.urn:
|
680
831
|
raise TypeError("Missing required property 'hostname'")
|
681
832
|
__props__.__dict__["hostname"] = hostname
|
833
|
+
__props__.__dict__["is_auto_config_enabled"] = is_auto_config_enabled
|
682
834
|
if mirror is None and not opts.urn:
|
683
835
|
raise TypeError("Missing required property 'mirror'")
|
684
836
|
__props__.__dict__["mirror"] = mirror
|
@@ -687,11 +839,18 @@ class ManagementStation(pulumi.CustomResource):
|
|
687
839
|
__props__.__dict__["proxy"] = proxy
|
688
840
|
__props__.__dict__["refresh_trigger"] = refresh_trigger
|
689
841
|
__props__.__dict__["healths"] = None
|
842
|
+
__props__.__dict__["location"] = None
|
690
843
|
__props__.__dict__["managed_instance_id"] = None
|
691
844
|
__props__.__dict__["mirror_capacity"] = None
|
845
|
+
__props__.__dict__["mirror_package_count"] = None
|
846
|
+
__props__.__dict__["mirror_size"] = None
|
847
|
+
__props__.__dict__["mirror_storage_available_size"] = None
|
848
|
+
__props__.__dict__["mirror_storage_size"] = None
|
692
849
|
__props__.__dict__["mirror_sync_statuses"] = None
|
850
|
+
__props__.__dict__["mirror_unique_package_count"] = None
|
693
851
|
__props__.__dict__["overall_percentage"] = None
|
694
852
|
__props__.__dict__["overall_state"] = None
|
853
|
+
__props__.__dict__["peer_management_stations"] = None
|
695
854
|
__props__.__dict__["profile_id"] = None
|
696
855
|
__props__.__dict__["scheduled_job_id"] = None
|
697
856
|
__props__.__dict__["state"] = None
|
@@ -714,12 +873,20 @@ class ManagementStation(pulumi.CustomResource):
|
|
714
873
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
715
874
|
healths: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ManagementStationHealthArgs', 'ManagementStationHealthArgsDict']]]]] = None,
|
716
875
|
hostname: Optional[pulumi.Input[str]] = None,
|
876
|
+
is_auto_config_enabled: Optional[pulumi.Input[bool]] = None,
|
877
|
+
location: Optional[pulumi.Input[str]] = None,
|
717
878
|
managed_instance_id: Optional[pulumi.Input[str]] = None,
|
718
879
|
mirror: Optional[pulumi.Input[Union['ManagementStationMirrorArgs', 'ManagementStationMirrorArgsDict']]] = None,
|
719
880
|
mirror_capacity: Optional[pulumi.Input[int]] = None,
|
881
|
+
mirror_package_count: Optional[pulumi.Input[int]] = None,
|
882
|
+
mirror_size: Optional[pulumi.Input[str]] = None,
|
883
|
+
mirror_storage_available_size: Optional[pulumi.Input[str]] = None,
|
884
|
+
mirror_storage_size: Optional[pulumi.Input[str]] = None,
|
720
885
|
mirror_sync_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ManagementStationMirrorSyncStatusArgs', 'ManagementStationMirrorSyncStatusArgsDict']]]]] = None,
|
886
|
+
mirror_unique_package_count: Optional[pulumi.Input[int]] = None,
|
721
887
|
overall_percentage: Optional[pulumi.Input[int]] = None,
|
722
888
|
overall_state: Optional[pulumi.Input[str]] = None,
|
889
|
+
peer_management_stations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ManagementStationPeerManagementStationArgs', 'ManagementStationPeerManagementStationArgsDict']]]]] = None,
|
723
890
|
profile_id: Optional[pulumi.Input[str]] = None,
|
724
891
|
proxy: Optional[pulumi.Input[Union['ManagementStationProxyArgs', 'ManagementStationProxyArgsDict']]] = None,
|
725
892
|
refresh_trigger: Optional[pulumi.Input[int]] = None,
|
@@ -741,12 +908,20 @@ class ManagementStation(pulumi.CustomResource):
|
|
741
908
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
742
909
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ManagementStationHealthArgs', 'ManagementStationHealthArgsDict']]]] healths: Overall health information of the management station.
|
743
910
|
:param pulumi.Input[str] hostname: (Updatable) Hostname of the management station.
|
911
|
+
:param pulumi.Input[bool] is_auto_config_enabled: (Updatable) When enabled, the station setup script automatically runs to configure the firewall and SELinux settings on the station.
|
912
|
+
:param pulumi.Input[str] location: The location of the instance that is acting as the management station.
|
744
913
|
:param pulumi.Input[str] managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance that is acting as the management station.
|
745
914
|
:param pulumi.Input[Union['ManagementStationMirrorArgs', 'ManagementStationMirrorArgsDict']] mirror: (Updatable) Information used to create the mirror configuration for a management station.
|
746
915
|
:param pulumi.Input[int] mirror_capacity: A decimal number representing the amount of mirror capacity used by the sync.
|
916
|
+
:param pulumi.Input[int] mirror_package_count: The total number of all packages within the mirrored software sources.
|
917
|
+
:param pulumi.Input[str] mirror_size: The total size of all software source mirrors in bytes.
|
918
|
+
:param pulumi.Input[str] mirror_storage_available_size: Amount of available mirror storage in bytes.
|
919
|
+
:param pulumi.Input[str] mirror_storage_size: Total mirror storage size in bytes.
|
747
920
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ManagementStationMirrorSyncStatusArgs', 'ManagementStationMirrorSyncStatusArgsDict']]]] mirror_sync_statuses: Status summary of the mirror sync.
|
921
|
+
:param pulumi.Input[int] mirror_unique_package_count: The total number of unique packages within the mirrored software sources on the station. Each package is counted only once, regardless of how many versions it has.
|
748
922
|
:param pulumi.Input[int] overall_percentage: A decimal number representing the progress of the current mirror sync.
|
749
923
|
:param pulumi.Input[str] overall_state: Current state of the mirror sync for the management station.
|
924
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ManagementStationPeerManagementStationArgs', 'ManagementStationPeerManagementStationArgsDict']]]] peer_management_stations: A list of other management stations that are behind the same load balancer within a high availability configuration. Stations are identified as peers if they have the same hostname and compartment.
|
750
925
|
:param pulumi.Input[str] profile_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile used for the management station.
|
751
926
|
:param pulumi.Input[Union['ManagementStationProxyArgs', 'ManagementStationProxyArgsDict']] proxy: (Updatable) Information used to create the proxy configuration for a management station.
|
752
927
|
:param pulumi.Input[int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
@@ -770,12 +945,20 @@ class ManagementStation(pulumi.CustomResource):
|
|
770
945
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
771
946
|
__props__.__dict__["healths"] = healths
|
772
947
|
__props__.__dict__["hostname"] = hostname
|
948
|
+
__props__.__dict__["is_auto_config_enabled"] = is_auto_config_enabled
|
949
|
+
__props__.__dict__["location"] = location
|
773
950
|
__props__.__dict__["managed_instance_id"] = managed_instance_id
|
774
951
|
__props__.__dict__["mirror"] = mirror
|
775
952
|
__props__.__dict__["mirror_capacity"] = mirror_capacity
|
953
|
+
__props__.__dict__["mirror_package_count"] = mirror_package_count
|
954
|
+
__props__.__dict__["mirror_size"] = mirror_size
|
955
|
+
__props__.__dict__["mirror_storage_available_size"] = mirror_storage_available_size
|
956
|
+
__props__.__dict__["mirror_storage_size"] = mirror_storage_size
|
776
957
|
__props__.__dict__["mirror_sync_statuses"] = mirror_sync_statuses
|
958
|
+
__props__.__dict__["mirror_unique_package_count"] = mirror_unique_package_count
|
777
959
|
__props__.__dict__["overall_percentage"] = overall_percentage
|
778
960
|
__props__.__dict__["overall_state"] = overall_state
|
961
|
+
__props__.__dict__["peer_management_stations"] = peer_management_stations
|
779
962
|
__props__.__dict__["profile_id"] = profile_id
|
780
963
|
__props__.__dict__["proxy"] = proxy
|
781
964
|
__props__.__dict__["refresh_trigger"] = refresh_trigger
|
@@ -841,6 +1024,22 @@ class ManagementStation(pulumi.CustomResource):
|
|
841
1024
|
"""
|
842
1025
|
return pulumi.get(self, "hostname")
|
843
1026
|
|
1027
|
+
@property
|
1028
|
+
@pulumi.getter(name="isAutoConfigEnabled")
|
1029
|
+
def is_auto_config_enabled(self) -> pulumi.Output[bool]:
|
1030
|
+
"""
|
1031
|
+
(Updatable) When enabled, the station setup script automatically runs to configure the firewall and SELinux settings on the station.
|
1032
|
+
"""
|
1033
|
+
return pulumi.get(self, "is_auto_config_enabled")
|
1034
|
+
|
1035
|
+
@property
|
1036
|
+
@pulumi.getter
|
1037
|
+
def location(self) -> pulumi.Output[str]:
|
1038
|
+
"""
|
1039
|
+
The location of the instance that is acting as the management station.
|
1040
|
+
"""
|
1041
|
+
return pulumi.get(self, "location")
|
1042
|
+
|
844
1043
|
@property
|
845
1044
|
@pulumi.getter(name="managedInstanceId")
|
846
1045
|
def managed_instance_id(self) -> pulumi.Output[str]:
|
@@ -865,6 +1064,38 @@ class ManagementStation(pulumi.CustomResource):
|
|
865
1064
|
"""
|
866
1065
|
return pulumi.get(self, "mirror_capacity")
|
867
1066
|
|
1067
|
+
@property
|
1068
|
+
@pulumi.getter(name="mirrorPackageCount")
|
1069
|
+
def mirror_package_count(self) -> pulumi.Output[int]:
|
1070
|
+
"""
|
1071
|
+
The total number of all packages within the mirrored software sources.
|
1072
|
+
"""
|
1073
|
+
return pulumi.get(self, "mirror_package_count")
|
1074
|
+
|
1075
|
+
@property
|
1076
|
+
@pulumi.getter(name="mirrorSize")
|
1077
|
+
def mirror_size(self) -> pulumi.Output[str]:
|
1078
|
+
"""
|
1079
|
+
The total size of all software source mirrors in bytes.
|
1080
|
+
"""
|
1081
|
+
return pulumi.get(self, "mirror_size")
|
1082
|
+
|
1083
|
+
@property
|
1084
|
+
@pulumi.getter(name="mirrorStorageAvailableSize")
|
1085
|
+
def mirror_storage_available_size(self) -> pulumi.Output[str]:
|
1086
|
+
"""
|
1087
|
+
Amount of available mirror storage in bytes.
|
1088
|
+
"""
|
1089
|
+
return pulumi.get(self, "mirror_storage_available_size")
|
1090
|
+
|
1091
|
+
@property
|
1092
|
+
@pulumi.getter(name="mirrorStorageSize")
|
1093
|
+
def mirror_storage_size(self) -> pulumi.Output[str]:
|
1094
|
+
"""
|
1095
|
+
Total mirror storage size in bytes.
|
1096
|
+
"""
|
1097
|
+
return pulumi.get(self, "mirror_storage_size")
|
1098
|
+
|
868
1099
|
@property
|
869
1100
|
@pulumi.getter(name="mirrorSyncStatuses")
|
870
1101
|
def mirror_sync_statuses(self) -> pulumi.Output[Sequence['outputs.ManagementStationMirrorSyncStatus']]:
|
@@ -873,6 +1104,14 @@ class ManagementStation(pulumi.CustomResource):
|
|
873
1104
|
"""
|
874
1105
|
return pulumi.get(self, "mirror_sync_statuses")
|
875
1106
|
|
1107
|
+
@property
|
1108
|
+
@pulumi.getter(name="mirrorUniquePackageCount")
|
1109
|
+
def mirror_unique_package_count(self) -> pulumi.Output[int]:
|
1110
|
+
"""
|
1111
|
+
The total number of unique packages within the mirrored software sources on the station. Each package is counted only once, regardless of how many versions it has.
|
1112
|
+
"""
|
1113
|
+
return pulumi.get(self, "mirror_unique_package_count")
|
1114
|
+
|
876
1115
|
@property
|
877
1116
|
@pulumi.getter(name="overallPercentage")
|
878
1117
|
def overall_percentage(self) -> pulumi.Output[int]:
|
@@ -889,6 +1128,14 @@ class ManagementStation(pulumi.CustomResource):
|
|
889
1128
|
"""
|
890
1129
|
return pulumi.get(self, "overall_state")
|
891
1130
|
|
1131
|
+
@property
|
1132
|
+
@pulumi.getter(name="peerManagementStations")
|
1133
|
+
def peer_management_stations(self) -> pulumi.Output[Sequence['outputs.ManagementStationPeerManagementStation']]:
|
1134
|
+
"""
|
1135
|
+
A list of other management stations that are behind the same load balancer within a high availability configuration. Stations are identified as peers if they have the same hostname and compartment.
|
1136
|
+
"""
|
1137
|
+
return pulumi.get(self, "peer_management_stations")
|
1138
|
+
|
892
1139
|
@property
|
893
1140
|
@pulumi.getter(name="profileId")
|
894
1141
|
def profile_id(self) -> pulumi.Output[str]:
|