pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.0__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 +248 -43
- pulumi_oci/aidocument/__init__.py +1 -0
- pulumi_oci/aidocument/_inputs.py +476 -6
- pulumi_oci/aidocument/get_model.py +63 -2
- pulumi_oci/aidocument/get_model_type.py +179 -0
- pulumi_oci/aidocument/get_models.py +1 -1
- pulumi_oci/aidocument/get_project.py +17 -2
- pulumi_oci/aidocument/get_projects.py +1 -1
- pulumi_oci/aidocument/model.py +188 -0
- pulumi_oci/aidocument/outputs.py +883 -8
- pulumi_oci/aidocument/processor_job.py +22 -4
- pulumi_oci/aidocument/project.py +50 -1
- pulumi_oci/apigateway/_inputs.py +608 -12
- pulumi_oci/apigateway/api.py +127 -38
- pulumi_oci/apigateway/certificate.py +122 -3
- pulumi_oci/apigateway/deployment.py +120 -3
- pulumi_oci/apigateway/gateway.py +124 -7
- pulumi_oci/apigateway/get_api.py +40 -1
- pulumi_oci/apigateway/get_certificate.py +41 -1
- pulumi_oci/apigateway/get_deployment.py +40 -1
- pulumi_oci/apigateway/get_gateway.py +40 -1
- pulumi_oci/apigateway/get_subscriber.py +40 -1
- pulumi_oci/apigateway/get_usage_plan.py +40 -1
- pulumi_oci/apigateway/outputs.py +1413 -39
- pulumi_oci/apigateway/subscriber.py +120 -3
- pulumi_oci/apigateway/usage_plan.py +127 -38
- pulumi_oci/apmconfig/_inputs.py +199 -15
- pulumi_oci/apmconfig/config.py +535 -17
- pulumi_oci/apmconfig/get_config.py +141 -1
- pulumi_oci/apmconfig/get_configs.py +2 -2
- pulumi_oci/apmconfig/outputs.py +509 -13
- pulumi_oci/apmtraces/__init__.py +5 -0
- pulumi_oci/apmtraces/_inputs.py +413 -0
- pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
- pulumi_oci/apmtraces/get_log.py +356 -0
- pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
- pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
- pulumi_oci/apmtraces/get_trace.py +4 -4
- pulumi_oci/apmtraces/outputs.py +971 -0
- pulumi_oci/apmtraces/scheduled_query.py +925 -0
- pulumi_oci/autoscaling/_inputs.py +177 -13
- pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
- pulumi_oci/autoscaling/outputs.py +269 -23
- pulumi_oci/core/_inputs.py +184 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/ipv6.py +49 -0
- pulumi_oci/core/outputs.py +376 -0
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +396 -19
- pulumi_oci/database/autonomous_container_database.py +94 -0
- pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
- pulumi_oci/database/autonomous_database.py +578 -568
- pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +29 -1
- pulumi_oci/database/get_autonomous_database.py +65 -1
- pulumi_oci/database/get_autonomous_databases.py +6 -1
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
- pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
- pulumi_oci/database/outputs.py +1045 -83
- pulumi_oci/database/pluggable_database.py +0 -14
- pulumi_oci/database/pluggable_database_snapshot.py +539 -0
- pulumi_oci/databasemanagement/__init__.py +37 -0
- pulumi_oci/databasemanagement/_inputs.py +9516 -3414
- pulumi_oci/databasemanagement/cloud_asm.py +791 -0
- pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
- pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
- pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
- pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
- pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
- pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
- pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
- pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
- pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
- pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
- pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
- pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
- pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
- pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
- pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
- pulumi_oci/databasemanagement/get_managed_database.py +2 -2
- pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
- pulumi_oci/databasemanagement/outputs.py +18049 -4222
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +75 -8
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +70 -4
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +7975 -1013
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/datascience/__init__.py +10 -0
- pulumi_oci/datascience/_inputs.py +6760 -2206
- pulumi_oci/datascience/get_job.py +15 -1
- pulumi_oci/datascience/get_job_run.py +44 -2
- pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
- pulumi_oci/datascience/get_model_group.py +405 -0
- pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
- pulumi_oci/datascience/get_model_group_models.py +240 -0
- pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
- pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
- pulumi_oci/datascience/get_model_groups.py +265 -0
- pulumi_oci/datascience/get_pipeline_run.py +15 -1
- pulumi_oci/datascience/job.py +81 -154
- pulumi_oci/datascience/job_run.py +250 -4
- pulumi_oci/datascience/model_group.py +1111 -0
- pulumi_oci/datascience/model_group_artifact.py +369 -0
- pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
- pulumi_oci/datascience/notebook_session.py +4 -0
- pulumi_oci/datascience/outputs.py +17168 -8021
- pulumi_oci/datascience/pipeline_run.py +87 -0
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/_inputs.py +3 -3
- pulumi_oci/goldengate/connection.py +175 -56
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_connection.py +20 -4
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +62 -10
- pulumi_oci/managementagent/__init__.py +4 -0
- pulumi_oci/managementagent/_inputs.py +129 -0
- pulumi_oci/managementagent/get_management_agent.py +26 -1
- pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
- pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
- pulumi_oci/managementagent/get_named_credential.py +268 -0
- pulumi_oci/managementagent/get_named_credentials.py +221 -0
- pulumi_oci/managementagent/management_agent.py +48 -0
- pulumi_oci/managementagent/management_agent_install_key.py +84 -0
- pulumi_oci/managementagent/named_credential.py +706 -0
- pulumi_oci/managementagent/outputs.py +515 -0
- pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
- pulumi_oci/oci/__init__.py +12 -0
- pulumi_oci/oci/_inputs.py +566 -0
- pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
- pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
- pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/{aianomalydetection/get_ai_private_endpoint.py → oci/get_managed_kafka_kafka_cluster_config.py} +63 -90
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/{aianomalydetection/ai_private_endpoint.py → oci/managed_kafka_kafka_cluster_config.py} +138 -232
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1540 -164
- pulumi_oci/opsi/_inputs.py +1001 -149
- pulumi_oci/opsi/database_insight.py +22 -3
- pulumi_oci/opsi/exadata_insight.py +86 -6
- pulumi_oci/opsi/outputs.py +1438 -178
- pulumi_oci/psql/configuration.py +109 -19
- pulumi_oci/psql/db_system.py +7 -7
- pulumi_oci/psql/get_configuration.py +30 -2
- pulumi_oci/psql/get_configurations.py +49 -5
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_default_configuration.py +30 -4
- pulumi_oci/psql/get_default_configurations.py +49 -5
- pulumi_oci/psql/outputs.py +47 -14
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +6 -0
- pulumi_oci/redis/_inputs.py +217 -0
- pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
- pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
- pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
- pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
- pulumi_oci/redis/get_redis_cluster.py +15 -1
- pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
- pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
- pulumi_oci/redis/outputs.py +713 -0
- pulumi_oci/redis/redis_cluster.py +49 -0
- pulumi_oci/vault/_inputs.py +198 -0
- pulumi_oci/vault/get_secret.py +43 -1
- pulumi_oci/vault/outputs.py +434 -0
- pulumi_oci/vault/secret.py +103 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/RECORD +302 -218
- pulumi_oci/aianomalydetection/__init__.py +0 -25
- pulumi_oci/aianomalydetection/_inputs.py +0 -1742
- pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
- pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
- pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
- pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
- pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
- pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
- pulumi_oci/aianomalydetection/outputs.py +0 -3699
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,693 @@
|
|
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 as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = ['AttributeSetArgs', 'AttributeSet']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class AttributeSetArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
attribute_set_type: pulumi.Input[_builtins.str],
|
23
|
+
attribute_set_values: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
24
|
+
compartment_id: pulumi.Input[_builtins.str],
|
25
|
+
display_name: pulumi.Input[_builtins.str],
|
26
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
27
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
28
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
29
|
+
"""
|
30
|
+
The set of arguments for constructing a AttributeSet resource.
|
31
|
+
:param pulumi.Input[_builtins.str] attribute_set_type: The type of attribute set.
|
32
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] attribute_set_values: (Updatable) The list of values in an attribute set
|
33
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment that contains the attribute set.
|
34
|
+
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the attribute set. The name is unique and changeable.
|
35
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
36
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) Description of the attribute set.
|
37
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
38
|
+
|
39
|
+
|
40
|
+
** IMPORTANT **
|
41
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
42
|
+
"""
|
43
|
+
pulumi.set(__self__, "attribute_set_type", attribute_set_type)
|
44
|
+
pulumi.set(__self__, "attribute_set_values", attribute_set_values)
|
45
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
46
|
+
pulumi.set(__self__, "display_name", display_name)
|
47
|
+
if defined_tags is not None:
|
48
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
49
|
+
if description is not None:
|
50
|
+
pulumi.set(__self__, "description", description)
|
51
|
+
if freeform_tags is not None:
|
52
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
53
|
+
|
54
|
+
@_builtins.property
|
55
|
+
@pulumi.getter(name="attributeSetType")
|
56
|
+
def attribute_set_type(self) -> pulumi.Input[_builtins.str]:
|
57
|
+
"""
|
58
|
+
The type of attribute set.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "attribute_set_type")
|
61
|
+
|
62
|
+
@attribute_set_type.setter
|
63
|
+
def attribute_set_type(self, value: pulumi.Input[_builtins.str]):
|
64
|
+
pulumi.set(self, "attribute_set_type", value)
|
65
|
+
|
66
|
+
@_builtins.property
|
67
|
+
@pulumi.getter(name="attributeSetValues")
|
68
|
+
def attribute_set_values(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
69
|
+
"""
|
70
|
+
(Updatable) The list of values in an attribute set
|
71
|
+
"""
|
72
|
+
return pulumi.get(self, "attribute_set_values")
|
73
|
+
|
74
|
+
@attribute_set_values.setter
|
75
|
+
def attribute_set_values(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
76
|
+
pulumi.set(self, "attribute_set_values", value)
|
77
|
+
|
78
|
+
@_builtins.property
|
79
|
+
@pulumi.getter(name="compartmentId")
|
80
|
+
def compartment_id(self) -> pulumi.Input[_builtins.str]:
|
81
|
+
"""
|
82
|
+
(Updatable) The OCID of the compartment that contains the attribute set.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "compartment_id")
|
85
|
+
|
86
|
+
@compartment_id.setter
|
87
|
+
def compartment_id(self, value: pulumi.Input[_builtins.str]):
|
88
|
+
pulumi.set(self, "compartment_id", value)
|
89
|
+
|
90
|
+
@_builtins.property
|
91
|
+
@pulumi.getter(name="displayName")
|
92
|
+
def display_name(self) -> pulumi.Input[_builtins.str]:
|
93
|
+
"""
|
94
|
+
(Updatable) The display name of the attribute set. The name is unique and changeable.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "display_name")
|
97
|
+
|
98
|
+
@display_name.setter
|
99
|
+
def display_name(self, value: pulumi.Input[_builtins.str]):
|
100
|
+
pulumi.set(self, "display_name", value)
|
101
|
+
|
102
|
+
@_builtins.property
|
103
|
+
@pulumi.getter(name="definedTags")
|
104
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
105
|
+
"""
|
106
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "defined_tags")
|
109
|
+
|
110
|
+
@defined_tags.setter
|
111
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
112
|
+
pulumi.set(self, "defined_tags", value)
|
113
|
+
|
114
|
+
@_builtins.property
|
115
|
+
@pulumi.getter
|
116
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
117
|
+
"""
|
118
|
+
(Updatable) Description of the attribute set.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "description")
|
121
|
+
|
122
|
+
@description.setter
|
123
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
124
|
+
pulumi.set(self, "description", value)
|
125
|
+
|
126
|
+
@_builtins.property
|
127
|
+
@pulumi.getter(name="freeformTags")
|
128
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
129
|
+
"""
|
130
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
131
|
+
|
132
|
+
|
133
|
+
** IMPORTANT **
|
134
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "freeform_tags")
|
137
|
+
|
138
|
+
@freeform_tags.setter
|
139
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
140
|
+
pulumi.set(self, "freeform_tags", value)
|
141
|
+
|
142
|
+
|
143
|
+
@pulumi.input_type
|
144
|
+
class _AttributeSetState:
|
145
|
+
def __init__(__self__, *,
|
146
|
+
attribute_set_type: Optional[pulumi.Input[_builtins.str]] = None,
|
147
|
+
attribute_set_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
148
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
149
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
150
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
151
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
152
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
153
|
+
in_use: Optional[pulumi.Input[_builtins.str]] = None,
|
154
|
+
is_user_defined: Optional[pulumi.Input[_builtins.bool]] = None,
|
155
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
156
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
157
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
158
|
+
time_updated: Optional[pulumi.Input[_builtins.str]] = None):
|
159
|
+
"""
|
160
|
+
Input properties used for looking up and filtering AttributeSet resources.
|
161
|
+
:param pulumi.Input[_builtins.str] attribute_set_type: The type of attribute set.
|
162
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] attribute_set_values: (Updatable) The list of values in an attribute set
|
163
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment that contains the attribute set.
|
164
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
165
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) Description of the attribute set.
|
166
|
+
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the attribute set. The name is unique and changeable.
|
167
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
168
|
+
|
169
|
+
|
170
|
+
** IMPORTANT **
|
171
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
172
|
+
:param pulumi.Input[_builtins.str] in_use: Indicates whether the attribute set is in use by other resource.
|
173
|
+
:param pulumi.Input[_builtins.bool] is_user_defined: A boolean flag indicating to list user defined or seeded attribute sets.
|
174
|
+
:param pulumi.Input[_builtins.str] state: The current state of an attribute set.
|
175
|
+
: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. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
176
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time an attribute set was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
177
|
+
:param pulumi.Input[_builtins.str] time_updated: The date and time an attribute set was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
178
|
+
"""
|
179
|
+
if attribute_set_type is not None:
|
180
|
+
pulumi.set(__self__, "attribute_set_type", attribute_set_type)
|
181
|
+
if attribute_set_values is not None:
|
182
|
+
pulumi.set(__self__, "attribute_set_values", attribute_set_values)
|
183
|
+
if compartment_id is not None:
|
184
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
185
|
+
if defined_tags is not None:
|
186
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
187
|
+
if description is not None:
|
188
|
+
pulumi.set(__self__, "description", description)
|
189
|
+
if display_name is not None:
|
190
|
+
pulumi.set(__self__, "display_name", display_name)
|
191
|
+
if freeform_tags is not None:
|
192
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
193
|
+
if in_use is not None:
|
194
|
+
pulumi.set(__self__, "in_use", in_use)
|
195
|
+
if is_user_defined is not None:
|
196
|
+
pulumi.set(__self__, "is_user_defined", is_user_defined)
|
197
|
+
if state is not None:
|
198
|
+
pulumi.set(__self__, "state", state)
|
199
|
+
if system_tags is not None:
|
200
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
201
|
+
if time_created is not None:
|
202
|
+
pulumi.set(__self__, "time_created", time_created)
|
203
|
+
if time_updated is not None:
|
204
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
205
|
+
|
206
|
+
@_builtins.property
|
207
|
+
@pulumi.getter(name="attributeSetType")
|
208
|
+
def attribute_set_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
209
|
+
"""
|
210
|
+
The type of attribute set.
|
211
|
+
"""
|
212
|
+
return pulumi.get(self, "attribute_set_type")
|
213
|
+
|
214
|
+
@attribute_set_type.setter
|
215
|
+
def attribute_set_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
216
|
+
pulumi.set(self, "attribute_set_type", value)
|
217
|
+
|
218
|
+
@_builtins.property
|
219
|
+
@pulumi.getter(name="attributeSetValues")
|
220
|
+
def attribute_set_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
221
|
+
"""
|
222
|
+
(Updatable) The list of values in an attribute set
|
223
|
+
"""
|
224
|
+
return pulumi.get(self, "attribute_set_values")
|
225
|
+
|
226
|
+
@attribute_set_values.setter
|
227
|
+
def attribute_set_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
228
|
+
pulumi.set(self, "attribute_set_values", value)
|
229
|
+
|
230
|
+
@_builtins.property
|
231
|
+
@pulumi.getter(name="compartmentId")
|
232
|
+
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
233
|
+
"""
|
234
|
+
(Updatable) The OCID of the compartment that contains the attribute set.
|
235
|
+
"""
|
236
|
+
return pulumi.get(self, "compartment_id")
|
237
|
+
|
238
|
+
@compartment_id.setter
|
239
|
+
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
240
|
+
pulumi.set(self, "compartment_id", value)
|
241
|
+
|
242
|
+
@_builtins.property
|
243
|
+
@pulumi.getter(name="definedTags")
|
244
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
245
|
+
"""
|
246
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
247
|
+
"""
|
248
|
+
return pulumi.get(self, "defined_tags")
|
249
|
+
|
250
|
+
@defined_tags.setter
|
251
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
252
|
+
pulumi.set(self, "defined_tags", value)
|
253
|
+
|
254
|
+
@_builtins.property
|
255
|
+
@pulumi.getter
|
256
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
257
|
+
"""
|
258
|
+
(Updatable) Description of the attribute set.
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "description")
|
261
|
+
|
262
|
+
@description.setter
|
263
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
264
|
+
pulumi.set(self, "description", value)
|
265
|
+
|
266
|
+
@_builtins.property
|
267
|
+
@pulumi.getter(name="displayName")
|
268
|
+
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
269
|
+
"""
|
270
|
+
(Updatable) The display name of the attribute set. The name is unique and changeable.
|
271
|
+
"""
|
272
|
+
return pulumi.get(self, "display_name")
|
273
|
+
|
274
|
+
@display_name.setter
|
275
|
+
def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
276
|
+
pulumi.set(self, "display_name", value)
|
277
|
+
|
278
|
+
@_builtins.property
|
279
|
+
@pulumi.getter(name="freeformTags")
|
280
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
281
|
+
"""
|
282
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
283
|
+
|
284
|
+
|
285
|
+
** IMPORTANT **
|
286
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "freeform_tags")
|
289
|
+
|
290
|
+
@freeform_tags.setter
|
291
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
292
|
+
pulumi.set(self, "freeform_tags", value)
|
293
|
+
|
294
|
+
@_builtins.property
|
295
|
+
@pulumi.getter(name="inUse")
|
296
|
+
def in_use(self) -> Optional[pulumi.Input[_builtins.str]]:
|
297
|
+
"""
|
298
|
+
Indicates whether the attribute set is in use by other resource.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "in_use")
|
301
|
+
|
302
|
+
@in_use.setter
|
303
|
+
def in_use(self, value: Optional[pulumi.Input[_builtins.str]]):
|
304
|
+
pulumi.set(self, "in_use", value)
|
305
|
+
|
306
|
+
@_builtins.property
|
307
|
+
@pulumi.getter(name="isUserDefined")
|
308
|
+
def is_user_defined(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
309
|
+
"""
|
310
|
+
A boolean flag indicating to list user defined or seeded attribute sets.
|
311
|
+
"""
|
312
|
+
return pulumi.get(self, "is_user_defined")
|
313
|
+
|
314
|
+
@is_user_defined.setter
|
315
|
+
def is_user_defined(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
316
|
+
pulumi.set(self, "is_user_defined", value)
|
317
|
+
|
318
|
+
@_builtins.property
|
319
|
+
@pulumi.getter
|
320
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
321
|
+
"""
|
322
|
+
The current state of an attribute set.
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "state")
|
325
|
+
|
326
|
+
@state.setter
|
327
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
328
|
+
pulumi.set(self, "state", value)
|
329
|
+
|
330
|
+
@_builtins.property
|
331
|
+
@pulumi.getter(name="systemTags")
|
332
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
333
|
+
"""
|
334
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
335
|
+
"""
|
336
|
+
return pulumi.get(self, "system_tags")
|
337
|
+
|
338
|
+
@system_tags.setter
|
339
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
340
|
+
pulumi.set(self, "system_tags", value)
|
341
|
+
|
342
|
+
@_builtins.property
|
343
|
+
@pulumi.getter(name="timeCreated")
|
344
|
+
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
345
|
+
"""
|
346
|
+
The date and time an attribute set was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
347
|
+
"""
|
348
|
+
return pulumi.get(self, "time_created")
|
349
|
+
|
350
|
+
@time_created.setter
|
351
|
+
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
352
|
+
pulumi.set(self, "time_created", value)
|
353
|
+
|
354
|
+
@_builtins.property
|
355
|
+
@pulumi.getter(name="timeUpdated")
|
356
|
+
def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
357
|
+
"""
|
358
|
+
The date and time an attribute set was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
359
|
+
"""
|
360
|
+
return pulumi.get(self, "time_updated")
|
361
|
+
|
362
|
+
@time_updated.setter
|
363
|
+
def time_updated(self, value: Optional[pulumi.Input[_builtins.str]]):
|
364
|
+
pulumi.set(self, "time_updated", value)
|
365
|
+
|
366
|
+
|
367
|
+
@pulumi.type_token("oci:DataSafe/attributeSet:AttributeSet")
|
368
|
+
class AttributeSet(pulumi.CustomResource):
|
369
|
+
@overload
|
370
|
+
def __init__(__self__,
|
371
|
+
resource_name: str,
|
372
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
373
|
+
attribute_set_type: Optional[pulumi.Input[_builtins.str]] = None,
|
374
|
+
attribute_set_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
375
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
376
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
377
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
378
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
379
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
380
|
+
__props__=None):
|
381
|
+
"""
|
382
|
+
This resource provides the Attribute Set resource in Oracle Cloud Infrastructure Data Safe service.
|
383
|
+
|
384
|
+
Creates an attribute set.
|
385
|
+
|
386
|
+
## Example Usage
|
387
|
+
|
388
|
+
```python
|
389
|
+
import pulumi
|
390
|
+
import pulumi_oci as oci
|
391
|
+
|
392
|
+
test_attribute_set = oci.datasafe.AttributeSet("test_attribute_set",
|
393
|
+
attribute_set_type=attribute_set_attribute_set_type,
|
394
|
+
attribute_set_values=attribute_set_attribute_set_values,
|
395
|
+
compartment_id=compartment_id,
|
396
|
+
display_name=attribute_set_display_name,
|
397
|
+
defined_tags={
|
398
|
+
"Operations.CostCenter": "42",
|
399
|
+
},
|
400
|
+
description=attribute_set_description,
|
401
|
+
freeform_tags={
|
402
|
+
"Department": "Finance",
|
403
|
+
})
|
404
|
+
```
|
405
|
+
|
406
|
+
## Import
|
407
|
+
|
408
|
+
AttributeSets can be imported using the `id`, e.g.
|
409
|
+
|
410
|
+
```sh
|
411
|
+
$ pulumi import oci:DataSafe/attributeSet:AttributeSet test_attribute_set "id"
|
412
|
+
```
|
413
|
+
|
414
|
+
:param str resource_name: The name of the resource.
|
415
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
416
|
+
:param pulumi.Input[_builtins.str] attribute_set_type: The type of attribute set.
|
417
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] attribute_set_values: (Updatable) The list of values in an attribute set
|
418
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment that contains the attribute set.
|
419
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
420
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) Description of the attribute set.
|
421
|
+
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the attribute set. The name is unique and changeable.
|
422
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
423
|
+
|
424
|
+
|
425
|
+
** IMPORTANT **
|
426
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
427
|
+
"""
|
428
|
+
...
|
429
|
+
@overload
|
430
|
+
def __init__(__self__,
|
431
|
+
resource_name: str,
|
432
|
+
args: AttributeSetArgs,
|
433
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
434
|
+
"""
|
435
|
+
This resource provides the Attribute Set resource in Oracle Cloud Infrastructure Data Safe service.
|
436
|
+
|
437
|
+
Creates an attribute set.
|
438
|
+
|
439
|
+
## Example Usage
|
440
|
+
|
441
|
+
```python
|
442
|
+
import pulumi
|
443
|
+
import pulumi_oci as oci
|
444
|
+
|
445
|
+
test_attribute_set = oci.datasafe.AttributeSet("test_attribute_set",
|
446
|
+
attribute_set_type=attribute_set_attribute_set_type,
|
447
|
+
attribute_set_values=attribute_set_attribute_set_values,
|
448
|
+
compartment_id=compartment_id,
|
449
|
+
display_name=attribute_set_display_name,
|
450
|
+
defined_tags={
|
451
|
+
"Operations.CostCenter": "42",
|
452
|
+
},
|
453
|
+
description=attribute_set_description,
|
454
|
+
freeform_tags={
|
455
|
+
"Department": "Finance",
|
456
|
+
})
|
457
|
+
```
|
458
|
+
|
459
|
+
## Import
|
460
|
+
|
461
|
+
AttributeSets can be imported using the `id`, e.g.
|
462
|
+
|
463
|
+
```sh
|
464
|
+
$ pulumi import oci:DataSafe/attributeSet:AttributeSet test_attribute_set "id"
|
465
|
+
```
|
466
|
+
|
467
|
+
:param str resource_name: The name of the resource.
|
468
|
+
:param AttributeSetArgs args: The arguments to use to populate this resource's properties.
|
469
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
470
|
+
"""
|
471
|
+
...
|
472
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
473
|
+
resource_args, opts = _utilities.get_resource_args_opts(AttributeSetArgs, pulumi.ResourceOptions, *args, **kwargs)
|
474
|
+
if resource_args is not None:
|
475
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
476
|
+
else:
|
477
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
478
|
+
|
479
|
+
def _internal_init(__self__,
|
480
|
+
resource_name: str,
|
481
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
482
|
+
attribute_set_type: Optional[pulumi.Input[_builtins.str]] = None,
|
483
|
+
attribute_set_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
484
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
485
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
486
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
487
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
488
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
489
|
+
__props__=None):
|
490
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
491
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
492
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
493
|
+
if opts.id is None:
|
494
|
+
if __props__ is not None:
|
495
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
496
|
+
__props__ = AttributeSetArgs.__new__(AttributeSetArgs)
|
497
|
+
|
498
|
+
if attribute_set_type is None and not opts.urn:
|
499
|
+
raise TypeError("Missing required property 'attribute_set_type'")
|
500
|
+
__props__.__dict__["attribute_set_type"] = attribute_set_type
|
501
|
+
if attribute_set_values is None and not opts.urn:
|
502
|
+
raise TypeError("Missing required property 'attribute_set_values'")
|
503
|
+
__props__.__dict__["attribute_set_values"] = attribute_set_values
|
504
|
+
if compartment_id is None and not opts.urn:
|
505
|
+
raise TypeError("Missing required property 'compartment_id'")
|
506
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
507
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
508
|
+
__props__.__dict__["description"] = description
|
509
|
+
if display_name is None and not opts.urn:
|
510
|
+
raise TypeError("Missing required property 'display_name'")
|
511
|
+
__props__.__dict__["display_name"] = display_name
|
512
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
513
|
+
__props__.__dict__["in_use"] = None
|
514
|
+
__props__.__dict__["is_user_defined"] = None
|
515
|
+
__props__.__dict__["state"] = None
|
516
|
+
__props__.__dict__["system_tags"] = None
|
517
|
+
__props__.__dict__["time_created"] = None
|
518
|
+
__props__.__dict__["time_updated"] = None
|
519
|
+
super(AttributeSet, __self__).__init__(
|
520
|
+
'oci:DataSafe/attributeSet:AttributeSet',
|
521
|
+
resource_name,
|
522
|
+
__props__,
|
523
|
+
opts)
|
524
|
+
|
525
|
+
@staticmethod
|
526
|
+
def get(resource_name: str,
|
527
|
+
id: pulumi.Input[str],
|
528
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
529
|
+
attribute_set_type: Optional[pulumi.Input[_builtins.str]] = None,
|
530
|
+
attribute_set_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
531
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
532
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
533
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
534
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
535
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
536
|
+
in_use: Optional[pulumi.Input[_builtins.str]] = None,
|
537
|
+
is_user_defined: Optional[pulumi.Input[_builtins.bool]] = None,
|
538
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
539
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
540
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
541
|
+
time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'AttributeSet':
|
542
|
+
"""
|
543
|
+
Get an existing AttributeSet resource's state with the given name, id, and optional extra
|
544
|
+
properties used to qualify the lookup.
|
545
|
+
|
546
|
+
:param str resource_name: The unique name of the resulting resource.
|
547
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
548
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
549
|
+
:param pulumi.Input[_builtins.str] attribute_set_type: The type of attribute set.
|
550
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] attribute_set_values: (Updatable) The list of values in an attribute set
|
551
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment that contains the attribute set.
|
552
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
553
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) Description of the attribute set.
|
554
|
+
:param pulumi.Input[_builtins.str] display_name: (Updatable) The display name of the attribute set. The name is unique and changeable.
|
555
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
556
|
+
|
557
|
+
|
558
|
+
** IMPORTANT **
|
559
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
560
|
+
:param pulumi.Input[_builtins.str] in_use: Indicates whether the attribute set is in use by other resource.
|
561
|
+
:param pulumi.Input[_builtins.bool] is_user_defined: A boolean flag indicating to list user defined or seeded attribute sets.
|
562
|
+
:param pulumi.Input[_builtins.str] state: The current state of an attribute set.
|
563
|
+
: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. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
564
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time an attribute set was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
565
|
+
:param pulumi.Input[_builtins.str] time_updated: The date and time an attribute set was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
566
|
+
"""
|
567
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
568
|
+
|
569
|
+
__props__ = _AttributeSetState.__new__(_AttributeSetState)
|
570
|
+
|
571
|
+
__props__.__dict__["attribute_set_type"] = attribute_set_type
|
572
|
+
__props__.__dict__["attribute_set_values"] = attribute_set_values
|
573
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
574
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
575
|
+
__props__.__dict__["description"] = description
|
576
|
+
__props__.__dict__["display_name"] = display_name
|
577
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
578
|
+
__props__.__dict__["in_use"] = in_use
|
579
|
+
__props__.__dict__["is_user_defined"] = is_user_defined
|
580
|
+
__props__.__dict__["state"] = state
|
581
|
+
__props__.__dict__["system_tags"] = system_tags
|
582
|
+
__props__.__dict__["time_created"] = time_created
|
583
|
+
__props__.__dict__["time_updated"] = time_updated
|
584
|
+
return AttributeSet(resource_name, opts=opts, __props__=__props__)
|
585
|
+
|
586
|
+
@_builtins.property
|
587
|
+
@pulumi.getter(name="attributeSetType")
|
588
|
+
def attribute_set_type(self) -> pulumi.Output[_builtins.str]:
|
589
|
+
"""
|
590
|
+
The type of attribute set.
|
591
|
+
"""
|
592
|
+
return pulumi.get(self, "attribute_set_type")
|
593
|
+
|
594
|
+
@_builtins.property
|
595
|
+
@pulumi.getter(name="attributeSetValues")
|
596
|
+
def attribute_set_values(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
597
|
+
"""
|
598
|
+
(Updatable) The list of values in an attribute set
|
599
|
+
"""
|
600
|
+
return pulumi.get(self, "attribute_set_values")
|
601
|
+
|
602
|
+
@_builtins.property
|
603
|
+
@pulumi.getter(name="compartmentId")
|
604
|
+
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
605
|
+
"""
|
606
|
+
(Updatable) The OCID of the compartment that contains the attribute set.
|
607
|
+
"""
|
608
|
+
return pulumi.get(self, "compartment_id")
|
609
|
+
|
610
|
+
@_builtins.property
|
611
|
+
@pulumi.getter(name="definedTags")
|
612
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
613
|
+
"""
|
614
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}`
|
615
|
+
"""
|
616
|
+
return pulumi.get(self, "defined_tags")
|
617
|
+
|
618
|
+
@_builtins.property
|
619
|
+
@pulumi.getter
|
620
|
+
def description(self) -> pulumi.Output[_builtins.str]:
|
621
|
+
"""
|
622
|
+
(Updatable) Description of the attribute set.
|
623
|
+
"""
|
624
|
+
return pulumi.get(self, "description")
|
625
|
+
|
626
|
+
@_builtins.property
|
627
|
+
@pulumi.getter(name="displayName")
|
628
|
+
def display_name(self) -> pulumi.Output[_builtins.str]:
|
629
|
+
"""
|
630
|
+
(Updatable) The display name of the attribute set. The name is unique and changeable.
|
631
|
+
"""
|
632
|
+
return pulumi.get(self, "display_name")
|
633
|
+
|
634
|
+
@_builtins.property
|
635
|
+
@pulumi.getter(name="freeformTags")
|
636
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
637
|
+
"""
|
638
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
|
639
|
+
|
640
|
+
|
641
|
+
** IMPORTANT **
|
642
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
643
|
+
"""
|
644
|
+
return pulumi.get(self, "freeform_tags")
|
645
|
+
|
646
|
+
@_builtins.property
|
647
|
+
@pulumi.getter(name="inUse")
|
648
|
+
def in_use(self) -> pulumi.Output[_builtins.str]:
|
649
|
+
"""
|
650
|
+
Indicates whether the attribute set is in use by other resource.
|
651
|
+
"""
|
652
|
+
return pulumi.get(self, "in_use")
|
653
|
+
|
654
|
+
@_builtins.property
|
655
|
+
@pulumi.getter(name="isUserDefined")
|
656
|
+
def is_user_defined(self) -> pulumi.Output[_builtins.bool]:
|
657
|
+
"""
|
658
|
+
A boolean flag indicating to list user defined or seeded attribute sets.
|
659
|
+
"""
|
660
|
+
return pulumi.get(self, "is_user_defined")
|
661
|
+
|
662
|
+
@_builtins.property
|
663
|
+
@pulumi.getter
|
664
|
+
def state(self) -> pulumi.Output[_builtins.str]:
|
665
|
+
"""
|
666
|
+
The current state of an attribute set.
|
667
|
+
"""
|
668
|
+
return pulumi.get(self, "state")
|
669
|
+
|
670
|
+
@_builtins.property
|
671
|
+
@pulumi.getter(name="systemTags")
|
672
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
673
|
+
"""
|
674
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
675
|
+
"""
|
676
|
+
return pulumi.get(self, "system_tags")
|
677
|
+
|
678
|
+
@_builtins.property
|
679
|
+
@pulumi.getter(name="timeCreated")
|
680
|
+
def time_created(self) -> pulumi.Output[_builtins.str]:
|
681
|
+
"""
|
682
|
+
The date and time an attribute set was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
683
|
+
"""
|
684
|
+
return pulumi.get(self, "time_created")
|
685
|
+
|
686
|
+
@_builtins.property
|
687
|
+
@pulumi.getter(name="timeUpdated")
|
688
|
+
def time_updated(self) -> pulumi.Output[_builtins.str]:
|
689
|
+
"""
|
690
|
+
The date and time an attribute set was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
691
|
+
"""
|
692
|
+
return pulumi.get(self, "time_updated")
|
693
|
+
|