Module Values.GetBackupPlanInputSource

Returns BackupPlan details for the specified BackupPlanId. The details are the body of a backup plan in JSON format, in addition to plan metadata.

Sourcetype nonrec t = {
  1. backupPlanId : string;
    (*

    Uniquely identifies a backup plan.

    *)
  2. versionId : string option;
    (*

    Unique, randomly generated, Unicode, UTF-8 encoded strings that are at most 1,024 bytes long. Version IDs cannot be edited.

    *)
  3. maxScheduledRunsPreview : MaxScheduledRunsPreview.t option;
    (*

    Number of future scheduled backup runs to preview. When set to 0 (default), no scheduled runs preview is included in the response. Valid range is 0-10.

    *)
}
Sourceval context_ : string
Sourceval make : ?versionId:??? -> ?maxScheduledRunsPreview:??? -> backupPlanId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxScheduledRunsPreview.t | `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t