27 lines
616 B
Go
27 lines
616 B
Go
package infisical
|
|
|
|
import (
|
|
api "github.com/infisical/go-sdk/packages/api/auth"
|
|
"github.com/infisical/go-sdk/packages/errors"
|
|
"github.com/infisical/go-sdk/packages/models"
|
|
)
|
|
|
|
type OciAuthLoginOptions struct {
|
|
IdentityID string
|
|
PrivateKey string
|
|
Fingerprint string
|
|
UserID string
|
|
TenancyID string
|
|
Region string
|
|
Passphrase *string
|
|
}
|
|
|
|
type MachineIdentityCredential = api.MachineIdentityAuthLoginResponse
|
|
|
|
type Secret = models.Secret
|
|
type SecretImport = models.SecretImport
|
|
|
|
type APIError = errors.APIError
|
|
type RequestError = errors.RequestError
|
|
type NotModifiedError = errors.NotModifiedError
|