pulumi-oci 3.1.0a1750230541__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.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,409 @@
|
|
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
|
+
'GetFleetResult',
|
21
|
+
'AwaitableGetFleetResult',
|
22
|
+
'get_fleet',
|
23
|
+
'get_fleet_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetFleetResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getFleet.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, credentials=None, defined_tags=None, description=None, details=None, display_name=None, environment_type=None, fleet_id=None, freeform_tags=None, id=None, is_target_auto_confirm=None, lifecycle_details=None, notification_preferences=None, parent_fleet_id=None, products=None, properties=None, resource_region=None, resource_selections=None, resources=None, state=None, system_tags=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 credentials and not isinstance(credentials, list):
|
36
|
+
raise TypeError("Expected argument 'credentials' to be a list")
|
37
|
+
pulumi.set(__self__, "credentials", credentials)
|
38
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
39
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
40
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
41
|
+
if description and not isinstance(description, str):
|
42
|
+
raise TypeError("Expected argument 'description' to be a str")
|
43
|
+
pulumi.set(__self__, "description", description)
|
44
|
+
if details and not isinstance(details, list):
|
45
|
+
raise TypeError("Expected argument 'details' to be a list")
|
46
|
+
pulumi.set(__self__, "details", details)
|
47
|
+
if display_name and not isinstance(display_name, str):
|
48
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
49
|
+
pulumi.set(__self__, "display_name", display_name)
|
50
|
+
if environment_type and not isinstance(environment_type, str):
|
51
|
+
raise TypeError("Expected argument 'environment_type' to be a str")
|
52
|
+
pulumi.set(__self__, "environment_type", environment_type)
|
53
|
+
if fleet_id and not isinstance(fleet_id, str):
|
54
|
+
raise TypeError("Expected argument 'fleet_id' to be a str")
|
55
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
56
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
57
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
58
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
59
|
+
if id and not isinstance(id, str):
|
60
|
+
raise TypeError("Expected argument 'id' to be a str")
|
61
|
+
pulumi.set(__self__, "id", id)
|
62
|
+
if is_target_auto_confirm and not isinstance(is_target_auto_confirm, bool):
|
63
|
+
raise TypeError("Expected argument 'is_target_auto_confirm' to be a bool")
|
64
|
+
pulumi.set(__self__, "is_target_auto_confirm", is_target_auto_confirm)
|
65
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
66
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
67
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
68
|
+
if notification_preferences and not isinstance(notification_preferences, list):
|
69
|
+
raise TypeError("Expected argument 'notification_preferences' to be a list")
|
70
|
+
pulumi.set(__self__, "notification_preferences", notification_preferences)
|
71
|
+
if parent_fleet_id and not isinstance(parent_fleet_id, str):
|
72
|
+
raise TypeError("Expected argument 'parent_fleet_id' to be a str")
|
73
|
+
pulumi.set(__self__, "parent_fleet_id", parent_fleet_id)
|
74
|
+
if products and not isinstance(products, list):
|
75
|
+
raise TypeError("Expected argument 'products' to be a list")
|
76
|
+
pulumi.set(__self__, "products", products)
|
77
|
+
if properties and not isinstance(properties, list):
|
78
|
+
raise TypeError("Expected argument 'properties' to be a list")
|
79
|
+
pulumi.set(__self__, "properties", properties)
|
80
|
+
if resource_region and not isinstance(resource_region, str):
|
81
|
+
raise TypeError("Expected argument 'resource_region' to be a str")
|
82
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
83
|
+
if resource_selections and not isinstance(resource_selections, list):
|
84
|
+
raise TypeError("Expected argument 'resource_selections' to be a list")
|
85
|
+
pulumi.set(__self__, "resource_selections", resource_selections)
|
86
|
+
if resources and not isinstance(resources, list):
|
87
|
+
raise TypeError("Expected argument 'resources' to be a list")
|
88
|
+
pulumi.set(__self__, "resources", resources)
|
89
|
+
if state and not isinstance(state, str):
|
90
|
+
raise TypeError("Expected argument 'state' to be a str")
|
91
|
+
pulumi.set(__self__, "state", state)
|
92
|
+
if system_tags and not isinstance(system_tags, dict):
|
93
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
94
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
95
|
+
if time_created and not isinstance(time_created, str):
|
96
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
97
|
+
pulumi.set(__self__, "time_created", time_created)
|
98
|
+
if time_updated and not isinstance(time_updated, str):
|
99
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
100
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="compartmentId")
|
104
|
+
def compartment_id(self) -> builtins.str:
|
105
|
+
"""
|
106
|
+
Compartment Identifier[OCID].
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "compartment_id")
|
109
|
+
|
110
|
+
@property
|
111
|
+
@pulumi.getter
|
112
|
+
def credentials(self) -> Sequence['outputs.GetFleetCredentialResult']:
|
113
|
+
"""
|
114
|
+
Credentials associated with the Fleet.
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "credentials")
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter(name="definedTags")
|
120
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
121
|
+
"""
|
122
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "defined_tags")
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter
|
128
|
+
def description(self) -> builtins.str:
|
129
|
+
"""
|
130
|
+
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "description")
|
133
|
+
|
134
|
+
@property
|
135
|
+
@pulumi.getter
|
136
|
+
def details(self) -> Sequence['outputs.GetFleetDetailResult']:
|
137
|
+
"""
|
138
|
+
Fleet Type
|
139
|
+
"""
|
140
|
+
return pulumi.get(self, "details")
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter(name="displayName")
|
144
|
+
def display_name(self) -> builtins.str:
|
145
|
+
"""
|
146
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
147
|
+
"""
|
148
|
+
return pulumi.get(self, "display_name")
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="environmentType")
|
152
|
+
def environment_type(self) -> builtins.str:
|
153
|
+
"""
|
154
|
+
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "environment_type")
|
157
|
+
|
158
|
+
@property
|
159
|
+
@pulumi.getter(name="fleetId")
|
160
|
+
def fleet_id(self) -> builtins.str:
|
161
|
+
return pulumi.get(self, "fleet_id")
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="freeformTags")
|
165
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
166
|
+
"""
|
167
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "freeform_tags")
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter
|
173
|
+
def id(self) -> builtins.str:
|
174
|
+
"""
|
175
|
+
The OCID of the resource.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "id")
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter(name="isTargetAutoConfirm")
|
181
|
+
def is_target_auto_confirm(self) -> builtins.bool:
|
182
|
+
"""
|
183
|
+
A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "is_target_auto_confirm")
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter(name="lifecycleDetails")
|
189
|
+
def lifecycle_details(self) -> builtins.str:
|
190
|
+
"""
|
191
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
192
|
+
"""
|
193
|
+
return pulumi.get(self, "lifecycle_details")
|
194
|
+
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="notificationPreferences")
|
197
|
+
def notification_preferences(self) -> Sequence['outputs.GetFleetNotificationPreferenceResult']:
|
198
|
+
"""
|
199
|
+
Notification Preferences associated with the Fleet.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "notification_preferences")
|
202
|
+
|
203
|
+
@property
|
204
|
+
@pulumi.getter(name="parentFleetId")
|
205
|
+
def parent_fleet_id(self) -> builtins.str:
|
206
|
+
"""
|
207
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the fleet that would be the parent for this fleet.
|
208
|
+
"""
|
209
|
+
return pulumi.get(self, "parent_fleet_id")
|
210
|
+
|
211
|
+
@property
|
212
|
+
@pulumi.getter
|
213
|
+
def products(self) -> Sequence[builtins.str]:
|
214
|
+
"""
|
215
|
+
Products associated with the Fleet.
|
216
|
+
"""
|
217
|
+
return pulumi.get(self, "products")
|
218
|
+
|
219
|
+
@property
|
220
|
+
@pulumi.getter
|
221
|
+
def properties(self) -> Sequence['outputs.GetFleetPropertyResult']:
|
222
|
+
"""
|
223
|
+
Properties associated with the Fleet.
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "properties")
|
226
|
+
|
227
|
+
@property
|
228
|
+
@pulumi.getter(name="resourceRegion")
|
229
|
+
def resource_region(self) -> builtins.str:
|
230
|
+
"""
|
231
|
+
Associated region
|
232
|
+
"""
|
233
|
+
return pulumi.get(self, "resource_region")
|
234
|
+
|
235
|
+
@property
|
236
|
+
@pulumi.getter(name="resourceSelections")
|
237
|
+
def resource_selections(self) -> Sequence['outputs.GetFleetResourceSelectionResult']:
|
238
|
+
"""
|
239
|
+
Resource Selection Type
|
240
|
+
"""
|
241
|
+
return pulumi.get(self, "resource_selections")
|
242
|
+
|
243
|
+
@property
|
244
|
+
@pulumi.getter
|
245
|
+
def resources(self) -> Sequence['outputs.GetFleetResourceResult']:
|
246
|
+
"""
|
247
|
+
Resources associated with the Fleet if resourceSelectionType is MANUAL.
|
248
|
+
"""
|
249
|
+
return pulumi.get(self, "resources")
|
250
|
+
|
251
|
+
@property
|
252
|
+
@pulumi.getter
|
253
|
+
def state(self) -> builtins.str:
|
254
|
+
"""
|
255
|
+
The lifecycle state of the Fleet.
|
256
|
+
"""
|
257
|
+
return pulumi.get(self, "state")
|
258
|
+
|
259
|
+
@property
|
260
|
+
@pulumi.getter(name="systemTags")
|
261
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
262
|
+
"""
|
263
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
264
|
+
"""
|
265
|
+
return pulumi.get(self, "system_tags")
|
266
|
+
|
267
|
+
@property
|
268
|
+
@pulumi.getter(name="timeCreated")
|
269
|
+
def time_created(self) -> builtins.str:
|
270
|
+
"""
|
271
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
272
|
+
"""
|
273
|
+
return pulumi.get(self, "time_created")
|
274
|
+
|
275
|
+
@property
|
276
|
+
@pulumi.getter(name="timeUpdated")
|
277
|
+
def time_updated(self) -> builtins.str:
|
278
|
+
"""
|
279
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "time_updated")
|
282
|
+
|
283
|
+
|
284
|
+
class AwaitableGetFleetResult(GetFleetResult):
|
285
|
+
# pylint: disable=using-constant-test
|
286
|
+
def __await__(self):
|
287
|
+
if False:
|
288
|
+
yield self
|
289
|
+
return GetFleetResult(
|
290
|
+
compartment_id=self.compartment_id,
|
291
|
+
credentials=self.credentials,
|
292
|
+
defined_tags=self.defined_tags,
|
293
|
+
description=self.description,
|
294
|
+
details=self.details,
|
295
|
+
display_name=self.display_name,
|
296
|
+
environment_type=self.environment_type,
|
297
|
+
fleet_id=self.fleet_id,
|
298
|
+
freeform_tags=self.freeform_tags,
|
299
|
+
id=self.id,
|
300
|
+
is_target_auto_confirm=self.is_target_auto_confirm,
|
301
|
+
lifecycle_details=self.lifecycle_details,
|
302
|
+
notification_preferences=self.notification_preferences,
|
303
|
+
parent_fleet_id=self.parent_fleet_id,
|
304
|
+
products=self.products,
|
305
|
+
properties=self.properties,
|
306
|
+
resource_region=self.resource_region,
|
307
|
+
resource_selections=self.resource_selections,
|
308
|
+
resources=self.resources,
|
309
|
+
state=self.state,
|
310
|
+
system_tags=self.system_tags,
|
311
|
+
time_created=self.time_created,
|
312
|
+
time_updated=self.time_updated)
|
313
|
+
|
314
|
+
|
315
|
+
def get_fleet(fleet_id: Optional[builtins.str] = None,
|
316
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetResult:
|
317
|
+
"""
|
318
|
+
This data source provides details about a specific Fleet resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
319
|
+
|
320
|
+
Get the details of a fleet in Fleet Application Management.
|
321
|
+
|
322
|
+
## Example Usage
|
323
|
+
|
324
|
+
```python
|
325
|
+
import pulumi
|
326
|
+
import pulumi_oci as oci
|
327
|
+
|
328
|
+
test_fleet = oci.FleetAppsManagement.get_fleet(fleet_id=test_fleet_oci_fleet_apps_management_fleet["id"])
|
329
|
+
```
|
330
|
+
|
331
|
+
|
332
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
333
|
+
"""
|
334
|
+
__args__ = dict()
|
335
|
+
__args__['fleetId'] = fleet_id
|
336
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
337
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getFleet:getFleet', __args__, opts=opts, typ=GetFleetResult).value
|
338
|
+
|
339
|
+
return AwaitableGetFleetResult(
|
340
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
341
|
+
credentials=pulumi.get(__ret__, 'credentials'),
|
342
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
343
|
+
description=pulumi.get(__ret__, 'description'),
|
344
|
+
details=pulumi.get(__ret__, 'details'),
|
345
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
346
|
+
environment_type=pulumi.get(__ret__, 'environment_type'),
|
347
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
348
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
349
|
+
id=pulumi.get(__ret__, 'id'),
|
350
|
+
is_target_auto_confirm=pulumi.get(__ret__, 'is_target_auto_confirm'),
|
351
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
352
|
+
notification_preferences=pulumi.get(__ret__, 'notification_preferences'),
|
353
|
+
parent_fleet_id=pulumi.get(__ret__, 'parent_fleet_id'),
|
354
|
+
products=pulumi.get(__ret__, 'products'),
|
355
|
+
properties=pulumi.get(__ret__, 'properties'),
|
356
|
+
resource_region=pulumi.get(__ret__, 'resource_region'),
|
357
|
+
resource_selections=pulumi.get(__ret__, 'resource_selections'),
|
358
|
+
resources=pulumi.get(__ret__, 'resources'),
|
359
|
+
state=pulumi.get(__ret__, 'state'),
|
360
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
361
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
362
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
363
|
+
def get_fleet_output(fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
364
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFleetResult]:
|
365
|
+
"""
|
366
|
+
This data source provides details about a specific Fleet resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
367
|
+
|
368
|
+
Get the details of a fleet in Fleet Application Management.
|
369
|
+
|
370
|
+
## Example Usage
|
371
|
+
|
372
|
+
```python
|
373
|
+
import pulumi
|
374
|
+
import pulumi_oci as oci
|
375
|
+
|
376
|
+
test_fleet = oci.FleetAppsManagement.get_fleet(fleet_id=test_fleet_oci_fleet_apps_management_fleet["id"])
|
377
|
+
```
|
378
|
+
|
379
|
+
|
380
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
381
|
+
"""
|
382
|
+
__args__ = dict()
|
383
|
+
__args__['fleetId'] = fleet_id
|
384
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
385
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getFleet:getFleet', __args__, opts=opts, typ=GetFleetResult)
|
386
|
+
return __ret__.apply(lambda __response__: GetFleetResult(
|
387
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
388
|
+
credentials=pulumi.get(__response__, 'credentials'),
|
389
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
390
|
+
description=pulumi.get(__response__, 'description'),
|
391
|
+
details=pulumi.get(__response__, 'details'),
|
392
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
393
|
+
environment_type=pulumi.get(__response__, 'environment_type'),
|
394
|
+
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
395
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
396
|
+
id=pulumi.get(__response__, 'id'),
|
397
|
+
is_target_auto_confirm=pulumi.get(__response__, 'is_target_auto_confirm'),
|
398
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
399
|
+
notification_preferences=pulumi.get(__response__, 'notification_preferences'),
|
400
|
+
parent_fleet_id=pulumi.get(__response__, 'parent_fleet_id'),
|
401
|
+
products=pulumi.get(__response__, 'products'),
|
402
|
+
properties=pulumi.get(__response__, 'properties'),
|
403
|
+
resource_region=pulumi.get(__response__, 'resource_region'),
|
404
|
+
resource_selections=pulumi.get(__response__, 'resource_selections'),
|
405
|
+
resources=pulumi.get(__response__, 'resources'),
|
406
|
+
state=pulumi.get(__response__, 'state'),
|
407
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
408
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
409
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -28,7 +28,7 @@ class GetFleetComplianceReportResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getFleetComplianceReport.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compliance_report_id=None, compliance_state=None, fleet_id=None, id=None, resources=None):
|
31
|
+
def __init__(__self__, compliance_report_id=None, compliance_state=None, fleet_id=None, id=None, percent_compliant=None, resources=None):
|
32
32
|
if compliance_report_id and not isinstance(compliance_report_id, str):
|
33
33
|
raise TypeError("Expected argument 'compliance_report_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compliance_report_id", compliance_report_id)
|
@@ -41,6 +41,9 @@ class GetFleetComplianceReportResult:
|
|
41
41
|
if id and not isinstance(id, str):
|
42
42
|
raise TypeError("Expected argument 'id' to be a str")
|
43
43
|
pulumi.set(__self__, "id", id)
|
44
|
+
if percent_compliant and not isinstance(percent_compliant, float):
|
45
|
+
raise TypeError("Expected argument 'percent_compliant' to be a float")
|
46
|
+
pulumi.set(__self__, "percent_compliant", percent_compliant)
|
44
47
|
if resources and not isinstance(resources, list):
|
45
48
|
raise TypeError("Expected argument 'resources' to be a list")
|
46
49
|
pulumi.set(__self__, "resources", resources)
|
@@ -74,6 +77,14 @@ class GetFleetComplianceReportResult:
|
|
74
77
|
"""
|
75
78
|
return pulumi.get(self, "id")
|
76
79
|
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="percentCompliant")
|
82
|
+
def percent_compliant(self) -> builtins.float:
|
83
|
+
"""
|
84
|
+
The compliance percentage.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "percent_compliant")
|
87
|
+
|
77
88
|
@property
|
78
89
|
@pulumi.getter
|
79
90
|
def resources(self) -> Sequence['outputs.GetFleetComplianceReportResourceResult']:
|
@@ -93,6 +104,7 @@ class AwaitableGetFleetComplianceReportResult(GetFleetComplianceReportResult):
|
|
93
104
|
compliance_state=self.compliance_state,
|
94
105
|
fleet_id=self.fleet_id,
|
95
106
|
id=self.id,
|
107
|
+
percent_compliant=self.percent_compliant,
|
96
108
|
resources=self.resources)
|
97
109
|
|
98
110
|
|
@@ -129,6 +141,7 @@ def get_fleet_compliance_report(compliance_report_id: Optional[builtins.str] = N
|
|
129
141
|
compliance_state=pulumi.get(__ret__, 'compliance_state'),
|
130
142
|
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
131
143
|
id=pulumi.get(__ret__, 'id'),
|
144
|
+
percent_compliant=pulumi.get(__ret__, 'percent_compliant'),
|
132
145
|
resources=pulumi.get(__ret__, 'resources'))
|
133
146
|
def get_fleet_compliance_report_output(compliance_report_id: Optional[pulumi.Input[builtins.str]] = None,
|
134
147
|
fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -162,4 +175,5 @@ def get_fleet_compliance_report_output(compliance_report_id: Optional[pulumi.Inp
|
|
162
175
|
compliance_state=pulumi.get(__response__, 'compliance_state'),
|
163
176
|
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
164
177
|
id=pulumi.get(__response__, 'id'),
|
178
|
+
percent_compliant=pulumi.get(__response__, 'percent_compliant'),
|
165
179
|
resources=pulumi.get(__response__, 'resources')))
|