File: doc.go

package info (click to toggle)
golang-github-gophercloud-gophercloud 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,416 kB
  • sloc: sh: 99; makefile: 21
file content (20 lines) | stat: -rw-r--r-- 515 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
Package ec2credentials provides information and interaction with the EC2
credentials API resource for the OpenStack Identity service.

For more information, see:
https://docs.openstack.org/api-ref/identity/v2-ext/

Example to Create an EC2 credential

	createOpts := ec2credentials.CreateOpts{
		// project ID of the EC2 credential scope
		TenantID: projectID,
	}

	credential, err := ec2credentials.Create(identityClient, userID, createOpts).Extract()
	if err != nil {
		panic(err)
	}
*/
package ec2credentials