pulumi-oci 3.1.0a1750143229__py3-none-any.whl → 3.1.0a1751948424__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 +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,224 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
19
|
+
|
20
|
+
__all__ = [
|
21
|
+
'GetProvisionsResult',
|
22
|
+
'AwaitableGetProvisionsResult',
|
23
|
+
'get_provisions',
|
24
|
+
'get_provisions_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetProvisionsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getProvisions.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, fleet_id=None, id=None, provision_collections=None, state=None):
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if display_name and not isinstance(display_name, str):
|
37
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
38
|
+
pulumi.set(__self__, "display_name", display_name)
|
39
|
+
if filters and not isinstance(filters, list):
|
40
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
41
|
+
pulumi.set(__self__, "filters", filters)
|
42
|
+
if fleet_id and not isinstance(fleet_id, str):
|
43
|
+
raise TypeError("Expected argument 'fleet_id' to be a str")
|
44
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
45
|
+
if id and not isinstance(id, str):
|
46
|
+
raise TypeError("Expected argument 'id' to be a str")
|
47
|
+
pulumi.set(__self__, "id", id)
|
48
|
+
if provision_collections and not isinstance(provision_collections, list):
|
49
|
+
raise TypeError("Expected argument 'provision_collections' to be a list")
|
50
|
+
pulumi.set(__self__, "provision_collections", provision_collections)
|
51
|
+
if state and not isinstance(state, str):
|
52
|
+
raise TypeError("Expected argument 'state' to be a str")
|
53
|
+
pulumi.set(__self__, "state", state)
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter(name="compartmentId")
|
57
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
58
|
+
"""
|
59
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which instance is deployed.
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "compartment_id")
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="displayName")
|
65
|
+
def display_name(self) -> Optional[builtins.str]:
|
66
|
+
"""
|
67
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "display_name")
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter
|
73
|
+
def filters(self) -> Optional[Sequence['outputs.GetProvisionsFilterResult']]:
|
74
|
+
return pulumi.get(self, "filters")
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter(name="fleetId")
|
78
|
+
def fleet_id(self) -> Optional[builtins.str]:
|
79
|
+
"""
|
80
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
81
|
+
"""
|
82
|
+
return pulumi.get(self, "fleet_id")
|
83
|
+
|
84
|
+
@property
|
85
|
+
@pulumi.getter
|
86
|
+
def id(self) -> Optional[builtins.str]:
|
87
|
+
"""
|
88
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the FamProvision.
|
89
|
+
"""
|
90
|
+
return pulumi.get(self, "id")
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter(name="provisionCollections")
|
94
|
+
def provision_collections(self) -> Sequence['outputs.GetProvisionsProvisionCollectionResult']:
|
95
|
+
"""
|
96
|
+
The list of provision_collection.
|
97
|
+
"""
|
98
|
+
return pulumi.get(self, "provision_collections")
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter
|
102
|
+
def state(self) -> Optional[builtins.str]:
|
103
|
+
"""
|
104
|
+
The current state of the FamProvision.
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "state")
|
107
|
+
|
108
|
+
|
109
|
+
class AwaitableGetProvisionsResult(GetProvisionsResult):
|
110
|
+
# pylint: disable=using-constant-test
|
111
|
+
def __await__(self):
|
112
|
+
if False:
|
113
|
+
yield self
|
114
|
+
return GetProvisionsResult(
|
115
|
+
compartment_id=self.compartment_id,
|
116
|
+
display_name=self.display_name,
|
117
|
+
filters=self.filters,
|
118
|
+
fleet_id=self.fleet_id,
|
119
|
+
id=self.id,
|
120
|
+
provision_collections=self.provision_collections,
|
121
|
+
state=self.state)
|
122
|
+
|
123
|
+
|
124
|
+
def get_provisions(compartment_id: Optional[builtins.str] = None,
|
125
|
+
display_name: Optional[builtins.str] = None,
|
126
|
+
filters: Optional[Sequence[Union['GetProvisionsFilterArgs', 'GetProvisionsFilterArgsDict']]] = None,
|
127
|
+
fleet_id: Optional[builtins.str] = None,
|
128
|
+
id: Optional[builtins.str] = None,
|
129
|
+
state: Optional[builtins.str] = None,
|
130
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProvisionsResult:
|
131
|
+
"""
|
132
|
+
This data source provides the list of Provisions in Oracle Cloud Infrastructure Fleet Apps Management service.
|
133
|
+
|
134
|
+
Returns a list of all the Provisions in the specified compartment.
|
135
|
+
The query parameter `compartmentId` is required unless the query parameter `id` or `fleetId` is specified.
|
136
|
+
|
137
|
+
## Example Usage
|
138
|
+
|
139
|
+
```python
|
140
|
+
import pulumi
|
141
|
+
import pulumi_oci as oci
|
142
|
+
|
143
|
+
test_provisions = oci.FleetAppsManagement.get_provisions(compartment_id=compartment_id,
|
144
|
+
display_name=provision_display_name,
|
145
|
+
fleet_id=test_fleet["id"],
|
146
|
+
id=provision_id,
|
147
|
+
state=provision_state)
|
148
|
+
```
|
149
|
+
|
150
|
+
|
151
|
+
:param builtins.str compartment_id: (Updatable) The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
|
152
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
153
|
+
:param builtins.str fleet_id: unique Fleet identifier
|
154
|
+
:param builtins.str id: Unique identifier or OCID for listing a single provision by id. Either compartmentId or id must be provided.
|
155
|
+
:param builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
156
|
+
"""
|
157
|
+
__args__ = dict()
|
158
|
+
__args__['compartmentId'] = compartment_id
|
159
|
+
__args__['displayName'] = display_name
|
160
|
+
__args__['filters'] = filters
|
161
|
+
__args__['fleetId'] = fleet_id
|
162
|
+
__args__['id'] = id
|
163
|
+
__args__['state'] = state
|
164
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
165
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getProvisions:getProvisions', __args__, opts=opts, typ=GetProvisionsResult).value
|
166
|
+
|
167
|
+
return AwaitableGetProvisionsResult(
|
168
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
169
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
170
|
+
filters=pulumi.get(__ret__, 'filters'),
|
171
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
172
|
+
id=pulumi.get(__ret__, 'id'),
|
173
|
+
provision_collections=pulumi.get(__ret__, 'provision_collections'),
|
174
|
+
state=pulumi.get(__ret__, 'state'))
|
175
|
+
def get_provisions_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
176
|
+
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
177
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetProvisionsFilterArgs', 'GetProvisionsFilterArgsDict']]]]] = None,
|
178
|
+
fleet_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
179
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
180
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
181
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetProvisionsResult]:
|
182
|
+
"""
|
183
|
+
This data source provides the list of Provisions in Oracle Cloud Infrastructure Fleet Apps Management service.
|
184
|
+
|
185
|
+
Returns a list of all the Provisions in the specified compartment.
|
186
|
+
The query parameter `compartmentId` is required unless the query parameter `id` or `fleetId` is specified.
|
187
|
+
|
188
|
+
## Example Usage
|
189
|
+
|
190
|
+
```python
|
191
|
+
import pulumi
|
192
|
+
import pulumi_oci as oci
|
193
|
+
|
194
|
+
test_provisions = oci.FleetAppsManagement.get_provisions(compartment_id=compartment_id,
|
195
|
+
display_name=provision_display_name,
|
196
|
+
fleet_id=test_fleet["id"],
|
197
|
+
id=provision_id,
|
198
|
+
state=provision_state)
|
199
|
+
```
|
200
|
+
|
201
|
+
|
202
|
+
:param builtins.str compartment_id: (Updatable) The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
|
203
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
204
|
+
:param builtins.str fleet_id: unique Fleet identifier
|
205
|
+
:param builtins.str id: Unique identifier or OCID for listing a single provision by id. Either compartmentId or id must be provided.
|
206
|
+
:param builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
207
|
+
"""
|
208
|
+
__args__ = dict()
|
209
|
+
__args__['compartmentId'] = compartment_id
|
210
|
+
__args__['displayName'] = display_name
|
211
|
+
__args__['filters'] = filters
|
212
|
+
__args__['fleetId'] = fleet_id
|
213
|
+
__args__['id'] = id
|
214
|
+
__args__['state'] = state
|
215
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
216
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getProvisions:getProvisions', __args__, opts=opts, typ=GetProvisionsResult)
|
217
|
+
return __ret__.apply(lambda __response__: GetProvisionsResult(
|
218
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
219
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
220
|
+
filters=pulumi.get(__response__, 'filters'),
|
221
|
+
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
222
|
+
id=pulumi.get(__response__, 'id'),
|
223
|
+
provision_collections=pulumi.get(__response__, 'provision_collections'),
|
224
|
+
state=pulumi.get(__response__, 'state')))
|
@@ -0,0 +1,406 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetRunbookResult',
|
21
|
+
'AwaitableGetRunbookResult',
|
22
|
+
'get_runbook',
|
23
|
+
'get_runbook_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetRunbookResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getRunbook.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, estimated_time=None, freeform_tags=None, has_draft_version=None, id=None, is_default=None, is_sudo_access_needed=None, latest_version=None, lifecycle_details=None, operation=None, os_type=None, platform=None, resource_region=None, runbook_id=None, runbook_versions=None, state=None, system_tags=None, time_created=None, time_updated=None, type=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
36
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
37
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
38
|
+
if description and not isinstance(description, str):
|
39
|
+
raise TypeError("Expected argument 'description' to be a str")
|
40
|
+
pulumi.set(__self__, "description", description)
|
41
|
+
if display_name and not isinstance(display_name, str):
|
42
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
43
|
+
pulumi.set(__self__, "display_name", display_name)
|
44
|
+
if estimated_time and not isinstance(estimated_time, str):
|
45
|
+
raise TypeError("Expected argument 'estimated_time' to be a str")
|
46
|
+
pulumi.set(__self__, "estimated_time", estimated_time)
|
47
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
48
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
49
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
50
|
+
if has_draft_version and not isinstance(has_draft_version, bool):
|
51
|
+
raise TypeError("Expected argument 'has_draft_version' to be a bool")
|
52
|
+
pulumi.set(__self__, "has_draft_version", has_draft_version)
|
53
|
+
if id and not isinstance(id, str):
|
54
|
+
raise TypeError("Expected argument 'id' to be a str")
|
55
|
+
pulumi.set(__self__, "id", id)
|
56
|
+
if is_default and not isinstance(is_default, bool):
|
57
|
+
raise TypeError("Expected argument 'is_default' to be a bool")
|
58
|
+
pulumi.set(__self__, "is_default", is_default)
|
59
|
+
if is_sudo_access_needed and not isinstance(is_sudo_access_needed, bool):
|
60
|
+
raise TypeError("Expected argument 'is_sudo_access_needed' to be a bool")
|
61
|
+
pulumi.set(__self__, "is_sudo_access_needed", is_sudo_access_needed)
|
62
|
+
if latest_version and not isinstance(latest_version, str):
|
63
|
+
raise TypeError("Expected argument 'latest_version' to be a str")
|
64
|
+
pulumi.set(__self__, "latest_version", latest_version)
|
65
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
66
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
67
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
68
|
+
if operation and not isinstance(operation, str):
|
69
|
+
raise TypeError("Expected argument 'operation' to be a str")
|
70
|
+
pulumi.set(__self__, "operation", operation)
|
71
|
+
if os_type and not isinstance(os_type, str):
|
72
|
+
raise TypeError("Expected argument 'os_type' to be a str")
|
73
|
+
pulumi.set(__self__, "os_type", os_type)
|
74
|
+
if platform and not isinstance(platform, str):
|
75
|
+
raise TypeError("Expected argument 'platform' to be a str")
|
76
|
+
pulumi.set(__self__, "platform", platform)
|
77
|
+
if resource_region and not isinstance(resource_region, str):
|
78
|
+
raise TypeError("Expected argument 'resource_region' to be a str")
|
79
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
80
|
+
if runbook_id and not isinstance(runbook_id, str):
|
81
|
+
raise TypeError("Expected argument 'runbook_id' to be a str")
|
82
|
+
pulumi.set(__self__, "runbook_id", runbook_id)
|
83
|
+
if runbook_versions and not isinstance(runbook_versions, list):
|
84
|
+
raise TypeError("Expected argument 'runbook_versions' to be a list")
|
85
|
+
pulumi.set(__self__, "runbook_versions", runbook_versions)
|
86
|
+
if state and not isinstance(state, str):
|
87
|
+
raise TypeError("Expected argument 'state' to be a str")
|
88
|
+
pulumi.set(__self__, "state", state)
|
89
|
+
if system_tags and not isinstance(system_tags, dict):
|
90
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
91
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
92
|
+
if time_created and not isinstance(time_created, str):
|
93
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
94
|
+
pulumi.set(__self__, "time_created", time_created)
|
95
|
+
if time_updated and not isinstance(time_updated, str):
|
96
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
97
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
98
|
+
if type and not isinstance(type, str):
|
99
|
+
raise TypeError("Expected argument 'type' to be a str")
|
100
|
+
pulumi.set(__self__, "type", type)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="compartmentId")
|
104
|
+
def compartment_id(self) -> builtins.str:
|
105
|
+
return pulumi.get(self, "compartment_id")
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter(name="definedTags")
|
109
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
110
|
+
"""
|
111
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "defined_tags")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter
|
117
|
+
def description(self) -> builtins.str:
|
118
|
+
"""
|
119
|
+
The description of the argument.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "description")
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter(name="displayName")
|
125
|
+
def display_name(self) -> builtins.str:
|
126
|
+
"""
|
127
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "display_name")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="estimatedTime")
|
133
|
+
def estimated_time(self) -> builtins.str:
|
134
|
+
"""
|
135
|
+
Estimated time to successfully complete the runbook execution.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "estimated_time")
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter(name="freeformTags")
|
141
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
142
|
+
"""
|
143
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "freeform_tags")
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="hasDraftVersion")
|
149
|
+
def has_draft_version(self) -> builtins.bool:
|
150
|
+
"""
|
151
|
+
Does this runbook has draft versions?
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "has_draft_version")
|
154
|
+
|
155
|
+
@property
|
156
|
+
@pulumi.getter
|
157
|
+
def id(self) -> builtins.str:
|
158
|
+
"""
|
159
|
+
The OCID of the resource.
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "id")
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="isDefault")
|
165
|
+
def is_default(self) -> builtins.bool:
|
166
|
+
"""
|
167
|
+
Is the runbook default? Sets this runbook as the default for the chosen product/product stack for the specified lifecycle operation.
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "is_default")
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter(name="isSudoAccessNeeded")
|
173
|
+
def is_sudo_access_needed(self) -> builtins.bool:
|
174
|
+
"""
|
175
|
+
Does this runbook need SUDO access to execute?
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "is_sudo_access_needed")
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="latestVersion")
|
181
|
+
def latest_version(self) -> builtins.str:
|
182
|
+
"""
|
183
|
+
Latest runbook version
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "latest_version")
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter(name="lifecycleDetails")
|
189
|
+
def lifecycle_details(self) -> builtins.str:
|
190
|
+
"""
|
191
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
192
|
+
"""
|
193
|
+
return pulumi.get(self, "lifecycle_details")
|
194
|
+
|
195
|
+
@property
|
196
|
+
@pulumi.getter
|
197
|
+
def operation(self) -> builtins.str:
|
198
|
+
"""
|
199
|
+
The lifecycle operation performed by the runbook.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "operation")
|
202
|
+
|
203
|
+
@property
|
204
|
+
@pulumi.getter(name="osType")
|
205
|
+
def os_type(self) -> builtins.str:
|
206
|
+
"""
|
207
|
+
The OS for the task.
|
208
|
+
"""
|
209
|
+
return pulumi.get(self, "os_type")
|
210
|
+
|
211
|
+
@property
|
212
|
+
@pulumi.getter
|
213
|
+
def platform(self) -> builtins.str:
|
214
|
+
"""
|
215
|
+
The platform of the runbook.
|
216
|
+
"""
|
217
|
+
return pulumi.get(self, "platform")
|
218
|
+
|
219
|
+
@property
|
220
|
+
@pulumi.getter(name="resourceRegion")
|
221
|
+
def resource_region(self) -> builtins.str:
|
222
|
+
"""
|
223
|
+
Associated region
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "resource_region")
|
226
|
+
|
227
|
+
@property
|
228
|
+
@pulumi.getter(name="runbookId")
|
229
|
+
def runbook_id(self) -> builtins.str:
|
230
|
+
return pulumi.get(self, "runbook_id")
|
231
|
+
|
232
|
+
@property
|
233
|
+
@pulumi.getter(name="runbookVersions")
|
234
|
+
def runbook_versions(self) -> Sequence['outputs.GetRunbookRunbookVersionResult']:
|
235
|
+
"""
|
236
|
+
Version for the runbook.
|
237
|
+
"""
|
238
|
+
return pulumi.get(self, "runbook_versions")
|
239
|
+
|
240
|
+
@property
|
241
|
+
@pulumi.getter
|
242
|
+
def state(self) -> builtins.str:
|
243
|
+
"""
|
244
|
+
The current state of the runbook.
|
245
|
+
"""
|
246
|
+
return pulumi.get(self, "state")
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="systemTags")
|
250
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
251
|
+
"""
|
252
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "system_tags")
|
255
|
+
|
256
|
+
@property
|
257
|
+
@pulumi.getter(name="timeCreated")
|
258
|
+
def time_created(self) -> builtins.str:
|
259
|
+
"""
|
260
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
261
|
+
"""
|
262
|
+
return pulumi.get(self, "time_created")
|
263
|
+
|
264
|
+
@property
|
265
|
+
@pulumi.getter(name="timeUpdated")
|
266
|
+
def time_updated(self) -> builtins.str:
|
267
|
+
"""
|
268
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
269
|
+
"""
|
270
|
+
return pulumi.get(self, "time_updated")
|
271
|
+
|
272
|
+
@property
|
273
|
+
@pulumi.getter
|
274
|
+
def type(self) -> builtins.str:
|
275
|
+
"""
|
276
|
+
The type of the runbook.
|
277
|
+
"""
|
278
|
+
return pulumi.get(self, "type")
|
279
|
+
|
280
|
+
|
281
|
+
class AwaitableGetRunbookResult(GetRunbookResult):
|
282
|
+
# pylint: disable=using-constant-test
|
283
|
+
def __await__(self):
|
284
|
+
if False:
|
285
|
+
yield self
|
286
|
+
return GetRunbookResult(
|
287
|
+
compartment_id=self.compartment_id,
|
288
|
+
defined_tags=self.defined_tags,
|
289
|
+
description=self.description,
|
290
|
+
display_name=self.display_name,
|
291
|
+
estimated_time=self.estimated_time,
|
292
|
+
freeform_tags=self.freeform_tags,
|
293
|
+
has_draft_version=self.has_draft_version,
|
294
|
+
id=self.id,
|
295
|
+
is_default=self.is_default,
|
296
|
+
is_sudo_access_needed=self.is_sudo_access_needed,
|
297
|
+
latest_version=self.latest_version,
|
298
|
+
lifecycle_details=self.lifecycle_details,
|
299
|
+
operation=self.operation,
|
300
|
+
os_type=self.os_type,
|
301
|
+
platform=self.platform,
|
302
|
+
resource_region=self.resource_region,
|
303
|
+
runbook_id=self.runbook_id,
|
304
|
+
runbook_versions=self.runbook_versions,
|
305
|
+
state=self.state,
|
306
|
+
system_tags=self.system_tags,
|
307
|
+
time_created=self.time_created,
|
308
|
+
time_updated=self.time_updated,
|
309
|
+
type=self.type)
|
310
|
+
|
311
|
+
|
312
|
+
def get_runbook(runbook_id: Optional[builtins.str] = None,
|
313
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRunbookResult:
|
314
|
+
"""
|
315
|
+
This data source provides details about a specific Runbook resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
316
|
+
|
317
|
+
Get the details of a runbook in Fleet Application Management.
|
318
|
+
|
319
|
+
## Example Usage
|
320
|
+
|
321
|
+
```python
|
322
|
+
import pulumi
|
323
|
+
import pulumi_oci as oci
|
324
|
+
|
325
|
+
test_runbook = oci.FleetAppsManagement.get_runbook(runbook_id=test_runbook_oci_fleet_apps_management_runbook["id"])
|
326
|
+
```
|
327
|
+
|
328
|
+
|
329
|
+
:param builtins.str runbook_id: Unique Runbook identifier
|
330
|
+
"""
|
331
|
+
__args__ = dict()
|
332
|
+
__args__['runbookId'] = runbook_id
|
333
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
334
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getRunbook:getRunbook', __args__, opts=opts, typ=GetRunbookResult).value
|
335
|
+
|
336
|
+
return AwaitableGetRunbookResult(
|
337
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
338
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
339
|
+
description=pulumi.get(__ret__, 'description'),
|
340
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
341
|
+
estimated_time=pulumi.get(__ret__, 'estimated_time'),
|
342
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
343
|
+
has_draft_version=pulumi.get(__ret__, 'has_draft_version'),
|
344
|
+
id=pulumi.get(__ret__, 'id'),
|
345
|
+
is_default=pulumi.get(__ret__, 'is_default'),
|
346
|
+
is_sudo_access_needed=pulumi.get(__ret__, 'is_sudo_access_needed'),
|
347
|
+
latest_version=pulumi.get(__ret__, 'latest_version'),
|
348
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
349
|
+
operation=pulumi.get(__ret__, 'operation'),
|
350
|
+
os_type=pulumi.get(__ret__, 'os_type'),
|
351
|
+
platform=pulumi.get(__ret__, 'platform'),
|
352
|
+
resource_region=pulumi.get(__ret__, 'resource_region'),
|
353
|
+
runbook_id=pulumi.get(__ret__, 'runbook_id'),
|
354
|
+
runbook_versions=pulumi.get(__ret__, 'runbook_versions'),
|
355
|
+
state=pulumi.get(__ret__, 'state'),
|
356
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
357
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
358
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
359
|
+
type=pulumi.get(__ret__, 'type'))
|
360
|
+
def get_runbook_output(runbook_id: Optional[pulumi.Input[builtins.str]] = None,
|
361
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRunbookResult]:
|
362
|
+
"""
|
363
|
+
This data source provides details about a specific Runbook resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
364
|
+
|
365
|
+
Get the details of a runbook in Fleet Application Management.
|
366
|
+
|
367
|
+
## Example Usage
|
368
|
+
|
369
|
+
```python
|
370
|
+
import pulumi
|
371
|
+
import pulumi_oci as oci
|
372
|
+
|
373
|
+
test_runbook = oci.FleetAppsManagement.get_runbook(runbook_id=test_runbook_oci_fleet_apps_management_runbook["id"])
|
374
|
+
```
|
375
|
+
|
376
|
+
|
377
|
+
:param builtins.str runbook_id: Unique Runbook identifier
|
378
|
+
"""
|
379
|
+
__args__ = dict()
|
380
|
+
__args__['runbookId'] = runbook_id
|
381
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
382
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getRunbook:getRunbook', __args__, opts=opts, typ=GetRunbookResult)
|
383
|
+
return __ret__.apply(lambda __response__: GetRunbookResult(
|
384
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
385
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
386
|
+
description=pulumi.get(__response__, 'description'),
|
387
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
388
|
+
estimated_time=pulumi.get(__response__, 'estimated_time'),
|
389
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
390
|
+
has_draft_version=pulumi.get(__response__, 'has_draft_version'),
|
391
|
+
id=pulumi.get(__response__, 'id'),
|
392
|
+
is_default=pulumi.get(__response__, 'is_default'),
|
393
|
+
is_sudo_access_needed=pulumi.get(__response__, 'is_sudo_access_needed'),
|
394
|
+
latest_version=pulumi.get(__response__, 'latest_version'),
|
395
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
396
|
+
operation=pulumi.get(__response__, 'operation'),
|
397
|
+
os_type=pulumi.get(__response__, 'os_type'),
|
398
|
+
platform=pulumi.get(__response__, 'platform'),
|
399
|
+
resource_region=pulumi.get(__response__, 'resource_region'),
|
400
|
+
runbook_id=pulumi.get(__response__, 'runbook_id'),
|
401
|
+
runbook_versions=pulumi.get(__response__, 'runbook_versions'),
|
402
|
+
state=pulumi.get(__response__, 'state'),
|
403
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
404
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
405
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
406
|
+
type=pulumi.get(__response__, 'type')))
|