Module Values.ChangeCidrCollectionResponseSource

Creates, changes, or deletes CIDR blocks within a collection. Contains authoritative IP information mapping blocks to one or multiple locations. A change request can update multiple locations in a collection at a time, which is helpful if you want to move one or more CIDR blocks from one location to another in one transaction, without downtime. Limits The max number of CIDR blocks included in the request is 1000. As a result, big updates require multiple API calls. PUT and DELETE_IF_EXISTS Use ChangeCidrCollection to perform the following actions: PUT: Create a CIDR block within the specified collection. DELETE_IF_EXISTS: Delete an existing CIDR block from the collection.

Sourcetype nonrec t = {
  1. id : ChangeId.t option;
    (*

    The ID that is returned by ChangeCidrCollection. You can use it as input to GetChange to see if a CIDR collection change has propagated or not.

    *)
}
Sourcetype nonrec error = [
  1. | `CidrBlockInUseException of CidrBlockInUseException.t
  2. | `CidrCollectionVersionMismatchException of CidrCollectionVersionMismatchException.t
  3. | `ConcurrentModification of ConcurrentModification.t
  4. | `InvalidInput of InvalidInput.t
  5. | `LimitsExceeded of LimitsExceeded.t
  6. | `NoSuchCidrCollectionException of NoSuchCidrCollectionException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `CidrBlockInUseException of CidrBlockInUseException.t | `CidrCollectionVersionMismatchException of CidrCollectionVersionMismatchException.t | `ConcurrentModification of ConcurrentModification.t | `InvalidInput of InvalidInput.t | `LimitsExceeded of LimitsExceeded.t | `NoSuchCidrCollectionException of NoSuchCidrCollectionException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `CidrBlockInUseException of CidrBlockInUseException.t | `CidrCollectionVersionMismatchException of CidrCollectionVersionMismatchException.t | `ConcurrentModification of ConcurrentModification.t | `InvalidInput of InvalidInput.t | `LimitsExceeded of LimitsExceeded.t | `NoSuchCidrCollectionException of NoSuchCidrCollectionException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ChangeId.t ]) 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