Skip to content

Get Snapshot Limits

directoryservice_get_snapshot_limits R Documentation

Obtains the manual snapshot limits for a directory

Description

Obtains the manual snapshot limits for a directory.

Usage

directoryservice_get_snapshot_limits(DirectoryId)

Arguments

DirectoryId

[required] Contains the identifier of the directory to obtain the limits for.

Value

A list with the following syntax:

list(
  SnapshotLimits = list(
    ManualSnapshotsLimit = 123,
    ManualSnapshotsCurrentCount = 123,
    ManualSnapshotsLimitReached = TRUE|FALSE
  )
)

Request syntax

svc$get_snapshot_limits(
  DirectoryId = "string"
)