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,508 @@
|
|
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__ = ['LogAnalyticsEntityTypeArgs', 'LogAnalyticsEntityType']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class LogAnalyticsEntityTypeArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
namespace: pulumi.Input[builtins.str],
|
26
|
+
category: Optional[pulumi.Input[builtins.str]] = None,
|
27
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
28
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityTypePropertyArgs']]]] = None):
|
29
|
+
"""
|
30
|
+
The set of arguments for constructing a LogAnalyticsEntityType resource.
|
31
|
+
:param pulumi.Input[builtins.str] namespace: The Logging Analytics namespace used for the request.
|
32
|
+
:param pulumi.Input[builtins.str] category: Log analytics entity type category. Category will be used for grouping and filtering.
|
33
|
+
:param pulumi.Input[builtins.str] name: Log analytics entity type name.
|
34
|
+
:param pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityTypePropertyArgs']]] properties: Log analytics entity type property definition.
|
35
|
+
"""
|
36
|
+
pulumi.set(__self__, "namespace", namespace)
|
37
|
+
if category is not None:
|
38
|
+
pulumi.set(__self__, "category", category)
|
39
|
+
if name is not None:
|
40
|
+
pulumi.set(__self__, "name", name)
|
41
|
+
if properties is not None:
|
42
|
+
pulumi.set(__self__, "properties", properties)
|
43
|
+
|
44
|
+
@property
|
45
|
+
@pulumi.getter
|
46
|
+
def namespace(self) -> pulumi.Input[builtins.str]:
|
47
|
+
"""
|
48
|
+
The Logging Analytics namespace used for the request.
|
49
|
+
"""
|
50
|
+
return pulumi.get(self, "namespace")
|
51
|
+
|
52
|
+
@namespace.setter
|
53
|
+
def namespace(self, value: pulumi.Input[builtins.str]):
|
54
|
+
pulumi.set(self, "namespace", value)
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter
|
58
|
+
def category(self) -> Optional[pulumi.Input[builtins.str]]:
|
59
|
+
"""
|
60
|
+
Log analytics entity type category. Category will be used for grouping and filtering.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "category")
|
63
|
+
|
64
|
+
@category.setter
|
65
|
+
def category(self, value: Optional[pulumi.Input[builtins.str]]):
|
66
|
+
pulumi.set(self, "category", value)
|
67
|
+
|
68
|
+
@property
|
69
|
+
@pulumi.getter
|
70
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
71
|
+
"""
|
72
|
+
Log analytics entity type name.
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "name")
|
75
|
+
|
76
|
+
@name.setter
|
77
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
78
|
+
pulumi.set(self, "name", value)
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter
|
82
|
+
def properties(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityTypePropertyArgs']]]]:
|
83
|
+
"""
|
84
|
+
Log analytics entity type property definition.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "properties")
|
87
|
+
|
88
|
+
@properties.setter
|
89
|
+
def properties(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityTypePropertyArgs']]]]):
|
90
|
+
pulumi.set(self, "properties", value)
|
91
|
+
|
92
|
+
|
93
|
+
@pulumi.input_type
|
94
|
+
class _LogAnalyticsEntityTypeState:
|
95
|
+
def __init__(__self__, *,
|
96
|
+
category: Optional[pulumi.Input[builtins.str]] = None,
|
97
|
+
cloud_type: Optional[pulumi.Input[builtins.str]] = None,
|
98
|
+
internal_name: Optional[pulumi.Input[builtins.str]] = None,
|
99
|
+
management_agent_eligibility_status: Optional[pulumi.Input[builtins.str]] = None,
|
100
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
101
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
102
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityTypePropertyArgs']]]] = None,
|
103
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
104
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
105
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None):
|
106
|
+
"""
|
107
|
+
Input properties used for looking up and filtering LogAnalyticsEntityType resources.
|
108
|
+
:param pulumi.Input[builtins.str] category: Log analytics entity type category. Category will be used for grouping and filtering.
|
109
|
+
:param pulumi.Input[builtins.str] cloud_type: Log analytics entity type group. This can be CLOUD (OCI) or NON_CLOUD otherwise.
|
110
|
+
:param pulumi.Input[builtins.str] internal_name: Internal name for the log analytics entity type.
|
111
|
+
:param pulumi.Input[builtins.str] name: Log analytics entity type name.
|
112
|
+
:param pulumi.Input[builtins.str] namespace: The Logging Analytics namespace used for the request.
|
113
|
+
:param pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityTypePropertyArgs']]] properties: Log analytics entity type property definition.
|
114
|
+
:param pulumi.Input[builtins.str] state: The current lifecycle state of the log analytics entity type.
|
115
|
+
:param pulumi.Input[builtins.str] time_created: Time the log analytics entity type was created. An RFC3339 formatted datetime string.
|
116
|
+
:param pulumi.Input[builtins.str] time_updated: Time the log analytics entity type was updated. An RFC3339 formatted datetime string.
|
117
|
+
"""
|
118
|
+
if category is not None:
|
119
|
+
pulumi.set(__self__, "category", category)
|
120
|
+
if cloud_type is not None:
|
121
|
+
pulumi.set(__self__, "cloud_type", cloud_type)
|
122
|
+
if internal_name is not None:
|
123
|
+
pulumi.set(__self__, "internal_name", internal_name)
|
124
|
+
if management_agent_eligibility_status is not None:
|
125
|
+
pulumi.set(__self__, "management_agent_eligibility_status", management_agent_eligibility_status)
|
126
|
+
if name is not None:
|
127
|
+
pulumi.set(__self__, "name", name)
|
128
|
+
if namespace is not None:
|
129
|
+
pulumi.set(__self__, "namespace", namespace)
|
130
|
+
if properties is not None:
|
131
|
+
pulumi.set(__self__, "properties", properties)
|
132
|
+
if state is not None:
|
133
|
+
pulumi.set(__self__, "state", state)
|
134
|
+
if time_created is not None:
|
135
|
+
pulumi.set(__self__, "time_created", time_created)
|
136
|
+
if time_updated is not None:
|
137
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter
|
141
|
+
def category(self) -> Optional[pulumi.Input[builtins.str]]:
|
142
|
+
"""
|
143
|
+
Log analytics entity type category. Category will be used for grouping and filtering.
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "category")
|
146
|
+
|
147
|
+
@category.setter
|
148
|
+
def category(self, value: Optional[pulumi.Input[builtins.str]]):
|
149
|
+
pulumi.set(self, "category", value)
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="cloudType")
|
153
|
+
def cloud_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
154
|
+
"""
|
155
|
+
Log analytics entity type group. This can be CLOUD (OCI) or NON_CLOUD otherwise.
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "cloud_type")
|
158
|
+
|
159
|
+
@cloud_type.setter
|
160
|
+
def cloud_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
161
|
+
pulumi.set(self, "cloud_type", value)
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="internalName")
|
165
|
+
def internal_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
166
|
+
"""
|
167
|
+
Internal name for the log analytics entity type.
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "internal_name")
|
170
|
+
|
171
|
+
@internal_name.setter
|
172
|
+
def internal_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
173
|
+
pulumi.set(self, "internal_name", value)
|
174
|
+
|
175
|
+
@property
|
176
|
+
@pulumi.getter(name="managementAgentEligibilityStatus")
|
177
|
+
def management_agent_eligibility_status(self) -> Optional[pulumi.Input[builtins.str]]:
|
178
|
+
return pulumi.get(self, "management_agent_eligibility_status")
|
179
|
+
|
180
|
+
@management_agent_eligibility_status.setter
|
181
|
+
def management_agent_eligibility_status(self, value: Optional[pulumi.Input[builtins.str]]):
|
182
|
+
pulumi.set(self, "management_agent_eligibility_status", value)
|
183
|
+
|
184
|
+
@property
|
185
|
+
@pulumi.getter
|
186
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
187
|
+
"""
|
188
|
+
Log analytics entity type name.
|
189
|
+
"""
|
190
|
+
return pulumi.get(self, "name")
|
191
|
+
|
192
|
+
@name.setter
|
193
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
194
|
+
pulumi.set(self, "name", value)
|
195
|
+
|
196
|
+
@property
|
197
|
+
@pulumi.getter
|
198
|
+
def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
|
199
|
+
"""
|
200
|
+
The Logging Analytics namespace used for the request.
|
201
|
+
"""
|
202
|
+
return pulumi.get(self, "namespace")
|
203
|
+
|
204
|
+
@namespace.setter
|
205
|
+
def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
|
206
|
+
pulumi.set(self, "namespace", value)
|
207
|
+
|
208
|
+
@property
|
209
|
+
@pulumi.getter
|
210
|
+
def properties(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityTypePropertyArgs']]]]:
|
211
|
+
"""
|
212
|
+
Log analytics entity type property definition.
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "properties")
|
215
|
+
|
216
|
+
@properties.setter
|
217
|
+
def properties(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LogAnalyticsEntityTypePropertyArgs']]]]):
|
218
|
+
pulumi.set(self, "properties", value)
|
219
|
+
|
220
|
+
@property
|
221
|
+
@pulumi.getter
|
222
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
223
|
+
"""
|
224
|
+
The current lifecycle state of the log analytics entity type.
|
225
|
+
"""
|
226
|
+
return pulumi.get(self, "state")
|
227
|
+
|
228
|
+
@state.setter
|
229
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
230
|
+
pulumi.set(self, "state", value)
|
231
|
+
|
232
|
+
@property
|
233
|
+
@pulumi.getter(name="timeCreated")
|
234
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
235
|
+
"""
|
236
|
+
Time the log analytics entity type was created. An RFC3339 formatted datetime string.
|
237
|
+
"""
|
238
|
+
return pulumi.get(self, "time_created")
|
239
|
+
|
240
|
+
@time_created.setter
|
241
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
242
|
+
pulumi.set(self, "time_created", value)
|
243
|
+
|
244
|
+
@property
|
245
|
+
@pulumi.getter(name="timeUpdated")
|
246
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
247
|
+
"""
|
248
|
+
Time the log analytics entity type was updated. An RFC3339 formatted datetime string.
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "time_updated")
|
251
|
+
|
252
|
+
@time_updated.setter
|
253
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
254
|
+
pulumi.set(self, "time_updated", value)
|
255
|
+
|
256
|
+
|
257
|
+
@pulumi.type_token("oci:LogAnalytics/logAnalyticsEntityType:LogAnalyticsEntityType")
|
258
|
+
class LogAnalyticsEntityType(pulumi.CustomResource):
|
259
|
+
@overload
|
260
|
+
def __init__(__self__,
|
261
|
+
resource_name: str,
|
262
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
263
|
+
category: Optional[pulumi.Input[builtins.str]] = None,
|
264
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
265
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
266
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LogAnalyticsEntityTypePropertyArgs', 'LogAnalyticsEntityTypePropertyArgsDict']]]]] = None,
|
267
|
+
__props__=None):
|
268
|
+
"""
|
269
|
+
This resource provides the Log Analytics Entity Type resource in Oracle Cloud Infrastructure Log Analytics service.
|
270
|
+
|
271
|
+
Add custom log analytics entity type.
|
272
|
+
|
273
|
+
## Example Usage
|
274
|
+
|
275
|
+
```python
|
276
|
+
import pulumi
|
277
|
+
import pulumi_oci as oci
|
278
|
+
|
279
|
+
test_log_analytics_entity_type = oci.log_analytics.LogAnalyticsEntityType("test_log_analytics_entity_type",
|
280
|
+
name=log_analytics_entity_type_name,
|
281
|
+
namespace=log_analytics_entity_type_namespace,
|
282
|
+
category=log_analytics_entity_type_category,
|
283
|
+
properties=[{
|
284
|
+
"name": log_analytics_entity_type_properties_name,
|
285
|
+
"description": log_analytics_entity_type_properties_description,
|
286
|
+
}])
|
287
|
+
```
|
288
|
+
|
289
|
+
## Import
|
290
|
+
|
291
|
+
LogAnalyticsEntityTypes can be imported using the `id`, e.g.
|
292
|
+
|
293
|
+
```sh
|
294
|
+
$ pulumi import oci:LogAnalytics/logAnalyticsEntityType:LogAnalyticsEntityType test_log_analytics_entity_type "namespaces/{namespaceName}/logAnalyticsEntityTypes"
|
295
|
+
```
|
296
|
+
|
297
|
+
:param str resource_name: The name of the resource.
|
298
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
299
|
+
:param pulumi.Input[builtins.str] category: Log analytics entity type category. Category will be used for grouping and filtering.
|
300
|
+
:param pulumi.Input[builtins.str] name: Log analytics entity type name.
|
301
|
+
:param pulumi.Input[builtins.str] namespace: The Logging Analytics namespace used for the request.
|
302
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['LogAnalyticsEntityTypePropertyArgs', 'LogAnalyticsEntityTypePropertyArgsDict']]]] properties: Log analytics entity type property definition.
|
303
|
+
"""
|
304
|
+
...
|
305
|
+
@overload
|
306
|
+
def __init__(__self__,
|
307
|
+
resource_name: str,
|
308
|
+
args: LogAnalyticsEntityTypeArgs,
|
309
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
310
|
+
"""
|
311
|
+
This resource provides the Log Analytics Entity Type resource in Oracle Cloud Infrastructure Log Analytics service.
|
312
|
+
|
313
|
+
Add custom log analytics entity type.
|
314
|
+
|
315
|
+
## Example Usage
|
316
|
+
|
317
|
+
```python
|
318
|
+
import pulumi
|
319
|
+
import pulumi_oci as oci
|
320
|
+
|
321
|
+
test_log_analytics_entity_type = oci.log_analytics.LogAnalyticsEntityType("test_log_analytics_entity_type",
|
322
|
+
name=log_analytics_entity_type_name,
|
323
|
+
namespace=log_analytics_entity_type_namespace,
|
324
|
+
category=log_analytics_entity_type_category,
|
325
|
+
properties=[{
|
326
|
+
"name": log_analytics_entity_type_properties_name,
|
327
|
+
"description": log_analytics_entity_type_properties_description,
|
328
|
+
}])
|
329
|
+
```
|
330
|
+
|
331
|
+
## Import
|
332
|
+
|
333
|
+
LogAnalyticsEntityTypes can be imported using the `id`, e.g.
|
334
|
+
|
335
|
+
```sh
|
336
|
+
$ pulumi import oci:LogAnalytics/logAnalyticsEntityType:LogAnalyticsEntityType test_log_analytics_entity_type "namespaces/{namespaceName}/logAnalyticsEntityTypes"
|
337
|
+
```
|
338
|
+
|
339
|
+
:param str resource_name: The name of the resource.
|
340
|
+
:param LogAnalyticsEntityTypeArgs args: The arguments to use to populate this resource's properties.
|
341
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
342
|
+
"""
|
343
|
+
...
|
344
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
345
|
+
resource_args, opts = _utilities.get_resource_args_opts(LogAnalyticsEntityTypeArgs, pulumi.ResourceOptions, *args, **kwargs)
|
346
|
+
if resource_args is not None:
|
347
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
348
|
+
else:
|
349
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
350
|
+
|
351
|
+
def _internal_init(__self__,
|
352
|
+
resource_name: str,
|
353
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
354
|
+
category: Optional[pulumi.Input[builtins.str]] = None,
|
355
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
356
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
357
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LogAnalyticsEntityTypePropertyArgs', 'LogAnalyticsEntityTypePropertyArgsDict']]]]] = None,
|
358
|
+
__props__=None):
|
359
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
360
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
361
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
362
|
+
if opts.id is None:
|
363
|
+
if __props__ is not None:
|
364
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
365
|
+
__props__ = LogAnalyticsEntityTypeArgs.__new__(LogAnalyticsEntityTypeArgs)
|
366
|
+
|
367
|
+
__props__.__dict__["category"] = category
|
368
|
+
__props__.__dict__["name"] = name
|
369
|
+
if namespace is None and not opts.urn:
|
370
|
+
raise TypeError("Missing required property 'namespace'")
|
371
|
+
__props__.__dict__["namespace"] = namespace
|
372
|
+
__props__.__dict__["properties"] = properties
|
373
|
+
__props__.__dict__["cloud_type"] = None
|
374
|
+
__props__.__dict__["internal_name"] = None
|
375
|
+
__props__.__dict__["management_agent_eligibility_status"] = None
|
376
|
+
__props__.__dict__["state"] = None
|
377
|
+
__props__.__dict__["time_created"] = None
|
378
|
+
__props__.__dict__["time_updated"] = None
|
379
|
+
super(LogAnalyticsEntityType, __self__).__init__(
|
380
|
+
'oci:LogAnalytics/logAnalyticsEntityType:LogAnalyticsEntityType',
|
381
|
+
resource_name,
|
382
|
+
__props__,
|
383
|
+
opts)
|
384
|
+
|
385
|
+
@staticmethod
|
386
|
+
def get(resource_name: str,
|
387
|
+
id: pulumi.Input[str],
|
388
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
389
|
+
category: Optional[pulumi.Input[builtins.str]] = None,
|
390
|
+
cloud_type: Optional[pulumi.Input[builtins.str]] = None,
|
391
|
+
internal_name: Optional[pulumi.Input[builtins.str]] = None,
|
392
|
+
management_agent_eligibility_status: Optional[pulumi.Input[builtins.str]] = None,
|
393
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
394
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
395
|
+
properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LogAnalyticsEntityTypePropertyArgs', 'LogAnalyticsEntityTypePropertyArgsDict']]]]] = None,
|
396
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
397
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
398
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'LogAnalyticsEntityType':
|
399
|
+
"""
|
400
|
+
Get an existing LogAnalyticsEntityType resource's state with the given name, id, and optional extra
|
401
|
+
properties used to qualify the lookup.
|
402
|
+
|
403
|
+
:param str resource_name: The unique name of the resulting resource.
|
404
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
405
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
406
|
+
:param pulumi.Input[builtins.str] category: Log analytics entity type category. Category will be used for grouping and filtering.
|
407
|
+
:param pulumi.Input[builtins.str] cloud_type: Log analytics entity type group. This can be CLOUD (OCI) or NON_CLOUD otherwise.
|
408
|
+
:param pulumi.Input[builtins.str] internal_name: Internal name for the log analytics entity type.
|
409
|
+
:param pulumi.Input[builtins.str] name: Log analytics entity type name.
|
410
|
+
:param pulumi.Input[builtins.str] namespace: The Logging Analytics namespace used for the request.
|
411
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['LogAnalyticsEntityTypePropertyArgs', 'LogAnalyticsEntityTypePropertyArgsDict']]]] properties: Log analytics entity type property definition.
|
412
|
+
:param pulumi.Input[builtins.str] state: The current lifecycle state of the log analytics entity type.
|
413
|
+
:param pulumi.Input[builtins.str] time_created: Time the log analytics entity type was created. An RFC3339 formatted datetime string.
|
414
|
+
:param pulumi.Input[builtins.str] time_updated: Time the log analytics entity type was updated. An RFC3339 formatted datetime string.
|
415
|
+
"""
|
416
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
417
|
+
|
418
|
+
__props__ = _LogAnalyticsEntityTypeState.__new__(_LogAnalyticsEntityTypeState)
|
419
|
+
|
420
|
+
__props__.__dict__["category"] = category
|
421
|
+
__props__.__dict__["cloud_type"] = cloud_type
|
422
|
+
__props__.__dict__["internal_name"] = internal_name
|
423
|
+
__props__.__dict__["management_agent_eligibility_status"] = management_agent_eligibility_status
|
424
|
+
__props__.__dict__["name"] = name
|
425
|
+
__props__.__dict__["namespace"] = namespace
|
426
|
+
__props__.__dict__["properties"] = properties
|
427
|
+
__props__.__dict__["state"] = state
|
428
|
+
__props__.__dict__["time_created"] = time_created
|
429
|
+
__props__.__dict__["time_updated"] = time_updated
|
430
|
+
return LogAnalyticsEntityType(resource_name, opts=opts, __props__=__props__)
|
431
|
+
|
432
|
+
@property
|
433
|
+
@pulumi.getter
|
434
|
+
def category(self) -> pulumi.Output[builtins.str]:
|
435
|
+
"""
|
436
|
+
Log analytics entity type category. Category will be used for grouping and filtering.
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "category")
|
439
|
+
|
440
|
+
@property
|
441
|
+
@pulumi.getter(name="cloudType")
|
442
|
+
def cloud_type(self) -> pulumi.Output[builtins.str]:
|
443
|
+
"""
|
444
|
+
Log analytics entity type group. This can be CLOUD (OCI) or NON_CLOUD otherwise.
|
445
|
+
"""
|
446
|
+
return pulumi.get(self, "cloud_type")
|
447
|
+
|
448
|
+
@property
|
449
|
+
@pulumi.getter(name="internalName")
|
450
|
+
def internal_name(self) -> pulumi.Output[builtins.str]:
|
451
|
+
"""
|
452
|
+
Internal name for the log analytics entity type.
|
453
|
+
"""
|
454
|
+
return pulumi.get(self, "internal_name")
|
455
|
+
|
456
|
+
@property
|
457
|
+
@pulumi.getter(name="managementAgentEligibilityStatus")
|
458
|
+
def management_agent_eligibility_status(self) -> pulumi.Output[builtins.str]:
|
459
|
+
return pulumi.get(self, "management_agent_eligibility_status")
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter
|
463
|
+
def name(self) -> pulumi.Output[builtins.str]:
|
464
|
+
"""
|
465
|
+
Log analytics entity type name.
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "name")
|
468
|
+
|
469
|
+
@property
|
470
|
+
@pulumi.getter
|
471
|
+
def namespace(self) -> pulumi.Output[builtins.str]:
|
472
|
+
"""
|
473
|
+
The Logging Analytics namespace used for the request.
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "namespace")
|
476
|
+
|
477
|
+
@property
|
478
|
+
@pulumi.getter
|
479
|
+
def properties(self) -> pulumi.Output[Sequence['outputs.LogAnalyticsEntityTypeProperty']]:
|
480
|
+
"""
|
481
|
+
Log analytics entity type property definition.
|
482
|
+
"""
|
483
|
+
return pulumi.get(self, "properties")
|
484
|
+
|
485
|
+
@property
|
486
|
+
@pulumi.getter
|
487
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
488
|
+
"""
|
489
|
+
The current lifecycle state of the log analytics entity type.
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "state")
|
492
|
+
|
493
|
+
@property
|
494
|
+
@pulumi.getter(name="timeCreated")
|
495
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
496
|
+
"""
|
497
|
+
Time the log analytics entity type was created. An RFC3339 formatted datetime string.
|
498
|
+
"""
|
499
|
+
return pulumi.get(self, "time_created")
|
500
|
+
|
501
|
+
@property
|
502
|
+
@pulumi.getter(name="timeUpdated")
|
503
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
504
|
+
"""
|
505
|
+
Time the log analytics entity type was updated. An RFC3339 formatted datetime string.
|
506
|
+
"""
|
507
|
+
return pulumi.get(self, "time_updated")
|
508
|
+
|