pulumi-oci 3.1.0a1750143229__py3-none-any.whl → 3.1.0a1751948424__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -29,10 +29,13 @@ class GetComplianceRecordCountsResult:
|
|
29
29
|
"""
|
30
30
|
A collection of values returned by getComplianceRecordCounts.
|
31
31
|
"""
|
32
|
-
def __init__(__self__, compartment_id=None, compliance_record_aggregation_collections=None, filters=None, id=None):
|
32
|
+
def __init__(__self__, compartment_id=None, compartment_id_in_subtree=None, compliance_record_aggregation_collections=None, filters=None, id=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 compliance_record_aggregation_collections and not isinstance(compliance_record_aggregation_collections, list):
|
37
40
|
raise TypeError("Expected argument 'compliance_record_aggregation_collections' to be a list")
|
38
41
|
pulumi.set(__self__, "compliance_record_aggregation_collections", compliance_record_aggregation_collections)
|
@@ -48,6 +51,11 @@ class GetComplianceRecordCountsResult:
|
|
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(name="complianceRecordAggregationCollections")
|
53
61
|
def compliance_record_aggregation_collections(self) -> Sequence['outputs.GetComplianceRecordCountsComplianceRecordAggregationCollectionResult']:
|
@@ -77,18 +85,20 @@ class AwaitableGetComplianceRecordCountsResult(GetComplianceRecordCountsResult):
|
|
77
85
|
yield self
|
78
86
|
return GetComplianceRecordCountsResult(
|
79
87
|
compartment_id=self.compartment_id,
|
88
|
+
compartment_id_in_subtree=self.compartment_id_in_subtree,
|
80
89
|
compliance_record_aggregation_collections=self.compliance_record_aggregation_collections,
|
81
90
|
filters=self.filters,
|
82
91
|
id=self.id)
|
83
92
|
|
84
93
|
|
85
94
|
def get_compliance_record_counts(compartment_id: Optional[builtins.str] = None,
|
95
|
+
compartment_id_in_subtree: Optional[builtins.bool] = None,
|
86
96
|
filters: Optional[Sequence[Union['GetComplianceRecordCountsFilterArgs', 'GetComplianceRecordCountsFilterArgsDict']]] = None,
|
87
97
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetComplianceRecordCountsResult:
|
88
98
|
"""
|
89
99
|
This data source provides the list of Compliance Record Counts in Oracle Cloud Infrastructure Fleet Apps Management service.
|
90
100
|
|
91
|
-
Retrieve aggregated summary information of ComplianceRecords within a
|
101
|
+
Retrieve aggregated summary information of ComplianceRecords within a Compartment.
|
92
102
|
|
93
103
|
## Example Usage
|
94
104
|
|
@@ -96,30 +106,35 @@ def get_compliance_record_counts(compartment_id: Optional[builtins.str] = None,
|
|
96
106
|
import pulumi
|
97
107
|
import pulumi_oci as oci
|
98
108
|
|
99
|
-
test_compliance_record_counts = oci.FleetAppsManagement.get_compliance_record_counts(compartment_id=compartment_id
|
109
|
+
test_compliance_record_counts = oci.FleetAppsManagement.get_compliance_record_counts(compartment_id=compartment_id,
|
110
|
+
compartment_id_in_subtree=compliance_record_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/getComplianceRecordCounts:getComplianceRecordCounts', __args__, opts=opts, typ=GetComplianceRecordCountsResult).value
|
110
123
|
|
111
124
|
return AwaitableGetComplianceRecordCountsResult(
|
112
125
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
126
|
+
compartment_id_in_subtree=pulumi.get(__ret__, 'compartment_id_in_subtree'),
|
113
127
|
compliance_record_aggregation_collections=pulumi.get(__ret__, 'compliance_record_aggregation_collections'),
|
114
128
|
filters=pulumi.get(__ret__, 'filters'),
|
115
129
|
id=pulumi.get(__ret__, 'id'))
|
116
130
|
def get_compliance_record_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['GetComplianceRecordCountsFilterArgs', 'GetComplianceRecordCountsFilterArgsDict']]]]] = None,
|
118
133
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetComplianceRecordCountsResult]:
|
119
134
|
"""
|
120
135
|
This data source provides the list of Compliance Record Counts in Oracle Cloud Infrastructure Fleet Apps Management service.
|
121
136
|
|
122
|
-
Retrieve aggregated summary information of ComplianceRecords within a
|
137
|
+
Retrieve aggregated summary information of ComplianceRecords within a Compartment.
|
123
138
|
|
124
139
|
## Example Usage
|
125
140
|
|
@@ -127,19 +142,23 @@ def get_compliance_record_counts_output(compartment_id: Optional[pulumi.Input[Op
|
|
127
142
|
import pulumi
|
128
143
|
import pulumi_oci as oci
|
129
144
|
|
130
|
-
test_compliance_record_counts = oci.FleetAppsManagement.get_compliance_record_counts(compartment_id=compartment_id
|
145
|
+
test_compliance_record_counts = oci.FleetAppsManagement.get_compliance_record_counts(compartment_id=compartment_id,
|
146
|
+
compartment_id_in_subtree=compliance_record_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/getComplianceRecordCounts:getComplianceRecordCounts', __args__, opts=opts, typ=GetComplianceRecordCountsResult)
|
141
159
|
return __ret__.apply(lambda __response__: GetComplianceRecordCountsResult(
|
142
160
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
161
|
+
compartment_id_in_subtree=pulumi.get(__response__, 'compartment_id_in_subtree'),
|
143
162
|
compliance_record_aggregation_collections=pulumi.get(__response__, 'compliance_record_aggregation_collections'),
|
144
163
|
filters=pulumi.get(__response__, 'filters'),
|
145
164
|
id=pulumi.get(__response__, 'id')))
|
@@ -0,0 +1,299 @@
|
|
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
|
+
'GetComplianceRecordsResult',
|
22
|
+
'AwaitableGetComplianceRecordsResult',
|
23
|
+
'get_compliance_records',
|
24
|
+
'get_compliance_records_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetComplianceRecordsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getComplianceRecords.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, compartment_id_in_subtree=None, compliance_record_collections=None, compliance_state=None, entity_id=None, filters=None, id=None, product_name=None, product_stack=None, resource_id=None, target_name=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 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)
|
39
|
+
if compliance_record_collections and not isinstance(compliance_record_collections, list):
|
40
|
+
raise TypeError("Expected argument 'compliance_record_collections' to be a list")
|
41
|
+
pulumi.set(__self__, "compliance_record_collections", compliance_record_collections)
|
42
|
+
if compliance_state and not isinstance(compliance_state, str):
|
43
|
+
raise TypeError("Expected argument 'compliance_state' to be a str")
|
44
|
+
pulumi.set(__self__, "compliance_state", compliance_state)
|
45
|
+
if entity_id and not isinstance(entity_id, str):
|
46
|
+
raise TypeError("Expected argument 'entity_id' to be a str")
|
47
|
+
pulumi.set(__self__, "entity_id", entity_id)
|
48
|
+
if filters and not isinstance(filters, list):
|
49
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
50
|
+
pulumi.set(__self__, "filters", filters)
|
51
|
+
if id and not isinstance(id, str):
|
52
|
+
raise TypeError("Expected argument 'id' to be a str")
|
53
|
+
pulumi.set(__self__, "id", id)
|
54
|
+
if product_name and not isinstance(product_name, str):
|
55
|
+
raise TypeError("Expected argument 'product_name' to be a str")
|
56
|
+
pulumi.set(__self__, "product_name", product_name)
|
57
|
+
if product_stack and not isinstance(product_stack, str):
|
58
|
+
raise TypeError("Expected argument 'product_stack' to be a str")
|
59
|
+
pulumi.set(__self__, "product_stack", product_stack)
|
60
|
+
if resource_id and not isinstance(resource_id, str):
|
61
|
+
raise TypeError("Expected argument 'resource_id' to be a str")
|
62
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
63
|
+
if target_name and not isinstance(target_name, str):
|
64
|
+
raise TypeError("Expected argument 'target_name' to be a str")
|
65
|
+
pulumi.set(__self__, "target_name", target_name)
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter(name="compartmentId")
|
69
|
+
def compartment_id(self) -> builtins.str:
|
70
|
+
"""
|
71
|
+
Compartment OCID of the resource.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "compartment_id")
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
77
|
+
def compartment_id_in_subtree(self) -> Optional[builtins.bool]:
|
78
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="complianceRecordCollections")
|
82
|
+
def compliance_record_collections(self) -> Sequence['outputs.GetComplianceRecordsComplianceRecordCollectionResult']:
|
83
|
+
"""
|
84
|
+
The list of compliance_record_collection.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "compliance_record_collections")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="complianceState")
|
90
|
+
def compliance_state(self) -> Optional[builtins.str]:
|
91
|
+
"""
|
92
|
+
Last known compliance state of target.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "compliance_state")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="entityId")
|
98
|
+
def entity_id(self) -> Optional[builtins.str]:
|
99
|
+
"""
|
100
|
+
The OCID of the entity for which the compliance is calculated.Ex.FleetId
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "entity_id")
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter
|
106
|
+
def filters(self) -> Optional[Sequence['outputs.GetComplianceRecordsFilterResult']]:
|
107
|
+
return pulumi.get(self, "filters")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter
|
111
|
+
def id(self) -> builtins.str:
|
112
|
+
"""
|
113
|
+
The provider-assigned unique ID for this managed resource.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "id")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="productName")
|
119
|
+
def product_name(self) -> Optional[builtins.str]:
|
120
|
+
"""
|
121
|
+
Product Name.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "product_name")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="productStack")
|
127
|
+
def product_stack(self) -> Optional[builtins.str]:
|
128
|
+
"""
|
129
|
+
Product Stack.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "product_stack")
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="resourceId")
|
135
|
+
def resource_id(self) -> Optional[builtins.str]:
|
136
|
+
"""
|
137
|
+
The OCID to identify the resource.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "resource_id")
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="targetName")
|
143
|
+
def target_name(self) -> Optional[builtins.str]:
|
144
|
+
"""
|
145
|
+
Target Name.
|
146
|
+
"""
|
147
|
+
return pulumi.get(self, "target_name")
|
148
|
+
|
149
|
+
|
150
|
+
class AwaitableGetComplianceRecordsResult(GetComplianceRecordsResult):
|
151
|
+
# pylint: disable=using-constant-test
|
152
|
+
def __await__(self):
|
153
|
+
if False:
|
154
|
+
yield self
|
155
|
+
return GetComplianceRecordsResult(
|
156
|
+
compartment_id=self.compartment_id,
|
157
|
+
compartment_id_in_subtree=self.compartment_id_in_subtree,
|
158
|
+
compliance_record_collections=self.compliance_record_collections,
|
159
|
+
compliance_state=self.compliance_state,
|
160
|
+
entity_id=self.entity_id,
|
161
|
+
filters=self.filters,
|
162
|
+
id=self.id,
|
163
|
+
product_name=self.product_name,
|
164
|
+
product_stack=self.product_stack,
|
165
|
+
resource_id=self.resource_id,
|
166
|
+
target_name=self.target_name)
|
167
|
+
|
168
|
+
|
169
|
+
def get_compliance_records(compartment_id: Optional[builtins.str] = None,
|
170
|
+
compartment_id_in_subtree: Optional[builtins.bool] = None,
|
171
|
+
compliance_state: Optional[builtins.str] = None,
|
172
|
+
entity_id: Optional[builtins.str] = None,
|
173
|
+
filters: Optional[Sequence[Union['GetComplianceRecordsFilterArgs', 'GetComplianceRecordsFilterArgsDict']]] = None,
|
174
|
+
product_name: Optional[builtins.str] = None,
|
175
|
+
product_stack: Optional[builtins.str] = None,
|
176
|
+
resource_id: Optional[builtins.str] = None,
|
177
|
+
target_name: Optional[builtins.str] = None,
|
178
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetComplianceRecordsResult:
|
179
|
+
"""
|
180
|
+
This data source provides the list of Compliance Records in Oracle Cloud Infrastructure Fleet Apps Management service.
|
181
|
+
|
182
|
+
Gets a list of complianceDetails.
|
183
|
+
|
184
|
+
## Example Usage
|
185
|
+
|
186
|
+
```python
|
187
|
+
import pulumi
|
188
|
+
import pulumi_oci as oci
|
189
|
+
|
190
|
+
test_compliance_records = oci.FleetAppsManagement.get_compliance_records(compartment_id=compartment_id,
|
191
|
+
compartment_id_in_subtree=compliance_record_compartment_id_in_subtree,
|
192
|
+
compliance_state=compliance_record_compliance_state,
|
193
|
+
entity_id=test_entity["id"],
|
194
|
+
product_name=compliance_record_product_name,
|
195
|
+
product_stack=compliance_record_product_stack,
|
196
|
+
resource_id=test_resource["id"],
|
197
|
+
target_name=test_target["name"])
|
198
|
+
```
|
199
|
+
|
200
|
+
|
201
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
202
|
+
: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.
|
203
|
+
:param builtins.str compliance_state: Target Compliance State.
|
204
|
+
:param builtins.str entity_id: Entity identifier.Ex:FleetId
|
205
|
+
:param builtins.str product_name: Product Name.
|
206
|
+
:param builtins.str product_stack: ProductStack name.
|
207
|
+
:param builtins.str resource_id: Resource identifier.
|
208
|
+
:param builtins.str target_name: Unique target name
|
209
|
+
"""
|
210
|
+
__args__ = dict()
|
211
|
+
__args__['compartmentId'] = compartment_id
|
212
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
213
|
+
__args__['complianceState'] = compliance_state
|
214
|
+
__args__['entityId'] = entity_id
|
215
|
+
__args__['filters'] = filters
|
216
|
+
__args__['productName'] = product_name
|
217
|
+
__args__['productStack'] = product_stack
|
218
|
+
__args__['resourceId'] = resource_id
|
219
|
+
__args__['targetName'] = target_name
|
220
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
221
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getComplianceRecords:getComplianceRecords', __args__, opts=opts, typ=GetComplianceRecordsResult).value
|
222
|
+
|
223
|
+
return AwaitableGetComplianceRecordsResult(
|
224
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
225
|
+
compartment_id_in_subtree=pulumi.get(__ret__, 'compartment_id_in_subtree'),
|
226
|
+
compliance_record_collections=pulumi.get(__ret__, 'compliance_record_collections'),
|
227
|
+
compliance_state=pulumi.get(__ret__, 'compliance_state'),
|
228
|
+
entity_id=pulumi.get(__ret__, 'entity_id'),
|
229
|
+
filters=pulumi.get(__ret__, 'filters'),
|
230
|
+
id=pulumi.get(__ret__, 'id'),
|
231
|
+
product_name=pulumi.get(__ret__, 'product_name'),
|
232
|
+
product_stack=pulumi.get(__ret__, 'product_stack'),
|
233
|
+
resource_id=pulumi.get(__ret__, 'resource_id'),
|
234
|
+
target_name=pulumi.get(__ret__, 'target_name'))
|
235
|
+
def get_compliance_records_output(compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
236
|
+
compartment_id_in_subtree: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
|
237
|
+
compliance_state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
238
|
+
entity_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
239
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetComplianceRecordsFilterArgs', 'GetComplianceRecordsFilterArgsDict']]]]] = None,
|
240
|
+
product_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
241
|
+
product_stack: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
242
|
+
resource_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
243
|
+
target_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
244
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetComplianceRecordsResult]:
|
245
|
+
"""
|
246
|
+
This data source provides the list of Compliance Records in Oracle Cloud Infrastructure Fleet Apps Management service.
|
247
|
+
|
248
|
+
Gets a list of complianceDetails.
|
249
|
+
|
250
|
+
## Example Usage
|
251
|
+
|
252
|
+
```python
|
253
|
+
import pulumi
|
254
|
+
import pulumi_oci as oci
|
255
|
+
|
256
|
+
test_compliance_records = oci.FleetAppsManagement.get_compliance_records(compartment_id=compartment_id,
|
257
|
+
compartment_id_in_subtree=compliance_record_compartment_id_in_subtree,
|
258
|
+
compliance_state=compliance_record_compliance_state,
|
259
|
+
entity_id=test_entity["id"],
|
260
|
+
product_name=compliance_record_product_name,
|
261
|
+
product_stack=compliance_record_product_stack,
|
262
|
+
resource_id=test_resource["id"],
|
263
|
+
target_name=test_target["name"])
|
264
|
+
```
|
265
|
+
|
266
|
+
|
267
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
268
|
+
: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.
|
269
|
+
:param builtins.str compliance_state: Target Compliance State.
|
270
|
+
:param builtins.str entity_id: Entity identifier.Ex:FleetId
|
271
|
+
:param builtins.str product_name: Product Name.
|
272
|
+
:param builtins.str product_stack: ProductStack name.
|
273
|
+
:param builtins.str resource_id: Resource identifier.
|
274
|
+
:param builtins.str target_name: Unique target name
|
275
|
+
"""
|
276
|
+
__args__ = dict()
|
277
|
+
__args__['compartmentId'] = compartment_id
|
278
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
279
|
+
__args__['complianceState'] = compliance_state
|
280
|
+
__args__['entityId'] = entity_id
|
281
|
+
__args__['filters'] = filters
|
282
|
+
__args__['productName'] = product_name
|
283
|
+
__args__['productStack'] = product_stack
|
284
|
+
__args__['resourceId'] = resource_id
|
285
|
+
__args__['targetName'] = target_name
|
286
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
287
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getComplianceRecords:getComplianceRecords', __args__, opts=opts, typ=GetComplianceRecordsResult)
|
288
|
+
return __ret__.apply(lambda __response__: GetComplianceRecordsResult(
|
289
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
290
|
+
compartment_id_in_subtree=pulumi.get(__response__, 'compartment_id_in_subtree'),
|
291
|
+
compliance_record_collections=pulumi.get(__response__, 'compliance_record_collections'),
|
292
|
+
compliance_state=pulumi.get(__response__, 'compliance_state'),
|
293
|
+
entity_id=pulumi.get(__response__, 'entity_id'),
|
294
|
+
filters=pulumi.get(__response__, 'filters'),
|
295
|
+
id=pulumi.get(__response__, 'id'),
|
296
|
+
product_name=pulumi.get(__response__, 'product_name'),
|
297
|
+
product_stack=pulumi.get(__response__, 'product_stack'),
|
298
|
+
resource_id=pulumi.get(__response__, 'resource_id'),
|
299
|
+
target_name=pulumi.get(__response__, 'target_name')))
|