1. Packages
  2. Packages
  3. Nutanix
  4. API Docs
  5. getStorageContainerStatsInfoV2
Viewing docs for Nutanix v0.13.0
published on Tuesday, Apr 28, 2026 by Piers Karsenbarg
nutanix logo
Viewing docs for Nutanix v0.13.0
published on Tuesday, Apr 28, 2026 by Piers Karsenbarg

    Provides a datasource to Fetches the stats information of the Storage Container identified by {containerExtId}.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pierskarsenbarg/nutanix";
    
    const example = nutanix.getStorageContainerStatsInfoV2({
        extId: "1891fd3a-1ef7-4947-af56-9ee4b973c6fd",
        startTime: "2024-08-01T00:00:00Z",
        endTime: "2024-08-30T00:00:00Z",
        samplingInterval: 1,
        statType: "SUM",
    });
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    example = nutanix.get_storage_container_stats_info_v2(ext_id="1891fd3a-1ef7-4947-af56-9ee4b973c6fd",
        start_time="2024-08-01T00:00:00Z",
        end_time="2024-08-30T00:00:00Z",
        sampling_interval=1,
        stat_type="SUM")
    
    package main
    
    import (
    	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nutanix.GetStorageContainerStatsInfoV2(ctx, &nutanix.GetStorageContainerStatsInfoV2Args{
    			ExtId:            "1891fd3a-1ef7-4947-af56-9ee4b973c6fd",
    			StartTime:        "2024-08-01T00:00:00Z",
    			EndTime:          "2024-08-30T00:00:00Z",
    			SamplingInterval: pulumi.IntRef(1),
    			StatType:         pulumi.StringRef("SUM"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = PiersKarsenbarg.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Nutanix.Index.GetStorageContainerStatsInfoV2.Invoke(new()
        {
            ExtId = "1891fd3a-1ef7-4947-af56-9ee4b973c6fd",
            StartTime = "2024-08-01T00:00:00Z",
            EndTime = "2024-08-30T00:00:00Z",
            SamplingInterval = 1,
            StatType = "SUM",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.NutanixFunctions;
    import com.pulumi.nutanix.inputs.GetStorageContainerStatsInfoV2Args;
    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) {
            final var example = NutanixFunctions.getStorageContainerStatsInfoV2(GetStorageContainerStatsInfoV2Args.builder()
                .extId("1891fd3a-1ef7-4947-af56-9ee4b973c6fd")
                .startTime("2024-08-01T00:00:00Z")
                .endTime("2024-08-30T00:00:00Z")
                .samplingInterval(1)
                .statType("SUM")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: nutanix:getStorageContainerStatsInfoV2
          arguments:
            extId: 1891fd3a-1ef7-4947-af56-9ee4b973c6fd
            startTime: 2024-08-01T00:00:00Z
            endTime: 2024-08-30T00:00:00Z
            samplingInterval: 1
            statType: SUM
    

    Using getStorageContainerStatsInfoV2

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getStorageContainerStatsInfoV2(args: GetStorageContainerStatsInfoV2Args, opts?: InvokeOptions): Promise<GetStorageContainerStatsInfoV2Result>
    function getStorageContainerStatsInfoV2Output(args: GetStorageContainerStatsInfoV2OutputArgs, opts?: InvokeOptions): Output<GetStorageContainerStatsInfoV2Result>
    def get_storage_container_stats_info_v2(end_time: Optional[str] = None,
                                            ext_id: Optional[str] = None,
                                            sampling_interval: Optional[int] = None,
                                            start_time: Optional[str] = None,
                                            stat_type: Optional[str] = None,
                                            opts: Optional[InvokeOptions] = None) -> GetStorageContainerStatsInfoV2Result
    def get_storage_container_stats_info_v2_output(end_time: pulumi.Input[Optional[str]] = None,
                                            ext_id: pulumi.Input[Optional[str]] = None,
                                            sampling_interval: pulumi.Input[Optional[int]] = None,
                                            start_time: pulumi.Input[Optional[str]] = None,
                                            stat_type: pulumi.Input[Optional[str]] = None,
                                            opts: Optional[InvokeOptions] = None) -> Output[GetStorageContainerStatsInfoV2Result]
    func GetStorageContainerStatsInfoV2(ctx *Context, args *GetStorageContainerStatsInfoV2Args, opts ...InvokeOption) (*GetStorageContainerStatsInfoV2Result, error)
    func GetStorageContainerStatsInfoV2Output(ctx *Context, args *GetStorageContainerStatsInfoV2OutputArgs, opts ...InvokeOption) GetStorageContainerStatsInfoV2ResultOutput

    > Note: This function is named GetStorageContainerStatsInfoV2 in the Go SDK.

    public static class GetStorageContainerStatsInfoV2 
    {
        public static Task<GetStorageContainerStatsInfoV2Result> InvokeAsync(GetStorageContainerStatsInfoV2Args args, InvokeOptions? opts = null)
        public static Output<GetStorageContainerStatsInfoV2Result> Invoke(GetStorageContainerStatsInfoV2InvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetStorageContainerStatsInfoV2Result> getStorageContainerStatsInfoV2(GetStorageContainerStatsInfoV2Args args, InvokeOptions options)
    public static Output<GetStorageContainerStatsInfoV2Result> getStorageContainerStatsInfoV2(GetStorageContainerStatsInfoV2Args args, InvokeOptions options)
    
    fn::invoke:
      function: nutanix:index/getStorageContainerStatsInfoV2:getStorageContainerStatsInfoV2
      arguments:
        # arguments dictionary

    The following arguments are supported:

    EndTime string
    storage container UUID
    ExtId string
    storage container UUID
    StartTime string
    storage container UUID
    SamplingInterval int
    storage container UUID
    StatType string
    storage container UUID

    • available values:
    • AVG: - Aggregation indicating mean or average of all values.
    • MIN: - Aggregation containing lowest of all values.
    • MAX: - Aggregation containing highest of all values.
    • LAST: - Aggregation containing only the last recorded value.
    • SUM: - Aggregation with sum of all values.
    • COUNT: - Aggregation containing total count of values.
    EndTime string
    storage container UUID
    ExtId string
    storage container UUID
    StartTime string
    storage container UUID
    SamplingInterval int
    storage container UUID
    StatType string
    storage container UUID

    • available values:
    • AVG: - Aggregation indicating mean or average of all values.
    • MIN: - Aggregation containing lowest of all values.
    • MAX: - Aggregation containing highest of all values.
    • LAST: - Aggregation containing only the last recorded value.
    • SUM: - Aggregation with sum of all values.
    • COUNT: - Aggregation containing total count of values.
    endTime String
    storage container UUID
    extId String
    storage container UUID
    startTime String
    storage container UUID
    samplingInterval Integer
    storage container UUID
    statType String
    storage container UUID

    • available values:
    • AVG: - Aggregation indicating mean or average of all values.
    • MIN: - Aggregation containing lowest of all values.
    • MAX: - Aggregation containing highest of all values.
    • LAST: - Aggregation containing only the last recorded value.
    • SUM: - Aggregation with sum of all values.
    • COUNT: - Aggregation containing total count of values.
    endTime string
    storage container UUID
    extId string
    storage container UUID
    startTime string
    storage container UUID
    samplingInterval number
    storage container UUID
    statType string
    storage container UUID

    • available values:
    • AVG: - Aggregation indicating mean or average of all values.
    • MIN: - Aggregation containing lowest of all values.
    • MAX: - Aggregation containing highest of all values.
    • LAST: - Aggregation containing only the last recorded value.
    • SUM: - Aggregation with sum of all values.
    • COUNT: - Aggregation containing total count of values.
    end_time str
    storage container UUID
    ext_id str
    storage container UUID
    start_time str
    storage container UUID
    sampling_interval int
    storage container UUID
    stat_type str
    storage container UUID

    • available values:
    • AVG: - Aggregation indicating mean or average of all values.
    • MIN: - Aggregation containing lowest of all values.
    • MAX: - Aggregation containing highest of all values.
    • LAST: - Aggregation containing only the last recorded value.
    • SUM: - Aggregation with sum of all values.
    • COUNT: - Aggregation containing total count of values.
    endTime String
    storage container UUID
    extId String
    storage container UUID
    startTime String
    storage container UUID
    samplingInterval Number
    storage container UUID
    statType String
    storage container UUID

    • available values:
    • AVG: - Aggregation indicating mean or average of all values.
    • MIN: - Aggregation containing lowest of all values.
    • MAX: - Aggregation containing highest of all values.
    • LAST: - Aggregation containing only the last recorded value.
    • SUM: - Aggregation with sum of all values.
    • COUNT: - Aggregation containing total count of values.

    getStorageContainerStatsInfoV2 Result

    The following output properties are available:

    ContainerExtId string
    • the storage container uuid
    ControllerAvgIoLatencyuSecs List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerAvgIoLatencyuSec>
    • Average I/O latency in micro secs.
    ControllerAvgReadIoLatencyuSecs List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerAvgReadIoLatencyuSec>
    • Average read I/O latency in microseconds.
    ControllerAvgWriteIoLatencyuSecs List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerAvgWriteIoLatencyuSec>
    • Average read I/O latency in microseconds.
    ControllerIoBandwidthKbps List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerIoBandwidthKbp>
    • Total I/O bandwidth - kB per second.
    ControllerNumIops List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerNumIop>
    • Number of I/O per second.
    ControllerNumReadIops List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerNumReadIop>
    • Number of read I/O per second.
    ControllerNumWriteIops List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerNumWriteIop>
    • Number of write I/O per second.
    ControllerReadIoBandwidthKbps List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerReadIoBandwidthKbp>
    • Read I/O bandwidth - kB per second.
    ControllerReadIoRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerReadIoRatioPpm>
    • Ratio of read I/O to total I/O in PPM.
    ControllerWriteIoBandwidthKbps List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerWriteIoBandwidthKbp>
    • Write I/O bandwidth - kB per second.
    ControllerWriteIoRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2ControllerWriteIoRatioPpm>
    • Ratio of read I/O to total I/O in PPM.
    DataReductionCloneSavingRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionCloneSavingRatioPpm>
    • Saving ratio in PPM as a result of the Cloning technique.
    DataReductionCompressionSavingRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionCompressionSavingRatioPpm>
    • Saving ratio in PPM as a result of the Compression technique.
    DataReductionDedupSavingRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionDedupSavingRatioPpm>
    • Saving ratio in PPM as a result of the Deduplication technique.
    DataReductionErasureCodingSavingRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionErasureCodingSavingRatioPpm>
    • Saving ratio in PPM as a result of the Erasure Coding technique.
    DataReductionOverallPostReductionBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionOverallPostReductionByte>
    • Usage in bytes after reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    DataReductionOverallPreReductionBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionOverallPreReductionByte>
    • Usage in bytes before reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    DataReductionSavedBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionSavedByte>
    • Storage savings in bytes as a result of all the techniques.
    DataReductionSavingRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionSavingRatioPpm>
    • Saving ratio in PPM as a result of Deduplication, compression and Erasure Coding.
    DataReductionSnapshotSavingRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionSnapshotSavingRatioPpm>
    • Saving ratio in PPM as a result of Snapshot technique.
    DataReductionThinProvisionSavingRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionThinProvisionSavingRatioPpm>
    • Saving ratio in PPM as a result of the Thin Provisioning technique.
    DataReductionTotalSavingRatioPpms List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionTotalSavingRatioPpm>
    • Saving ratio in PPM consisting of Deduplication, Compression, Erasure Coding, Cloning, and Thin Provisioning.
    DataReductionZeroWriteSavingsBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2DataReductionZeroWriteSavingsByte>
    • Total amount of savings in bytes as a result of zero writes.
    EndTime string
    ExtId string
    • the storage container uuid
    Healths List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2Health>
    • Health of the container is represented by an integer value in the range 0-100. Higher value is indicative of better health.
    Id string
    The provider-assigned unique ID for this managed resource.
    Links List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2Link>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    StartTime string
    StorageActualPhysicalUsageBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2StorageActualPhysicalUsageByte>
    • Actual physical disk usage of the container without accounting for the reservation.
    StorageCapacityBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2StorageCapacityByte>
    • Storage capacity in bytes.
    StorageFreeBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2StorageFreeByte>
    • Free storage in bytes.
    StorageReplicationFactors List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2StorageReplicationFactor>
    • Replication factor of Container.
    StorageReservedCapacityBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2StorageReservedCapacityByte>
    • Implicit physical reserved capacity(aggregated on vDisk level due to thick provisioning) in bytes.
    StorageTierDasSataUsageBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2StorageTierDasSataUsageByte>
    • Total usage on HDD tier for the Container in bytes.
    StorageTierSsdUsageBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2StorageTierSsdUsageByte>
    • Total usage on SDD tier for the Container in bytes
    StorageUsageBytes List<PiersKarsenbarg.Nutanix.Outputs.GetStorageContainerStatsInfoV2StorageUsageByte>
    • Used storage in bytes.
    TenantId string
    • A globally unique identifier that represents the tenant that owns this entity.
    SamplingInterval int
    StatType string
    ContainerExtId string
    • the storage container uuid
    ControllerAvgIoLatencyuSecs []GetStorageContainerStatsInfoV2ControllerAvgIoLatencyuSec
    • Average I/O latency in micro secs.
    ControllerAvgReadIoLatencyuSecs []GetStorageContainerStatsInfoV2ControllerAvgReadIoLatencyuSec
    • Average read I/O latency in microseconds.
    ControllerAvgWriteIoLatencyuSecs []GetStorageContainerStatsInfoV2ControllerAvgWriteIoLatencyuSec
    • Average read I/O latency in microseconds.
    ControllerIoBandwidthKbps []GetStorageContainerStatsInfoV2ControllerIoBandwidthKbp
    • Total I/O bandwidth - kB per second.
    ControllerNumIops []GetStorageContainerStatsInfoV2ControllerNumIop
    • Number of I/O per second.
    ControllerNumReadIops []GetStorageContainerStatsInfoV2ControllerNumReadIop
    • Number of read I/O per second.
    ControllerNumWriteIops []GetStorageContainerStatsInfoV2ControllerNumWriteIop
    • Number of write I/O per second.
    ControllerReadIoBandwidthKbps []GetStorageContainerStatsInfoV2ControllerReadIoBandwidthKbp
    • Read I/O bandwidth - kB per second.
    ControllerReadIoRatioPpms []GetStorageContainerStatsInfoV2ControllerReadIoRatioPpm
    • Ratio of read I/O to total I/O in PPM.
    ControllerWriteIoBandwidthKbps []GetStorageContainerStatsInfoV2ControllerWriteIoBandwidthKbp
    • Write I/O bandwidth - kB per second.
    ControllerWriteIoRatioPpms []GetStorageContainerStatsInfoV2ControllerWriteIoRatioPpm
    • Ratio of read I/O to total I/O in PPM.
    DataReductionCloneSavingRatioPpms []GetStorageContainerStatsInfoV2DataReductionCloneSavingRatioPpm
    • Saving ratio in PPM as a result of the Cloning technique.
    DataReductionCompressionSavingRatioPpms []GetStorageContainerStatsInfoV2DataReductionCompressionSavingRatioPpm
    • Saving ratio in PPM as a result of the Compression technique.
    DataReductionDedupSavingRatioPpms []GetStorageContainerStatsInfoV2DataReductionDedupSavingRatioPpm
    • Saving ratio in PPM as a result of the Deduplication technique.
    DataReductionErasureCodingSavingRatioPpms []GetStorageContainerStatsInfoV2DataReductionErasureCodingSavingRatioPpm
    • Saving ratio in PPM as a result of the Erasure Coding technique.
    DataReductionOverallPostReductionBytes []GetStorageContainerStatsInfoV2DataReductionOverallPostReductionByte
    • Usage in bytes after reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    DataReductionOverallPreReductionBytes []GetStorageContainerStatsInfoV2DataReductionOverallPreReductionByte
    • Usage in bytes before reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    DataReductionSavedBytes []GetStorageContainerStatsInfoV2DataReductionSavedByte
    • Storage savings in bytes as a result of all the techniques.
    DataReductionSavingRatioPpms []GetStorageContainerStatsInfoV2DataReductionSavingRatioPpm
    • Saving ratio in PPM as a result of Deduplication, compression and Erasure Coding.
    DataReductionSnapshotSavingRatioPpms []GetStorageContainerStatsInfoV2DataReductionSnapshotSavingRatioPpm
    • Saving ratio in PPM as a result of Snapshot technique.
    DataReductionThinProvisionSavingRatioPpms []GetStorageContainerStatsInfoV2DataReductionThinProvisionSavingRatioPpm
    • Saving ratio in PPM as a result of the Thin Provisioning technique.
    DataReductionTotalSavingRatioPpms []GetStorageContainerStatsInfoV2DataReductionTotalSavingRatioPpm
    • Saving ratio in PPM consisting of Deduplication, Compression, Erasure Coding, Cloning, and Thin Provisioning.
    DataReductionZeroWriteSavingsBytes []GetStorageContainerStatsInfoV2DataReductionZeroWriteSavingsByte
    • Total amount of savings in bytes as a result of zero writes.
    EndTime string
    ExtId string
    • the storage container uuid
    Healths []GetStorageContainerStatsInfoV2Health
    • Health of the container is represented by an integer value in the range 0-100. Higher value is indicative of better health.
    Id string
    The provider-assigned unique ID for this managed resource.
    Links []GetStorageContainerStatsInfoV2Link
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    StartTime string
    StorageActualPhysicalUsageBytes []GetStorageContainerStatsInfoV2StorageActualPhysicalUsageByte
    • Actual physical disk usage of the container without accounting for the reservation.
    StorageCapacityBytes []GetStorageContainerStatsInfoV2StorageCapacityByte
    • Storage capacity in bytes.
    StorageFreeBytes []GetStorageContainerStatsInfoV2StorageFreeByte
    • Free storage in bytes.
    StorageReplicationFactors []GetStorageContainerStatsInfoV2StorageReplicationFactor
    • Replication factor of Container.
    StorageReservedCapacityBytes []GetStorageContainerStatsInfoV2StorageReservedCapacityByte
    • Implicit physical reserved capacity(aggregated on vDisk level due to thick provisioning) in bytes.
    StorageTierDasSataUsageBytes []GetStorageContainerStatsInfoV2StorageTierDasSataUsageByte
    • Total usage on HDD tier for the Container in bytes.
    StorageTierSsdUsageBytes []GetStorageContainerStatsInfoV2StorageTierSsdUsageByte
    • Total usage on SDD tier for the Container in bytes
    StorageUsageBytes []GetStorageContainerStatsInfoV2StorageUsageByte
    • Used storage in bytes.
    TenantId string
    • A globally unique identifier that represents the tenant that owns this entity.
    SamplingInterval int
    StatType string
    containerExtId String
    • the storage container uuid
    controllerAvgIoLatencyuSecs List<GetStorageContainerStatsInfoV2ControllerAvgIoLatencyuSec>
    • Average I/O latency in micro secs.
    controllerAvgReadIoLatencyuSecs List<GetStorageContainerStatsInfoV2ControllerAvgReadIoLatencyuSec>
    • Average read I/O latency in microseconds.
    controllerAvgWriteIoLatencyuSecs List<GetStorageContainerStatsInfoV2ControllerAvgWriteIoLatencyuSec>
    • Average read I/O latency in microseconds.
    controllerIoBandwidthKbps List<GetStorageContainerStatsInfoV2ControllerIoBandwidthKbp>
    • Total I/O bandwidth - kB per second.
    controllerNumIops List<GetStorageContainerStatsInfoV2ControllerNumIop>
    • Number of I/O per second.
    controllerNumReadIops List<GetStorageContainerStatsInfoV2ControllerNumReadIop>
    • Number of read I/O per second.
    controllerNumWriteIops List<GetStorageContainerStatsInfoV2ControllerNumWriteIop>
    • Number of write I/O per second.
    controllerReadIoBandwidthKbps List<GetStorageContainerStatsInfoV2ControllerReadIoBandwidthKbp>
    • Read I/O bandwidth - kB per second.
    controllerReadIoRatioPpms List<GetStorageContainerStatsInfoV2ControllerReadIoRatioPpm>
    • Ratio of read I/O to total I/O in PPM.
    controllerWriteIoBandwidthKbps List<GetStorageContainerStatsInfoV2ControllerWriteIoBandwidthKbp>
    • Write I/O bandwidth - kB per second.
    controllerWriteIoRatioPpms List<GetStorageContainerStatsInfoV2ControllerWriteIoRatioPpm>
    • Ratio of read I/O to total I/O in PPM.
    dataReductionCloneSavingRatioPpms List<GetStorageContainerStatsInfoV2DataReductionCloneSavingRatioPpm>
    • Saving ratio in PPM as a result of the Cloning technique.
    dataReductionCompressionSavingRatioPpms List<GetStorageContainerStatsInfoV2DataReductionCompressionSavingRatioPpm>
    • Saving ratio in PPM as a result of the Compression technique.
    dataReductionDedupSavingRatioPpms List<GetStorageContainerStatsInfoV2DataReductionDedupSavingRatioPpm>
    • Saving ratio in PPM as a result of the Deduplication technique.
    dataReductionErasureCodingSavingRatioPpms List<GetStorageContainerStatsInfoV2DataReductionErasureCodingSavingRatioPpm>
    • Saving ratio in PPM as a result of the Erasure Coding technique.
    dataReductionOverallPostReductionBytes List<GetStorageContainerStatsInfoV2DataReductionOverallPostReductionByte>
    • Usage in bytes after reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    dataReductionOverallPreReductionBytes List<GetStorageContainerStatsInfoV2DataReductionOverallPreReductionByte>
    • Usage in bytes before reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    dataReductionSavedBytes List<GetStorageContainerStatsInfoV2DataReductionSavedByte>
    • Storage savings in bytes as a result of all the techniques.
    dataReductionSavingRatioPpms List<GetStorageContainerStatsInfoV2DataReductionSavingRatioPpm>
    • Saving ratio in PPM as a result of Deduplication, compression and Erasure Coding.
    dataReductionSnapshotSavingRatioPpms List<GetStorageContainerStatsInfoV2DataReductionSnapshotSavingRatioPpm>
    • Saving ratio in PPM as a result of Snapshot technique.
    dataReductionThinProvisionSavingRatioPpms List<GetStorageContainerStatsInfoV2DataReductionThinProvisionSavingRatioPpm>
    • Saving ratio in PPM as a result of the Thin Provisioning technique.
    dataReductionTotalSavingRatioPpms List<GetStorageContainerStatsInfoV2DataReductionTotalSavingRatioPpm>
    • Saving ratio in PPM consisting of Deduplication, Compression, Erasure Coding, Cloning, and Thin Provisioning.
    dataReductionZeroWriteSavingsBytes List<GetStorageContainerStatsInfoV2DataReductionZeroWriteSavingsByte>
    • Total amount of savings in bytes as a result of zero writes.
    endTime String
    extId String
    • the storage container uuid
    healths List<GetStorageContainerStatsInfoV2Health>
    • Health of the container is represented by an integer value in the range 0-100. Higher value is indicative of better health.
    id String
    The provider-assigned unique ID for this managed resource.
    links List<GetStorageContainerStatsInfoV2Link>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    startTime String
    storageActualPhysicalUsageBytes List<GetStorageContainerStatsInfoV2StorageActualPhysicalUsageByte>
    • Actual physical disk usage of the container without accounting for the reservation.
    storageCapacityBytes List<GetStorageContainerStatsInfoV2StorageCapacityByte>
    • Storage capacity in bytes.
    storageFreeBytes List<GetStorageContainerStatsInfoV2StorageFreeByte>
    • Free storage in bytes.
    storageReplicationFactors List<GetStorageContainerStatsInfoV2StorageReplicationFactor>
    • Replication factor of Container.
    storageReservedCapacityBytes List<GetStorageContainerStatsInfoV2StorageReservedCapacityByte>
    • Implicit physical reserved capacity(aggregated on vDisk level due to thick provisioning) in bytes.
    storageTierDasSataUsageBytes List<GetStorageContainerStatsInfoV2StorageTierDasSataUsageByte>
    • Total usage on HDD tier for the Container in bytes.
    storageTierSsdUsageBytes List<GetStorageContainerStatsInfoV2StorageTierSsdUsageByte>
    • Total usage on SDD tier for the Container in bytes
    storageUsageBytes List<GetStorageContainerStatsInfoV2StorageUsageByte>
    • Used storage in bytes.
    tenantId String
    • A globally unique identifier that represents the tenant that owns this entity.
    samplingInterval Integer
    statType String
    containerExtId string
    • the storage container uuid
    controllerAvgIoLatencyuSecs GetStorageContainerStatsInfoV2ControllerAvgIoLatencyuSec[]
    • Average I/O latency in micro secs.
    controllerAvgReadIoLatencyuSecs GetStorageContainerStatsInfoV2ControllerAvgReadIoLatencyuSec[]
    • Average read I/O latency in microseconds.
    controllerAvgWriteIoLatencyuSecs GetStorageContainerStatsInfoV2ControllerAvgWriteIoLatencyuSec[]
    • Average read I/O latency in microseconds.
    controllerIoBandwidthKbps GetStorageContainerStatsInfoV2ControllerIoBandwidthKbp[]
    • Total I/O bandwidth - kB per second.
    controllerNumIops GetStorageContainerStatsInfoV2ControllerNumIop[]
    • Number of I/O per second.
    controllerNumReadIops GetStorageContainerStatsInfoV2ControllerNumReadIop[]
    • Number of read I/O per second.
    controllerNumWriteIops GetStorageContainerStatsInfoV2ControllerNumWriteIop[]
    • Number of write I/O per second.
    controllerReadIoBandwidthKbps GetStorageContainerStatsInfoV2ControllerReadIoBandwidthKbp[]
    • Read I/O bandwidth - kB per second.
    controllerReadIoRatioPpms GetStorageContainerStatsInfoV2ControllerReadIoRatioPpm[]
    • Ratio of read I/O to total I/O in PPM.
    controllerWriteIoBandwidthKbps GetStorageContainerStatsInfoV2ControllerWriteIoBandwidthKbp[]
    • Write I/O bandwidth - kB per second.
    controllerWriteIoRatioPpms GetStorageContainerStatsInfoV2ControllerWriteIoRatioPpm[]
    • Ratio of read I/O to total I/O in PPM.
    dataReductionCloneSavingRatioPpms GetStorageContainerStatsInfoV2DataReductionCloneSavingRatioPpm[]
    • Saving ratio in PPM as a result of the Cloning technique.
    dataReductionCompressionSavingRatioPpms GetStorageContainerStatsInfoV2DataReductionCompressionSavingRatioPpm[]
    • Saving ratio in PPM as a result of the Compression technique.
    dataReductionDedupSavingRatioPpms GetStorageContainerStatsInfoV2DataReductionDedupSavingRatioPpm[]
    • Saving ratio in PPM as a result of the Deduplication technique.
    dataReductionErasureCodingSavingRatioPpms GetStorageContainerStatsInfoV2DataReductionErasureCodingSavingRatioPpm[]
    • Saving ratio in PPM as a result of the Erasure Coding technique.
    dataReductionOverallPostReductionBytes GetStorageContainerStatsInfoV2DataReductionOverallPostReductionByte[]
    • Usage in bytes after reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    dataReductionOverallPreReductionBytes GetStorageContainerStatsInfoV2DataReductionOverallPreReductionByte[]
    • Usage in bytes before reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    dataReductionSavedBytes GetStorageContainerStatsInfoV2DataReductionSavedByte[]
    • Storage savings in bytes as a result of all the techniques.
    dataReductionSavingRatioPpms GetStorageContainerStatsInfoV2DataReductionSavingRatioPpm[]
    • Saving ratio in PPM as a result of Deduplication, compression and Erasure Coding.
    dataReductionSnapshotSavingRatioPpms GetStorageContainerStatsInfoV2DataReductionSnapshotSavingRatioPpm[]
    • Saving ratio in PPM as a result of Snapshot technique.
    dataReductionThinProvisionSavingRatioPpms GetStorageContainerStatsInfoV2DataReductionThinProvisionSavingRatioPpm[]
    • Saving ratio in PPM as a result of the Thin Provisioning technique.
    dataReductionTotalSavingRatioPpms GetStorageContainerStatsInfoV2DataReductionTotalSavingRatioPpm[]
    • Saving ratio in PPM consisting of Deduplication, Compression, Erasure Coding, Cloning, and Thin Provisioning.
    dataReductionZeroWriteSavingsBytes GetStorageContainerStatsInfoV2DataReductionZeroWriteSavingsByte[]
    • Total amount of savings in bytes as a result of zero writes.
    endTime string
    extId string
    • the storage container uuid
    healths GetStorageContainerStatsInfoV2Health[]
    • Health of the container is represented by an integer value in the range 0-100. Higher value is indicative of better health.
    id string
    The provider-assigned unique ID for this managed resource.
    links GetStorageContainerStatsInfoV2Link[]
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    startTime string
    storageActualPhysicalUsageBytes GetStorageContainerStatsInfoV2StorageActualPhysicalUsageByte[]
    • Actual physical disk usage of the container without accounting for the reservation.
    storageCapacityBytes GetStorageContainerStatsInfoV2StorageCapacityByte[]
    • Storage capacity in bytes.
    storageFreeBytes GetStorageContainerStatsInfoV2StorageFreeByte[]
    • Free storage in bytes.
    storageReplicationFactors GetStorageContainerStatsInfoV2StorageReplicationFactor[]
    • Replication factor of Container.
    storageReservedCapacityBytes GetStorageContainerStatsInfoV2StorageReservedCapacityByte[]
    • Implicit physical reserved capacity(aggregated on vDisk level due to thick provisioning) in bytes.
    storageTierDasSataUsageBytes GetStorageContainerStatsInfoV2StorageTierDasSataUsageByte[]
    • Total usage on HDD tier for the Container in bytes.
    storageTierSsdUsageBytes GetStorageContainerStatsInfoV2StorageTierSsdUsageByte[]
    • Total usage on SDD tier for the Container in bytes
    storageUsageBytes GetStorageContainerStatsInfoV2StorageUsageByte[]
    • Used storage in bytes.
    tenantId string
    • A globally unique identifier that represents the tenant that owns this entity.
    samplingInterval number
    statType string
    container_ext_id str
    • the storage container uuid
    controller_avg_io_latencyu_secs Sequence[GetStorageContainerStatsInfoV2ControllerAvgIoLatencyuSec]
    • Average I/O latency in micro secs.
    controller_avg_read_io_latencyu_secs Sequence[GetStorageContainerStatsInfoV2ControllerAvgReadIoLatencyuSec]
    • Average read I/O latency in microseconds.
    controller_avg_write_io_latencyu_secs Sequence[GetStorageContainerStatsInfoV2ControllerAvgWriteIoLatencyuSec]
    • Average read I/O latency in microseconds.
    controller_io_bandwidth_kbps Sequence[GetStorageContainerStatsInfoV2ControllerIoBandwidthKbp]
    • Total I/O bandwidth - kB per second.
    controller_num_iops Sequence[GetStorageContainerStatsInfoV2ControllerNumIop]
    • Number of I/O per second.
    controller_num_read_iops Sequence[GetStorageContainerStatsInfoV2ControllerNumReadIop]
    • Number of read I/O per second.
    controller_num_write_iops Sequence[GetStorageContainerStatsInfoV2ControllerNumWriteIop]
    • Number of write I/O per second.
    controller_read_io_bandwidth_kbps Sequence[GetStorageContainerStatsInfoV2ControllerReadIoBandwidthKbp]
    • Read I/O bandwidth - kB per second.
    controller_read_io_ratio_ppms Sequence[GetStorageContainerStatsInfoV2ControllerReadIoRatioPpm]
    • Ratio of read I/O to total I/O in PPM.
    controller_write_io_bandwidth_kbps Sequence[GetStorageContainerStatsInfoV2ControllerWriteIoBandwidthKbp]
    • Write I/O bandwidth - kB per second.
    controller_write_io_ratio_ppms Sequence[GetStorageContainerStatsInfoV2ControllerWriteIoRatioPpm]
    • Ratio of read I/O to total I/O in PPM.
    data_reduction_clone_saving_ratio_ppms Sequence[GetStorageContainerStatsInfoV2DataReductionCloneSavingRatioPpm]
    • Saving ratio in PPM as a result of the Cloning technique.
    data_reduction_compression_saving_ratio_ppms Sequence[GetStorageContainerStatsInfoV2DataReductionCompressionSavingRatioPpm]
    • Saving ratio in PPM as a result of the Compression technique.
    data_reduction_dedup_saving_ratio_ppms Sequence[GetStorageContainerStatsInfoV2DataReductionDedupSavingRatioPpm]
    • Saving ratio in PPM as a result of the Deduplication technique.
    data_reduction_erasure_coding_saving_ratio_ppms Sequence[GetStorageContainerStatsInfoV2DataReductionErasureCodingSavingRatioPpm]
    • Saving ratio in PPM as a result of the Erasure Coding technique.
    data_reduction_overall_post_reduction_bytes Sequence[GetStorageContainerStatsInfoV2DataReductionOverallPostReductionByte]
    • Usage in bytes after reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    data_reduction_overall_pre_reduction_bytes Sequence[GetStorageContainerStatsInfoV2DataReductionOverallPreReductionByte]
    • Usage in bytes before reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    data_reduction_saved_bytes Sequence[GetStorageContainerStatsInfoV2DataReductionSavedByte]
    • Storage savings in bytes as a result of all the techniques.
    data_reduction_saving_ratio_ppms Sequence[GetStorageContainerStatsInfoV2DataReductionSavingRatioPpm]
    • Saving ratio in PPM as a result of Deduplication, compression and Erasure Coding.
    data_reduction_snapshot_saving_ratio_ppms Sequence[GetStorageContainerStatsInfoV2DataReductionSnapshotSavingRatioPpm]
    • Saving ratio in PPM as a result of Snapshot technique.
    data_reduction_thin_provision_saving_ratio_ppms Sequence[GetStorageContainerStatsInfoV2DataReductionThinProvisionSavingRatioPpm]
    • Saving ratio in PPM as a result of the Thin Provisioning technique.
    data_reduction_total_saving_ratio_ppms Sequence[GetStorageContainerStatsInfoV2DataReductionTotalSavingRatioPpm]
    • Saving ratio in PPM consisting of Deduplication, Compression, Erasure Coding, Cloning, and Thin Provisioning.
    data_reduction_zero_write_savings_bytes Sequence[GetStorageContainerStatsInfoV2DataReductionZeroWriteSavingsByte]
    • Total amount of savings in bytes as a result of zero writes.
    end_time str
    ext_id str
    • the storage container uuid
    healths Sequence[GetStorageContainerStatsInfoV2Health]
    • Health of the container is represented by an integer value in the range 0-100. Higher value is indicative of better health.
    id str
    The provider-assigned unique ID for this managed resource.
    links Sequence[GetStorageContainerStatsInfoV2Link]
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    start_time str
    storage_actual_physical_usage_bytes Sequence[GetStorageContainerStatsInfoV2StorageActualPhysicalUsageByte]
    • Actual physical disk usage of the container without accounting for the reservation.
    storage_capacity_bytes Sequence[GetStorageContainerStatsInfoV2StorageCapacityByte]
    • Storage capacity in bytes.
    storage_free_bytes Sequence[GetStorageContainerStatsInfoV2StorageFreeByte]
    • Free storage in bytes.
    storage_replication_factors Sequence[GetStorageContainerStatsInfoV2StorageReplicationFactor]
    • Replication factor of Container.
    storage_reserved_capacity_bytes Sequence[GetStorageContainerStatsInfoV2StorageReservedCapacityByte]
    • Implicit physical reserved capacity(aggregated on vDisk level due to thick provisioning) in bytes.
    storage_tier_das_sata_usage_bytes Sequence[GetStorageContainerStatsInfoV2StorageTierDasSataUsageByte]
    • Total usage on HDD tier for the Container in bytes.
    storage_tier_ssd_usage_bytes Sequence[GetStorageContainerStatsInfoV2StorageTierSsdUsageByte]
    • Total usage on SDD tier for the Container in bytes
    storage_usage_bytes Sequence[GetStorageContainerStatsInfoV2StorageUsageByte]
    • Used storage in bytes.
    tenant_id str
    • A globally unique identifier that represents the tenant that owns this entity.
    sampling_interval int
    stat_type str
    containerExtId String
    • the storage container uuid
    controllerAvgIoLatencyuSecs List<Property Map>
    • Average I/O latency in micro secs.
    controllerAvgReadIoLatencyuSecs List<Property Map>
    • Average read I/O latency in microseconds.
    controllerAvgWriteIoLatencyuSecs List<Property Map>
    • Average read I/O latency in microseconds.
    controllerIoBandwidthKbps List<Property Map>
    • Total I/O bandwidth - kB per second.
    controllerNumIops List<Property Map>
    • Number of I/O per second.
    controllerNumReadIops List<Property Map>
    • Number of read I/O per second.
    controllerNumWriteIops List<Property Map>
    • Number of write I/O per second.
    controllerReadIoBandwidthKbps List<Property Map>
    • Read I/O bandwidth - kB per second.
    controllerReadIoRatioPpms List<Property Map>
    • Ratio of read I/O to total I/O in PPM.
    controllerWriteIoBandwidthKbps List<Property Map>
    • Write I/O bandwidth - kB per second.
    controllerWriteIoRatioPpms List<Property Map>
    • Ratio of read I/O to total I/O in PPM.
    dataReductionCloneSavingRatioPpms List<Property Map>
    • Saving ratio in PPM as a result of the Cloning technique.
    dataReductionCompressionSavingRatioPpms List<Property Map>
    • Saving ratio in PPM as a result of the Compression technique.
    dataReductionDedupSavingRatioPpms List<Property Map>
    • Saving ratio in PPM as a result of the Deduplication technique.
    dataReductionErasureCodingSavingRatioPpms List<Property Map>
    • Saving ratio in PPM as a result of the Erasure Coding technique.
    dataReductionOverallPostReductionBytes List<Property Map>
    • Usage in bytes after reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    dataReductionOverallPreReductionBytes List<Property Map>
    • Usage in bytes before reduction of Deduplication, Compression, Erasure Coding, Cloning, and Thin provisioning.
    dataReductionSavedBytes List<Property Map>
    • Storage savings in bytes as a result of all the techniques.
    dataReductionSavingRatioPpms List<Property Map>
    • Saving ratio in PPM as a result of Deduplication, compression and Erasure Coding.
    dataReductionSnapshotSavingRatioPpms List<Property Map>
    • Saving ratio in PPM as a result of Snapshot technique.
    dataReductionThinProvisionSavingRatioPpms List<Property Map>
    • Saving ratio in PPM as a result of the Thin Provisioning technique.
    dataReductionTotalSavingRatioPpms List<Property Map>
    • Saving ratio in PPM consisting of Deduplication, Compression, Erasure Coding, Cloning, and Thin Provisioning.
    dataReductionZeroWriteSavingsBytes List<Property Map>
    • Total amount of savings in bytes as a result of zero writes.
    endTime String
    extId String
    • the storage container uuid
    healths List<Property Map>
    • Health of the container is represented by an integer value in the range 0-100. Higher value is indicative of better health.
    id String
    The provider-assigned unique ID for this managed resource.
    links List<Property Map>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    startTime String
    storageActualPhysicalUsageBytes List<Property Map>
    • Actual physical disk usage of the container without accounting for the reservation.
    storageCapacityBytes List<Property Map>
    • Storage capacity in bytes.
    storageFreeBytes List<Property Map>
    • Free storage in bytes.
    storageReplicationFactors List<Property Map>
    • Replication factor of Container.
    storageReservedCapacityBytes List<Property Map>
    • Implicit physical reserved capacity(aggregated on vDisk level due to thick provisioning) in bytes.
    storageTierDasSataUsageBytes List<Property Map>
    • Total usage on HDD tier for the Container in bytes.
    storageTierSsdUsageBytes List<Property Map>
    • Total usage on SDD tier for the Container in bytes
    storageUsageBytes List<Property Map>
    • Used storage in bytes.
    tenantId String
    • A globally unique identifier that represents the tenant that owns this entity.
    samplingInterval Number
    statType String

    Supporting Types

    GetStorageContainerStatsInfoV2ControllerAvgIoLatencyuSec

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerAvgReadIoLatencyuSec

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerAvgWriteIoLatencyuSec

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerIoBandwidthKbp

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerNumIop

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerNumReadIop

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerNumWriteIop

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerReadIoBandwidthKbp

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerReadIoRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerWriteIoBandwidthKbp

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2ControllerWriteIoRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionCloneSavingRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionCompressionSavingRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionDedupSavingRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionErasureCodingSavingRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionOverallPostReductionByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionOverallPreReductionByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionSavedByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionSavingRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionSnapshotSavingRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionThinProvisionSavingRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionTotalSavingRatioPpm

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2DataReductionZeroWriteSavingsByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2Health

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Href string
    Rel string
    Href string
    Rel string
    href String
    rel String
    href string
    rel string
    href str
    rel str
    href String
    rel String

    GetStorageContainerStatsInfoV2StorageActualPhysicalUsageByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2StorageCapacityByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2StorageFreeByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2StorageReplicationFactor

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2StorageReservedCapacityByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2StorageTierDasSataUsageByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2StorageTierSsdUsageByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    GetStorageContainerStatsInfoV2StorageUsageByte

    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    Timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    Value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Integer
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp string
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value number
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp str
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value int
    Value of the stat at the recorded date and time in extended ISO-8601 format."
    timestamp String
    The date and time at which the stat was recorded.The value should be in extended ISO-8601 format. For example, start time of 2022-04-23T01:23:45.678+09:00 would consider all stats starting at 1:23:45.678 on the 23rd of April 2022. Details around ISO-8601 format can be found at https://www.iso.org/standard/70907.html
    value Number
    Value of the stat at the recorded date and time in extended ISO-8601 format."

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Viewing docs for Nutanix v0.13.0
    published on Tuesday, Apr 28, 2026 by Piers Karsenbarg
      Try Pulumi Cloud free. Your team will thank you.