Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListSolFunctionPackageInfo

import type { ListSolFunctionPackageInfo } from "https://aws-api.deno.dev/v0.4/services/tnb.ts?docs=full";

Information about a function package.

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.

interface ListSolFunctionPackageInfo {
arn: string;
id: string;
onboardingState: OnboardingState;
operationalState: OperationalState;
usageState: UsageState;
vnfdId?: string | null;
vnfdVersion?: string | null;
vnfProductName?: string | null;
vnfProvider?: string | null;
}

§Properties

§
arn: string
[src]

Function package ARN.

§
id: string
[src]

ID of the function package.

§

The metadata of the function package.

§
onboardingState: OnboardingState
[src]

Onboarding state of the function package.

§
operationalState: OperationalState
[src]

Operational state of the function package.

§
usageState: UsageState
[src]

Usage state of the function package.

§
vnfdId?: string | null
[src]

Identifies the function package and the function package descriptor.

§
vnfdVersion?: string | null
[src]

Identifies the version of the function package descriptor.

§
vnfProductName?: string | null
[src]

The product name for the network function.

§
vnfProvider?: string | null
[src]

Provider of the function package and the function package descriptor.