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,319 @@
|
|
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
|
+
'GetRunbookVersionResult',
|
21
|
+
'AwaitableGetRunbookVersionResult',
|
22
|
+
'get_runbook_version',
|
23
|
+
'get_runbook_version_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetRunbookVersionResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getRunbookVersion.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, execution_workflow_details=None, freeform_tags=None, groups=None, id=None, is_latest=None, lifecycle_details=None, name=None, rollback_workflow_details=None, runbook_id=None, runbook_version_id=None, state=None, system_tags=None, tasks=None, time_created=None, time_updated=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 execution_workflow_details and not isinstance(execution_workflow_details, list):
|
39
|
+
raise TypeError("Expected argument 'execution_workflow_details' to be a list")
|
40
|
+
pulumi.set(__self__, "execution_workflow_details", execution_workflow_details)
|
41
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
42
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
43
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
44
|
+
if groups and not isinstance(groups, list):
|
45
|
+
raise TypeError("Expected argument 'groups' to be a list")
|
46
|
+
pulumi.set(__self__, "groups", groups)
|
47
|
+
if id and not isinstance(id, str):
|
48
|
+
raise TypeError("Expected argument 'id' to be a str")
|
49
|
+
pulumi.set(__self__, "id", id)
|
50
|
+
if is_latest and not isinstance(is_latest, bool):
|
51
|
+
raise TypeError("Expected argument 'is_latest' to be a bool")
|
52
|
+
pulumi.set(__self__, "is_latest", is_latest)
|
53
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
54
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
55
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
56
|
+
if name and not isinstance(name, str):
|
57
|
+
raise TypeError("Expected argument 'name' to be a str")
|
58
|
+
pulumi.set(__self__, "name", name)
|
59
|
+
if rollback_workflow_details and not isinstance(rollback_workflow_details, list):
|
60
|
+
raise TypeError("Expected argument 'rollback_workflow_details' to be a list")
|
61
|
+
pulumi.set(__self__, "rollback_workflow_details", rollback_workflow_details)
|
62
|
+
if runbook_id and not isinstance(runbook_id, str):
|
63
|
+
raise TypeError("Expected argument 'runbook_id' to be a str")
|
64
|
+
pulumi.set(__self__, "runbook_id", runbook_id)
|
65
|
+
if runbook_version_id and not isinstance(runbook_version_id, str):
|
66
|
+
raise TypeError("Expected argument 'runbook_version_id' to be a str")
|
67
|
+
pulumi.set(__self__, "runbook_version_id", runbook_version_id)
|
68
|
+
if state and not isinstance(state, str):
|
69
|
+
raise TypeError("Expected argument 'state' to be a str")
|
70
|
+
pulumi.set(__self__, "state", state)
|
71
|
+
if system_tags and not isinstance(system_tags, dict):
|
72
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
73
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
74
|
+
if tasks and not isinstance(tasks, list):
|
75
|
+
raise TypeError("Expected argument 'tasks' to be a list")
|
76
|
+
pulumi.set(__self__, "tasks", tasks)
|
77
|
+
if time_created and not isinstance(time_created, str):
|
78
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
79
|
+
pulumi.set(__self__, "time_created", time_created)
|
80
|
+
if time_updated and not isinstance(time_updated, str):
|
81
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
82
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
83
|
+
|
84
|
+
@property
|
85
|
+
@pulumi.getter(name="compartmentId")
|
86
|
+
def compartment_id(self) -> builtins.str:
|
87
|
+
return pulumi.get(self, "compartment_id")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="definedTags")
|
91
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
92
|
+
"""
|
93
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "defined_tags")
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="executionWorkflowDetails")
|
99
|
+
def execution_workflow_details(self) -> Sequence['outputs.GetRunbookVersionExecutionWorkflowDetailResult']:
|
100
|
+
"""
|
101
|
+
Execution Workflow details.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "execution_workflow_details")
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter(name="freeformTags")
|
107
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
108
|
+
"""
|
109
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "freeform_tags")
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter
|
115
|
+
def groups(self) -> Sequence['outputs.GetRunbookVersionGroupResult']:
|
116
|
+
"""
|
117
|
+
The groups of the runbook.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "groups")
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter
|
123
|
+
def id(self) -> builtins.str:
|
124
|
+
"""
|
125
|
+
The OCID of the resource.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "id")
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="isLatest")
|
131
|
+
def is_latest(self) -> builtins.bool:
|
132
|
+
return pulumi.get(self, "is_latest")
|
133
|
+
|
134
|
+
@property
|
135
|
+
@pulumi.getter(name="lifecycleDetails")
|
136
|
+
def lifecycle_details(self) -> builtins.str:
|
137
|
+
"""
|
138
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
139
|
+
"""
|
140
|
+
return pulumi.get(self, "lifecycle_details")
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter
|
144
|
+
def name(self) -> builtins.str:
|
145
|
+
"""
|
146
|
+
The name of the task
|
147
|
+
"""
|
148
|
+
return pulumi.get(self, "name")
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="rollbackWorkflowDetails")
|
152
|
+
def rollback_workflow_details(self) -> Sequence['outputs.GetRunbookVersionRollbackWorkflowDetailResult']:
|
153
|
+
"""
|
154
|
+
Rollback Workflow details.
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "rollback_workflow_details")
|
157
|
+
|
158
|
+
@property
|
159
|
+
@pulumi.getter(name="runbookId")
|
160
|
+
def runbook_id(self) -> builtins.str:
|
161
|
+
"""
|
162
|
+
The OCID of the resource.
|
163
|
+
"""
|
164
|
+
return pulumi.get(self, "runbook_id")
|
165
|
+
|
166
|
+
@property
|
167
|
+
@pulumi.getter(name="runbookVersionId")
|
168
|
+
def runbook_version_id(self) -> builtins.str:
|
169
|
+
return pulumi.get(self, "runbook_version_id")
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter
|
173
|
+
def state(self) -> builtins.str:
|
174
|
+
"""
|
175
|
+
The current state of the FleetResource.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "state")
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="systemTags")
|
181
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
182
|
+
"""
|
183
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "system_tags")
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter
|
189
|
+
def tasks(self) -> Sequence['outputs.GetRunbookVersionTaskResult']:
|
190
|
+
"""
|
191
|
+
A set of tasks to execute in the runbook.
|
192
|
+
"""
|
193
|
+
return pulumi.get(self, "tasks")
|
194
|
+
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="timeCreated")
|
197
|
+
def time_created(self) -> builtins.str:
|
198
|
+
"""
|
199
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "time_created")
|
202
|
+
|
203
|
+
@property
|
204
|
+
@pulumi.getter(name="timeUpdated")
|
205
|
+
def time_updated(self) -> builtins.str:
|
206
|
+
"""
|
207
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
208
|
+
"""
|
209
|
+
return pulumi.get(self, "time_updated")
|
210
|
+
|
211
|
+
|
212
|
+
class AwaitableGetRunbookVersionResult(GetRunbookVersionResult):
|
213
|
+
# pylint: disable=using-constant-test
|
214
|
+
def __await__(self):
|
215
|
+
if False:
|
216
|
+
yield self
|
217
|
+
return GetRunbookVersionResult(
|
218
|
+
compartment_id=self.compartment_id,
|
219
|
+
defined_tags=self.defined_tags,
|
220
|
+
execution_workflow_details=self.execution_workflow_details,
|
221
|
+
freeform_tags=self.freeform_tags,
|
222
|
+
groups=self.groups,
|
223
|
+
id=self.id,
|
224
|
+
is_latest=self.is_latest,
|
225
|
+
lifecycle_details=self.lifecycle_details,
|
226
|
+
name=self.name,
|
227
|
+
rollback_workflow_details=self.rollback_workflow_details,
|
228
|
+
runbook_id=self.runbook_id,
|
229
|
+
runbook_version_id=self.runbook_version_id,
|
230
|
+
state=self.state,
|
231
|
+
system_tags=self.system_tags,
|
232
|
+
tasks=self.tasks,
|
233
|
+
time_created=self.time_created,
|
234
|
+
time_updated=self.time_updated)
|
235
|
+
|
236
|
+
|
237
|
+
def get_runbook_version(runbook_version_id: Optional[builtins.str] = None,
|
238
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRunbookVersionResult:
|
239
|
+
"""
|
240
|
+
This data source provides details about a specific Runbook Version resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
241
|
+
|
242
|
+
Gets a Runbook Version by identifier.
|
243
|
+
|
244
|
+
## Example Usage
|
245
|
+
|
246
|
+
```python
|
247
|
+
import pulumi
|
248
|
+
import pulumi_oci as oci
|
249
|
+
|
250
|
+
test_runbook_version = oci.FleetAppsManagement.get_runbook_version(runbook_version_id=test_runbook_version_oci_fleet_apps_management_runbook_version["id"])
|
251
|
+
```
|
252
|
+
|
253
|
+
|
254
|
+
:param builtins.str runbook_version_id: Unique Runbook Version identifier
|
255
|
+
"""
|
256
|
+
__args__ = dict()
|
257
|
+
__args__['runbookVersionId'] = runbook_version_id
|
258
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
259
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getRunbookVersion:getRunbookVersion', __args__, opts=opts, typ=GetRunbookVersionResult).value
|
260
|
+
|
261
|
+
return AwaitableGetRunbookVersionResult(
|
262
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
263
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
264
|
+
execution_workflow_details=pulumi.get(__ret__, 'execution_workflow_details'),
|
265
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
266
|
+
groups=pulumi.get(__ret__, 'groups'),
|
267
|
+
id=pulumi.get(__ret__, 'id'),
|
268
|
+
is_latest=pulumi.get(__ret__, 'is_latest'),
|
269
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
270
|
+
name=pulumi.get(__ret__, 'name'),
|
271
|
+
rollback_workflow_details=pulumi.get(__ret__, 'rollback_workflow_details'),
|
272
|
+
runbook_id=pulumi.get(__ret__, 'runbook_id'),
|
273
|
+
runbook_version_id=pulumi.get(__ret__, 'runbook_version_id'),
|
274
|
+
state=pulumi.get(__ret__, 'state'),
|
275
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
276
|
+
tasks=pulumi.get(__ret__, 'tasks'),
|
277
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
278
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
279
|
+
def get_runbook_version_output(runbook_version_id: Optional[pulumi.Input[builtins.str]] = None,
|
280
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRunbookVersionResult]:
|
281
|
+
"""
|
282
|
+
This data source provides details about a specific Runbook Version resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
283
|
+
|
284
|
+
Gets a Runbook Version by identifier.
|
285
|
+
|
286
|
+
## Example Usage
|
287
|
+
|
288
|
+
```python
|
289
|
+
import pulumi
|
290
|
+
import pulumi_oci as oci
|
291
|
+
|
292
|
+
test_runbook_version = oci.FleetAppsManagement.get_runbook_version(runbook_version_id=test_runbook_version_oci_fleet_apps_management_runbook_version["id"])
|
293
|
+
```
|
294
|
+
|
295
|
+
|
296
|
+
:param builtins.str runbook_version_id: Unique Runbook Version identifier
|
297
|
+
"""
|
298
|
+
__args__ = dict()
|
299
|
+
__args__['runbookVersionId'] = runbook_version_id
|
300
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
301
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getRunbookVersion:getRunbookVersion', __args__, opts=opts, typ=GetRunbookVersionResult)
|
302
|
+
return __ret__.apply(lambda __response__: GetRunbookVersionResult(
|
303
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
304
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
305
|
+
execution_workflow_details=pulumi.get(__response__, 'execution_workflow_details'),
|
306
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
307
|
+
groups=pulumi.get(__response__, 'groups'),
|
308
|
+
id=pulumi.get(__response__, 'id'),
|
309
|
+
is_latest=pulumi.get(__response__, 'is_latest'),
|
310
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
311
|
+
name=pulumi.get(__response__, 'name'),
|
312
|
+
rollback_workflow_details=pulumi.get(__response__, 'rollback_workflow_details'),
|
313
|
+
runbook_id=pulumi.get(__response__, 'runbook_id'),
|
314
|
+
runbook_version_id=pulumi.get(__response__, 'runbook_version_id'),
|
315
|
+
state=pulumi.get(__response__, 'state'),
|
316
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
317
|
+
tasks=pulumi.get(__response__, 'tasks'),
|
318
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
319
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,230 @@
|
|
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
|
+
'GetRunbookVersionsResult',
|
22
|
+
'AwaitableGetRunbookVersionsResult',
|
23
|
+
'get_runbook_versions',
|
24
|
+
'get_runbook_versions_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetRunbookVersionsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getRunbookVersions.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, filters=None, id=None, is_latest=None, name=None, runbook_id=None, runbook_version_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 filters and not isinstance(filters, list):
|
37
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
38
|
+
pulumi.set(__self__, "filters", filters)
|
39
|
+
if id and not isinstance(id, str):
|
40
|
+
raise TypeError("Expected argument 'id' to be a str")
|
41
|
+
pulumi.set(__self__, "id", id)
|
42
|
+
if is_latest and not isinstance(is_latest, bool):
|
43
|
+
raise TypeError("Expected argument 'is_latest' to be a bool")
|
44
|
+
pulumi.set(__self__, "is_latest", is_latest)
|
45
|
+
if name and not isinstance(name, str):
|
46
|
+
raise TypeError("Expected argument 'name' to be a str")
|
47
|
+
pulumi.set(__self__, "name", name)
|
48
|
+
if runbook_id and not isinstance(runbook_id, str):
|
49
|
+
raise TypeError("Expected argument 'runbook_id' to be a str")
|
50
|
+
pulumi.set(__self__, "runbook_id", runbook_id)
|
51
|
+
if runbook_version_collections and not isinstance(runbook_version_collections, list):
|
52
|
+
raise TypeError("Expected argument 'runbook_version_collections' to be a list")
|
53
|
+
pulumi.set(__self__, "runbook_version_collections", runbook_version_collections)
|
54
|
+
if state and not isinstance(state, str):
|
55
|
+
raise TypeError("Expected argument 'state' to be a str")
|
56
|
+
pulumi.set(__self__, "state", state)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter(name="compartmentId")
|
60
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
61
|
+
return pulumi.get(self, "compartment_id")
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter
|
65
|
+
def filters(self) -> Optional[Sequence['outputs.GetRunbookVersionsFilterResult']]:
|
66
|
+
return pulumi.get(self, "filters")
|
67
|
+
|
68
|
+
@property
|
69
|
+
@pulumi.getter
|
70
|
+
def id(self) -> Optional[builtins.str]:
|
71
|
+
"""
|
72
|
+
The OCID of the resource.
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "id")
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter(name="isLatest")
|
78
|
+
def is_latest(self) -> builtins.bool:
|
79
|
+
return pulumi.get(self, "is_latest")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def name(self) -> Optional[builtins.str]:
|
84
|
+
"""
|
85
|
+
The name of the task
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "name")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="runbookId")
|
91
|
+
def runbook_id(self) -> Optional[builtins.str]:
|
92
|
+
"""
|
93
|
+
The OCID of the resource.
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "runbook_id")
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="runbookVersionCollections")
|
99
|
+
def runbook_version_collections(self) -> Sequence['outputs.GetRunbookVersionsRunbookVersionCollectionResult']:
|
100
|
+
"""
|
101
|
+
The list of runbook_version_collection.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "runbook_version_collections")
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter
|
107
|
+
def state(self) -> Optional[builtins.str]:
|
108
|
+
"""
|
109
|
+
The current state of the FleetResource.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "state")
|
112
|
+
|
113
|
+
|
114
|
+
class AwaitableGetRunbookVersionsResult(GetRunbookVersionsResult):
|
115
|
+
# pylint: disable=using-constant-test
|
116
|
+
def __await__(self):
|
117
|
+
if False:
|
118
|
+
yield self
|
119
|
+
return GetRunbookVersionsResult(
|
120
|
+
compartment_id=self.compartment_id,
|
121
|
+
filters=self.filters,
|
122
|
+
id=self.id,
|
123
|
+
is_latest=self.is_latest,
|
124
|
+
name=self.name,
|
125
|
+
runbook_id=self.runbook_id,
|
126
|
+
runbook_version_collections=self.runbook_version_collections,
|
127
|
+
state=self.state)
|
128
|
+
|
129
|
+
|
130
|
+
def get_runbook_versions(compartment_id: Optional[builtins.str] = None,
|
131
|
+
filters: Optional[Sequence[Union['GetRunbookVersionsFilterArgs', 'GetRunbookVersionsFilterArgsDict']]] = None,
|
132
|
+
id: Optional[builtins.str] = None,
|
133
|
+
name: Optional[builtins.str] = None,
|
134
|
+
runbook_id: Optional[builtins.str] = None,
|
135
|
+
state: Optional[builtins.str] = None,
|
136
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRunbookVersionsResult:
|
137
|
+
"""
|
138
|
+
This data source provides the list of Runbook Versions in Oracle Cloud Infrastructure Fleet Apps Management service.
|
139
|
+
|
140
|
+
List versions for a runbook in Fleet Application Management.
|
141
|
+
|
142
|
+
## Example Usage
|
143
|
+
|
144
|
+
```python
|
145
|
+
import pulumi
|
146
|
+
import pulumi_oci as oci
|
147
|
+
|
148
|
+
test_runbook_versions = oci.FleetAppsManagement.get_runbook_versions(compartment_id=compartment_id,
|
149
|
+
id=runbook_version_id,
|
150
|
+
name=runbook_version_name,
|
151
|
+
runbook_id=test_runbook["id"],
|
152
|
+
state=runbook_version_state)
|
153
|
+
```
|
154
|
+
|
155
|
+
|
156
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
|
157
|
+
:param builtins.str id: A filter to return runbook versions whose identifier matches the given identifier.
|
158
|
+
:param builtins.str name: A filter to return only resources that match the entire name given.
|
159
|
+
:param builtins.str runbook_id: A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
|
160
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
161
|
+
"""
|
162
|
+
__args__ = dict()
|
163
|
+
__args__['compartmentId'] = compartment_id
|
164
|
+
__args__['filters'] = filters
|
165
|
+
__args__['id'] = id
|
166
|
+
__args__['name'] = name
|
167
|
+
__args__['runbookId'] = runbook_id
|
168
|
+
__args__['state'] = state
|
169
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
170
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getRunbookVersions:getRunbookVersions', __args__, opts=opts, typ=GetRunbookVersionsResult).value
|
171
|
+
|
172
|
+
return AwaitableGetRunbookVersionsResult(
|
173
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
174
|
+
filters=pulumi.get(__ret__, 'filters'),
|
175
|
+
id=pulumi.get(__ret__, 'id'),
|
176
|
+
is_latest=pulumi.get(__ret__, 'is_latest'),
|
177
|
+
name=pulumi.get(__ret__, 'name'),
|
178
|
+
runbook_id=pulumi.get(__ret__, 'runbook_id'),
|
179
|
+
runbook_version_collections=pulumi.get(__ret__, 'runbook_version_collections'),
|
180
|
+
state=pulumi.get(__ret__, 'state'))
|
181
|
+
def get_runbook_versions_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
182
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetRunbookVersionsFilterArgs', 'GetRunbookVersionsFilterArgsDict']]]]] = None,
|
183
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
184
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
185
|
+
runbook_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
186
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
187
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRunbookVersionsResult]:
|
188
|
+
"""
|
189
|
+
This data source provides the list of Runbook Versions in Oracle Cloud Infrastructure Fleet Apps Management service.
|
190
|
+
|
191
|
+
List versions for a runbook in Fleet Application Management.
|
192
|
+
|
193
|
+
## Example Usage
|
194
|
+
|
195
|
+
```python
|
196
|
+
import pulumi
|
197
|
+
import pulumi_oci as oci
|
198
|
+
|
199
|
+
test_runbook_versions = oci.FleetAppsManagement.get_runbook_versions(compartment_id=compartment_id,
|
200
|
+
id=runbook_version_id,
|
201
|
+
name=runbook_version_name,
|
202
|
+
runbook_id=test_runbook["id"],
|
203
|
+
state=runbook_version_state)
|
204
|
+
```
|
205
|
+
|
206
|
+
|
207
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
|
208
|
+
:param builtins.str id: A filter to return runbook versions whose identifier matches the given identifier.
|
209
|
+
:param builtins.str name: A filter to return only resources that match the entire name given.
|
210
|
+
:param builtins.str runbook_id: A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
|
211
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
212
|
+
"""
|
213
|
+
__args__ = dict()
|
214
|
+
__args__['compartmentId'] = compartment_id
|
215
|
+
__args__['filters'] = filters
|
216
|
+
__args__['id'] = id
|
217
|
+
__args__['name'] = name
|
218
|
+
__args__['runbookId'] = runbook_id
|
219
|
+
__args__['state'] = state
|
220
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
221
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getRunbookVersions:getRunbookVersions', __args__, opts=opts, typ=GetRunbookVersionsResult)
|
222
|
+
return __ret__.apply(lambda __response__: GetRunbookVersionsResult(
|
223
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
224
|
+
filters=pulumi.get(__response__, 'filters'),
|
225
|
+
id=pulumi.get(__response__, 'id'),
|
226
|
+
is_latest=pulumi.get(__response__, 'is_latest'),
|
227
|
+
name=pulumi.get(__response__, 'name'),
|
228
|
+
runbook_id=pulumi.get(__response__, 'runbook_id'),
|
229
|
+
runbook_version_collections=pulumi.get(__response__, 'runbook_version_collections'),
|
230
|
+
state=pulumi.get(__response__, 'state')))
|