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
@@ -131,7 +131,11 @@ class BackendSetBackend(dict):
|
|
131
131
|
|
132
132
|
Example: `false`
|
133
133
|
:param builtins.bool drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
134
|
-
:param builtins.int max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
134
|
+
:param builtins.int max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
135
|
+
|
136
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
137
|
+
|
138
|
+
Example: `300`
|
135
139
|
:param builtins.str name: A friendly name for the backend set. It must be unique and it cannot be changed.
|
136
140
|
|
137
141
|
Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
|
@@ -195,7 +199,11 @@ class BackendSetBackend(dict):
|
|
195
199
|
@pulumi.getter(name="maxConnections")
|
196
200
|
def max_connections(self) -> Optional[builtins.int]:
|
197
201
|
"""
|
198
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
202
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
203
|
+
|
204
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
205
|
+
|
206
|
+
Example: `300`
|
199
207
|
"""
|
200
208
|
return pulumi.get(self, "max_connections")
|
201
209
|
|
@@ -1193,7 +1201,9 @@ class LoadBalancerReservedIp(dict):
|
|
1193
1201
|
|
1194
1202
|
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1195
1203
|
|
1196
|
-
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1204
|
+
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1205
|
+
|
1206
|
+
IPV6 example: "ocid1.ipv6.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1197
1207
|
"""
|
1198
1208
|
if id is not None:
|
1199
1209
|
pulumi.set(__self__, "id", id)
|
@@ -1210,7 +1220,9 @@ class LoadBalancerReservedIp(dict):
|
|
1210
1220
|
|
1211
1221
|
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1212
1222
|
|
1213
|
-
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1223
|
+
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1224
|
+
|
1225
|
+
IPV6 example: "ocid1.ipv6.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1214
1226
|
"""
|
1215
1227
|
return pulumi.get(self, "id")
|
1216
1228
|
|
@@ -2191,7 +2203,7 @@ class GetBackendSetsBackendsetResult(dict):
|
|
2191
2203
|
ssl_configurations: Sequence['outputs.GetBackendSetsBackendsetSslConfigurationResult'],
|
2192
2204
|
state: builtins.str):
|
2193
2205
|
"""
|
2194
|
-
:param builtins.int backend_max_connections: The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited. Example: `300`
|
2206
|
+
:param builtins.int backend_max_connections: The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited. Example: `300`
|
2195
2207
|
:param Sequence['GetBackendSetsBackendsetHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
2196
2208
|
:param Sequence['GetBackendSetsBackendsetLbCookieSessionPersistenceConfigurationArgs'] lb_cookie_session_persistence_configurations: The configuration details for implementing load balancer cookie session persistence (LB cookie stickiness).
|
2197
2209
|
:param builtins.str load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend sets to retrieve.
|
@@ -2216,7 +2228,7 @@ class GetBackendSetsBackendsetResult(dict):
|
|
2216
2228
|
@pulumi.getter(name="backendMaxConnections")
|
2217
2229
|
def backend_max_connections(self) -> builtins.int:
|
2218
2230
|
"""
|
2219
|
-
The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited. Example: `300`
|
2231
|
+
The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited. Example: `300`
|
2220
2232
|
"""
|
2221
2233
|
return pulumi.get(self, "backend_max_connections")
|
2222
2234
|
|
@@ -2307,7 +2319,7 @@ class GetBackendSetsBackendsetBackendResult(dict):
|
|
2307
2319
|
:param builtins.bool backup: Whether the load balancer should treat this server as a backup unit. If `true`, the load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "backup" fail the health check policy.
|
2308
2320
|
:param builtins.bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
2309
2321
|
:param builtins.str ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
2310
|
-
:param builtins.int max_connections: The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
2322
|
+
:param builtins.int max_connections: The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
2311
2323
|
:param builtins.str name: A friendly name for the backend set. It must be unique and it cannot be changed.
|
2312
2324
|
:param builtins.bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
2313
2325
|
:param builtins.int port: The backend server port against which to run the health check. If the port is not specified, the load balancer uses the port information from the `Backend` object. Example: `8080`
|
@@ -2350,7 +2362,7 @@ class GetBackendSetsBackendsetBackendResult(dict):
|
|
2350
2362
|
@pulumi.getter(name="maxConnections")
|
2351
2363
|
def max_connections(self) -> builtins.int:
|
2352
2364
|
"""
|
2353
|
-
The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
2365
|
+
The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
2354
2366
|
"""
|
2355
2367
|
return pulumi.get(self, "max_connections")
|
2356
2368
|
|
@@ -2753,7 +2765,7 @@ class GetBackendsBackendResult(dict):
|
|
2753
2765
|
:param builtins.bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
2754
2766
|
:param builtins.str ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
2755
2767
|
:param builtins.str load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend set and servers.
|
2756
|
-
:param builtins.int max_connections: The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
2768
|
+
:param builtins.int max_connections: The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
2757
2769
|
:param builtins.str name: A read-only field showing the IP address and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`
|
2758
2770
|
:param builtins.bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
2759
2771
|
:param builtins.int port: The communication port for the backend server. Example: `8080`
|
@@ -2809,7 +2821,7 @@ class GetBackendsBackendResult(dict):
|
|
2809
2821
|
@pulumi.getter(name="maxConnections")
|
2810
2822
|
def max_connections(self) -> builtins.int:
|
2811
2823
|
"""
|
2812
|
-
The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
2824
|
+
The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
2813
2825
|
"""
|
2814
2826
|
return pulumi.get(self, "max_connections")
|
2815
2827
|
|
@@ -3733,6 +3745,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3733
3745
|
ip_address_details: Sequence['outputs.GetLoadBalancersLoadBalancerIpAddressDetailResult'],
|
3734
3746
|
ip_addresses: Sequence[builtins.str],
|
3735
3747
|
ip_mode: builtins.str,
|
3748
|
+
ipv6subnet_cidr: builtins.str,
|
3736
3749
|
is_delete_protection_enabled: builtins.bool,
|
3737
3750
|
is_private: builtins.bool,
|
3738
3751
|
is_request_id_enabled: builtins.bool,
|
@@ -3775,6 +3788,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3775
3788
|
pulumi.set(__self__, "ip_address_details", ip_address_details)
|
3776
3789
|
pulumi.set(__self__, "ip_addresses", ip_addresses)
|
3777
3790
|
pulumi.set(__self__, "ip_mode", ip_mode)
|
3791
|
+
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
3778
3792
|
pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
|
3779
3793
|
pulumi.set(__self__, "is_private", is_private)
|
3780
3794
|
pulumi.set(__self__, "is_request_id_enabled", is_request_id_enabled)
|
@@ -3851,6 +3865,11 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3851
3865
|
def ip_mode(self) -> builtins.str:
|
3852
3866
|
return pulumi.get(self, "ip_mode")
|
3853
3867
|
|
3868
|
+
@property
|
3869
|
+
@pulumi.getter(name="ipv6subnetCidr")
|
3870
|
+
def ipv6subnet_cidr(self) -> builtins.str:
|
3871
|
+
return pulumi.get(self, "ipv6subnet_cidr")
|
3872
|
+
|
3854
3873
|
@property
|
3855
3874
|
@pulumi.getter(name="isDeleteProtectionEnabled")
|
3856
3875
|
def is_delete_protection_enabled(self) -> builtins.bool:
|
@@ -12,6 +12,8 @@ from .get_log_analytics_entities import *
|
|
12
12
|
from .get_log_analytics_entities_summary import *
|
13
13
|
from .get_log_analytics_entity import *
|
14
14
|
from .get_log_analytics_entity_topology import *
|
15
|
+
from .get_log_analytics_entity_type import *
|
16
|
+
from .get_log_analytics_entity_types import *
|
15
17
|
from .get_log_analytics_log_group import *
|
16
18
|
from .get_log_analytics_log_groups import *
|
17
19
|
from .get_log_analytics_log_groups_summary import *
|
@@ -42,6 +44,7 @@ from .get_namespace_template import *
|
|
42
44
|
from .get_namespace_templates import *
|
43
45
|
from .get_namespaces import *
|
44
46
|
from .log_analytics_entity import *
|
47
|
+
from .log_analytics_entity_type import *
|
45
48
|
from .log_analytics_import_custom_content import *
|
46
49
|
from .log_analytics_log_group import *
|
47
50
|
from .log_analytics_object_collection_rule import *
|
@@ -20,6 +20,8 @@ __all__ = [
|
|
20
20
|
'LogAnalyticsEntityMetadataArgsDict',
|
21
21
|
'LogAnalyticsEntityMetadataItemArgs',
|
22
22
|
'LogAnalyticsEntityMetadataItemArgsDict',
|
23
|
+
'LogAnalyticsEntityTypePropertyArgs',
|
24
|
+
'LogAnalyticsEntityTypePropertyArgsDict',
|
23
25
|
'LogAnalyticsImportCustomContentChangeListArgs',
|
24
26
|
'LogAnalyticsImportCustomContentChangeListArgsDict',
|
25
27
|
'LogAnalyticsObjectCollectionRuleOverrideArgs',
|
@@ -58,6 +60,8 @@ __all__ = [
|
|
58
60
|
'GetLogAnalyticsEntitiesFilterArgsDict',
|
59
61
|
'GetLogAnalyticsEntityTopologyFilterArgs',
|
60
62
|
'GetLogAnalyticsEntityTopologyFilterArgsDict',
|
63
|
+
'GetLogAnalyticsEntityTypesFilterArgs',
|
64
|
+
'GetLogAnalyticsEntityTypesFilterArgsDict',
|
61
65
|
'GetLogAnalyticsLogGroupsFilterArgs',
|
62
66
|
'GetLogAnalyticsLogGroupsFilterArgsDict',
|
63
67
|
'GetLogAnalyticsObjectCollectionRulesFilterArgs',
|
@@ -188,6 +192,69 @@ class LogAnalyticsEntityMetadataItemArgs:
|
|
188
192
|
pulumi.set(self, "value", value)
|
189
193
|
|
190
194
|
|
195
|
+
if not MYPY:
|
196
|
+
class LogAnalyticsEntityTypePropertyArgsDict(TypedDict):
|
197
|
+
name: pulumi.Input[builtins.str]
|
198
|
+
"""
|
199
|
+
Log analytics entity type property name.
|
200
|
+
|
201
|
+
|
202
|
+
** IMPORTANT **
|
203
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
204
|
+
"""
|
205
|
+
description: NotRequired[pulumi.Input[builtins.str]]
|
206
|
+
"""
|
207
|
+
Description for the log analytics entity type property.
|
208
|
+
"""
|
209
|
+
elif False:
|
210
|
+
LogAnalyticsEntityTypePropertyArgsDict: TypeAlias = Mapping[str, Any]
|
211
|
+
|
212
|
+
@pulumi.input_type
|
213
|
+
class LogAnalyticsEntityTypePropertyArgs:
|
214
|
+
def __init__(__self__, *,
|
215
|
+
name: pulumi.Input[builtins.str],
|
216
|
+
description: Optional[pulumi.Input[builtins.str]] = None):
|
217
|
+
"""
|
218
|
+
:param pulumi.Input[builtins.str] name: Log analytics entity type property name.
|
219
|
+
|
220
|
+
|
221
|
+
** IMPORTANT **
|
222
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
223
|
+
:param pulumi.Input[builtins.str] description: Description for the log analytics entity type property.
|
224
|
+
"""
|
225
|
+
pulumi.set(__self__, "name", name)
|
226
|
+
if description is not None:
|
227
|
+
pulumi.set(__self__, "description", description)
|
228
|
+
|
229
|
+
@property
|
230
|
+
@pulumi.getter
|
231
|
+
def name(self) -> pulumi.Input[builtins.str]:
|
232
|
+
"""
|
233
|
+
Log analytics entity type property name.
|
234
|
+
|
235
|
+
|
236
|
+
** IMPORTANT **
|
237
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "name")
|
240
|
+
|
241
|
+
@name.setter
|
242
|
+
def name(self, value: pulumi.Input[builtins.str]):
|
243
|
+
pulumi.set(self, "name", value)
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter
|
247
|
+
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
248
|
+
"""
|
249
|
+
Description for the log analytics entity type property.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "description")
|
252
|
+
|
253
|
+
@description.setter
|
254
|
+
def description(self, value: Optional[pulumi.Input[builtins.str]]):
|
255
|
+
pulumi.set(self, "description", value)
|
256
|
+
|
257
|
+
|
191
258
|
if not MYPY:
|
192
259
|
class LogAnalyticsImportCustomContentChangeListArgsDict(TypedDict):
|
193
260
|
conflict_field_display_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
@@ -1931,6 +1998,62 @@ class GetLogAnalyticsEntityTopologyFilterArgs:
|
|
1931
1998
|
pulumi.set(self, "regex", value)
|
1932
1999
|
|
1933
2000
|
|
2001
|
+
if not MYPY:
|
2002
|
+
class GetLogAnalyticsEntityTypesFilterArgsDict(TypedDict):
|
2003
|
+
name: builtins.str
|
2004
|
+
"""
|
2005
|
+
A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2006
|
+
"""
|
2007
|
+
values: Sequence[builtins.str]
|
2008
|
+
regex: NotRequired[builtins.bool]
|
2009
|
+
elif False:
|
2010
|
+
GetLogAnalyticsEntityTypesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
2011
|
+
|
2012
|
+
@pulumi.input_type
|
2013
|
+
class GetLogAnalyticsEntityTypesFilterArgs:
|
2014
|
+
def __init__(__self__, *,
|
2015
|
+
name: builtins.str,
|
2016
|
+
values: Sequence[builtins.str],
|
2017
|
+
regex: Optional[builtins.bool] = None):
|
2018
|
+
"""
|
2019
|
+
: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.
|
2020
|
+
"""
|
2021
|
+
pulumi.set(__self__, "name", name)
|
2022
|
+
pulumi.set(__self__, "values", values)
|
2023
|
+
if regex is not None:
|
2024
|
+
pulumi.set(__self__, "regex", regex)
|
2025
|
+
|
2026
|
+
@property
|
2027
|
+
@pulumi.getter
|
2028
|
+
def name(self) -> builtins.str:
|
2029
|
+
"""
|
2030
|
+
A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2031
|
+
"""
|
2032
|
+
return pulumi.get(self, "name")
|
2033
|
+
|
2034
|
+
@name.setter
|
2035
|
+
def name(self, value: builtins.str):
|
2036
|
+
pulumi.set(self, "name", value)
|
2037
|
+
|
2038
|
+
@property
|
2039
|
+
@pulumi.getter
|
2040
|
+
def values(self) -> Sequence[builtins.str]:
|
2041
|
+
return pulumi.get(self, "values")
|
2042
|
+
|
2043
|
+
@values.setter
|
2044
|
+
def values(self, value: Sequence[builtins.str]):
|
2045
|
+
pulumi.set(self, "values", value)
|
2046
|
+
|
2047
|
+
@property
|
2048
|
+
@pulumi.getter
|
2049
|
+
def regex(self) -> Optional[builtins.bool]:
|
2050
|
+
return pulumi.get(self, "regex")
|
2051
|
+
|
2052
|
+
@regex.setter
|
2053
|
+
def regex(self, value: Optional[builtins.bool]):
|
2054
|
+
pulumi.set(self, "regex", value)
|
2055
|
+
|
2056
|
+
|
1934
2057
|
if not MYPY:
|
1935
2058
|
class GetLogAnalyticsLogGroupsFilterArgsDict(TypedDict):
|
1936
2059
|
name: builtins.str
|
@@ -281,6 +281,32 @@ def get_log_analytics_entities(cloud_resource_id: Optional[builtins.str] = None,
|
|
281
281
|
|
282
282
|
Return a list of log analytics entities.
|
283
283
|
|
284
|
+
## Example Usage
|
285
|
+
|
286
|
+
```python
|
287
|
+
import pulumi
|
288
|
+
import pulumi_oci as oci
|
289
|
+
|
290
|
+
test_log_analytics_entities = oci.LogAnalytics.get_log_analytics_entities(compartment_id=compartment_id,
|
291
|
+
namespace=log_analytics_entity_namespace,
|
292
|
+
cloud_resource_id=log_analytics_entity_cloud_resource_id,
|
293
|
+
defined_tag_equals=log_analytics_entity_defined_tag_equals,
|
294
|
+
defined_tag_exists=log_analytics_entity_defined_tag_exists,
|
295
|
+
entity_type_names=log_analytics_entity_entity_type_name,
|
296
|
+
freeform_tag_equals=log_analytics_entity_freeform_tag_equals,
|
297
|
+
freeform_tag_exists=log_analytics_entity_freeform_tag_exists,
|
298
|
+
hostname=log_analytics_entity_hostname,
|
299
|
+
hostname_contains=log_analytics_entity_hostname_contains,
|
300
|
+
is_management_agent_id_null=log_analytics_entity_is_management_agent_id_null,
|
301
|
+
is_show_associated_sources_count=log_analytics_entity_is_show_associated_sources_count,
|
302
|
+
lifecycle_details_contains=log_analytics_entity_lifecycle_details_contains,
|
303
|
+
metadata_equals=log_analytics_entity_metadata_equals,
|
304
|
+
name=log_analytics_entity_name,
|
305
|
+
name_contains=log_analytics_entity_name_contains,
|
306
|
+
source_id=test_source["id"],
|
307
|
+
state=log_analytics_entity_state)
|
308
|
+
```
|
309
|
+
|
284
310
|
|
285
311
|
:param builtins.str cloud_resource_id: A filter to return only log analytics entities whose cloudResourceId matches the cloudResourceId given.
|
286
312
|
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
@@ -371,6 +397,32 @@ def get_log_analytics_entities_output(cloud_resource_id: Optional[pulumi.Input[O
|
|
371
397
|
|
372
398
|
Return a list of log analytics entities.
|
373
399
|
|
400
|
+
## Example Usage
|
401
|
+
|
402
|
+
```python
|
403
|
+
import pulumi
|
404
|
+
import pulumi_oci as oci
|
405
|
+
|
406
|
+
test_log_analytics_entities = oci.LogAnalytics.get_log_analytics_entities(compartment_id=compartment_id,
|
407
|
+
namespace=log_analytics_entity_namespace,
|
408
|
+
cloud_resource_id=log_analytics_entity_cloud_resource_id,
|
409
|
+
defined_tag_equals=log_analytics_entity_defined_tag_equals,
|
410
|
+
defined_tag_exists=log_analytics_entity_defined_tag_exists,
|
411
|
+
entity_type_names=log_analytics_entity_entity_type_name,
|
412
|
+
freeform_tag_equals=log_analytics_entity_freeform_tag_equals,
|
413
|
+
freeform_tag_exists=log_analytics_entity_freeform_tag_exists,
|
414
|
+
hostname=log_analytics_entity_hostname,
|
415
|
+
hostname_contains=log_analytics_entity_hostname_contains,
|
416
|
+
is_management_agent_id_null=log_analytics_entity_is_management_agent_id_null,
|
417
|
+
is_show_associated_sources_count=log_analytics_entity_is_show_associated_sources_count,
|
418
|
+
lifecycle_details_contains=log_analytics_entity_lifecycle_details_contains,
|
419
|
+
metadata_equals=log_analytics_entity_metadata_equals,
|
420
|
+
name=log_analytics_entity_name,
|
421
|
+
name_contains=log_analytics_entity_name_contains,
|
422
|
+
source_id=test_source["id"],
|
423
|
+
state=log_analytics_entity_state)
|
424
|
+
```
|
425
|
+
|
374
426
|
|
375
427
|
:param builtins.str cloud_resource_id: A filter to return only log analytics entities whose cloudResourceId matches the cloudResourceId given.
|
376
428
|
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
@@ -0,0 +1,254 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetLogAnalyticsEntityTypeResult',
|
21
|
+
'AwaitableGetLogAnalyticsEntityTypeResult',
|
22
|
+
'get_log_analytics_entity_type',
|
23
|
+
'get_log_analytics_entity_type_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetLogAnalyticsEntityTypeResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getLogAnalyticsEntityType.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, category=None, cloud_type=None, entity_type_name=None, id=None, internal_name=None, management_agent_eligibility_status=None, name=None, namespace=None, properties=None, state=None, time_created=None, time_updated=None):
|
32
|
+
if category and not isinstance(category, str):
|
33
|
+
raise TypeError("Expected argument 'category' to be a str")
|
34
|
+
pulumi.set(__self__, "category", category)
|
35
|
+
if cloud_type and not isinstance(cloud_type, str):
|
36
|
+
raise TypeError("Expected argument 'cloud_type' to be a str")
|
37
|
+
pulumi.set(__self__, "cloud_type", cloud_type)
|
38
|
+
if entity_type_name and not isinstance(entity_type_name, str):
|
39
|
+
raise TypeError("Expected argument 'entity_type_name' to be a str")
|
40
|
+
pulumi.set(__self__, "entity_type_name", entity_type_name)
|
41
|
+
if id and not isinstance(id, str):
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
43
|
+
pulumi.set(__self__, "id", id)
|
44
|
+
if internal_name and not isinstance(internal_name, str):
|
45
|
+
raise TypeError("Expected argument 'internal_name' to be a str")
|
46
|
+
pulumi.set(__self__, "internal_name", internal_name)
|
47
|
+
if management_agent_eligibility_status and not isinstance(management_agent_eligibility_status, str):
|
48
|
+
raise TypeError("Expected argument 'management_agent_eligibility_status' to be a str")
|
49
|
+
pulumi.set(__self__, "management_agent_eligibility_status", management_agent_eligibility_status)
|
50
|
+
if name and not isinstance(name, str):
|
51
|
+
raise TypeError("Expected argument 'name' to be a str")
|
52
|
+
pulumi.set(__self__, "name", name)
|
53
|
+
if namespace and not isinstance(namespace, str):
|
54
|
+
raise TypeError("Expected argument 'namespace' to be a str")
|
55
|
+
pulumi.set(__self__, "namespace", namespace)
|
56
|
+
if properties and not isinstance(properties, list):
|
57
|
+
raise TypeError("Expected argument 'properties' to be a list")
|
58
|
+
pulumi.set(__self__, "properties", properties)
|
59
|
+
if state and not isinstance(state, str):
|
60
|
+
raise TypeError("Expected argument 'state' to be a str")
|
61
|
+
pulumi.set(__self__, "state", state)
|
62
|
+
if time_created and not isinstance(time_created, str):
|
63
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
64
|
+
pulumi.set(__self__, "time_created", time_created)
|
65
|
+
if time_updated and not isinstance(time_updated, str):
|
66
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
67
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter
|
71
|
+
def category(self) -> builtins.str:
|
72
|
+
"""
|
73
|
+
Log analytics entity type category. Category will be used for grouping and filtering.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "category")
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="cloudType")
|
79
|
+
def cloud_type(self) -> builtins.str:
|
80
|
+
"""
|
81
|
+
Log analytics entity type group. That can be CLOUD (OCI) or NON_CLOUD otherwise.
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "cloud_type")
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="entityTypeName")
|
87
|
+
def entity_type_name(self) -> builtins.str:
|
88
|
+
return pulumi.get(self, "entity_type_name")
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter
|
92
|
+
def id(self) -> builtins.str:
|
93
|
+
return pulumi.get(self, "id")
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="internalName")
|
97
|
+
def internal_name(self) -> builtins.str:
|
98
|
+
"""
|
99
|
+
Internal name for the log analytics entity type.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "internal_name")
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="managementAgentEligibilityStatus")
|
105
|
+
def management_agent_eligibility_status(self) -> builtins.str:
|
106
|
+
return pulumi.get(self, "management_agent_eligibility_status")
|
107
|
+
|
108
|
+
@property
|
109
|
+
@pulumi.getter
|
110
|
+
def name(self) -> builtins.str:
|
111
|
+
"""
|
112
|
+
Log analytics entity type property name.
|
113
|
+
"""
|
114
|
+
return pulumi.get(self, "name")
|
115
|
+
|
116
|
+
@property
|
117
|
+
@pulumi.getter
|
118
|
+
def namespace(self) -> builtins.str:
|
119
|
+
return pulumi.get(self, "namespace")
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter
|
123
|
+
def properties(self) -> Sequence['outputs.GetLogAnalyticsEntityTypePropertyResult']:
|
124
|
+
"""
|
125
|
+
The parameters used in file patterns specified in log sources for this log analytics entity type.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "properties")
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter
|
131
|
+
def state(self) -> builtins.str:
|
132
|
+
"""
|
133
|
+
The current lifecycle state of the log analytics entity type.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "state")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter(name="timeCreated")
|
139
|
+
def time_created(self) -> builtins.str:
|
140
|
+
"""
|
141
|
+
Time the log analytics entity type was created. An RFC3339 formatted datetime string.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "time_created")
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="timeUpdated")
|
147
|
+
def time_updated(self) -> builtins.str:
|
148
|
+
"""
|
149
|
+
Time the log analytics entity type was updated. An RFC3339 formatted datetime string.
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "time_updated")
|
152
|
+
|
153
|
+
|
154
|
+
class AwaitableGetLogAnalyticsEntityTypeResult(GetLogAnalyticsEntityTypeResult):
|
155
|
+
# pylint: disable=using-constant-test
|
156
|
+
def __await__(self):
|
157
|
+
if False:
|
158
|
+
yield self
|
159
|
+
return GetLogAnalyticsEntityTypeResult(
|
160
|
+
category=self.category,
|
161
|
+
cloud_type=self.cloud_type,
|
162
|
+
entity_type_name=self.entity_type_name,
|
163
|
+
id=self.id,
|
164
|
+
internal_name=self.internal_name,
|
165
|
+
management_agent_eligibility_status=self.management_agent_eligibility_status,
|
166
|
+
name=self.name,
|
167
|
+
namespace=self.namespace,
|
168
|
+
properties=self.properties,
|
169
|
+
state=self.state,
|
170
|
+
time_created=self.time_created,
|
171
|
+
time_updated=self.time_updated)
|
172
|
+
|
173
|
+
|
174
|
+
def get_log_analytics_entity_type(entity_type_name: Optional[builtins.str] = None,
|
175
|
+
namespace: Optional[builtins.str] = None,
|
176
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLogAnalyticsEntityTypeResult:
|
177
|
+
"""
|
178
|
+
This data source provides details about a specific Log Analytics Entity Type resource in Oracle Cloud Infrastructure Log Analytics service.
|
179
|
+
|
180
|
+
Retrieve the log analytics entity type with the given name.
|
181
|
+
|
182
|
+
## Example Usage
|
183
|
+
|
184
|
+
```python
|
185
|
+
import pulumi
|
186
|
+
import pulumi_oci as oci
|
187
|
+
|
188
|
+
test_log_analytics_entity_type = oci.LogAnalytics.get_log_analytics_entity_type(entity_type_name=log_analytics_entity_type_name,
|
189
|
+
namespace=log_analytics_entity_type_namespace)
|
190
|
+
```
|
191
|
+
|
192
|
+
|
193
|
+
:param builtins.str entity_type_name: Log analytics entity type name.
|
194
|
+
:param builtins.str namespace: The Logging Analytics namespace used for the request.
|
195
|
+
"""
|
196
|
+
__args__ = dict()
|
197
|
+
__args__['entityTypeName'] = entity_type_name
|
198
|
+
__args__['namespace'] = namespace
|
199
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
200
|
+
__ret__ = pulumi.runtime.invoke('oci:LogAnalytics/getLogAnalyticsEntityType:getLogAnalyticsEntityType', __args__, opts=opts, typ=GetLogAnalyticsEntityTypeResult).value
|
201
|
+
|
202
|
+
return AwaitableGetLogAnalyticsEntityTypeResult(
|
203
|
+
category=pulumi.get(__ret__, 'category'),
|
204
|
+
cloud_type=pulumi.get(__ret__, 'cloud_type'),
|
205
|
+
entity_type_name=pulumi.get(__ret__, 'entity_type_name'),
|
206
|
+
id=pulumi.get(__ret__, 'id'),
|
207
|
+
internal_name=pulumi.get(__ret__, 'internal_name'),
|
208
|
+
management_agent_eligibility_status=pulumi.get(__ret__, 'management_agent_eligibility_status'),
|
209
|
+
name=pulumi.get(__ret__, 'name'),
|
210
|
+
namespace=pulumi.get(__ret__, 'namespace'),
|
211
|
+
properties=pulumi.get(__ret__, 'properties'),
|
212
|
+
state=pulumi.get(__ret__, 'state'),
|
213
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
214
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
215
|
+
def get_log_analytics_entity_type_output(entity_type_name: Optional[pulumi.Input[builtins.str]] = None,
|
216
|
+
namespace: Optional[pulumi.Input[builtins.str]] = None,
|
217
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLogAnalyticsEntityTypeResult]:
|
218
|
+
"""
|
219
|
+
This data source provides details about a specific Log Analytics Entity Type resource in Oracle Cloud Infrastructure Log Analytics service.
|
220
|
+
|
221
|
+
Retrieve the log analytics entity type with the given name.
|
222
|
+
|
223
|
+
## Example Usage
|
224
|
+
|
225
|
+
```python
|
226
|
+
import pulumi
|
227
|
+
import pulumi_oci as oci
|
228
|
+
|
229
|
+
test_log_analytics_entity_type = oci.LogAnalytics.get_log_analytics_entity_type(entity_type_name=log_analytics_entity_type_name,
|
230
|
+
namespace=log_analytics_entity_type_namespace)
|
231
|
+
```
|
232
|
+
|
233
|
+
|
234
|
+
:param builtins.str entity_type_name: Log analytics entity type name.
|
235
|
+
:param builtins.str namespace: The Logging Analytics namespace used for the request.
|
236
|
+
"""
|
237
|
+
__args__ = dict()
|
238
|
+
__args__['entityTypeName'] = entity_type_name
|
239
|
+
__args__['namespace'] = namespace
|
240
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
241
|
+
__ret__ = pulumi.runtime.invoke_output('oci:LogAnalytics/getLogAnalyticsEntityType:getLogAnalyticsEntityType', __args__, opts=opts, typ=GetLogAnalyticsEntityTypeResult)
|
242
|
+
return __ret__.apply(lambda __response__: GetLogAnalyticsEntityTypeResult(
|
243
|
+
category=pulumi.get(__response__, 'category'),
|
244
|
+
cloud_type=pulumi.get(__response__, 'cloud_type'),
|
245
|
+
entity_type_name=pulumi.get(__response__, 'entity_type_name'),
|
246
|
+
id=pulumi.get(__response__, 'id'),
|
247
|
+
internal_name=pulumi.get(__response__, 'internal_name'),
|
248
|
+
management_agent_eligibility_status=pulumi.get(__response__, 'management_agent_eligibility_status'),
|
249
|
+
name=pulumi.get(__response__, 'name'),
|
250
|
+
namespace=pulumi.get(__response__, 'namespace'),
|
251
|
+
properties=pulumi.get(__response__, 'properties'),
|
252
|
+
state=pulumi.get(__response__, 'state'),
|
253
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
254
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|