Skip to content

IBM-Cloud/power-go-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

michaelkadpowervs-ibmismirlia
Feb 10, 2025
a65121c · Feb 10, 2025
Nov 22, 2024
Feb 8, 2022
Feb 10, 2025
Aug 20, 2024
Sep 11, 2024
Feb 10, 2025
Nov 20, 2023
Sep 9, 2023
Feb 10, 2025
Apr 13, 2022
Mar 6, 2020
Sep 20, 2023
Oct 11, 2024
Oct 11, 2024
Apr 13, 2022

Repository files navigation

GitHub go.mod Go version GitHub release (latest by date) GitHub Workflow Status GitHub contributors GitHub

IBM Cloud SDK for Power Cloud

The power-go-client project provides the Go SDK for IBM® Power Systems™ Virtual Server.

Prerequisites

Install

Install the SDK using the following methods.

go get command

Use this command to download and install the SDK to allow your Go application to use it:

go get -u github.com/IBM-Cloud/power-go-client

Go modules

If your application is using Go modules, you can add a suitable import to your Go application, like this:

import (
  "github.com/IBM-Cloud/power-go-client"
)

then run go mod tidy to download and install the new dependency and update your Go application's go.mod file.

dep dependency manager

If your application is using the dep dependency management tool, you can add a dependency to your Gopkg.toml file. Here is an example:

[[constraint]]
  name = "github.com/IBM-Cloud/power-go-client"
  version = "1.1.0"

then run dep ensure.

Usage

First you need to create a session and use it for creating the client.

import "github.com/IBM-Cloud/power-go-client/ibmpisession"

func main(){
    o := &ibmpisession.IBMPIOptions{
		Authenticator: authenticator,
		UserAccount:   accountID,
		Zone:          zone,
	}
    s, err := ibmpisession.NewIBMPISession(o)
    .....
}

Type IBMPIOptions required fields:

Other optional fields:

  • Debug: Enable/Disable http transport debugging log.
  • Region: Region of the Power Cloud Service Instance. This is used for generating the default service URL. Deprecated: The region and endpoint is auto generated based on Zone.
  • URL: Power Virtual Server host or URL endpoint. By default it uses power-iaas.cloud.ibm.com. In case of test environment you can set the value to power-iaas.test.cloud.ibm.com. You can also use env variable IBMCLOUD_POWER_API_ENDPOINT. Note that the region value is prepended to the host string if not present eg: <region>.power-iaas.cloud.ibm.com.

Also you can refer to the examples directory for some resources that shows how to use the SDK.

Issues

If you encounter an issue with the project please report here..

Development

This section contains some steps required by the dev for contributing changes to the SDK.

Update the power directory

  1. Install the latest go-swagger version on your machine.
  2. Download the last released version of the service broker API definitions (swagger.yaml).
  3. Run ./bin/update-swagger.sh from the project root.