pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.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 +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/kms/vault_verification.py +62 -2
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -10,6 +10,14 @@ from .get_internal_namespace_occ_overviews import *
|
|
10
10
|
from .get_internal_occ_availability_catalogs import *
|
11
11
|
from .get_internal_occ_handover_resource_block_details import *
|
12
12
|
from .get_internal_occ_handover_resource_blocks import *
|
13
|
+
from .get_internal_occm_demand_signal import *
|
14
|
+
from .get_internal_occm_demand_signal_catalog import *
|
15
|
+
from .get_internal_occm_demand_signal_catalog_resources import *
|
16
|
+
from .get_internal_occm_demand_signal_catalogs import *
|
17
|
+
from .get_internal_occm_demand_signal_deliveries import *
|
18
|
+
from .get_internal_occm_demand_signal_delivery import *
|
19
|
+
from .get_internal_occm_demand_signal_items import *
|
20
|
+
from .get_internal_occm_demand_signals import *
|
13
21
|
from .get_namespace_occ_overviews import *
|
14
22
|
from .get_occ_availability_catalog import *
|
15
23
|
from .get_occ_availability_catalog_content import *
|
@@ -21,9 +29,19 @@ from .get_occ_customer_group import *
|
|
21
29
|
from .get_occ_customer_groups import *
|
22
30
|
from .get_occ_handover_resource_block_details import *
|
23
31
|
from .get_occ_handover_resource_blocks import *
|
32
|
+
from .get_occm_demand_signal import *
|
33
|
+
from .get_occm_demand_signal_catalog_resources import *
|
34
|
+
from .get_occm_demand_signal_deliveries import *
|
35
|
+
from .get_occm_demand_signal_item import *
|
36
|
+
from .get_occm_demand_signal_items import *
|
37
|
+
from .get_occm_demand_signals import *
|
38
|
+
from .internal_occm_demand_signal import *
|
39
|
+
from .internal_occm_demand_signal_delivery import *
|
24
40
|
from .occ_availability_catalog import *
|
25
41
|
from .occ_capacity_request import *
|
26
42
|
from .occ_customer_group import *
|
27
43
|
from .occ_customer_group_occ_customer import *
|
44
|
+
from .occm_demand_signal import *
|
45
|
+
from .occm_demand_signal_item import *
|
28
46
|
from ._inputs import *
|
29
47
|
from . import outputs
|
@@ -36,6 +36,16 @@ __all__ = [
|
|
36
36
|
'GetInternalOccHandoverResourceBlockDetailsFilterArgsDict',
|
37
37
|
'GetInternalOccHandoverResourceBlocksFilterArgs',
|
38
38
|
'GetInternalOccHandoverResourceBlocksFilterArgsDict',
|
39
|
+
'GetInternalOccmDemandSignalCatalogResourcesFilterArgs',
|
40
|
+
'GetInternalOccmDemandSignalCatalogResourcesFilterArgsDict',
|
41
|
+
'GetInternalOccmDemandSignalCatalogsFilterArgs',
|
42
|
+
'GetInternalOccmDemandSignalCatalogsFilterArgsDict',
|
43
|
+
'GetInternalOccmDemandSignalDeliveriesFilterArgs',
|
44
|
+
'GetInternalOccmDemandSignalDeliveriesFilterArgsDict',
|
45
|
+
'GetInternalOccmDemandSignalItemsFilterArgs',
|
46
|
+
'GetInternalOccmDemandSignalItemsFilterArgsDict',
|
47
|
+
'GetInternalOccmDemandSignalsFilterArgs',
|
48
|
+
'GetInternalOccmDemandSignalsFilterArgsDict',
|
39
49
|
'GetNamespaceOccOverviewsFilterArgs',
|
40
50
|
'GetNamespaceOccOverviewsFilterArgsDict',
|
41
51
|
'GetOccAvailabilityCatalogOccAvailabilitiesFilterArgs',
|
@@ -50,6 +60,14 @@ __all__ = [
|
|
50
60
|
'GetOccHandoverResourceBlockDetailsFilterArgsDict',
|
51
61
|
'GetOccHandoverResourceBlocksFilterArgs',
|
52
62
|
'GetOccHandoverResourceBlocksFilterArgsDict',
|
63
|
+
'GetOccmDemandSignalCatalogResourcesFilterArgs',
|
64
|
+
'GetOccmDemandSignalCatalogResourcesFilterArgsDict',
|
65
|
+
'GetOccmDemandSignalDeliveriesFilterArgs',
|
66
|
+
'GetOccmDemandSignalDeliveriesFilterArgsDict',
|
67
|
+
'GetOccmDemandSignalItemsFilterArgs',
|
68
|
+
'GetOccmDemandSignalItemsFilterArgsDict',
|
69
|
+
'GetOccmDemandSignalsFilterArgs',
|
70
|
+
'GetOccmDemandSignalsFilterArgsDict',
|
53
71
|
]
|
54
72
|
|
55
73
|
MYPY = False
|
@@ -1043,6 +1061,250 @@ class GetInternalOccHandoverResourceBlocksFilterArgs:
|
|
1043
1061
|
pulumi.set(self, "regex", value)
|
1044
1062
|
|
1045
1063
|
|
1064
|
+
if not MYPY:
|
1065
|
+
class GetInternalOccmDemandSignalCatalogResourcesFilterArgsDict(TypedDict):
|
1066
|
+
name: builtins.str
|
1067
|
+
"""
|
1068
|
+
A query parameter to filter the list of demand signal catalog resource based on the resource name.
|
1069
|
+
"""
|
1070
|
+
values: Sequence[builtins.str]
|
1071
|
+
regex: NotRequired[builtins.bool]
|
1072
|
+
elif False:
|
1073
|
+
GetInternalOccmDemandSignalCatalogResourcesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1074
|
+
|
1075
|
+
@pulumi.input_type
|
1076
|
+
class GetInternalOccmDemandSignalCatalogResourcesFilterArgs:
|
1077
|
+
def __init__(__self__, *,
|
1078
|
+
name: builtins.str,
|
1079
|
+
values: Sequence[builtins.str],
|
1080
|
+
regex: Optional[builtins.bool] = None):
|
1081
|
+
"""
|
1082
|
+
:param builtins.str name: A query parameter to filter the list of demand signal catalog resource based on the resource name.
|
1083
|
+
"""
|
1084
|
+
pulumi.set(__self__, "name", name)
|
1085
|
+
pulumi.set(__self__, "values", values)
|
1086
|
+
if regex is not None:
|
1087
|
+
pulumi.set(__self__, "regex", regex)
|
1088
|
+
|
1089
|
+
@property
|
1090
|
+
@pulumi.getter
|
1091
|
+
def name(self) -> builtins.str:
|
1092
|
+
"""
|
1093
|
+
A query parameter to filter the list of demand signal catalog resource based on the resource name.
|
1094
|
+
"""
|
1095
|
+
return pulumi.get(self, "name")
|
1096
|
+
|
1097
|
+
@name.setter
|
1098
|
+
def name(self, value: builtins.str):
|
1099
|
+
pulumi.set(self, "name", value)
|
1100
|
+
|
1101
|
+
@property
|
1102
|
+
@pulumi.getter
|
1103
|
+
def values(self) -> Sequence[builtins.str]:
|
1104
|
+
return pulumi.get(self, "values")
|
1105
|
+
|
1106
|
+
@values.setter
|
1107
|
+
def values(self, value: Sequence[builtins.str]):
|
1108
|
+
pulumi.set(self, "values", value)
|
1109
|
+
|
1110
|
+
@property
|
1111
|
+
@pulumi.getter
|
1112
|
+
def regex(self) -> Optional[builtins.bool]:
|
1113
|
+
return pulumi.get(self, "regex")
|
1114
|
+
|
1115
|
+
@regex.setter
|
1116
|
+
def regex(self, value: Optional[builtins.bool]):
|
1117
|
+
pulumi.set(self, "regex", value)
|
1118
|
+
|
1119
|
+
|
1120
|
+
if not MYPY:
|
1121
|
+
class GetInternalOccmDemandSignalCatalogsFilterArgsDict(TypedDict):
|
1122
|
+
name: builtins.str
|
1123
|
+
values: Sequence[builtins.str]
|
1124
|
+
regex: NotRequired[builtins.bool]
|
1125
|
+
elif False:
|
1126
|
+
GetInternalOccmDemandSignalCatalogsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1127
|
+
|
1128
|
+
@pulumi.input_type
|
1129
|
+
class GetInternalOccmDemandSignalCatalogsFilterArgs:
|
1130
|
+
def __init__(__self__, *,
|
1131
|
+
name: builtins.str,
|
1132
|
+
values: Sequence[builtins.str],
|
1133
|
+
regex: Optional[builtins.bool] = None):
|
1134
|
+
pulumi.set(__self__, "name", name)
|
1135
|
+
pulumi.set(__self__, "values", values)
|
1136
|
+
if regex is not None:
|
1137
|
+
pulumi.set(__self__, "regex", regex)
|
1138
|
+
|
1139
|
+
@property
|
1140
|
+
@pulumi.getter
|
1141
|
+
def name(self) -> builtins.str:
|
1142
|
+
return pulumi.get(self, "name")
|
1143
|
+
|
1144
|
+
@name.setter
|
1145
|
+
def name(self, value: builtins.str):
|
1146
|
+
pulumi.set(self, "name", value)
|
1147
|
+
|
1148
|
+
@property
|
1149
|
+
@pulumi.getter
|
1150
|
+
def values(self) -> Sequence[builtins.str]:
|
1151
|
+
return pulumi.get(self, "values")
|
1152
|
+
|
1153
|
+
@values.setter
|
1154
|
+
def values(self, value: Sequence[builtins.str]):
|
1155
|
+
pulumi.set(self, "values", value)
|
1156
|
+
|
1157
|
+
@property
|
1158
|
+
@pulumi.getter
|
1159
|
+
def regex(self) -> Optional[builtins.bool]:
|
1160
|
+
return pulumi.get(self, "regex")
|
1161
|
+
|
1162
|
+
@regex.setter
|
1163
|
+
def regex(self, value: Optional[builtins.bool]):
|
1164
|
+
pulumi.set(self, "regex", value)
|
1165
|
+
|
1166
|
+
|
1167
|
+
if not MYPY:
|
1168
|
+
class GetInternalOccmDemandSignalDeliveriesFilterArgsDict(TypedDict):
|
1169
|
+
name: builtins.str
|
1170
|
+
values: Sequence[builtins.str]
|
1171
|
+
regex: NotRequired[builtins.bool]
|
1172
|
+
elif False:
|
1173
|
+
GetInternalOccmDemandSignalDeliveriesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1174
|
+
|
1175
|
+
@pulumi.input_type
|
1176
|
+
class GetInternalOccmDemandSignalDeliveriesFilterArgs:
|
1177
|
+
def __init__(__self__, *,
|
1178
|
+
name: builtins.str,
|
1179
|
+
values: Sequence[builtins.str],
|
1180
|
+
regex: Optional[builtins.bool] = None):
|
1181
|
+
pulumi.set(__self__, "name", name)
|
1182
|
+
pulumi.set(__self__, "values", values)
|
1183
|
+
if regex is not None:
|
1184
|
+
pulumi.set(__self__, "regex", regex)
|
1185
|
+
|
1186
|
+
@property
|
1187
|
+
@pulumi.getter
|
1188
|
+
def name(self) -> builtins.str:
|
1189
|
+
return pulumi.get(self, "name")
|
1190
|
+
|
1191
|
+
@name.setter
|
1192
|
+
def name(self, value: builtins.str):
|
1193
|
+
pulumi.set(self, "name", value)
|
1194
|
+
|
1195
|
+
@property
|
1196
|
+
@pulumi.getter
|
1197
|
+
def values(self) -> Sequence[builtins.str]:
|
1198
|
+
return pulumi.get(self, "values")
|
1199
|
+
|
1200
|
+
@values.setter
|
1201
|
+
def values(self, value: Sequence[builtins.str]):
|
1202
|
+
pulumi.set(self, "values", value)
|
1203
|
+
|
1204
|
+
@property
|
1205
|
+
@pulumi.getter
|
1206
|
+
def regex(self) -> Optional[builtins.bool]:
|
1207
|
+
return pulumi.get(self, "regex")
|
1208
|
+
|
1209
|
+
@regex.setter
|
1210
|
+
def regex(self, value: Optional[builtins.bool]):
|
1211
|
+
pulumi.set(self, "regex", value)
|
1212
|
+
|
1213
|
+
|
1214
|
+
if not MYPY:
|
1215
|
+
class GetInternalOccmDemandSignalItemsFilterArgsDict(TypedDict):
|
1216
|
+
name: builtins.str
|
1217
|
+
values: Sequence[builtins.str]
|
1218
|
+
regex: NotRequired[builtins.bool]
|
1219
|
+
elif False:
|
1220
|
+
GetInternalOccmDemandSignalItemsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1221
|
+
|
1222
|
+
@pulumi.input_type
|
1223
|
+
class GetInternalOccmDemandSignalItemsFilterArgs:
|
1224
|
+
def __init__(__self__, *,
|
1225
|
+
name: builtins.str,
|
1226
|
+
values: Sequence[builtins.str],
|
1227
|
+
regex: Optional[builtins.bool] = None):
|
1228
|
+
pulumi.set(__self__, "name", name)
|
1229
|
+
pulumi.set(__self__, "values", values)
|
1230
|
+
if regex is not None:
|
1231
|
+
pulumi.set(__self__, "regex", regex)
|
1232
|
+
|
1233
|
+
@property
|
1234
|
+
@pulumi.getter
|
1235
|
+
def name(self) -> builtins.str:
|
1236
|
+
return pulumi.get(self, "name")
|
1237
|
+
|
1238
|
+
@name.setter
|
1239
|
+
def name(self, value: builtins.str):
|
1240
|
+
pulumi.set(self, "name", value)
|
1241
|
+
|
1242
|
+
@property
|
1243
|
+
@pulumi.getter
|
1244
|
+
def values(self) -> Sequence[builtins.str]:
|
1245
|
+
return pulumi.get(self, "values")
|
1246
|
+
|
1247
|
+
@values.setter
|
1248
|
+
def values(self, value: Sequence[builtins.str]):
|
1249
|
+
pulumi.set(self, "values", value)
|
1250
|
+
|
1251
|
+
@property
|
1252
|
+
@pulumi.getter
|
1253
|
+
def regex(self) -> Optional[builtins.bool]:
|
1254
|
+
return pulumi.get(self, "regex")
|
1255
|
+
|
1256
|
+
@regex.setter
|
1257
|
+
def regex(self, value: Optional[builtins.bool]):
|
1258
|
+
pulumi.set(self, "regex", value)
|
1259
|
+
|
1260
|
+
|
1261
|
+
if not MYPY:
|
1262
|
+
class GetInternalOccmDemandSignalsFilterArgsDict(TypedDict):
|
1263
|
+
name: builtins.str
|
1264
|
+
values: Sequence[builtins.str]
|
1265
|
+
regex: NotRequired[builtins.bool]
|
1266
|
+
elif False:
|
1267
|
+
GetInternalOccmDemandSignalsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1268
|
+
|
1269
|
+
@pulumi.input_type
|
1270
|
+
class GetInternalOccmDemandSignalsFilterArgs:
|
1271
|
+
def __init__(__self__, *,
|
1272
|
+
name: builtins.str,
|
1273
|
+
values: Sequence[builtins.str],
|
1274
|
+
regex: Optional[builtins.bool] = None):
|
1275
|
+
pulumi.set(__self__, "name", name)
|
1276
|
+
pulumi.set(__self__, "values", values)
|
1277
|
+
if regex is not None:
|
1278
|
+
pulumi.set(__self__, "regex", regex)
|
1279
|
+
|
1280
|
+
@property
|
1281
|
+
@pulumi.getter
|
1282
|
+
def name(self) -> builtins.str:
|
1283
|
+
return pulumi.get(self, "name")
|
1284
|
+
|
1285
|
+
@name.setter
|
1286
|
+
def name(self, value: builtins.str):
|
1287
|
+
pulumi.set(self, "name", value)
|
1288
|
+
|
1289
|
+
@property
|
1290
|
+
@pulumi.getter
|
1291
|
+
def values(self) -> Sequence[builtins.str]:
|
1292
|
+
return pulumi.get(self, "values")
|
1293
|
+
|
1294
|
+
@values.setter
|
1295
|
+
def values(self, value: Sequence[builtins.str]):
|
1296
|
+
pulumi.set(self, "values", value)
|
1297
|
+
|
1298
|
+
@property
|
1299
|
+
@pulumi.getter
|
1300
|
+
def regex(self) -> Optional[builtins.bool]:
|
1301
|
+
return pulumi.get(self, "regex")
|
1302
|
+
|
1303
|
+
@regex.setter
|
1304
|
+
def regex(self, value: Optional[builtins.bool]):
|
1305
|
+
pulumi.set(self, "regex", value)
|
1306
|
+
|
1307
|
+
|
1046
1308
|
if not MYPY:
|
1047
1309
|
class GetNamespaceOccOverviewsFilterArgsDict(TypedDict):
|
1048
1310
|
name: builtins.str
|
@@ -1372,3 +1634,200 @@ class GetOccHandoverResourceBlocksFilterArgs:
|
|
1372
1634
|
pulumi.set(self, "regex", value)
|
1373
1635
|
|
1374
1636
|
|
1637
|
+
if not MYPY:
|
1638
|
+
class GetOccmDemandSignalCatalogResourcesFilterArgsDict(TypedDict):
|
1639
|
+
name: builtins.str
|
1640
|
+
"""
|
1641
|
+
A query parameter to filter the list of demand signal catalog resource based on the resource name.
|
1642
|
+
"""
|
1643
|
+
values: Sequence[builtins.str]
|
1644
|
+
regex: NotRequired[builtins.bool]
|
1645
|
+
elif False:
|
1646
|
+
GetOccmDemandSignalCatalogResourcesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1647
|
+
|
1648
|
+
@pulumi.input_type
|
1649
|
+
class GetOccmDemandSignalCatalogResourcesFilterArgs:
|
1650
|
+
def __init__(__self__, *,
|
1651
|
+
name: builtins.str,
|
1652
|
+
values: Sequence[builtins.str],
|
1653
|
+
regex: Optional[builtins.bool] = None):
|
1654
|
+
"""
|
1655
|
+
:param builtins.str name: A query parameter to filter the list of demand signal catalog resource based on the resource name.
|
1656
|
+
"""
|
1657
|
+
pulumi.set(__self__, "name", name)
|
1658
|
+
pulumi.set(__self__, "values", values)
|
1659
|
+
if regex is not None:
|
1660
|
+
pulumi.set(__self__, "regex", regex)
|
1661
|
+
|
1662
|
+
@property
|
1663
|
+
@pulumi.getter
|
1664
|
+
def name(self) -> builtins.str:
|
1665
|
+
"""
|
1666
|
+
A query parameter to filter the list of demand signal catalog resource based on the resource name.
|
1667
|
+
"""
|
1668
|
+
return pulumi.get(self, "name")
|
1669
|
+
|
1670
|
+
@name.setter
|
1671
|
+
def name(self, value: builtins.str):
|
1672
|
+
pulumi.set(self, "name", value)
|
1673
|
+
|
1674
|
+
@property
|
1675
|
+
@pulumi.getter
|
1676
|
+
def values(self) -> Sequence[builtins.str]:
|
1677
|
+
return pulumi.get(self, "values")
|
1678
|
+
|
1679
|
+
@values.setter
|
1680
|
+
def values(self, value: Sequence[builtins.str]):
|
1681
|
+
pulumi.set(self, "values", value)
|
1682
|
+
|
1683
|
+
@property
|
1684
|
+
@pulumi.getter
|
1685
|
+
def regex(self) -> Optional[builtins.bool]:
|
1686
|
+
return pulumi.get(self, "regex")
|
1687
|
+
|
1688
|
+
@regex.setter
|
1689
|
+
def regex(self, value: Optional[builtins.bool]):
|
1690
|
+
pulumi.set(self, "regex", value)
|
1691
|
+
|
1692
|
+
|
1693
|
+
if not MYPY:
|
1694
|
+
class GetOccmDemandSignalDeliveriesFilterArgsDict(TypedDict):
|
1695
|
+
name: builtins.str
|
1696
|
+
values: Sequence[builtins.str]
|
1697
|
+
regex: NotRequired[builtins.bool]
|
1698
|
+
elif False:
|
1699
|
+
GetOccmDemandSignalDeliveriesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1700
|
+
|
1701
|
+
@pulumi.input_type
|
1702
|
+
class GetOccmDemandSignalDeliveriesFilterArgs:
|
1703
|
+
def __init__(__self__, *,
|
1704
|
+
name: builtins.str,
|
1705
|
+
values: Sequence[builtins.str],
|
1706
|
+
regex: Optional[builtins.bool] = None):
|
1707
|
+
pulumi.set(__self__, "name", name)
|
1708
|
+
pulumi.set(__self__, "values", values)
|
1709
|
+
if regex is not None:
|
1710
|
+
pulumi.set(__self__, "regex", regex)
|
1711
|
+
|
1712
|
+
@property
|
1713
|
+
@pulumi.getter
|
1714
|
+
def name(self) -> builtins.str:
|
1715
|
+
return pulumi.get(self, "name")
|
1716
|
+
|
1717
|
+
@name.setter
|
1718
|
+
def name(self, value: builtins.str):
|
1719
|
+
pulumi.set(self, "name", value)
|
1720
|
+
|
1721
|
+
@property
|
1722
|
+
@pulumi.getter
|
1723
|
+
def values(self) -> Sequence[builtins.str]:
|
1724
|
+
return pulumi.get(self, "values")
|
1725
|
+
|
1726
|
+
@values.setter
|
1727
|
+
def values(self, value: Sequence[builtins.str]):
|
1728
|
+
pulumi.set(self, "values", value)
|
1729
|
+
|
1730
|
+
@property
|
1731
|
+
@pulumi.getter
|
1732
|
+
def regex(self) -> Optional[builtins.bool]:
|
1733
|
+
return pulumi.get(self, "regex")
|
1734
|
+
|
1735
|
+
@regex.setter
|
1736
|
+
def regex(self, value: Optional[builtins.bool]):
|
1737
|
+
pulumi.set(self, "regex", value)
|
1738
|
+
|
1739
|
+
|
1740
|
+
if not MYPY:
|
1741
|
+
class GetOccmDemandSignalItemsFilterArgsDict(TypedDict):
|
1742
|
+
name: builtins.str
|
1743
|
+
values: Sequence[builtins.str]
|
1744
|
+
regex: NotRequired[builtins.bool]
|
1745
|
+
elif False:
|
1746
|
+
GetOccmDemandSignalItemsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1747
|
+
|
1748
|
+
@pulumi.input_type
|
1749
|
+
class GetOccmDemandSignalItemsFilterArgs:
|
1750
|
+
def __init__(__self__, *,
|
1751
|
+
name: builtins.str,
|
1752
|
+
values: Sequence[builtins.str],
|
1753
|
+
regex: Optional[builtins.bool] = None):
|
1754
|
+
pulumi.set(__self__, "name", name)
|
1755
|
+
pulumi.set(__self__, "values", values)
|
1756
|
+
if regex is not None:
|
1757
|
+
pulumi.set(__self__, "regex", regex)
|
1758
|
+
|
1759
|
+
@property
|
1760
|
+
@pulumi.getter
|
1761
|
+
def name(self) -> builtins.str:
|
1762
|
+
return pulumi.get(self, "name")
|
1763
|
+
|
1764
|
+
@name.setter
|
1765
|
+
def name(self, value: builtins.str):
|
1766
|
+
pulumi.set(self, "name", value)
|
1767
|
+
|
1768
|
+
@property
|
1769
|
+
@pulumi.getter
|
1770
|
+
def values(self) -> Sequence[builtins.str]:
|
1771
|
+
return pulumi.get(self, "values")
|
1772
|
+
|
1773
|
+
@values.setter
|
1774
|
+
def values(self, value: Sequence[builtins.str]):
|
1775
|
+
pulumi.set(self, "values", value)
|
1776
|
+
|
1777
|
+
@property
|
1778
|
+
@pulumi.getter
|
1779
|
+
def regex(self) -> Optional[builtins.bool]:
|
1780
|
+
return pulumi.get(self, "regex")
|
1781
|
+
|
1782
|
+
@regex.setter
|
1783
|
+
def regex(self, value: Optional[builtins.bool]):
|
1784
|
+
pulumi.set(self, "regex", value)
|
1785
|
+
|
1786
|
+
|
1787
|
+
if not MYPY:
|
1788
|
+
class GetOccmDemandSignalsFilterArgsDict(TypedDict):
|
1789
|
+
name: builtins.str
|
1790
|
+
values: Sequence[builtins.str]
|
1791
|
+
regex: NotRequired[builtins.bool]
|
1792
|
+
elif False:
|
1793
|
+
GetOccmDemandSignalsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1794
|
+
|
1795
|
+
@pulumi.input_type
|
1796
|
+
class GetOccmDemandSignalsFilterArgs:
|
1797
|
+
def __init__(__self__, *,
|
1798
|
+
name: builtins.str,
|
1799
|
+
values: Sequence[builtins.str],
|
1800
|
+
regex: Optional[builtins.bool] = None):
|
1801
|
+
pulumi.set(__self__, "name", name)
|
1802
|
+
pulumi.set(__self__, "values", values)
|
1803
|
+
if regex is not None:
|
1804
|
+
pulumi.set(__self__, "regex", regex)
|
1805
|
+
|
1806
|
+
@property
|
1807
|
+
@pulumi.getter
|
1808
|
+
def name(self) -> builtins.str:
|
1809
|
+
return pulumi.get(self, "name")
|
1810
|
+
|
1811
|
+
@name.setter
|
1812
|
+
def name(self, value: builtins.str):
|
1813
|
+
pulumi.set(self, "name", value)
|
1814
|
+
|
1815
|
+
@property
|
1816
|
+
@pulumi.getter
|
1817
|
+
def values(self) -> Sequence[builtins.str]:
|
1818
|
+
return pulumi.get(self, "values")
|
1819
|
+
|
1820
|
+
@values.setter
|
1821
|
+
def values(self, value: Sequence[builtins.str]):
|
1822
|
+
pulumi.set(self, "values", value)
|
1823
|
+
|
1824
|
+
@property
|
1825
|
+
@pulumi.getter
|
1826
|
+
def regex(self) -> Optional[builtins.bool]:
|
1827
|
+
return pulumi.get(self, "regex")
|
1828
|
+
|
1829
|
+
@regex.setter
|
1830
|
+
def regex(self, value: Optional[builtins.bool]):
|
1831
|
+
pulumi.set(self, "regex", value)
|
1832
|
+
|
1833
|
+
|