Module Values.GetSolNetworkOperationOutputSource

Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks. A network operation is any operation that is done to your network, such as network instance instantiation or termination.

Sourcetype nonrec t = {
  1. arn : NsLcmOpOccArn.t option;
    (*

    Network operation ARN.

    *)
  2. error : ProblemDetails.t option;
    (*

    Error related to this specific network operation occurrence.

    *)
  3. id : NsLcmOpOccId.t option;
    (*

    ID of this network operation occurrence.

    *)
  4. lcmOperationType : LcmOperationType.t option;
    (*

    Type of the operation represented by this occurrence.

    *)
  5. metadata : GetSolNetworkOperationMetadata.t option;
    (*

    Metadata of this network operation occurrence.

    *)
  6. nsInstanceId : NsInstanceId.t option;
    (*

    ID of the network operation instance.

    *)
  7. operationState : NsLcmOperationState.t option;
    (*

    The state of the network operation.

    *)
  8. tags : TagMap.t option;
    (*

    A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.

    *)
  9. tasks : GetSolNetworkOperationTasksList.t option;
    (*

    All tasks associated with this operation occurrence.

    *)
  10. updateType : UpdateSolNetworkType.t option;
    (*

    Type of the update. Only present if the network operation lcmOperationType is UPDATE.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?error:??? -> ?id:??? -> ?lcmOperationType:??? -> ?metadata:??? -> ?nsInstanceId:??? -> ?operationState:??? -> ?tags:??? -> ?tasks:??? -> ?updateType:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `String of ErrorCause.t ]) list | `Timestamp of SyntheticTimestamp_date_time.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of NsLcmOpOccArn.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of NsdInfoId.t | `Structure of 'a list ]) list | `Timestamp of SyntheticTimestamp_date_time.t ]) list ]) 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