Skip to content

Latest commit

 

History

History
148 lines (96 loc) · 4.11 KB

PersistentDisksAPI.md

File metadata and controls

148 lines (96 loc) · 4.11 KB

\PersistentDisksAPI

All URIs are relative to https://api.aptible.com

Method HTTP request Description
GetPersistentDisk Get /persistent_disks/{id} show persistent disk
ListPersistentDisksForAccount Get /accounts/{account_id}/persistent_disks list persistent disks

GetPersistentDisk

PersistentDisk GetPersistentDisk(ctx, id).Execute()

show persistent disk

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/aptible/aptible-api-go/aptibleapi"
)

func main() {
	id := int32(56) // int32 | id

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.PersistentDisksAPI.GetPersistentDisk(context.Background(), id).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `PersistentDisksAPI.GetPersistentDisk``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetPersistentDisk`: PersistentDisk
	fmt.Fprintf(os.Stdout, "Response from `PersistentDisksAPI.GetPersistentDisk`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
id int32 id

Other Parameters

Other parameters are passed through a pointer to a apiGetPersistentDiskRequest struct via the builder pattern

Name Type Description Notes

Return type

PersistentDisk

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/hal+json

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

ListPersistentDisksForAccount

ListPersistentDisksForAccount200Response ListPersistentDisksForAccount(ctx, accountId).Page(page).Execute()

list persistent disks

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/aptible/aptible-api-go/aptibleapi"
)

func main() {
	accountId := int32(56) // int32 | account_id
	page := int32(56) // int32 | current page of results for pagination (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.PersistentDisksAPI.ListPersistentDisksForAccount(context.Background(), accountId).Page(page).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `PersistentDisksAPI.ListPersistentDisksForAccount``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ListPersistentDisksForAccount`: ListPersistentDisksForAccount200Response
	fmt.Fprintf(os.Stdout, "Response from `PersistentDisksAPI.ListPersistentDisksForAccount`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
accountId int32 account_id

Other Parameters

Other parameters are passed through a pointer to a apiListPersistentDisksForAccountRequest struct via the builder pattern

Name Type Description Notes

page | int32 | current page of results for pagination |

Return type

ListPersistentDisksForAccount200Response

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/hal+json

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