getSnapshotLimits
inline suspend fun DirectoryClient.getSnapshotLimits(crossinline block: GetSnapshotLimitsRequest.Builder.() -> Unit): GetSnapshotLimitsResponse
Obtains the manual snapshot limits for a directory.
Samples
fun main() {
//sampleStart
// The following example obtains the manual snapshot limits for a specified directory.
val resp = directoryClient.getSnapshotLimits {
directoryId = "d-92654abfed"
}
//sampleEnd
}