pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.0a1752121229__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.0a1752121229.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/top_level.txt +0 -0
@@ -19,6 +19,7 @@ from . import outputs
|
|
19
19
|
__all__ = [
|
20
20
|
'LogAnalyticsEntityMetadata',
|
21
21
|
'LogAnalyticsEntityMetadataItem',
|
22
|
+
'LogAnalyticsEntityTypeProperty',
|
22
23
|
'LogAnalyticsImportCustomContentChangeList',
|
23
24
|
'LogAnalyticsObjectCollectionRuleOverride',
|
24
25
|
'LogAnalyticsPreferencesManagementItem',
|
@@ -50,6 +51,11 @@ __all__ = [
|
|
50
51
|
'GetLogAnalyticsEntityTopologyItemLinkItemResult',
|
51
52
|
'GetLogAnalyticsEntityTopologyItemNodeResult',
|
52
53
|
'GetLogAnalyticsEntityTopologyItemNodeItemResult',
|
54
|
+
'GetLogAnalyticsEntityTypePropertyResult',
|
55
|
+
'GetLogAnalyticsEntityTypesFilterResult',
|
56
|
+
'GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionResult',
|
57
|
+
'GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemResult',
|
58
|
+
'GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemPropertyResult',
|
53
59
|
'GetLogAnalyticsLogGroupsFilterResult',
|
54
60
|
'GetLogAnalyticsLogGroupsLogAnalyticsLogGroupSummaryCollectionResult',
|
55
61
|
'GetLogAnalyticsLogGroupsLogAnalyticsLogGroupSummaryCollectionItemResult',
|
@@ -182,6 +188,44 @@ class LogAnalyticsEntityMetadataItem(dict):
|
|
182
188
|
return pulumi.get(self, "value")
|
183
189
|
|
184
190
|
|
191
|
+
@pulumi.output_type
|
192
|
+
class LogAnalyticsEntityTypeProperty(dict):
|
193
|
+
def __init__(__self__, *,
|
194
|
+
name: builtins.str,
|
195
|
+
description: Optional[builtins.str] = None):
|
196
|
+
"""
|
197
|
+
:param builtins.str name: Log analytics entity type property name.
|
198
|
+
|
199
|
+
|
200
|
+
** IMPORTANT **
|
201
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
202
|
+
:param builtins.str description: Description for the log analytics entity type property.
|
203
|
+
"""
|
204
|
+
pulumi.set(__self__, "name", name)
|
205
|
+
if description is not None:
|
206
|
+
pulumi.set(__self__, "description", description)
|
207
|
+
|
208
|
+
@property
|
209
|
+
@pulumi.getter
|
210
|
+
def name(self) -> builtins.str:
|
211
|
+
"""
|
212
|
+
Log analytics entity type property name.
|
213
|
+
|
214
|
+
|
215
|
+
** IMPORTANT **
|
216
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
217
|
+
"""
|
218
|
+
return pulumi.get(self, "name")
|
219
|
+
|
220
|
+
@property
|
221
|
+
@pulumi.getter
|
222
|
+
def description(self) -> Optional[builtins.str]:
|
223
|
+
"""
|
224
|
+
Description for the log analytics entity type property.
|
225
|
+
"""
|
226
|
+
return pulumi.get(self, "description")
|
227
|
+
|
228
|
+
|
185
229
|
@pulumi.output_type
|
186
230
|
class LogAnalyticsImportCustomContentChangeList(dict):
|
187
231
|
@staticmethod
|
@@ -2298,6 +2342,220 @@ class GetLogAnalyticsEntityTopologyItemNodeItemResult(dict):
|
|
2298
2342
|
return pulumi.get(self, "timezone_region")
|
2299
2343
|
|
2300
2344
|
|
2345
|
+
@pulumi.output_type
|
2346
|
+
class GetLogAnalyticsEntityTypePropertyResult(dict):
|
2347
|
+
def __init__(__self__, *,
|
2348
|
+
description: builtins.str,
|
2349
|
+
name: builtins.str):
|
2350
|
+
"""
|
2351
|
+
:param builtins.str description: Description for the log analytics entity type property.
|
2352
|
+
:param builtins.str name: Log analytics entity type property name.
|
2353
|
+
"""
|
2354
|
+
pulumi.set(__self__, "description", description)
|
2355
|
+
pulumi.set(__self__, "name", name)
|
2356
|
+
|
2357
|
+
@property
|
2358
|
+
@pulumi.getter
|
2359
|
+
def description(self) -> builtins.str:
|
2360
|
+
"""
|
2361
|
+
Description for the log analytics entity type property.
|
2362
|
+
"""
|
2363
|
+
return pulumi.get(self, "description")
|
2364
|
+
|
2365
|
+
@property
|
2366
|
+
@pulumi.getter
|
2367
|
+
def name(self) -> builtins.str:
|
2368
|
+
"""
|
2369
|
+
Log analytics entity type property name.
|
2370
|
+
"""
|
2371
|
+
return pulumi.get(self, "name")
|
2372
|
+
|
2373
|
+
|
2374
|
+
@pulumi.output_type
|
2375
|
+
class GetLogAnalyticsEntityTypesFilterResult(dict):
|
2376
|
+
def __init__(__self__, *,
|
2377
|
+
name: builtins.str,
|
2378
|
+
values: Sequence[builtins.str],
|
2379
|
+
regex: Optional[builtins.bool] = None):
|
2380
|
+
"""
|
2381
|
+
:param builtins.str name: A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2382
|
+
"""
|
2383
|
+
pulumi.set(__self__, "name", name)
|
2384
|
+
pulumi.set(__self__, "values", values)
|
2385
|
+
if regex is not None:
|
2386
|
+
pulumi.set(__self__, "regex", regex)
|
2387
|
+
|
2388
|
+
@property
|
2389
|
+
@pulumi.getter
|
2390
|
+
def name(self) -> builtins.str:
|
2391
|
+
"""
|
2392
|
+
A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2393
|
+
"""
|
2394
|
+
return pulumi.get(self, "name")
|
2395
|
+
|
2396
|
+
@property
|
2397
|
+
@pulumi.getter
|
2398
|
+
def values(self) -> Sequence[builtins.str]:
|
2399
|
+
return pulumi.get(self, "values")
|
2400
|
+
|
2401
|
+
@property
|
2402
|
+
@pulumi.getter
|
2403
|
+
def regex(self) -> Optional[builtins.bool]:
|
2404
|
+
return pulumi.get(self, "regex")
|
2405
|
+
|
2406
|
+
|
2407
|
+
@pulumi.output_type
|
2408
|
+
class GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionResult(dict):
|
2409
|
+
def __init__(__self__, *,
|
2410
|
+
items: Sequence['outputs.GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemResult']):
|
2411
|
+
"""
|
2412
|
+
:param Sequence['GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemArgs'] items: Array of log analytics entity type summary.
|
2413
|
+
"""
|
2414
|
+
pulumi.set(__self__, "items", items)
|
2415
|
+
|
2416
|
+
@property
|
2417
|
+
@pulumi.getter
|
2418
|
+
def items(self) -> Sequence['outputs.GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemResult']:
|
2419
|
+
"""
|
2420
|
+
Array of log analytics entity type summary.
|
2421
|
+
"""
|
2422
|
+
return pulumi.get(self, "items")
|
2423
|
+
|
2424
|
+
|
2425
|
+
@pulumi.output_type
|
2426
|
+
class GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemResult(dict):
|
2427
|
+
def __init__(__self__, *,
|
2428
|
+
category: builtins.str,
|
2429
|
+
cloud_type: builtins.str,
|
2430
|
+
internal_name: builtins.str,
|
2431
|
+
management_agent_eligibility_status: builtins.str,
|
2432
|
+
name: builtins.str,
|
2433
|
+
namespace: builtins.str,
|
2434
|
+
properties: Sequence['outputs.GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemPropertyResult'],
|
2435
|
+
state: builtins.str,
|
2436
|
+
time_created: builtins.str,
|
2437
|
+
time_updated: builtins.str):
|
2438
|
+
"""
|
2439
|
+
:param builtins.str category: Log analytics entity type category. Category will be used for grouping and filtering.
|
2440
|
+
:param builtins.str cloud_type: A filter to return CLOUD or NON_CLOUD entity types.
|
2441
|
+
:param builtins.str internal_name: Internal name for the log analytics entity type.
|
2442
|
+
:param builtins.str name: A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2443
|
+
:param builtins.str namespace: The Logging Analytics namespace used for the request.
|
2444
|
+
:param builtins.str state: A filter to return only those log analytics entity types with the specified lifecycle state. The state value is case-insensitive.
|
2445
|
+
:param builtins.str time_created: Time the log analytics entity type was created. An RFC3339 formatted datetime string.
|
2446
|
+
:param builtins.str time_updated: Time the log analytics entity type was updated. An RFC3339 formatted datetime string.
|
2447
|
+
"""
|
2448
|
+
pulumi.set(__self__, "category", category)
|
2449
|
+
pulumi.set(__self__, "cloud_type", cloud_type)
|
2450
|
+
pulumi.set(__self__, "internal_name", internal_name)
|
2451
|
+
pulumi.set(__self__, "management_agent_eligibility_status", management_agent_eligibility_status)
|
2452
|
+
pulumi.set(__self__, "name", name)
|
2453
|
+
pulumi.set(__self__, "namespace", namespace)
|
2454
|
+
pulumi.set(__self__, "properties", properties)
|
2455
|
+
pulumi.set(__self__, "state", state)
|
2456
|
+
pulumi.set(__self__, "time_created", time_created)
|
2457
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
2458
|
+
|
2459
|
+
@property
|
2460
|
+
@pulumi.getter
|
2461
|
+
def category(self) -> builtins.str:
|
2462
|
+
"""
|
2463
|
+
Log analytics entity type category. Category will be used for grouping and filtering.
|
2464
|
+
"""
|
2465
|
+
return pulumi.get(self, "category")
|
2466
|
+
|
2467
|
+
@property
|
2468
|
+
@pulumi.getter(name="cloudType")
|
2469
|
+
def cloud_type(self) -> builtins.str:
|
2470
|
+
"""
|
2471
|
+
A filter to return CLOUD or NON_CLOUD entity types.
|
2472
|
+
"""
|
2473
|
+
return pulumi.get(self, "cloud_type")
|
2474
|
+
|
2475
|
+
@property
|
2476
|
+
@pulumi.getter(name="internalName")
|
2477
|
+
def internal_name(self) -> builtins.str:
|
2478
|
+
"""
|
2479
|
+
Internal name for the log analytics entity type.
|
2480
|
+
"""
|
2481
|
+
return pulumi.get(self, "internal_name")
|
2482
|
+
|
2483
|
+
@property
|
2484
|
+
@pulumi.getter(name="managementAgentEligibilityStatus")
|
2485
|
+
def management_agent_eligibility_status(self) -> builtins.str:
|
2486
|
+
return pulumi.get(self, "management_agent_eligibility_status")
|
2487
|
+
|
2488
|
+
@property
|
2489
|
+
@pulumi.getter
|
2490
|
+
def name(self) -> builtins.str:
|
2491
|
+
"""
|
2492
|
+
A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2493
|
+
"""
|
2494
|
+
return pulumi.get(self, "name")
|
2495
|
+
|
2496
|
+
@property
|
2497
|
+
@pulumi.getter
|
2498
|
+
def namespace(self) -> builtins.str:
|
2499
|
+
"""
|
2500
|
+
The Logging Analytics namespace used for the request.
|
2501
|
+
"""
|
2502
|
+
return pulumi.get(self, "namespace")
|
2503
|
+
|
2504
|
+
@property
|
2505
|
+
@pulumi.getter
|
2506
|
+
def properties(self) -> Sequence['outputs.GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemPropertyResult']:
|
2507
|
+
return pulumi.get(self, "properties")
|
2508
|
+
|
2509
|
+
@property
|
2510
|
+
@pulumi.getter
|
2511
|
+
def state(self) -> builtins.str:
|
2512
|
+
"""
|
2513
|
+
A filter to return only those log analytics entity types with the specified lifecycle state. The state value is case-insensitive.
|
2514
|
+
"""
|
2515
|
+
return pulumi.get(self, "state")
|
2516
|
+
|
2517
|
+
@property
|
2518
|
+
@pulumi.getter(name="timeCreated")
|
2519
|
+
def time_created(self) -> builtins.str:
|
2520
|
+
"""
|
2521
|
+
Time the log analytics entity type was created. An RFC3339 formatted datetime string.
|
2522
|
+
"""
|
2523
|
+
return pulumi.get(self, "time_created")
|
2524
|
+
|
2525
|
+
@property
|
2526
|
+
@pulumi.getter(name="timeUpdated")
|
2527
|
+
def time_updated(self) -> builtins.str:
|
2528
|
+
"""
|
2529
|
+
Time the log analytics entity type was updated. An RFC3339 formatted datetime string.
|
2530
|
+
"""
|
2531
|
+
return pulumi.get(self, "time_updated")
|
2532
|
+
|
2533
|
+
|
2534
|
+
@pulumi.output_type
|
2535
|
+
class GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollectionItemPropertyResult(dict):
|
2536
|
+
def __init__(__self__, *,
|
2537
|
+
description: builtins.str,
|
2538
|
+
name: builtins.str):
|
2539
|
+
"""
|
2540
|
+
:param builtins.str name: A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2541
|
+
"""
|
2542
|
+
pulumi.set(__self__, "description", description)
|
2543
|
+
pulumi.set(__self__, "name", name)
|
2544
|
+
|
2545
|
+
@property
|
2546
|
+
@pulumi.getter
|
2547
|
+
def description(self) -> builtins.str:
|
2548
|
+
return pulumi.get(self, "description")
|
2549
|
+
|
2550
|
+
@property
|
2551
|
+
@pulumi.getter
|
2552
|
+
def name(self) -> builtins.str:
|
2553
|
+
"""
|
2554
|
+
A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2555
|
+
"""
|
2556
|
+
return pulumi.get(self, "name")
|
2557
|
+
|
2558
|
+
|
2301
2559
|
@pulumi.output_type
|
2302
2560
|
class GetLogAnalyticsLogGroupsFilterResult(dict):
|
2303
2561
|
def __init__(__self__, *,
|