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,631 @@
|
|
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__ = ['OnboardingArgs', 'Onboarding']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class OnboardingArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
compartment_id: pulumi.Input[builtins.str],
|
26
|
+
is_cost_tracking_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
27
|
+
is_fams_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None):
|
28
|
+
"""
|
29
|
+
The set of arguments for constructing a Onboarding resource.
|
30
|
+
:param pulumi.Input[builtins.str] compartment_id: Tenancy OCID
|
31
|
+
:param pulumi.Input[builtins.bool] is_cost_tracking_tag_enabled: A value determining if the cost tracking tag is enabled or not. Allow
|
32
|
+
Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
|
33
|
+
:param pulumi.Input[builtins.bool] is_fams_tag_enabled: A value determining if the Fleet Application Management tagging is enabled or not.
|
34
|
+
Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
|
35
|
+
|
36
|
+
** IMPORTANT **
|
37
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the
|
38
|
+
new property values
|
39
|
+
"""
|
40
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
41
|
+
if is_cost_tracking_tag_enabled is not None:
|
42
|
+
pulumi.set(__self__, "is_cost_tracking_tag_enabled", is_cost_tracking_tag_enabled)
|
43
|
+
if is_fams_tag_enabled is not None:
|
44
|
+
pulumi.set(__self__, "is_fams_tag_enabled", is_fams_tag_enabled)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter(name="compartmentId")
|
48
|
+
def compartment_id(self) -> pulumi.Input[builtins.str]:
|
49
|
+
"""
|
50
|
+
Tenancy OCID
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "compartment_id")
|
53
|
+
|
54
|
+
@compartment_id.setter
|
55
|
+
def compartment_id(self, value: pulumi.Input[builtins.str]):
|
56
|
+
pulumi.set(self, "compartment_id", value)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter(name="isCostTrackingTagEnabled")
|
60
|
+
def is_cost_tracking_tag_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
61
|
+
"""
|
62
|
+
A value determining if the cost tracking tag is enabled or not. Allow
|
63
|
+
Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
|
64
|
+
"""
|
65
|
+
return pulumi.get(self, "is_cost_tracking_tag_enabled")
|
66
|
+
|
67
|
+
@is_cost_tracking_tag_enabled.setter
|
68
|
+
def is_cost_tracking_tag_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
|
69
|
+
pulumi.set(self, "is_cost_tracking_tag_enabled", value)
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter(name="isFamsTagEnabled")
|
73
|
+
def is_fams_tag_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
74
|
+
"""
|
75
|
+
A value determining if the Fleet Application Management tagging is enabled or not.
|
76
|
+
Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
|
77
|
+
|
78
|
+
** IMPORTANT **
|
79
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the
|
80
|
+
new property values
|
81
|
+
"""
|
82
|
+
return pulumi.get(self, "is_fams_tag_enabled")
|
83
|
+
|
84
|
+
@is_fams_tag_enabled.setter
|
85
|
+
def is_fams_tag_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
|
86
|
+
pulumi.set(self, "is_fams_tag_enabled", value)
|
87
|
+
|
88
|
+
|
89
|
+
@pulumi.input_type
|
90
|
+
class _OnboardingState:
|
91
|
+
def __init__(__self__, *,
|
92
|
+
applied_policies: Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingAppliedPolicyArgs']]]] = None,
|
93
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
94
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
95
|
+
discovery_frequency: Optional[pulumi.Input[builtins.str]] = None,
|
96
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
97
|
+
is_cost_tracking_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
98
|
+
is_fams_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
99
|
+
resource_region: Optional[pulumi.Input[builtins.str]] = None,
|
100
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
101
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
102
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
103
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None,
|
104
|
+
version: Optional[pulumi.Input[builtins.str]] = None):
|
105
|
+
"""
|
106
|
+
Input properties used for looking up and filtering Onboarding resources.
|
107
|
+
:param pulumi.Input[Sequence[pulumi.Input['OnboardingAppliedPolicyArgs']]] applied_policies: Summary of the Fleet Application Management Onboard Policy.
|
108
|
+
:param pulumi.Input[builtins.str] compartment_id: Tenancy OCID
|
109
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
|
110
|
+
`{"foo-namespace.bar-key": "value"}`
|
111
|
+
:param pulumi.Input[builtins.str] discovery_frequency: Provide discovery frequency.
|
112
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for
|
113
|
+
cross-compatibility only. Example: `{"bar-key": "value"}`
|
114
|
+
:param pulumi.Input[builtins.bool] is_cost_tracking_tag_enabled: A value determining if the cost tracking tag is enabled or not. Allow
|
115
|
+
Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
|
116
|
+
:param pulumi.Input[builtins.bool] is_fams_tag_enabled: A value determining if the Fleet Application Management tagging is enabled or not.
|
117
|
+
Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
|
118
|
+
|
119
|
+
** IMPORTANT **
|
120
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the
|
121
|
+
new property values
|
122
|
+
:param pulumi.Input[builtins.str] resource_region: Associated region
|
123
|
+
:param pulumi.Input[builtins.str] state: The current state of the Onboarding.
|
124
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example:
|
125
|
+
`{"orcl-cloud.free-tier-retained": "true"}`
|
126
|
+
:param pulumi.Input[builtins.str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
127
|
+
:param pulumi.Input[builtins.str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
|
128
|
+
:param pulumi.Input[builtins.str] version: The version of Fleet Application Management that the tenant is onboarded to.
|
129
|
+
"""
|
130
|
+
if applied_policies is not None:
|
131
|
+
pulumi.set(__self__, "applied_policies", applied_policies)
|
132
|
+
if compartment_id is not None:
|
133
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
134
|
+
if defined_tags is not None:
|
135
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
136
|
+
if discovery_frequency is not None:
|
137
|
+
pulumi.set(__self__, "discovery_frequency", discovery_frequency)
|
138
|
+
if freeform_tags is not None:
|
139
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
140
|
+
if is_cost_tracking_tag_enabled is not None:
|
141
|
+
pulumi.set(__self__, "is_cost_tracking_tag_enabled", is_cost_tracking_tag_enabled)
|
142
|
+
if is_fams_tag_enabled is not None:
|
143
|
+
pulumi.set(__self__, "is_fams_tag_enabled", is_fams_tag_enabled)
|
144
|
+
if resource_region is not None:
|
145
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
146
|
+
if state is not None:
|
147
|
+
pulumi.set(__self__, "state", state)
|
148
|
+
if system_tags is not None:
|
149
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
150
|
+
if time_created is not None:
|
151
|
+
pulumi.set(__self__, "time_created", time_created)
|
152
|
+
if time_updated is not None:
|
153
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
154
|
+
if version is not None:
|
155
|
+
pulumi.set(__self__, "version", version)
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="appliedPolicies")
|
159
|
+
def applied_policies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingAppliedPolicyArgs']]]]:
|
160
|
+
"""
|
161
|
+
Summary of the Fleet Application Management Onboard Policy.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "applied_policies")
|
164
|
+
|
165
|
+
@applied_policies.setter
|
166
|
+
def applied_policies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingAppliedPolicyArgs']]]]):
|
167
|
+
pulumi.set(self, "applied_policies", value)
|
168
|
+
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="compartmentId")
|
171
|
+
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
172
|
+
"""
|
173
|
+
Tenancy OCID
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "compartment_id")
|
176
|
+
|
177
|
+
@compartment_id.setter
|
178
|
+
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
179
|
+
pulumi.set(self, "compartment_id", value)
|
180
|
+
|
181
|
+
@property
|
182
|
+
@pulumi.getter(name="definedTags")
|
183
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
184
|
+
"""
|
185
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
|
186
|
+
`{"foo-namespace.bar-key": "value"}`
|
187
|
+
"""
|
188
|
+
return pulumi.get(self, "defined_tags")
|
189
|
+
|
190
|
+
@defined_tags.setter
|
191
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
192
|
+
pulumi.set(self, "defined_tags", value)
|
193
|
+
|
194
|
+
@property
|
195
|
+
@pulumi.getter(name="discoveryFrequency")
|
196
|
+
def discovery_frequency(self) -> Optional[pulumi.Input[builtins.str]]:
|
197
|
+
"""
|
198
|
+
Provide discovery frequency.
|
199
|
+
"""
|
200
|
+
return pulumi.get(self, "discovery_frequency")
|
201
|
+
|
202
|
+
@discovery_frequency.setter
|
203
|
+
def discovery_frequency(self, value: Optional[pulumi.Input[builtins.str]]):
|
204
|
+
pulumi.set(self, "discovery_frequency", value)
|
205
|
+
|
206
|
+
@property
|
207
|
+
@pulumi.getter(name="freeformTags")
|
208
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
209
|
+
"""
|
210
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for
|
211
|
+
cross-compatibility only. Example: `{"bar-key": "value"}`
|
212
|
+
"""
|
213
|
+
return pulumi.get(self, "freeform_tags")
|
214
|
+
|
215
|
+
@freeform_tags.setter
|
216
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
217
|
+
pulumi.set(self, "freeform_tags", value)
|
218
|
+
|
219
|
+
@property
|
220
|
+
@pulumi.getter(name="isCostTrackingTagEnabled")
|
221
|
+
def is_cost_tracking_tag_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
222
|
+
"""
|
223
|
+
A value determining if the cost tracking tag is enabled or not. Allow
|
224
|
+
Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
|
225
|
+
"""
|
226
|
+
return pulumi.get(self, "is_cost_tracking_tag_enabled")
|
227
|
+
|
228
|
+
@is_cost_tracking_tag_enabled.setter
|
229
|
+
def is_cost_tracking_tag_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
|
230
|
+
pulumi.set(self, "is_cost_tracking_tag_enabled", value)
|
231
|
+
|
232
|
+
@property
|
233
|
+
@pulumi.getter(name="isFamsTagEnabled")
|
234
|
+
def is_fams_tag_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
235
|
+
"""
|
236
|
+
A value determining if the Fleet Application Management tagging is enabled or not.
|
237
|
+
Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
|
238
|
+
|
239
|
+
** IMPORTANT **
|
240
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the
|
241
|
+
new property values
|
242
|
+
"""
|
243
|
+
return pulumi.get(self, "is_fams_tag_enabled")
|
244
|
+
|
245
|
+
@is_fams_tag_enabled.setter
|
246
|
+
def is_fams_tag_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
|
247
|
+
pulumi.set(self, "is_fams_tag_enabled", value)
|
248
|
+
|
249
|
+
@property
|
250
|
+
@pulumi.getter(name="resourceRegion")
|
251
|
+
def resource_region(self) -> Optional[pulumi.Input[builtins.str]]:
|
252
|
+
"""
|
253
|
+
Associated region
|
254
|
+
"""
|
255
|
+
return pulumi.get(self, "resource_region")
|
256
|
+
|
257
|
+
@resource_region.setter
|
258
|
+
def resource_region(self, value: Optional[pulumi.Input[builtins.str]]):
|
259
|
+
pulumi.set(self, "resource_region", value)
|
260
|
+
|
261
|
+
@property
|
262
|
+
@pulumi.getter
|
263
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
264
|
+
"""
|
265
|
+
The current state of the Onboarding.
|
266
|
+
"""
|
267
|
+
return pulumi.get(self, "state")
|
268
|
+
|
269
|
+
@state.setter
|
270
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
271
|
+
pulumi.set(self, "state", value)
|
272
|
+
|
273
|
+
@property
|
274
|
+
@pulumi.getter(name="systemTags")
|
275
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
276
|
+
"""
|
277
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example:
|
278
|
+
`{"orcl-cloud.free-tier-retained": "true"}`
|
279
|
+
"""
|
280
|
+
return pulumi.get(self, "system_tags")
|
281
|
+
|
282
|
+
@system_tags.setter
|
283
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
284
|
+
pulumi.set(self, "system_tags", value)
|
285
|
+
|
286
|
+
@property
|
287
|
+
@pulumi.getter(name="timeCreated")
|
288
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
289
|
+
"""
|
290
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
291
|
+
"""
|
292
|
+
return pulumi.get(self, "time_created")
|
293
|
+
|
294
|
+
@time_created.setter
|
295
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
296
|
+
pulumi.set(self, "time_created", value)
|
297
|
+
|
298
|
+
@property
|
299
|
+
@pulumi.getter(name="timeUpdated")
|
300
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
301
|
+
"""
|
302
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
303
|
+
"""
|
304
|
+
return pulumi.get(self, "time_updated")
|
305
|
+
|
306
|
+
@time_updated.setter
|
307
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
308
|
+
pulumi.set(self, "time_updated", value)
|
309
|
+
|
310
|
+
@property
|
311
|
+
@pulumi.getter
|
312
|
+
def version(self) -> Optional[pulumi.Input[builtins.str]]:
|
313
|
+
"""
|
314
|
+
The version of Fleet Application Management that the tenant is onboarded to.
|
315
|
+
"""
|
316
|
+
return pulumi.get(self, "version")
|
317
|
+
|
318
|
+
@version.setter
|
319
|
+
def version(self, value: Optional[pulumi.Input[builtins.str]]):
|
320
|
+
pulumi.set(self, "version", value)
|
321
|
+
|
322
|
+
|
323
|
+
@pulumi.type_token("oci:FleetAppsManagement/onboarding:Onboarding")
|
324
|
+
class Onboarding(pulumi.CustomResource):
|
325
|
+
@overload
|
326
|
+
def __init__(__self__,
|
327
|
+
resource_name: str,
|
328
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
329
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
330
|
+
is_cost_tracking_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
331
|
+
is_fams_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
332
|
+
__props__=None):
|
333
|
+
"""
|
334
|
+
This resource provides the Onboarding resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
335
|
+
|
336
|
+
Onboard a tenant to Fleet Application Management.
|
337
|
+
The onboarding process lets Fleet Application Management create a few required policies that you need to start using it
|
338
|
+
and its features.
|
339
|
+
|
340
|
+
## Example Usage
|
341
|
+
|
342
|
+
```python
|
343
|
+
import pulumi
|
344
|
+
import pulumi_oci as oci
|
345
|
+
|
346
|
+
test_onboarding = oci.fleet_apps_management.Onboarding("test_onboarding",
|
347
|
+
compartment_id=compartment_id,
|
348
|
+
is_cost_tracking_tag_enabled=onboarding_is_cost_tracking_tag_enabled,
|
349
|
+
is_fams_tag_enabled=onboarding_is_fams_tag_enabled)
|
350
|
+
```
|
351
|
+
|
352
|
+
## Import
|
353
|
+
|
354
|
+
Onboardings can be imported using the `id`, e.g.
|
355
|
+
|
356
|
+
```sh
|
357
|
+
$ pulumi import oci:FleetAppsManagement/onboarding:Onboarding test_onboarding "id"
|
358
|
+
```
|
359
|
+
|
360
|
+
:param str resource_name: The name of the resource.
|
361
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
362
|
+
:param pulumi.Input[builtins.str] compartment_id: Tenancy OCID
|
363
|
+
:param pulumi.Input[builtins.bool] is_cost_tracking_tag_enabled: A value determining if the cost tracking tag is enabled or not. Allow
|
364
|
+
Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
|
365
|
+
:param pulumi.Input[builtins.bool] is_fams_tag_enabled: A value determining if the Fleet Application Management tagging is enabled or not.
|
366
|
+
Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
|
367
|
+
|
368
|
+
** IMPORTANT **
|
369
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the
|
370
|
+
new property values
|
371
|
+
"""
|
372
|
+
...
|
373
|
+
@overload
|
374
|
+
def __init__(__self__,
|
375
|
+
resource_name: str,
|
376
|
+
args: OnboardingArgs,
|
377
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
378
|
+
"""
|
379
|
+
This resource provides the Onboarding resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
380
|
+
|
381
|
+
Onboard a tenant to Fleet Application Management.
|
382
|
+
The onboarding process lets Fleet Application Management create a few required policies that you need to start using it
|
383
|
+
and its features.
|
384
|
+
|
385
|
+
## Example Usage
|
386
|
+
|
387
|
+
```python
|
388
|
+
import pulumi
|
389
|
+
import pulumi_oci as oci
|
390
|
+
|
391
|
+
test_onboarding = oci.fleet_apps_management.Onboarding("test_onboarding",
|
392
|
+
compartment_id=compartment_id,
|
393
|
+
is_cost_tracking_tag_enabled=onboarding_is_cost_tracking_tag_enabled,
|
394
|
+
is_fams_tag_enabled=onboarding_is_fams_tag_enabled)
|
395
|
+
```
|
396
|
+
|
397
|
+
## Import
|
398
|
+
|
399
|
+
Onboardings can be imported using the `id`, e.g.
|
400
|
+
|
401
|
+
```sh
|
402
|
+
$ pulumi import oci:FleetAppsManagement/onboarding:Onboarding test_onboarding "id"
|
403
|
+
```
|
404
|
+
|
405
|
+
:param str resource_name: The name of the resource.
|
406
|
+
:param OnboardingArgs args: The arguments to use to populate this resource's properties.
|
407
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
408
|
+
"""
|
409
|
+
...
|
410
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
411
|
+
resource_args, opts = _utilities.get_resource_args_opts(OnboardingArgs, pulumi.ResourceOptions, *args, **kwargs)
|
412
|
+
if resource_args is not None:
|
413
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
414
|
+
else:
|
415
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
416
|
+
|
417
|
+
def _internal_init(__self__,
|
418
|
+
resource_name: str,
|
419
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
420
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
421
|
+
is_cost_tracking_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
422
|
+
is_fams_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
423
|
+
__props__=None):
|
424
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
425
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
426
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
427
|
+
if opts.id is None:
|
428
|
+
if __props__ is not None:
|
429
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
430
|
+
__props__ = OnboardingArgs.__new__(OnboardingArgs)
|
431
|
+
|
432
|
+
if compartment_id is None and not opts.urn:
|
433
|
+
raise TypeError("Missing required property 'compartment_id'")
|
434
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
435
|
+
__props__.__dict__["is_cost_tracking_tag_enabled"] = is_cost_tracking_tag_enabled
|
436
|
+
__props__.__dict__["is_fams_tag_enabled"] = is_fams_tag_enabled
|
437
|
+
__props__.__dict__["applied_policies"] = None
|
438
|
+
__props__.__dict__["defined_tags"] = None
|
439
|
+
__props__.__dict__["discovery_frequency"] = None
|
440
|
+
__props__.__dict__["freeform_tags"] = None
|
441
|
+
__props__.__dict__["resource_region"] = None
|
442
|
+
__props__.__dict__["state"] = None
|
443
|
+
__props__.__dict__["system_tags"] = None
|
444
|
+
__props__.__dict__["time_created"] = None
|
445
|
+
__props__.__dict__["time_updated"] = None
|
446
|
+
__props__.__dict__["version"] = None
|
447
|
+
super(Onboarding, __self__).__init__(
|
448
|
+
'oci:FleetAppsManagement/onboarding:Onboarding',
|
449
|
+
resource_name,
|
450
|
+
__props__,
|
451
|
+
opts)
|
452
|
+
|
453
|
+
@staticmethod
|
454
|
+
def get(resource_name: str,
|
455
|
+
id: pulumi.Input[str],
|
456
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
457
|
+
applied_policies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OnboardingAppliedPolicyArgs', 'OnboardingAppliedPolicyArgsDict']]]]] = None,
|
458
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
459
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
460
|
+
discovery_frequency: Optional[pulumi.Input[builtins.str]] = None,
|
461
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
462
|
+
is_cost_tracking_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
463
|
+
is_fams_tag_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
464
|
+
resource_region: Optional[pulumi.Input[builtins.str]] = None,
|
465
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
466
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
467
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
468
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None,
|
469
|
+
version: Optional[pulumi.Input[builtins.str]] = None) -> 'Onboarding':
|
470
|
+
"""
|
471
|
+
Get an existing Onboarding resource's state with the given name, id, and optional extra
|
472
|
+
properties used to qualify the lookup.
|
473
|
+
|
474
|
+
:param str resource_name: The unique name of the resulting resource.
|
475
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
476
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
477
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['OnboardingAppliedPolicyArgs', 'OnboardingAppliedPolicyArgsDict']]]] applied_policies: Summary of the Fleet Application Management Onboard Policy.
|
478
|
+
:param pulumi.Input[builtins.str] compartment_id: Tenancy OCID
|
479
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
|
480
|
+
`{"foo-namespace.bar-key": "value"}`
|
481
|
+
:param pulumi.Input[builtins.str] discovery_frequency: Provide discovery frequency.
|
482
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for
|
483
|
+
cross-compatibility only. Example: `{"bar-key": "value"}`
|
484
|
+
:param pulumi.Input[builtins.bool] is_cost_tracking_tag_enabled: A value determining if the cost tracking tag is enabled or not. Allow
|
485
|
+
Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
|
486
|
+
:param pulumi.Input[builtins.bool] is_fams_tag_enabled: A value determining if the Fleet Application Management tagging is enabled or not.
|
487
|
+
Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
|
488
|
+
|
489
|
+
** IMPORTANT **
|
490
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the
|
491
|
+
new property values
|
492
|
+
:param pulumi.Input[builtins.str] resource_region: Associated region
|
493
|
+
:param pulumi.Input[builtins.str] state: The current state of the Onboarding.
|
494
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example:
|
495
|
+
`{"orcl-cloud.free-tier-retained": "true"}`
|
496
|
+
:param pulumi.Input[builtins.str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
497
|
+
:param pulumi.Input[builtins.str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
|
498
|
+
:param pulumi.Input[builtins.str] version: The version of Fleet Application Management that the tenant is onboarded to.
|
499
|
+
"""
|
500
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
501
|
+
|
502
|
+
__props__ = _OnboardingState.__new__(_OnboardingState)
|
503
|
+
|
504
|
+
__props__.__dict__["applied_policies"] = applied_policies
|
505
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
506
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
507
|
+
__props__.__dict__["discovery_frequency"] = discovery_frequency
|
508
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
509
|
+
__props__.__dict__["is_cost_tracking_tag_enabled"] = is_cost_tracking_tag_enabled
|
510
|
+
__props__.__dict__["is_fams_tag_enabled"] = is_fams_tag_enabled
|
511
|
+
__props__.__dict__["resource_region"] = resource_region
|
512
|
+
__props__.__dict__["state"] = state
|
513
|
+
__props__.__dict__["system_tags"] = system_tags
|
514
|
+
__props__.__dict__["time_created"] = time_created
|
515
|
+
__props__.__dict__["time_updated"] = time_updated
|
516
|
+
__props__.__dict__["version"] = version
|
517
|
+
return Onboarding(resource_name, opts=opts, __props__=__props__)
|
518
|
+
|
519
|
+
@property
|
520
|
+
@pulumi.getter(name="appliedPolicies")
|
521
|
+
def applied_policies(self) -> pulumi.Output[Sequence['outputs.OnboardingAppliedPolicy']]:
|
522
|
+
"""
|
523
|
+
Summary of the Fleet Application Management Onboard Policy.
|
524
|
+
"""
|
525
|
+
return pulumi.get(self, "applied_policies")
|
526
|
+
|
527
|
+
@property
|
528
|
+
@pulumi.getter(name="compartmentId")
|
529
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
530
|
+
"""
|
531
|
+
Tenancy OCID
|
532
|
+
"""
|
533
|
+
return pulumi.get(self, "compartment_id")
|
534
|
+
|
535
|
+
@property
|
536
|
+
@pulumi.getter(name="definedTags")
|
537
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
538
|
+
"""
|
539
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
|
540
|
+
`{"foo-namespace.bar-key": "value"}`
|
541
|
+
"""
|
542
|
+
return pulumi.get(self, "defined_tags")
|
543
|
+
|
544
|
+
@property
|
545
|
+
@pulumi.getter(name="discoveryFrequency")
|
546
|
+
def discovery_frequency(self) -> pulumi.Output[builtins.str]:
|
547
|
+
"""
|
548
|
+
Provide discovery frequency.
|
549
|
+
"""
|
550
|
+
return pulumi.get(self, "discovery_frequency")
|
551
|
+
|
552
|
+
@property
|
553
|
+
@pulumi.getter(name="freeformTags")
|
554
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
555
|
+
"""
|
556
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for
|
557
|
+
cross-compatibility only. Example: `{"bar-key": "value"}`
|
558
|
+
"""
|
559
|
+
return pulumi.get(self, "freeform_tags")
|
560
|
+
|
561
|
+
@property
|
562
|
+
@pulumi.getter(name="isCostTrackingTagEnabled")
|
563
|
+
def is_cost_tracking_tag_enabled(self) -> pulumi.Output[builtins.bool]:
|
564
|
+
"""
|
565
|
+
A value determining if the cost tracking tag is enabled or not. Allow
|
566
|
+
Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
|
567
|
+
"""
|
568
|
+
return pulumi.get(self, "is_cost_tracking_tag_enabled")
|
569
|
+
|
570
|
+
@property
|
571
|
+
@pulumi.getter(name="isFamsTagEnabled")
|
572
|
+
def is_fams_tag_enabled(self) -> pulumi.Output[builtins.bool]:
|
573
|
+
"""
|
574
|
+
A value determining if the Fleet Application Management tagging is enabled or not.
|
575
|
+
Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
|
576
|
+
|
577
|
+
** IMPORTANT **
|
578
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the
|
579
|
+
new property values
|
580
|
+
"""
|
581
|
+
return pulumi.get(self, "is_fams_tag_enabled")
|
582
|
+
|
583
|
+
@property
|
584
|
+
@pulumi.getter(name="resourceRegion")
|
585
|
+
def resource_region(self) -> pulumi.Output[builtins.str]:
|
586
|
+
"""
|
587
|
+
Associated region
|
588
|
+
"""
|
589
|
+
return pulumi.get(self, "resource_region")
|
590
|
+
|
591
|
+
@property
|
592
|
+
@pulumi.getter
|
593
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
594
|
+
"""
|
595
|
+
The current state of the Onboarding.
|
596
|
+
"""
|
597
|
+
return pulumi.get(self, "state")
|
598
|
+
|
599
|
+
@property
|
600
|
+
@pulumi.getter(name="systemTags")
|
601
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
602
|
+
"""
|
603
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example:
|
604
|
+
`{"orcl-cloud.free-tier-retained": "true"}`
|
605
|
+
"""
|
606
|
+
return pulumi.get(self, "system_tags")
|
607
|
+
|
608
|
+
@property
|
609
|
+
@pulumi.getter(name="timeCreated")
|
610
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
611
|
+
"""
|
612
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
613
|
+
"""
|
614
|
+
return pulumi.get(self, "time_created")
|
615
|
+
|
616
|
+
@property
|
617
|
+
@pulumi.getter(name="timeUpdated")
|
618
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
619
|
+
"""
|
620
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
621
|
+
"""
|
622
|
+
return pulumi.get(self, "time_updated")
|
623
|
+
|
624
|
+
@property
|
625
|
+
@pulumi.getter
|
626
|
+
def version(self) -> pulumi.Output[builtins.str]:
|
627
|
+
"""
|
628
|
+
The version of Fleet Application Management that the tenant is onboarded to.
|
629
|
+
"""
|
630
|
+
return pulumi.get(self, "version")
|
631
|
+
|