All Projects → IBM → platform-services-go-sdk

IBM / platform-services-go-sdk

Licence: Apache-2.0 license
Go client library for IBM Cloud Platform Services

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to platform-services-go-sdk

Cloud-Service-Providers-Free-Tier-Overview
Comparing the free tier offers of the major cloud providers like AWS, Azure, GCP, Oracle etc.
Stars: ✭ 226 (+1514.29%)
Mutual labels:  cloud-computing, ibm-cloud
openwhisk-workshops
IBM Cloud Functions (Apache OpenWhisk) workshops
Stars: ✭ 16 (+14.29%)
Mutual labels:  ibm, ibm-cloud
openshift101
OpenShift 101 on IBM Cloud tutorial: https://ibm.github.io/openshift101/
Stars: ✭ 27 (+92.86%)
Mutual labels:  ibm, ibm-cloud
openshift-install-power
UPI Install helper to deploy OpenShift 4 on IBM Power Systems Virtual Server using Terraform IaC
Stars: ✭ 16 (+14.29%)
Mutual labels:  ibm, ibm-cloud
datajoint-python
Relational data pipelines for the science lab
Stars: ✭ 140 (+900%)
Mutual labels:  cloud-computing
CodeEngine
Samples for using Code Engine
Stars: ✭ 69 (+392.86%)
Mutual labels:  ibm-cloud
punch-q
👊 A small utility to play with IBM MQ
Stars: ✭ 49 (+250%)
Mutual labels:  ibm
omxware-getting-started
Examples to get started with IBM Functional Genomics Platform
Stars: ✭ 13 (-7.14%)
Mutual labels:  ibm
hedera-sdk-go
Hedera™ Hashgraph SDK for Go
Stars: ✭ 63 (+350%)
Mutual labels:  sdk-go
veryfi-go
Go module for communicating with the Veryfi OCR API
Stars: ✭ 18 (+28.57%)
Mutual labels:  sdk-go
mq-java-exporter
Exporter for IBM MQ metrics https://prometheus.io/
Stars: ✭ 19 (+35.71%)
Mutual labels:  ibm
resilient-python-api
Python Library for the IBM SOAR REST API, a Python SDK for developing Apps for IBM SOAR and more...
Stars: ✭ 29 (+107.14%)
Mutual labels:  ibm
tencent-cam-policy
Easily create an Tencent CAM Policy with Serverless Components
Stars: ✭ 20 (+42.86%)
Mutual labels:  cloud-computing
dnn-object-detection
Analyze real-time CCTV images with Convolutional Neural Networks
Stars: ✭ 93 (+564.29%)
Mutual labels:  ibm-cloud
watson-discovery-ui
Develop a fully featured Node.js web app built on the Watson Discovery Service
Stars: ✭ 63 (+350%)
Mutual labels:  ibm-cloud
Host-Load-Prediction-with-LSTM
host load prediction with Long Short-Term Memory in cloud computing
Stars: ✭ 28 (+100%)
Mutual labels:  cloud-computing
analogsea
Digital Ocean R client
Stars: ✭ 142 (+914.29%)
Mutual labels:  cloud-computing
infra
Infrastructure management for Google Cloud Platform
Stars: ✭ 14 (+0%)
Mutual labels:  cloud-computing
oec
IBM 3270 terminal controller - a replacement for the IBM 3174
Stars: ✭ 29 (+107.14%)
Mutual labels:  ibm
watson-discovery-sdu-with-assistant
Build a Node.js chatbot that uses Watson services and webhooks to query an owner's manual
Stars: ✭ 20 (+42.86%)
Mutual labels:  ibm-cloud

Build Status Release Go Reference GitHub go.mod Go version License semantic-release CLA assistant

IBM Cloud Platform Services Go SDK Version 0.28.2

Go client library to interact with various IBM Cloud Platform Service APIs.

Table of Contents

Overview

The IBM Cloud Platform Services Go SDK allows developers to programmatically interact with the following IBM Cloud services:

Service Name Package name
Activity Tracker atrackerv2
Activity Tracker v1 [deprecated] atrackerv1
Case Management casemanagementv1
Catalog Management catalogmanagementv1
Configuration Governance configurationgovernancev1
Context Based Restrictions contextbasedrestrictionsv1
Enterprise Billing Units enterprisebillingunitsv1
Enterprise Management enterprisemanagementv1
Enterprise Usage Reports enterpriseusagereportsv1
Global Catalog globalcatalogv1
Global Search globalsearchv2
Global Tagging globaltaggingv1
IAM Access Groups iamaccessgroupsv2
IAM Identity Service iamidentityv1
IAM Policy Management iampolicymanagementv1
IBM Cloud Shell ibmcloudshellv1
Open Service Broker openservicebrokerv1
Posture Management posturemanagementv1
Resource Controller resourcecontrollerv2
Resource Manager resourcemanagerv2
Usage Metering usagemeteringv4
Usage Reports usagereportsv4
User Management usermanagementv1

Prerequisites

  • An IBM Cloud account.
  • An IAM API key to allow the SDK to access your account. Create one here.
  • Go version 1.16 or above.

Installation

The current version of this SDK: 0.28.2

Go modules

If your application uses Go modules for dependency management (recommended), just add an import for each service that you will use in your application.
Here is an example:

import (
	"github.com/IBM/platform-services-go-sdk/globalsearchv2"
)

Next, run go build or go mod tidy to download and install the new dependencies and update your application's go.mod file.

In the example above, the globalsearchv2 part of the import path is the package name associated with the Global Search service. See the service table above to find the approprate package name for the services used by your application.

go get command

Alternatively, you can use the go get command to download and install the appropriate packages needed by your application:

go get -u github.com/IBM/platform-services-go-sdk/globalsearchv2

Be sure to use the appropriate package name from the service table above for the services used by your application.

Using the SDK

For general SDK usage information, please see this link

Questions

If you are having difficulties using this SDK or have a question about the IBM Cloud services, please ask a question at Stack Overflow.

Issues

If you encounter an issue with the project, you are welcome to submit a bug report. Before that, please search for similar issues. It's possible that someone has already reported the problem.

Open source @ IBM

Find more open source projects on the IBM Github Page

Contributing

See CONTRIBUTING.

License

The IBM Cloud Platform Services Go SDK is released under the Apache 2.0 license. The license's full text can be found in LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].