Apiamtic.SubtainVer 1.6.9

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Apiamtic.SubtainVer --version 1.6.9
NuGet\Install-Package Apiamtic.SubtainVer -Version 1.6.9
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Apiamtic.SubtainVer" Version="1.6.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Apiamtic.SubtainVer --version 1.6.9
#r "nuget: Apiamtic.SubtainVer, 1.6.9"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Apiamtic.SubtainVer as a Cake Addin
#addin nuget:?package=Apiamtic.SubtainVer&version=1.6.9

// Install Apiamtic.SubtainVer as a Cake Tool
#tool nuget:?package=Apiamtic.SubtainVer&version=1.6.9

Getting Started with Verizon 5G MEC VNSP API

Introduction

The API helps manage or use MEC platform hosted services.

Install the Package

If you are building with .NET CLI tools then you can also use the following command:

dotnet add package Apiamtic.SubtainVer --version 1.6.9

You can also view the package at: https://www.nuget.org/packages/Apiamtic.SubtainVer/1.6.9

Test the SDK

The generated SDK also contain one or more Tests, which are contained in the Tests project. In order to invoke these test cases, you will need NUnit 3.0 Test Adapter Extension for Visual Studio. Once the SDK is complied, the test cases should appear in the Test Explorer window. Here, you can click Run All to execute these test cases.

Initialize the API Client

Note: Documentation for the client can be found here.

The following parameters are configurable for the API Client:

Parameter Type Description
VZM2MToken string M2M Session Token
Environment Environment The API environment. <br> Default: Environment.Production
Timeout TimeSpan Http client timeout.<br>Default: TimeSpan.FromSeconds(100)
OAuthClientId string OAuth 2 Client ID
OAuthClientSecret string OAuth 2 Client Secret
OAuthToken Models.OAuthToken Object for storing information about the OAuth token
OAuthScopes List<Models.OAuthScopeEnum>

The API client can be initialized as follows:

Verizon5GMECVNSPAPI.Standard.Verizon5GMECVNSPAPIClient client = new Verizon5GMECVNSPAPI.Standard.Verizon5GMECVNSPAPIClient.Builder()
    .OAuthScopes(new List<OAuthScopeEnum>() { OAuthScopeEnum.TsMecFullaccess })
    .ClientCredentialsAuth("OAuthClientId", "OAuthClientSecret")
    .VZM2MToken("VZ-M2M-Token")
    .Environment(Verizon5GMECVNSPAPI.Standard.Environment.Production)
    .Build();

Environments

The SDK can be configured to use a different environment for making API calls. Available environments are:

Fields

Name Description
Production Default
Staging -

Authorization

This API uses OAuth 2 Client Credentials Grant.

Client Credentials Grant

Your application must obtain user authorization before it can execute an endpoint call in case this SDK chooses to use OAuth 2.0 Client Credentials Grant. This authorization includes the following steps

The FetchToken() method will exchange the OAuth client credentials for an access token. The access token is an object containing information for authorizing client requests and refreshing the token itself.

You must have initialized the client with scopes for which you need permission to access.

var authManager = client.ClientCredentialsAuth;

try
{
    OAuthToken token = authManager.FetchToken();
    // re-instantiate the client with OAuth token
    client = client.ToBuilder().OAuthToken(token).Build();
}
catch (ApiException e)
{
    // TODO Handle exception
}

The client can now make authorized endpoint calls.

Scopes

Scopes enable your application to only request access to the resources it needs while enabling users to control the amount of access they grant to your application. Available scopes are defined in the OAuthScopeEnum enumeration.

Scope Name Description
TS.MEC.FULLACCESS full access to all VNSP APIs

Storing an access token for reuse

It is recommended that you store the access token for reuse.

// store token
SaveTokenToDatabase(client.ClientCredentialsAuth.OAuthToken);

Creating a client from a stored token

To authorize a client from a stored access token, just set the access token in Configuration along with the other configuration parameters before creating the client:

// load token later
OAuthToken token = LoadTokenFromDatabase();

// Provide token along with other configuration properties while instantiating the client
Verizon5GMECVNSPAPIClient client = client.ToBuilder().OAuthToken(token).Build();

Complete example

using Verizon5GMECVNSPAPI.Standard;
using Verizon5GMECVNSPAPI.Standard.Models;
using Verizon5GMECVNSPAPI.Standard.Exceptions;
using Verizon5GMECVNSPAPI.Standard.Authentication;
using System.Collections.Generic;
namespace OAuthTestApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            Verizon5GMECVNSPAPI.Standard.Verizon5GMECVNSPAPIClient client = new Verizon5GMECVNSPAPI.Standard.Verizon5GMECVNSPAPIClient.Builder()
                .OAuthScopes(new List<OAuthScopeEnum>() { OAuthScopeEnum.TsMecFullaccess })
                .ClientCredentialsAuth("OAuthClientId", "OAuthClientSecret")
                .VZM2MToken("VZ-M2M-Token")
                .Environment(Verizon5GMECVNSPAPI.Standard.Environment.Production)
                .Build();
            try
            {
                OAuthToken token = LoadTokenFromDatabase();

                // Set the token if it is not set before
                if (token == null)
                {
                    var authManager = client.ClientCredentialsAuth;
                    token = authManager.FetchToken();
                }

                SaveTokenToDatabase(token);
                client = client.ToBuilder().OAuthToken(token).Build();
            }
            catch (OAuthProviderException e)
            {
                // TODO Handle exception
            }
        }

        //function for storing token to database
        static void SaveTokenToDatabase(OAuthToken token)
        {
            //Save token here
        }

        //function for loading token from database
        static OAuthToken LoadTokenFromDatabase()
        {
            OAuthToken token = null;
            //token = Get token here
            return token;
        }
    }
}

// the client is now authorized and you can use controllers to make endpoint calls

List of APIs

Classes Documentation

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated