Module Values.GetSolFunctionPackageOutputSource

Gets the details of an individual function package, such as the operational state and whether the package is in use. A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network..

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

    Function package ARN.

    *)
  2. id : VnfPkgId.t option;
    (*

    Function package ID.

    *)
  3. metadata : GetSolFunctionPackageMetadata.t option;
  4. onboardingState : OnboardingState.t option;
    (*

    Function package onboarding state.

    *)
  5. operationalState : OperationalState.t option;
    (*

    Function package operational state.

    *)
  6. 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.

    *)
  7. usageState : UsageState.t option;
    (*

    Function package usage state.

    *)
  8. vnfProductName : String_.t option;
    (*

    Network function product name.

    *)
  9. vnfProvider : String_.t option;
    (*

    Network function provider.

    *)
  10. vnfdId : String_.t option;
    (*

    Function package descriptor ID.

    *)
  11. vnfdVersion : String_.t option;
    (*

    Function package descriptor version.

    *)
}
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:??? -> ?id:??? -> ?metadata:??? -> ?onboardingState:??? -> ?operationalState:??? -> ?tags:??? -> ?usageState:??? -> ?vnfProductName:??? -> ?vnfProvider:??? -> ?vnfdId:??? -> ?vnfdVersion:??? -> 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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of VnfPkgArn.t | `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] 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