getEstimatedWaterAllocationDimensionValues

Returns the possible dimension values available for a customer's account. We recommend using pagination to ensure that the operation returns quickly and successfully.

Samples

// GetEstimatedWaterAllocationDimensionValuesSuccess
val resp = sustainabilityClient.getEstimatedWaterAllocationDimensionValues {
    timePeriod = TimePeriod {
        start = "2025-01-01T00:00:00.00Z"
        end = "2026-01-01T00:00:00.00Z"
    }
    dimensions = listOf<Dimension>(
        Dimension.fromValue("REGION"),
        Dimension.fromValue("SERVICE"),
        Dimension.fromValue("USAGE_ACCOUNT_ID")
    )
}