published on Wednesday, Jun 24, 2026 by dell
published on Wednesday, Jun 24, 2026 by dell
This resource is used to manage the I/O limit rule entity of PowerStore Array. We can Create, Update and Delete the I/O limit rule using this resource. We can also import an existing I/O limit rule from PowerStore array.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as powerstore from "@pulumi/powerstore";
//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.
// Commands to run this tf file : terraform init && pulumi preview && pulumi up
// Create, Update, Delete is supported for this resource
// To import, check import.sh for more info
// name is required attribute to create
// type, max_iops, max_bw, and burst_percentage are optional attributes
const terraform_provider_test1 = new powerstore.IoLimitRule("terraform-provider-test1", {
name: "test_io_limit_rule1",
type: "Volume",
maxIops: 1000,
maxBw: 100,
burstPercentage: 100,
});
import pulumi
import pulumi_powerstore as powerstore
#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.
# Commands to run this tf file : terraform init && pulumi preview && pulumi up
# Create, Update, Delete is supported for this resource
# To import, check import.sh for more info
# name is required attribute to create
# type, max_iops, max_bw, and burst_percentage are optional attributes
terraform_provider_test1 = powerstore.IoLimitRule("terraform-provider-test1",
name="test_io_limit_rule1",
type="Volume",
max_iops=1000,
max_bw=100,
burst_percentage=100)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerstore/powerstore"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// 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.
// Commands to run this tf file : terraform init && pulumi preview && pulumi up
// Create, Update, Delete is supported for this resource
// To import, check import.sh for more info
// name is required attribute to create
// type, max_iops, max_bw, and burst_percentage are optional attributes
_, err := powerstore.NewIoLimitRule(ctx, "terraform-provider-test1", &powerstore.IoLimitRuleArgs{
Name: pulumi.String("test_io_limit_rule1"),
Type: pulumi.String("Volume"),
MaxIops: pulumi.Float64(1000),
MaxBw: pulumi.Float64(100),
BurstPercentage: pulumi.Float64(100),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Powerstore = Pulumi.Powerstore;
return await Deployment.RunAsync(() =>
{
//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.
// Commands to run this tf file : terraform init && pulumi preview && pulumi up
// Create, Update, Delete is supported for this resource
// To import, check import.sh for more info
// name is required attribute to create
// type, max_iops, max_bw, and burst_percentage are optional attributes
var terraform_provider_test1 = new Powerstore.IoLimitRule("terraform-provider-test1", new()
{
Name = "test_io_limit_rule1",
Type = "Volume",
MaxIops = 1000,
MaxBw = 100,
BurstPercentage = 100,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.powerstore.IoLimitRule;
import com.pulumi.powerstore.IoLimitRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
//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.
// Commands to run this tf file : terraform init && pulumi preview && pulumi up
// Create, Update, Delete is supported for this resource
// To import, check import.sh for more info
// name is required attribute to create
// type, max_iops, max_bw, and burst_percentage are optional attributes
var terraform_provider_test1 = new IoLimitRule("terraform-provider-test1", IoLimitRuleArgs.builder()
.name("test_io_limit_rule1")
.type("Volume")
.maxIops(1000.0)
.maxBw(100.0)
.burstPercentage(100.0)
.build());
}
}
resources:
# /*
# 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.
# */
# Commands to run this tf file : terraform init && pulumi preview && pulumi up
# Create, Update, Delete is supported for this resource
# To import, check import.sh for more info
# name is required attribute to create
# type, max_iops, max_bw, and burst_percentage are optional attributes
terraform-provider-test1:
type: powerstore:IoLimitRule
properties:
name: test_io_limit_rule1
type: Volume
maxIops: 1000
maxBw: 100
burstPercentage: 100
Example coming soon!
Create IoLimitRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IoLimitRule(name: string, args: IoLimitRuleArgs, opts?: CustomResourceOptions);@overload
def IoLimitRule(resource_name: str,
args: IoLimitRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IoLimitRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
type: Optional[str] = None,
burst_percentage: Optional[float] = None,
max_bw: Optional[float] = None,
max_iops: Optional[float] = None,
name: Optional[str] = None)func NewIoLimitRule(ctx *Context, name string, args IoLimitRuleArgs, opts ...ResourceOption) (*IoLimitRule, error)public IoLimitRule(string name, IoLimitRuleArgs args, CustomResourceOptions? opts = null)
public IoLimitRule(String name, IoLimitRuleArgs args)
public IoLimitRule(String name, IoLimitRuleArgs args, CustomResourceOptions options)
type: powerstore:IoLimitRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "powerstore_iolimitrule" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args IoLimitRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IoLimitRuleArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IoLimitRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IoLimitRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IoLimitRuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ioLimitRuleResource = new Powerstore.IoLimitRule("ioLimitRuleResource", new()
{
Type = "string",
BurstPercentage = 0,
MaxBw = 0,
MaxIops = 0,
Name = "string",
});
example, err := powerstore.NewIoLimitRule(ctx, "ioLimitRuleResource", &powerstore.IoLimitRuleArgs{
Type: pulumi.String("string"),
BurstPercentage: pulumi.Float64(0),
MaxBw: pulumi.Float64(0),
MaxIops: pulumi.Float64(0),
Name: pulumi.String("string"),
})
resource "powerstore_iolimitrule" "ioLimitRuleResource" {
type = "string"
burst_percentage = 0
max_bw = 0
max_iops = 0
name = "string"
}
var ioLimitRuleResource = new IoLimitRule("ioLimitRuleResource", IoLimitRuleArgs.builder()
.type("string")
.burstPercentage(0.0)
.maxBw(0.0)
.maxIops(0.0)
.name("string")
.build());
io_limit_rule_resource = powerstore.IoLimitRule("ioLimitRuleResource",
type="string",
burst_percentage=float(0),
max_bw=float(0),
max_iops=float(0),
name="string")
const ioLimitRuleResource = new powerstore.IoLimitRule("ioLimitRuleResource", {
type: "string",
burstPercentage: 0,
maxBw: 0,
maxIops: 0,
name: "string",
});
type: powerstore:IoLimitRule
properties:
burstPercentage: 0
maxBw: 0
maxIops: 0
name: string
type: string
IoLimitRule Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IoLimitRule resource accepts the following input properties:
- Type string
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- Burst
Percentage double - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- Max
Bw double - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- Max
Iops double - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- Name string
- Name of the I/O limit rule.
- Type string
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- Burst
Percentage float64 - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- Max
Bw float64 - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- Max
Iops float64 - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- Name string
- Name of the I/O limit rule.
- type string
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst_
percentage number - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max_
bw number - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max_
iops number - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name string
- Name of the I/O limit rule.
- type String
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst
Percentage Double - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max
Bw Double - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max
Iops Double - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name String
- Name of the I/O limit rule.
- type string
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst
Percentage number - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max
Bw number - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max
Iops number - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name string
- Name of the I/O limit rule.
- type str
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst_
percentage float - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max_
bw float - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max_
iops float - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name str
- Name of the I/O limit rule.
- type String
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst
Percentage Number - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max
Bw Number - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max
Iops Number - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name String
- Name of the I/O limit rule.
Outputs
All input properties are implicitly available as output properties. Additionally, the IoLimitRule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing IoLimitRule Resource
Get an existing IoLimitRule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IoLimitRuleState, opts?: CustomResourceOptions): IoLimitRule@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
burst_percentage: Optional[float] = None,
max_bw: Optional[float] = None,
max_iops: Optional[float] = None,
name: Optional[str] = None,
type: Optional[str] = None) -> IoLimitRulefunc GetIoLimitRule(ctx *Context, name string, id IDInput, state *IoLimitRuleState, opts ...ResourceOption) (*IoLimitRule, error)public static IoLimitRule Get(string name, Input<string> id, IoLimitRuleState? state, CustomResourceOptions? opts = null)public static IoLimitRule get(String name, Output<String> id, IoLimitRuleState state, CustomResourceOptions options)resources: _: type: powerstore:IoLimitRule get: id: ${id}import {
to = powerstore_iolimitrule.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Burst
Percentage double - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- Max
Bw double - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- Max
Iops double - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- Name string
- Name of the I/O limit rule.
- Type string
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- Burst
Percentage float64 - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- Max
Bw float64 - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- Max
Iops float64 - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- Name string
- Name of the I/O limit rule.
- Type string
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst_
percentage number - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max_
bw number - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max_
iops number - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name string
- Name of the I/O limit rule.
- type string
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst
Percentage Double - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max
Bw Double - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max
Iops Double - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name String
- Name of the I/O limit rule.
- type String
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst
Percentage number - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max
Bw number - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max
Iops number - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name string
- Name of the I/O limit rule.
- type string
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst_
percentage float - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max_
bw float - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max_
iops float - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name str
- Name of the I/O limit rule.
- type str
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
- burst
Percentage Number - Percentage indicating by how much the limit may be exceeded. If I/O normally runs below the specified limit, then the volume or volume group will accumulate burst credits that can be used to exceed the limit for a short period.
- max
Bw Number - Maximum I/O bandwidth measured in either Kilobytes per second or Kilobytes per second / per GB. If type is set to Absolute, maxbw is specified in Kilobytes per second. If type is set to Density, maxbw is specified in Kilobytes per second / per GB.
- max
Iops Number - Maximum I/O operations in either I/O operations per second (IOPS) or I/O operations per second per GB. If type is set to Absolute, maxiops is specified in IOPS. If type is set to Density, maxiops is specified in IOPS per GB.
- name String
- Name of the I/O limit rule.
- type String
- Type of bandwidth limit (Absolute or Density). Absolute limits are absolute values specified in I/O operations per second or bandwidth. Density limits are per GB, e.g., I/O operations per second per GB.
Import
#!/bin/bash
Copyright (c) 2024-2025 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.
Script to import an existing IO limit rule into Terraform
Usage: ./import.sh <io_limit_rule_id>
if [ -z “$1” ]; then
echo “Usage: $0 <io_limit_rule_id>”
echo “Example: $0 643d8f3c-7b8c-4d1e-9f2a-1b3c4d5e6f7g”
exit 1
fi
$ pulumi import powerstore:index/ioLimitRule:IoLimitRule terraform-provider-test1 "$1"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- powerstore dell/terraform-provider-powerstore
- License
- Notes
- This Pulumi package is based on the
powerstoreTerraform Provider.
published on Wednesday, Jun 24, 2026 by dell