apex_navigator_block_pools (Data Source)
This Terraform Datasource is used to query existing pools on Apex Navigator.
Example Usage
/*
Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.
Licensed under the Mozilla Public License Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://mozilla.org/MPL/2.0/
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
data "apex_navigator_block_pools" "example" {}
output "examples_pools" {
value = data.apex_navigator_block_pools.example
}
# data "apex_navigator_block_pools" "example" {
# filter {
# ids = ["pool-id"]
# }
# }
# output "examples_pools" {
# value = data.apex_navigator_block_pools.example
# }
Schema
Optional
filter
(Block, Optional) (see below for nested schema)
Read-Only
id
(String) ID of the pools datasourcepools
(Attributes List) List of pools (see below for nested schema)
Nested Schema for filter
Optional:
ids
(Set of String) Filter by ids
Nested Schema for pools
Optional:
free_size
(Number) Available capacity - Unit: bytesid
(String) Identifier of the poolissue_count
(Number) Number of health issues that are present on the poolname
(String) Name of the poolnative_id
(String) Native identifier of the pool, defined by the systemsubscribed_percent
(Number) Percentage of pool capacity that is provisionedsubscribed_size
(Number) Total subscribed capacity of the pool - Unit: bytessystem_id
(String) Unique identifier for the device or appliance.system_model
(String) Model of the systemsystem_name
(String) Name of the systemsystem_type
(String) Type of the systemtime_to_full_prediction
(String) This is an enumerated type showing a prediction of when the pool may become full. Possible values are: DAY (imminent); FULL (pool is full); WEEK (full in a week); MONTH (full in a month); QUARTER (full within a quarter); BEYOND (more than a quarter to become full); LEARNING (not enough data to perform an analysis); UNPREDICTABLE (missing or invalid data); or UNKNOWN (system error).total_size
(Number) Total capacity of the pool - Unit: bytestype
(String) The type of poolused_percent
(Number) Percentage of pool capacity that is being usedused_size
(Number) Capacity of the pool that is being used - Unit: bytes