Module Values.UpdateOdbPeeringConnectionInputSource

Modifies the settings of an Oracle Database@Amazon Web Services peering connection. You can update the display name and add or remove CIDR blocks from the peering connection.

Sourcetype nonrec t = {
  1. odbPeeringConnectionId : ResourceIdOrArn.t;
    (*

    The identifier of the Oracle Database@Amazon Web Services peering connection to update.

    *)
  2. displayName : ResourceDisplayName.t option;
    (*

    A new display name for the peering connection.

    *)
  3. peerNetworkCidrsToBeAdded : PeeredCidrList.t option;
    (*

    A list of CIDR blocks to add to the peering connection. These CIDR blocks define the IP address ranges that can communicate through the peering connection. The CIDR blocks must not overlap with existing CIDR blocks in the Oracle Database@Amazon Web Services network.

    *)
  4. peerNetworkCidrsToBeRemoved : PeeredCidrList.t option;
    (*

    A list of CIDR blocks to remove from the peering connection. The CIDR blocks must currently exist in the peering connection.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> ?peerNetworkCidrsToBeAdded:??? -> ?peerNetworkCidrsToBeRemoved:??? -> odbPeeringConnectionId:ResourceIdOrArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of PeeredCidr.t ] list | `String of ResourceIdOrArn.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