Documentation ¶
Index ¶
- func NewConnector(ctx context.Context, in interface{}, opts ...Opt) (types.ConnectorServer, error)
- type AccountManager
- type ConnectorBuilder
- type CreateAccountResponse
- type CredentialManager
- type EventProvider
- type Opt
- type ResourceManager
- type ResourceProvisioner
- type ResourceProvisionerV2
- type ResourceSyncer
- type TicketManager
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewConnector ¶
NewConnector creates a new ConnectorServer for a new resource.
Types ¶
type AccountManager ¶ added in v0.1.15
type AccountManager interface {
CreateAccount(ctx context.Context, accountInfo *v2.AccountInfo, credentialOptions *v2.CredentialOptions) (CreateAccountResponse, []*v2.PlaintextData, annotations.Annotations, error)
}
type ConnectorBuilder ¶
type ConnectorBuilder interface { Metadata(ctx context.Context) (*v2.ConnectorMetadata, error) Validate(ctx context.Context) (annotations.Annotations, error) ResourceSyncers(ctx context.Context) []ResourceSyncer }
type CreateAccountResponse ¶ added in v0.1.15
type CredentialManager ¶ added in v0.1.15
type CredentialManager interface {
Rotate(ctx context.Context, resourceId *v2.ResourceId, credentialOptions *v2.CredentialOptions) ([]*v2.PlaintextData, annotations.Annotations, error)
}
type EventProvider ¶ added in v0.1.16
type EventProvider interface {
ListEvents(ctx context.Context, earliestEvent *timestamppb.Timestamp, pToken *pagination.StreamToken) ([]*v2.Event, *pagination.StreamState, annotations.Annotations, error)
}
type Opt ¶ added in v0.1.39
type Opt func(b *builderImpl) error
func WithMetricsHandler ¶ added in v0.1.39
func WithTicketingEnabled ¶ added in v0.2.7
func WithTicketingEnabled() Opt
type ResourceManager ¶ added in v0.1.15
type ResourceManager interface { Create(ctx context.Context, resource *v2.Resource) (*v2.Resource, annotations.Annotations, error) Delete(ctx context.Context, resourceId *v2.ResourceId) (annotations.Annotations, error) }
type ResourceProvisioner ¶ added in v0.0.30
type ResourceProvisioner interface { ResourceType(ctx context.Context) *v2.ResourceType Grant(ctx context.Context, resource *v2.Resource, entitlement *v2.Entitlement) (annotations.Annotations, error) Revoke(ctx context.Context, grant *v2.Grant) (annotations.Annotations, error) }
type ResourceProvisionerV2 ¶ added in v0.1.13
type ResourceProvisionerV2 interface { ResourceType(ctx context.Context) *v2.ResourceType Grant(ctx context.Context, resource *v2.Resource, entitlement *v2.Entitlement) ([]*v2.Grant, annotations.Annotations, error) Revoke(ctx context.Context, grant *v2.Grant) (annotations.Annotations, error) }
type ResourceSyncer ¶
type ResourceSyncer interface { ResourceType(ctx context.Context) *v2.ResourceType List(ctx context.Context, parentResourceID *v2.ResourceId, pToken *pagination.Token) ([]*v2.Resource, string, annotations.Annotations, error) Entitlements(ctx context.Context, resource *v2.Resource, pToken *pagination.Token) ([]*v2.Entitlement, string, annotations.Annotations, error) Grants(ctx context.Context, resource *v2.Resource, pToken *pagination.Token) ([]*v2.Grant, string, annotations.Annotations, error) }
type TicketManager ¶ added in v0.1.36
type TicketManager interface { GetTicket(ctx context.Context, ticketId string) (*v2.Ticket, annotations.Annotations, error) CreateTicket(ctx context.Context, ticket *v2.Ticket, schema *v2.TicketSchema) (*v2.Ticket, annotations.Annotations, error) GetTicketSchema(ctx context.Context, schemaID string) (*v2.TicketSchema, annotations.Annotations, error) ListTicketSchemas(ctx context.Context, pToken *pagination.Token) ([]*v2.TicketSchema, string, annotations.Annotations, error) }
Click to show internal directories.
Click to hide internal directories.