Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.34 KB

VnfsApi.md

File metadata and controls

59 lines (39 loc) · 1.34 KB

TelstraTPN::VnfsApi

Load the API package

use TelstraTPN::Object::VnfsApi;

All URIs are relative to https://penapi.pacnetconnect.com

Method HTTP request Description
marketplace_image_get GET /1.0.0/marketplace/image List images in the Marketplace

marketplace_image_get

MarketplaceImageResponse marketplace_image_get()

List images in the Marketplace

List images in the Marketplace

Example

use Data::Dumper;
use TelstraTPN::VnfsApi;
my $api_instance = TelstraTPN::VnfsApi->new(

    # Configure OAuth2 access token for authorization: auth
    access_token => 'YOUR_ACCESS_TOKEN',
);


eval { 
    my $result = $api_instance->marketplace_image_get();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling VnfsApi->marketplace_image_get: $@\n";
}

Parameters

This endpoint does not need any parameter.

Return type

MarketplaceImageResponse

Authorization

auth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]