pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.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 +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -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/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- 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/kms/vault_verification.py +62 -2
- 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/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -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.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,338 @@
|
|
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
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetMaintenanceWindowResult',
|
20
|
+
'AwaitableGetMaintenanceWindowResult',
|
21
|
+
'get_maintenance_window',
|
22
|
+
'get_maintenance_window_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetMaintenanceWindowResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getMaintenanceWindow.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, duration=None, freeform_tags=None, id=None, is_outage=None, is_recurring=None, lifecycle_details=None, maintenance_window_id=None, recurrences=None, resource_region=None, state=None, system_tags=None, time_created=None, time_schedule_start=None, time_updated=None):
|
31
|
+
if compartment_id and not isinstance(compartment_id, str):
|
32
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
34
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
35
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
36
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
37
|
+
if description and not isinstance(description, str):
|
38
|
+
raise TypeError("Expected argument 'description' to be a str")
|
39
|
+
pulumi.set(__self__, "description", description)
|
40
|
+
if display_name and not isinstance(display_name, str):
|
41
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
42
|
+
pulumi.set(__self__, "display_name", display_name)
|
43
|
+
if duration and not isinstance(duration, str):
|
44
|
+
raise TypeError("Expected argument 'duration' to be a str")
|
45
|
+
pulumi.set(__self__, "duration", duration)
|
46
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
47
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
48
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
49
|
+
if id and not isinstance(id, str):
|
50
|
+
raise TypeError("Expected argument 'id' to be a str")
|
51
|
+
pulumi.set(__self__, "id", id)
|
52
|
+
if is_outage and not isinstance(is_outage, bool):
|
53
|
+
raise TypeError("Expected argument 'is_outage' to be a bool")
|
54
|
+
pulumi.set(__self__, "is_outage", is_outage)
|
55
|
+
if is_recurring and not isinstance(is_recurring, bool):
|
56
|
+
raise TypeError("Expected argument 'is_recurring' to be a bool")
|
57
|
+
pulumi.set(__self__, "is_recurring", is_recurring)
|
58
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
59
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
60
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
61
|
+
if maintenance_window_id and not isinstance(maintenance_window_id, str):
|
62
|
+
raise TypeError("Expected argument 'maintenance_window_id' to be a str")
|
63
|
+
pulumi.set(__self__, "maintenance_window_id", maintenance_window_id)
|
64
|
+
if recurrences and not isinstance(recurrences, str):
|
65
|
+
raise TypeError("Expected argument 'recurrences' to be a str")
|
66
|
+
pulumi.set(__self__, "recurrences", recurrences)
|
67
|
+
if resource_region and not isinstance(resource_region, str):
|
68
|
+
raise TypeError("Expected argument 'resource_region' to be a str")
|
69
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
70
|
+
if state and not isinstance(state, str):
|
71
|
+
raise TypeError("Expected argument 'state' to be a str")
|
72
|
+
pulumi.set(__self__, "state", state)
|
73
|
+
if system_tags and not isinstance(system_tags, dict):
|
74
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
75
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
76
|
+
if time_created and not isinstance(time_created, str):
|
77
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
78
|
+
pulumi.set(__self__, "time_created", time_created)
|
79
|
+
if time_schedule_start and not isinstance(time_schedule_start, str):
|
80
|
+
raise TypeError("Expected argument 'time_schedule_start' to be a str")
|
81
|
+
pulumi.set(__self__, "time_schedule_start", time_schedule_start)
|
82
|
+
if time_updated and not isinstance(time_updated, str):
|
83
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
84
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter(name="compartmentId")
|
88
|
+
def compartment_id(self) -> builtins.str:
|
89
|
+
"""
|
90
|
+
Compartment OCID
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "compartment_id")
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="definedTags")
|
96
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
97
|
+
"""
|
98
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "defined_tags")
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter
|
104
|
+
def description(self) -> builtins.str:
|
105
|
+
"""
|
106
|
+
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "description")
|
109
|
+
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="displayName")
|
112
|
+
def display_name(self) -> builtins.str:
|
113
|
+
"""
|
114
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "display_name")
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter
|
120
|
+
def duration(self) -> builtins.str:
|
121
|
+
"""
|
122
|
+
Duration of the maintenance window. Specify how long the maintenance window remains open.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "duration")
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter(name="freeformTags")
|
128
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
129
|
+
"""
|
130
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "freeform_tags")
|
133
|
+
|
134
|
+
@property
|
135
|
+
@pulumi.getter
|
136
|
+
def id(self) -> builtins.str:
|
137
|
+
"""
|
138
|
+
The OCID of the resource.
|
139
|
+
"""
|
140
|
+
return pulumi.get(self, "id")
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter(name="isOutage")
|
144
|
+
def is_outage(self) -> builtins.bool:
|
145
|
+
"""
|
146
|
+
Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
147
|
+
"""
|
148
|
+
return pulumi.get(self, "is_outage")
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="isRecurring")
|
152
|
+
def is_recurring(self) -> builtins.bool:
|
153
|
+
"""
|
154
|
+
Is this a recurring maintenance window?
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "is_recurring")
|
157
|
+
|
158
|
+
@property
|
159
|
+
@pulumi.getter(name="lifecycleDetails")
|
160
|
+
def lifecycle_details(self) -> builtins.str:
|
161
|
+
"""
|
162
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
163
|
+
"""
|
164
|
+
return pulumi.get(self, "lifecycle_details")
|
165
|
+
|
166
|
+
@property
|
167
|
+
@pulumi.getter(name="maintenanceWindowId")
|
168
|
+
def maintenance_window_id(self) -> builtins.str:
|
169
|
+
return pulumi.get(self, "maintenance_window_id")
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter
|
173
|
+
def recurrences(self) -> builtins.str:
|
174
|
+
"""
|
175
|
+
Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "recurrences")
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="resourceRegion")
|
181
|
+
def resource_region(self) -> builtins.str:
|
182
|
+
"""
|
183
|
+
Associated region
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "resource_region")
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter
|
189
|
+
def state(self) -> builtins.str:
|
190
|
+
"""
|
191
|
+
The current state of the MaintenanceWindow.
|
192
|
+
"""
|
193
|
+
return pulumi.get(self, "state")
|
194
|
+
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="systemTags")
|
197
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
198
|
+
"""
|
199
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "system_tags")
|
202
|
+
|
203
|
+
@property
|
204
|
+
@pulumi.getter(name="timeCreated")
|
205
|
+
def time_created(self) -> builtins.str:
|
206
|
+
"""
|
207
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
208
|
+
"""
|
209
|
+
return pulumi.get(self, "time_created")
|
210
|
+
|
211
|
+
@property
|
212
|
+
@pulumi.getter(name="timeScheduleStart")
|
213
|
+
def time_schedule_start(self) -> builtins.str:
|
214
|
+
"""
|
215
|
+
Specify the date and time of the day that the maintenance window starts.
|
216
|
+
"""
|
217
|
+
return pulumi.get(self, "time_schedule_start")
|
218
|
+
|
219
|
+
@property
|
220
|
+
@pulumi.getter(name="timeUpdated")
|
221
|
+
def time_updated(self) -> builtins.str:
|
222
|
+
"""
|
223
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "time_updated")
|
226
|
+
|
227
|
+
|
228
|
+
class AwaitableGetMaintenanceWindowResult(GetMaintenanceWindowResult):
|
229
|
+
# pylint: disable=using-constant-test
|
230
|
+
def __await__(self):
|
231
|
+
if False:
|
232
|
+
yield self
|
233
|
+
return GetMaintenanceWindowResult(
|
234
|
+
compartment_id=self.compartment_id,
|
235
|
+
defined_tags=self.defined_tags,
|
236
|
+
description=self.description,
|
237
|
+
display_name=self.display_name,
|
238
|
+
duration=self.duration,
|
239
|
+
freeform_tags=self.freeform_tags,
|
240
|
+
id=self.id,
|
241
|
+
is_outage=self.is_outage,
|
242
|
+
is_recurring=self.is_recurring,
|
243
|
+
lifecycle_details=self.lifecycle_details,
|
244
|
+
maintenance_window_id=self.maintenance_window_id,
|
245
|
+
recurrences=self.recurrences,
|
246
|
+
resource_region=self.resource_region,
|
247
|
+
state=self.state,
|
248
|
+
system_tags=self.system_tags,
|
249
|
+
time_created=self.time_created,
|
250
|
+
time_schedule_start=self.time_schedule_start,
|
251
|
+
time_updated=self.time_updated)
|
252
|
+
|
253
|
+
|
254
|
+
def get_maintenance_window(maintenance_window_id: Optional[builtins.str] = None,
|
255
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaintenanceWindowResult:
|
256
|
+
"""
|
257
|
+
This data source provides details about a specific Maintenance Window resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
258
|
+
|
259
|
+
Get the details for a maintenance window in Fleet Application Management.
|
260
|
+
|
261
|
+
## Example Usage
|
262
|
+
|
263
|
+
```python
|
264
|
+
import pulumi
|
265
|
+
import pulumi_oci as oci
|
266
|
+
|
267
|
+
test_maintenance_window = oci.FleetAppsManagement.get_maintenance_window(maintenance_window_id=test_maintenance_window_oci_fleet_apps_management_maintenance_window["id"])
|
268
|
+
```
|
269
|
+
|
270
|
+
|
271
|
+
:param builtins.str maintenance_window_id: unique MaintenanceWindow identifier
|
272
|
+
"""
|
273
|
+
__args__ = dict()
|
274
|
+
__args__['maintenanceWindowId'] = maintenance_window_id
|
275
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
276
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getMaintenanceWindow:getMaintenanceWindow', __args__, opts=opts, typ=GetMaintenanceWindowResult).value
|
277
|
+
|
278
|
+
return AwaitableGetMaintenanceWindowResult(
|
279
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
280
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
281
|
+
description=pulumi.get(__ret__, 'description'),
|
282
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
283
|
+
duration=pulumi.get(__ret__, 'duration'),
|
284
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
285
|
+
id=pulumi.get(__ret__, 'id'),
|
286
|
+
is_outage=pulumi.get(__ret__, 'is_outage'),
|
287
|
+
is_recurring=pulumi.get(__ret__, 'is_recurring'),
|
288
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
289
|
+
maintenance_window_id=pulumi.get(__ret__, 'maintenance_window_id'),
|
290
|
+
recurrences=pulumi.get(__ret__, 'recurrences'),
|
291
|
+
resource_region=pulumi.get(__ret__, 'resource_region'),
|
292
|
+
state=pulumi.get(__ret__, 'state'),
|
293
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
294
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
295
|
+
time_schedule_start=pulumi.get(__ret__, 'time_schedule_start'),
|
296
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
297
|
+
def get_maintenance_window_output(maintenance_window_id: Optional[pulumi.Input[builtins.str]] = None,
|
298
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMaintenanceWindowResult]:
|
299
|
+
"""
|
300
|
+
This data source provides details about a specific Maintenance Window resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
301
|
+
|
302
|
+
Get the details for a maintenance window in Fleet Application Management.
|
303
|
+
|
304
|
+
## Example Usage
|
305
|
+
|
306
|
+
```python
|
307
|
+
import pulumi
|
308
|
+
import pulumi_oci as oci
|
309
|
+
|
310
|
+
test_maintenance_window = oci.FleetAppsManagement.get_maintenance_window(maintenance_window_id=test_maintenance_window_oci_fleet_apps_management_maintenance_window["id"])
|
311
|
+
```
|
312
|
+
|
313
|
+
|
314
|
+
:param builtins.str maintenance_window_id: unique MaintenanceWindow identifier
|
315
|
+
"""
|
316
|
+
__args__ = dict()
|
317
|
+
__args__['maintenanceWindowId'] = maintenance_window_id
|
318
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
319
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getMaintenanceWindow:getMaintenanceWindow', __args__, opts=opts, typ=GetMaintenanceWindowResult)
|
320
|
+
return __ret__.apply(lambda __response__: GetMaintenanceWindowResult(
|
321
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
322
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
323
|
+
description=pulumi.get(__response__, 'description'),
|
324
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
325
|
+
duration=pulumi.get(__response__, 'duration'),
|
326
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
327
|
+
id=pulumi.get(__response__, 'id'),
|
328
|
+
is_outage=pulumi.get(__response__, 'is_outage'),
|
329
|
+
is_recurring=pulumi.get(__response__, 'is_recurring'),
|
330
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
331
|
+
maintenance_window_id=pulumi.get(__response__, 'maintenance_window_id'),
|
332
|
+
recurrences=pulumi.get(__response__, 'recurrences'),
|
333
|
+
resource_region=pulumi.get(__response__, 'resource_region'),
|
334
|
+
state=pulumi.get(__response__, 'state'),
|
335
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
336
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
337
|
+
time_schedule_start=pulumi.get(__response__, 'time_schedule_start'),
|
338
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,221 @@
|
|
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
|
+
'GetMaintenanceWindowsResult',
|
22
|
+
'AwaitableGetMaintenanceWindowsResult',
|
23
|
+
'get_maintenance_windows',
|
24
|
+
'get_maintenance_windows_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetMaintenanceWindowsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getMaintenanceWindows.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, maintenance_window_collections=None, state=None, time_schedule_start_greater_than_or_equal_to=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 id and not isinstance(id, str):
|
43
|
+
raise TypeError("Expected argument 'id' to be a str")
|
44
|
+
pulumi.set(__self__, "id", id)
|
45
|
+
if maintenance_window_collections and not isinstance(maintenance_window_collections, list):
|
46
|
+
raise TypeError("Expected argument 'maintenance_window_collections' to be a list")
|
47
|
+
pulumi.set(__self__, "maintenance_window_collections", maintenance_window_collections)
|
48
|
+
if state and not isinstance(state, str):
|
49
|
+
raise TypeError("Expected argument 'state' to be a str")
|
50
|
+
pulumi.set(__self__, "state", state)
|
51
|
+
if time_schedule_start_greater_than_or_equal_to and not isinstance(time_schedule_start_greater_than_or_equal_to, str):
|
52
|
+
raise TypeError("Expected argument 'time_schedule_start_greater_than_or_equal_to' to be a str")
|
53
|
+
pulumi.set(__self__, "time_schedule_start_greater_than_or_equal_to", time_schedule_start_greater_than_or_equal_to)
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter(name="compartmentId")
|
57
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
58
|
+
"""
|
59
|
+
Compartment OCID
|
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. Avoid entering confidential information. Example: `My new resource`
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "display_name")
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter
|
73
|
+
def filters(self) -> Optional[Sequence['outputs.GetMaintenanceWindowsFilterResult']]:
|
74
|
+
return pulumi.get(self, "filters")
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter
|
78
|
+
def id(self) -> Optional[builtins.str]:
|
79
|
+
"""
|
80
|
+
The OCID of the resource.
|
81
|
+
"""
|
82
|
+
return pulumi.get(self, "id")
|
83
|
+
|
84
|
+
@property
|
85
|
+
@pulumi.getter(name="maintenanceWindowCollections")
|
86
|
+
def maintenance_window_collections(self) -> Sequence['outputs.GetMaintenanceWindowsMaintenanceWindowCollectionResult']:
|
87
|
+
"""
|
88
|
+
The list of maintenance_window_collection.
|
89
|
+
"""
|
90
|
+
return pulumi.get(self, "maintenance_window_collections")
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter
|
94
|
+
def state(self) -> Optional[builtins.str]:
|
95
|
+
"""
|
96
|
+
The current state of the MaintenanceWindow.
|
97
|
+
"""
|
98
|
+
return pulumi.get(self, "state")
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter(name="timeScheduleStartGreaterThanOrEqualTo")
|
102
|
+
def time_schedule_start_greater_than_or_equal_to(self) -> Optional[builtins.str]:
|
103
|
+
return pulumi.get(self, "time_schedule_start_greater_than_or_equal_to")
|
104
|
+
|
105
|
+
|
106
|
+
class AwaitableGetMaintenanceWindowsResult(GetMaintenanceWindowsResult):
|
107
|
+
# pylint: disable=using-constant-test
|
108
|
+
def __await__(self):
|
109
|
+
if False:
|
110
|
+
yield self
|
111
|
+
return GetMaintenanceWindowsResult(
|
112
|
+
compartment_id=self.compartment_id,
|
113
|
+
display_name=self.display_name,
|
114
|
+
filters=self.filters,
|
115
|
+
id=self.id,
|
116
|
+
maintenance_window_collections=self.maintenance_window_collections,
|
117
|
+
state=self.state,
|
118
|
+
time_schedule_start_greater_than_or_equal_to=self.time_schedule_start_greater_than_or_equal_to)
|
119
|
+
|
120
|
+
|
121
|
+
def get_maintenance_windows(compartment_id: Optional[builtins.str] = None,
|
122
|
+
display_name: Optional[builtins.str] = None,
|
123
|
+
filters: Optional[Sequence[Union['GetMaintenanceWindowsFilterArgs', 'GetMaintenanceWindowsFilterArgsDict']]] = None,
|
124
|
+
id: Optional[builtins.str] = None,
|
125
|
+
state: Optional[builtins.str] = None,
|
126
|
+
time_schedule_start_greater_than_or_equal_to: Optional[builtins.str] = None,
|
127
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaintenanceWindowsResult:
|
128
|
+
"""
|
129
|
+
This data source provides the list of Maintenance Windows in Oracle Cloud Infrastructure Fleet Apps Management service.
|
130
|
+
|
131
|
+
Returns a list of all the Maintenance Windows in the specified compartment.
|
132
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
133
|
+
|
134
|
+
## Example Usage
|
135
|
+
|
136
|
+
```python
|
137
|
+
import pulumi
|
138
|
+
import pulumi_oci as oci
|
139
|
+
|
140
|
+
test_maintenance_windows = oci.FleetAppsManagement.get_maintenance_windows(compartment_id=compartment_id,
|
141
|
+
display_name=maintenance_window_display_name,
|
142
|
+
id=maintenance_window_id,
|
143
|
+
state=maintenance_window_state,
|
144
|
+
time_schedule_start_greater_than_or_equal_to=maintenance_window_time_schedule_start_greater_than_or_equal_to)
|
145
|
+
```
|
146
|
+
|
147
|
+
|
148
|
+
: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.
|
149
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
150
|
+
:param builtins.str id: Unique identifier or OCID for listing a single maintenance window by id. Either compartmentId or id must be provided.
|
151
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
152
|
+
:param builtins.str time_schedule_start_greater_than_or_equal_to: A filter to return only resources whose timeScheduleStart is greater than or equal to the provided date and time.
|
153
|
+
"""
|
154
|
+
__args__ = dict()
|
155
|
+
__args__['compartmentId'] = compartment_id
|
156
|
+
__args__['displayName'] = display_name
|
157
|
+
__args__['filters'] = filters
|
158
|
+
__args__['id'] = id
|
159
|
+
__args__['state'] = state
|
160
|
+
__args__['timeScheduleStartGreaterThanOrEqualTo'] = time_schedule_start_greater_than_or_equal_to
|
161
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
162
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getMaintenanceWindows:getMaintenanceWindows', __args__, opts=opts, typ=GetMaintenanceWindowsResult).value
|
163
|
+
|
164
|
+
return AwaitableGetMaintenanceWindowsResult(
|
165
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
166
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
167
|
+
filters=pulumi.get(__ret__, 'filters'),
|
168
|
+
id=pulumi.get(__ret__, 'id'),
|
169
|
+
maintenance_window_collections=pulumi.get(__ret__, 'maintenance_window_collections'),
|
170
|
+
state=pulumi.get(__ret__, 'state'),
|
171
|
+
time_schedule_start_greater_than_or_equal_to=pulumi.get(__ret__, 'time_schedule_start_greater_than_or_equal_to'))
|
172
|
+
def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
173
|
+
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
174
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetMaintenanceWindowsFilterArgs', 'GetMaintenanceWindowsFilterArgsDict']]]]] = None,
|
175
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
176
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
177
|
+
time_schedule_start_greater_than_or_equal_to: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
178
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMaintenanceWindowsResult]:
|
179
|
+
"""
|
180
|
+
This data source provides the list of Maintenance Windows in Oracle Cloud Infrastructure Fleet Apps Management service.
|
181
|
+
|
182
|
+
Returns a list of all the Maintenance Windows in the specified compartment.
|
183
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
184
|
+
|
185
|
+
## Example Usage
|
186
|
+
|
187
|
+
```python
|
188
|
+
import pulumi
|
189
|
+
import pulumi_oci as oci
|
190
|
+
|
191
|
+
test_maintenance_windows = oci.FleetAppsManagement.get_maintenance_windows(compartment_id=compartment_id,
|
192
|
+
display_name=maintenance_window_display_name,
|
193
|
+
id=maintenance_window_id,
|
194
|
+
state=maintenance_window_state,
|
195
|
+
time_schedule_start_greater_than_or_equal_to=maintenance_window_time_schedule_start_greater_than_or_equal_to)
|
196
|
+
```
|
197
|
+
|
198
|
+
|
199
|
+
: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.
|
200
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
201
|
+
:param builtins.str id: Unique identifier or OCID for listing a single maintenance window by id. Either compartmentId or id must be provided.
|
202
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
203
|
+
:param builtins.str time_schedule_start_greater_than_or_equal_to: A filter to return only resources whose timeScheduleStart is greater than or equal to the provided date and time.
|
204
|
+
"""
|
205
|
+
__args__ = dict()
|
206
|
+
__args__['compartmentId'] = compartment_id
|
207
|
+
__args__['displayName'] = display_name
|
208
|
+
__args__['filters'] = filters
|
209
|
+
__args__['id'] = id
|
210
|
+
__args__['state'] = state
|
211
|
+
__args__['timeScheduleStartGreaterThanOrEqualTo'] = time_schedule_start_greater_than_or_equal_to
|
212
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
213
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getMaintenanceWindows:getMaintenanceWindows', __args__, opts=opts, typ=GetMaintenanceWindowsResult)
|
214
|
+
return __ret__.apply(lambda __response__: GetMaintenanceWindowsResult(
|
215
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
216
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
217
|
+
filters=pulumi.get(__response__, 'filters'),
|
218
|
+
id=pulumi.get(__response__, 'id'),
|
219
|
+
maintenance_window_collections=pulumi.get(__response__, 'maintenance_window_collections'),
|
220
|
+
state=pulumi.get(__response__, 'state'),
|
221
|
+
time_schedule_start_greater_than_or_equal_to=pulumi.get(__response__, 'time_schedule_start_greater_than_or_equal_to')))
|
@@ -29,10 +29,13 @@ class GetManagedEntityCountsResult:
|
|
29
29
|
"""
|
30
30
|
A collection of values returned by getManagedEntityCounts.
|
31
31
|
"""
|
32
|
-
def __init__(__self__, compartment_id=None, filters=None, id=None, managed_entity_aggregation_collections=None):
|
32
|
+
def __init__(__self__, compartment_id=None, compartment_id_in_subtree=None, filters=None, id=None, managed_entity_aggregation_collections=None):
|
33
33
|
if compartment_id and not isinstance(compartment_id, str):
|
34
34
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
35
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if compartment_id_in_subtree and not isinstance(compartment_id_in_subtree, bool):
|
37
|
+
raise TypeError("Expected argument 'compartment_id_in_subtree' to be a bool")
|
38
|
+
pulumi.set(__self__, "compartment_id_in_subtree", compartment_id_in_subtree)
|
36
39
|
if filters and not isinstance(filters, list):
|
37
40
|
raise TypeError("Expected argument 'filters' to be a list")
|
38
41
|
pulumi.set(__self__, "filters", filters)
|
@@ -48,6 +51,11 @@ class GetManagedEntityCountsResult:
|
|
48
51
|
def compartment_id(self) -> Optional[builtins.str]:
|
49
52
|
return pulumi.get(self, "compartment_id")
|
50
53
|
|
54
|
+
@property
|
55
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
56
|
+
def compartment_id_in_subtree(self) -> Optional[builtins.bool]:
|
57
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
58
|
+
|
51
59
|
@property
|
52
60
|
@pulumi.getter
|
53
61
|
def filters(self) -> Optional[Sequence['outputs.GetManagedEntityCountsFilterResult']]:
|
@@ -77,18 +85,20 @@ class AwaitableGetManagedEntityCountsResult(GetManagedEntityCountsResult):
|
|
77
85
|
yield self
|
78
86
|
return GetManagedEntityCountsResult(
|
79
87
|
compartment_id=self.compartment_id,
|
88
|
+
compartment_id_in_subtree=self.compartment_id_in_subtree,
|
80
89
|
filters=self.filters,
|
81
90
|
id=self.id,
|
82
91
|
managed_entity_aggregation_collections=self.managed_entity_aggregation_collections)
|
83
92
|
|
84
93
|
|
85
94
|
def get_managed_entity_counts(compartment_id: Optional[builtins.str] = None,
|
95
|
+
compartment_id_in_subtree: Optional[builtins.bool] = None,
|
86
96
|
filters: Optional[Sequence[Union['GetManagedEntityCountsFilterArgs', 'GetManagedEntityCountsFilterArgsDict']]] = None,
|
87
97
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagedEntityCountsResult:
|
88
98
|
"""
|
89
99
|
This data source provides the list of Managed Entity Counts in Oracle Cloud Infrastructure Fleet Apps Management service.
|
90
100
|
|
91
|
-
Retrieve aggregated summary information of Managed
|
101
|
+
Retrieve aggregated summary information of Managed entities within a Compartment.
|
92
102
|
|
93
103
|
## Example Usage
|
94
104
|
|
@@ -96,30 +106,35 @@ def get_managed_entity_counts(compartment_id: Optional[builtins.str] = None,
|
|
96
106
|
import pulumi
|
97
107
|
import pulumi_oci as oci
|
98
108
|
|
99
|
-
test_managed_entity_counts = oci.FleetAppsManagement.get_managed_entity_counts(compartment_id=compartment_id
|
109
|
+
test_managed_entity_counts = oci.FleetAppsManagement.get_managed_entity_counts(compartment_id=compartment_id,
|
110
|
+
compartment_id_in_subtree=managed_entity_count_compartment_id_in_subtree)
|
100
111
|
```
|
101
112
|
|
102
113
|
|
103
|
-
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
114
|
+
: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.
|
115
|
+
:param builtins.bool compartment_id_in_subtree: If set to true, resources will be returned for not only the provided compartment, but all compartments which descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
104
116
|
"""
|
105
117
|
__args__ = dict()
|
106
118
|
__args__['compartmentId'] = compartment_id
|
119
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
107
120
|
__args__['filters'] = filters
|
108
121
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
109
122
|
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getManagedEntityCounts:getManagedEntityCounts', __args__, opts=opts, typ=GetManagedEntityCountsResult).value
|
110
123
|
|
111
124
|
return AwaitableGetManagedEntityCountsResult(
|
112
125
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
126
|
+
compartment_id_in_subtree=pulumi.get(__ret__, 'compartment_id_in_subtree'),
|
113
127
|
filters=pulumi.get(__ret__, 'filters'),
|
114
128
|
id=pulumi.get(__ret__, 'id'),
|
115
129
|
managed_entity_aggregation_collections=pulumi.get(__ret__, 'managed_entity_aggregation_collections'))
|
116
130
|
def get_managed_entity_counts_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
131
|
+
compartment_id_in_subtree: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
|
117
132
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetManagedEntityCountsFilterArgs', 'GetManagedEntityCountsFilterArgsDict']]]]] = None,
|
118
133
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetManagedEntityCountsResult]:
|
119
134
|
"""
|
120
135
|
This data source provides the list of Managed Entity Counts in Oracle Cloud Infrastructure Fleet Apps Management service.
|
121
136
|
|
122
|
-
Retrieve aggregated summary information of Managed
|
137
|
+
Retrieve aggregated summary information of Managed entities within a Compartment.
|
123
138
|
|
124
139
|
## Example Usage
|
125
140
|
|
@@ -127,19 +142,23 @@ def get_managed_entity_counts_output(compartment_id: Optional[pulumi.Input[Optio
|
|
127
142
|
import pulumi
|
128
143
|
import pulumi_oci as oci
|
129
144
|
|
130
|
-
test_managed_entity_counts = oci.FleetAppsManagement.get_managed_entity_counts(compartment_id=compartment_id
|
145
|
+
test_managed_entity_counts = oci.FleetAppsManagement.get_managed_entity_counts(compartment_id=compartment_id,
|
146
|
+
compartment_id_in_subtree=managed_entity_count_compartment_id_in_subtree)
|
131
147
|
```
|
132
148
|
|
133
149
|
|
134
|
-
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
150
|
+
: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.
|
151
|
+
:param builtins.bool compartment_id_in_subtree: If set to true, resources will be returned for not only the provided compartment, but all compartments which descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
135
152
|
"""
|
136
153
|
__args__ = dict()
|
137
154
|
__args__['compartmentId'] = compartment_id
|
155
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
138
156
|
__args__['filters'] = filters
|
139
157
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
140
158
|
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getManagedEntityCounts:getManagedEntityCounts', __args__, opts=opts, typ=GetManagedEntityCountsResult)
|
141
159
|
return __ret__.apply(lambda __response__: GetManagedEntityCountsResult(
|
142
160
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
161
|
+
compartment_id_in_subtree=pulumi.get(__response__, 'compartment_id_in_subtree'),
|
143
162
|
filters=pulumi.get(__response__, 'filters'),
|
144
163
|
id=pulumi.get(__response__, 'id'),
|
145
164
|
managed_entity_aggregation_collections=pulumi.get(__response__, 'managed_entity_aggregation_collections')))
|