auth

package
v1.36.4-20230816140512... Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: unknown License: MIT Imports: 7 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Method_name = map[int32]string{
		0: "METHOD_NONE",
		1: "METHOD_TOKEN",
		2: "METHOD_OIDC",
		3: "METHOD_KUBERNETES",
	}
	Method_value = map[string]int32{
		"METHOD_NONE":       0,
		"METHOD_TOKEN":      1,
		"METHOD_OIDC":       2,
		"METHOD_KUBERNETES": 3,
	}
)

Enum value maps for Method.

View Source
var File_auth_auth_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Authentication

type Authentication struct {
	Id        string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Method    Method                 `protobuf:"varint,2,opt,name=method,proto3,enum=flipt.auth.Method" json:"method,omitempty"`
	ExpiresAt *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Metadata  map[string]string      `` /* 143-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Authentication) ClearCreatedAt

func (x *Authentication) ClearCreatedAt()

func (*Authentication) ClearExpiresAt

func (x *Authentication) ClearExpiresAt()

func (*Authentication) ClearUpdatedAt

func (x *Authentication) ClearUpdatedAt()

func (*Authentication) GetCreatedAt

func (x *Authentication) GetCreatedAt() *timestamppb.Timestamp

func (*Authentication) GetExpiresAt

func (x *Authentication) GetExpiresAt() *timestamppb.Timestamp

func (*Authentication) GetId

func (x *Authentication) GetId() string

func (*Authentication) GetMetadata

func (x *Authentication) GetMetadata() map[string]string

func (*Authentication) GetMethod

func (x *Authentication) GetMethod() Method

func (*Authentication) GetUpdatedAt

func (x *Authentication) GetUpdatedAt() *timestamppb.Timestamp

func (*Authentication) HasCreatedAt

func (x *Authentication) HasCreatedAt() bool

func (*Authentication) HasExpiresAt

func (x *Authentication) HasExpiresAt() bool

func (*Authentication) HasUpdatedAt

func (x *Authentication) HasUpdatedAt() bool

func (*Authentication) ProtoMessage

func (*Authentication) ProtoMessage()

func (*Authentication) ProtoReflect

func (x *Authentication) ProtoReflect() protoreflect.Message

func (*Authentication) Reset

func (x *Authentication) Reset()

func (*Authentication) SetCreatedAt

func (x *Authentication) SetCreatedAt(v *timestamppb.Timestamp)

func (*Authentication) SetExpiresAt

func (x *Authentication) SetExpiresAt(v *timestamppb.Timestamp)

func (*Authentication) SetId

func (x *Authentication) SetId(v string)

func (*Authentication) SetMetadata

func (x *Authentication) SetMetadata(v map[string]string)

func (*Authentication) SetMethod

func (x *Authentication) SetMethod(v Method)

func (*Authentication) SetUpdatedAt

func (x *Authentication) SetUpdatedAt(v *timestamppb.Timestamp)

func (*Authentication) String

func (x *Authentication) String() string

type Authentication_builder

type Authentication_builder struct {
	Id        string
	Method    Method
	ExpiresAt *timestamppb.Timestamp
	CreatedAt *timestamppb.Timestamp
	UpdatedAt *timestamppb.Timestamp
	Metadata  map[string]string
	// contains filtered or unexported fields
}

func (Authentication_builder) Build

type AuthorizeURLRequest

type AuthorizeURLRequest struct {
	Provider string `protobuf:"bytes,1,opt,name=provider,proto3" json:"provider,omitempty"`
	State    string `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthorizeURLRequest) GetProvider

func (x *AuthorizeURLRequest) GetProvider() string

func (*AuthorizeURLRequest) GetState

func (x *AuthorizeURLRequest) GetState() string

func (*AuthorizeURLRequest) ProtoMessage

func (*AuthorizeURLRequest) ProtoMessage()

func (*AuthorizeURLRequest) ProtoReflect

func (x *AuthorizeURLRequest) ProtoReflect() protoreflect.Message

func (*AuthorizeURLRequest) Reset

func (x *AuthorizeURLRequest) Reset()

func (*AuthorizeURLRequest) SetProvider

func (x *AuthorizeURLRequest) SetProvider(v string)

func (*AuthorizeURLRequest) SetState

func (x *AuthorizeURLRequest) SetState(v string)

func (*AuthorizeURLRequest) String

func (x *AuthorizeURLRequest) String() string

type AuthorizeURLRequest_builder

type AuthorizeURLRequest_builder struct {
	Provider string
	State    string
	// contains filtered or unexported fields
}

func (AuthorizeURLRequest_builder) Build

type AuthorizeURLResponse

type AuthorizeURLResponse struct {
	AuthorizeUrl string `protobuf:"bytes,1,opt,name=authorize_url,json=authorizeUrl,proto3" json:"authorize_url,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthorizeURLResponse) GetAuthorizeUrl

func (x *AuthorizeURLResponse) GetAuthorizeUrl() string

func (*AuthorizeURLResponse) ProtoMessage

func (*AuthorizeURLResponse) ProtoMessage()

func (*AuthorizeURLResponse) ProtoReflect

func (x *AuthorizeURLResponse) ProtoReflect() protoreflect.Message

func (*AuthorizeURLResponse) Reset

func (x *AuthorizeURLResponse) Reset()

func (*AuthorizeURLResponse) SetAuthorizeUrl

func (x *AuthorizeURLResponse) SetAuthorizeUrl(v string)

func (*AuthorizeURLResponse) String

func (x *AuthorizeURLResponse) String() string

type AuthorizeURLResponse_builder

type AuthorizeURLResponse_builder struct {
	AuthorizeUrl string
	// contains filtered or unexported fields
}

func (AuthorizeURLResponse_builder) Build

type CallbackRequest

type CallbackRequest struct {
	Provider string `protobuf:"bytes,1,opt,name=provider,proto3" json:"provider,omitempty"`
	Code     string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	State    string `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*CallbackRequest) GetCode

func (x *CallbackRequest) GetCode() string

func (*CallbackRequest) GetProvider

func (x *CallbackRequest) GetProvider() string

func (*CallbackRequest) GetState

func (x *CallbackRequest) GetState() string

func (*CallbackRequest) ProtoMessage

func (*CallbackRequest) ProtoMessage()

func (*CallbackRequest) ProtoReflect

func (x *CallbackRequest) ProtoReflect() protoreflect.Message

func (*CallbackRequest) Reset

func (x *CallbackRequest) Reset()

func (*CallbackRequest) SetCode

func (x *CallbackRequest) SetCode(v string)

func (*CallbackRequest) SetProvider

func (x *CallbackRequest) SetProvider(v string)

func (*CallbackRequest) SetState

func (x *CallbackRequest) SetState(v string)

func (*CallbackRequest) String

func (x *CallbackRequest) String() string

type CallbackRequest_builder

type CallbackRequest_builder struct {
	Provider string
	Code     string
	State    string
	// contains filtered or unexported fields
}

func (CallbackRequest_builder) Build

type CallbackResponse

type CallbackResponse struct {
	ClientToken    string          `protobuf:"bytes,1,opt,name=client_token,json=clientToken,proto3" json:"client_token,omitempty"`
	Authentication *Authentication `protobuf:"bytes,2,opt,name=authentication,proto3" json:"authentication,omitempty"`
	// contains filtered or unexported fields
}

func (*CallbackResponse) ClearAuthentication

func (x *CallbackResponse) ClearAuthentication()

func (*CallbackResponse) GetAuthentication

func (x *CallbackResponse) GetAuthentication() *Authentication

func (*CallbackResponse) GetClientToken

func (x *CallbackResponse) GetClientToken() string

func (*CallbackResponse) HasAuthentication

func (x *CallbackResponse) HasAuthentication() bool

func (*CallbackResponse) ProtoMessage

func (*CallbackResponse) ProtoMessage()

func (*CallbackResponse) ProtoReflect

func (x *CallbackResponse) ProtoReflect() protoreflect.Message

func (*CallbackResponse) Reset

func (x *CallbackResponse) Reset()

func (*CallbackResponse) SetAuthentication

func (x *CallbackResponse) SetAuthentication(v *Authentication)

func (*CallbackResponse) SetClientToken

func (x *CallbackResponse) SetClientToken(v string)

func (*CallbackResponse) String

func (x *CallbackResponse) String() string

type CallbackResponse_builder

type CallbackResponse_builder struct {
	ClientToken    string
	Authentication *Authentication
	// contains filtered or unexported fields
}

func (CallbackResponse_builder) Build

type CreateTokenRequest

type CreateTokenRequest struct {
	Name        string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Description string                 `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ExpiresAt   *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTokenRequest) ClearExpiresAt

func (x *CreateTokenRequest) ClearExpiresAt()

func (*CreateTokenRequest) GetDescription

func (x *CreateTokenRequest) GetDescription() string

func (*CreateTokenRequest) GetExpiresAt

func (x *CreateTokenRequest) GetExpiresAt() *timestamppb.Timestamp

func (*CreateTokenRequest) GetName

func (x *CreateTokenRequest) GetName() string

func (*CreateTokenRequest) HasExpiresAt

func (x *CreateTokenRequest) HasExpiresAt() bool

func (*CreateTokenRequest) ProtoMessage

func (*CreateTokenRequest) ProtoMessage()

func (*CreateTokenRequest) ProtoReflect

func (x *CreateTokenRequest) ProtoReflect() protoreflect.Message

func (*CreateTokenRequest) Reset

func (x *CreateTokenRequest) Reset()

func (*CreateTokenRequest) SetDescription

func (x *CreateTokenRequest) SetDescription(v string)

func (*CreateTokenRequest) SetExpiresAt

func (x *CreateTokenRequest) SetExpiresAt(v *timestamppb.Timestamp)

func (*CreateTokenRequest) SetName

func (x *CreateTokenRequest) SetName(v string)

func (*CreateTokenRequest) String

func (x *CreateTokenRequest) String() string

type CreateTokenRequest_builder

type CreateTokenRequest_builder struct {
	Name        string
	Description string
	ExpiresAt   *timestamppb.Timestamp
	// contains filtered or unexported fields
}

func (CreateTokenRequest_builder) Build

type CreateTokenResponse

type CreateTokenResponse struct {
	ClientToken    string          `protobuf:"bytes,1,opt,name=client_token,json=clientToken,proto3" json:"client_token,omitempty"`
	Authentication *Authentication `protobuf:"bytes,2,opt,name=authentication,proto3" json:"authentication,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTokenResponse) ClearAuthentication

func (x *CreateTokenResponse) ClearAuthentication()

func (*CreateTokenResponse) GetAuthentication

func (x *CreateTokenResponse) GetAuthentication() *Authentication

func (*CreateTokenResponse) GetClientToken

func (x *CreateTokenResponse) GetClientToken() string

func (*CreateTokenResponse) HasAuthentication

func (x *CreateTokenResponse) HasAuthentication() bool

func (*CreateTokenResponse) ProtoMessage

func (*CreateTokenResponse) ProtoMessage()

func (*CreateTokenResponse) ProtoReflect

func (x *CreateTokenResponse) ProtoReflect() protoreflect.Message

func (*CreateTokenResponse) Reset

func (x *CreateTokenResponse) Reset()

func (*CreateTokenResponse) SetAuthentication

func (x *CreateTokenResponse) SetAuthentication(v *Authentication)

func (*CreateTokenResponse) SetClientToken

func (x *CreateTokenResponse) SetClientToken(v string)

func (*CreateTokenResponse) String

func (x *CreateTokenResponse) String() string

type CreateTokenResponse_builder

type CreateTokenResponse_builder struct {
	ClientToken    string
	Authentication *Authentication
	// contains filtered or unexported fields
}

func (CreateTokenResponse_builder) Build

type DeleteAuthenticationRequest

type DeleteAuthenticationRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteAuthenticationRequest) GetId

func (*DeleteAuthenticationRequest) ProtoMessage

func (*DeleteAuthenticationRequest) ProtoMessage()

func (*DeleteAuthenticationRequest) ProtoReflect

func (*DeleteAuthenticationRequest) Reset

func (x *DeleteAuthenticationRequest) Reset()

func (*DeleteAuthenticationRequest) SetId

func (x *DeleteAuthenticationRequest) SetId(v string)

func (*DeleteAuthenticationRequest) String

func (x *DeleteAuthenticationRequest) String() string

type DeleteAuthenticationRequest_builder

type DeleteAuthenticationRequest_builder struct {
	Id string
	// contains filtered or unexported fields
}

func (DeleteAuthenticationRequest_builder) Build

type ExpireAuthenticationSelfRequest

type ExpireAuthenticationSelfRequest struct {
	ExpiresAt *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=expires_at,json=expiresAt,proto3,oneof" json:"expires_at,omitempty"`
	// contains filtered or unexported fields
}

func (*ExpireAuthenticationSelfRequest) ClearExpiresAt

func (x *ExpireAuthenticationSelfRequest) ClearExpiresAt()

func (*ExpireAuthenticationSelfRequest) GetExpiresAt

func (*ExpireAuthenticationSelfRequest) HasExpiresAt

func (x *ExpireAuthenticationSelfRequest) HasExpiresAt() bool

func (*ExpireAuthenticationSelfRequest) ProtoMessage

func (*ExpireAuthenticationSelfRequest) ProtoMessage()

func (*ExpireAuthenticationSelfRequest) ProtoReflect

func (*ExpireAuthenticationSelfRequest) Reset

func (*ExpireAuthenticationSelfRequest) SetExpiresAt

func (*ExpireAuthenticationSelfRequest) String

type ExpireAuthenticationSelfRequest_builder

type ExpireAuthenticationSelfRequest_builder struct {
	ExpiresAt *timestamppb.Timestamp
	// contains filtered or unexported fields
}

func (ExpireAuthenticationSelfRequest_builder) Build

type GetAuthenticationRequest

type GetAuthenticationRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAuthenticationRequest) GetId

func (x *GetAuthenticationRequest) GetId() string

func (*GetAuthenticationRequest) ProtoMessage

func (*GetAuthenticationRequest) ProtoMessage()

func (*GetAuthenticationRequest) ProtoReflect

func (x *GetAuthenticationRequest) ProtoReflect() protoreflect.Message

func (*GetAuthenticationRequest) Reset

func (x *GetAuthenticationRequest) Reset()

func (*GetAuthenticationRequest) SetId

func (x *GetAuthenticationRequest) SetId(v string)

func (*GetAuthenticationRequest) String

func (x *GetAuthenticationRequest) String() string

type GetAuthenticationRequest_builder

type GetAuthenticationRequest_builder struct {
	Id string
	// contains filtered or unexported fields
}

func (GetAuthenticationRequest_builder) Build

type ListAuthenticationMethodsResponse

type ListAuthenticationMethodsResponse struct {
	Methods []*MethodInfo `protobuf:"bytes,1,rep,name=methods,proto3" json:"methods,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAuthenticationMethodsResponse) GetMethods

func (x *ListAuthenticationMethodsResponse) GetMethods() []*MethodInfo

func (*ListAuthenticationMethodsResponse) ProtoMessage

func (*ListAuthenticationMethodsResponse) ProtoMessage()

func (*ListAuthenticationMethodsResponse) ProtoReflect

func (*ListAuthenticationMethodsResponse) Reset

func (*ListAuthenticationMethodsResponse) SetMethods

func (x *ListAuthenticationMethodsResponse) SetMethods(v []*MethodInfo)

func (*ListAuthenticationMethodsResponse) String

type ListAuthenticationMethodsResponse_builder

type ListAuthenticationMethodsResponse_builder struct {
	Methods []*MethodInfo
	// contains filtered or unexported fields
}

func (ListAuthenticationMethodsResponse_builder) Build

type ListAuthenticationsRequest

type ListAuthenticationsRequest struct {
	Method    Method `protobuf:"varint,1,opt,name=method,proto3,enum=flipt.auth.Method" json:"method,omitempty"`
	Limit     int32  `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAuthenticationsRequest) GetLimit

func (x *ListAuthenticationsRequest) GetLimit() int32

func (*ListAuthenticationsRequest) GetMethod

func (x *ListAuthenticationsRequest) GetMethod() Method

func (*ListAuthenticationsRequest) GetPageToken

func (x *ListAuthenticationsRequest) GetPageToken() string

func (*ListAuthenticationsRequest) ProtoMessage

func (*ListAuthenticationsRequest) ProtoMessage()

func (*ListAuthenticationsRequest) ProtoReflect

func (*ListAuthenticationsRequest) Reset

func (x *ListAuthenticationsRequest) Reset()

func (*ListAuthenticationsRequest) SetLimit

func (x *ListAuthenticationsRequest) SetLimit(v int32)

func (*ListAuthenticationsRequest) SetMethod

func (x *ListAuthenticationsRequest) SetMethod(v Method)

func (*ListAuthenticationsRequest) SetPageToken

func (x *ListAuthenticationsRequest) SetPageToken(v string)

func (*ListAuthenticationsRequest) String

func (x *ListAuthenticationsRequest) String() string

type ListAuthenticationsRequest_builder

type ListAuthenticationsRequest_builder struct {
	Method    Method
	Limit     int32
	PageToken string
	// contains filtered or unexported fields
}

func (ListAuthenticationsRequest_builder) Build

type ListAuthenticationsResponse

type ListAuthenticationsResponse struct {
	Authentications []*Authentication `protobuf:"bytes,1,rep,name=authentications,proto3" json:"authentications,omitempty"`
	NextPageToken   string            `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAuthenticationsResponse) GetAuthentications

func (x *ListAuthenticationsResponse) GetAuthentications() []*Authentication

func (*ListAuthenticationsResponse) GetNextPageToken

func (x *ListAuthenticationsResponse) GetNextPageToken() string

func (*ListAuthenticationsResponse) ProtoMessage

func (*ListAuthenticationsResponse) ProtoMessage()

func (*ListAuthenticationsResponse) ProtoReflect

func (*ListAuthenticationsResponse) Reset

func (x *ListAuthenticationsResponse) Reset()

func (*ListAuthenticationsResponse) SetAuthentications

func (x *ListAuthenticationsResponse) SetAuthentications(v []*Authentication)

func (*ListAuthenticationsResponse) SetNextPageToken

func (x *ListAuthenticationsResponse) SetNextPageToken(v string)

func (*ListAuthenticationsResponse) String

func (x *ListAuthenticationsResponse) String() string

type ListAuthenticationsResponse_builder

type ListAuthenticationsResponse_builder struct {
	Authentications []*Authentication
	NextPageToken   string
	// contains filtered or unexported fields
}

func (ListAuthenticationsResponse_builder) Build

type Method

type Method int32
const (
	Method_METHOD_NONE       Method = 0
	Method_METHOD_TOKEN      Method = 1
	Method_METHOD_OIDC       Method = 2
	Method_METHOD_KUBERNETES Method = 3
)

func (Method) Descriptor

func (Method) Descriptor() protoreflect.EnumDescriptor

func (Method) Enum

func (x Method) Enum() *Method

func (Method) Number

func (x Method) Number() protoreflect.EnumNumber

func (Method) String

func (x Method) String() string

func (Method) Type

func (Method) Type() protoreflect.EnumType

type MethodInfo

type MethodInfo struct {
	Method            Method           `protobuf:"varint,1,opt,name=method,proto3,enum=flipt.auth.Method" json:"method,omitempty"`
	Enabled           bool             `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
	SessionCompatible bool             `protobuf:"varint,3,opt,name=session_compatible,json=sessionCompatible,proto3" json:"session_compatible,omitempty"`
	Metadata          *structpb.Struct `protobuf:"bytes,4,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*MethodInfo) ClearMetadata

func (x *MethodInfo) ClearMetadata()

func (*MethodInfo) GetEnabled

func (x *MethodInfo) GetEnabled() bool

func (*MethodInfo) GetMetadata

func (x *MethodInfo) GetMetadata() *structpb.Struct

func (*MethodInfo) GetMethod

func (x *MethodInfo) GetMethod() Method

func (*MethodInfo) GetSessionCompatible

func (x *MethodInfo) GetSessionCompatible() bool

func (*MethodInfo) HasMetadata

func (x *MethodInfo) HasMetadata() bool

func (*MethodInfo) ProtoMessage

func (*MethodInfo) ProtoMessage()

func (*MethodInfo) ProtoReflect

func (x *MethodInfo) ProtoReflect() protoreflect.Message

func (*MethodInfo) Reset

func (x *MethodInfo) Reset()

func (*MethodInfo) SetEnabled

func (x *MethodInfo) SetEnabled(v bool)

func (*MethodInfo) SetMetadata

func (x *MethodInfo) SetMetadata(v *structpb.Struct)

func (*MethodInfo) SetMethod

func (x *MethodInfo) SetMethod(v Method)

func (*MethodInfo) SetSessionCompatible

func (x *MethodInfo) SetSessionCompatible(v bool)

func (*MethodInfo) String

func (x *MethodInfo) String() string

type MethodInfo_builder

type MethodInfo_builder struct {
	Method            Method
	Enabled           bool
	SessionCompatible bool
	Metadata          *structpb.Struct
	// contains filtered or unexported fields
}

func (MethodInfo_builder) Build

func (b0 MethodInfo_builder) Build() *MethodInfo

type VerifyServiceAccountRequest

type VerifyServiceAccountRequest struct {
	ServiceAccountToken string `protobuf:"bytes,1,opt,name=service_account_token,json=serviceAccountToken,proto3" json:"service_account_token,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyServiceAccountRequest) GetServiceAccountToken

func (x *VerifyServiceAccountRequest) GetServiceAccountToken() string

func (*VerifyServiceAccountRequest) ProtoMessage

func (*VerifyServiceAccountRequest) ProtoMessage()

func (*VerifyServiceAccountRequest) ProtoReflect

func (*VerifyServiceAccountRequest) Reset

func (x *VerifyServiceAccountRequest) Reset()

func (*VerifyServiceAccountRequest) SetServiceAccountToken

func (x *VerifyServiceAccountRequest) SetServiceAccountToken(v string)

func (*VerifyServiceAccountRequest) String

func (x *VerifyServiceAccountRequest) String() string

type VerifyServiceAccountRequest_builder

type VerifyServiceAccountRequest_builder struct {
	ServiceAccountToken string
	// contains filtered or unexported fields
}

func (VerifyServiceAccountRequest_builder) Build

type VerifyServiceAccountResponse

type VerifyServiceAccountResponse struct {
	ClientToken    string          `protobuf:"bytes,1,opt,name=client_token,json=clientToken,proto3" json:"client_token,omitempty"`
	Authentication *Authentication `protobuf:"bytes,2,opt,name=authentication,proto3" json:"authentication,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyServiceAccountResponse) ClearAuthentication

func (x *VerifyServiceAccountResponse) ClearAuthentication()

func (*VerifyServiceAccountResponse) GetAuthentication

func (x *VerifyServiceAccountResponse) GetAuthentication() *Authentication

func (*VerifyServiceAccountResponse) GetClientToken

func (x *VerifyServiceAccountResponse) GetClientToken() string

func (*VerifyServiceAccountResponse) HasAuthentication

func (x *VerifyServiceAccountResponse) HasAuthentication() bool

func (*VerifyServiceAccountResponse) ProtoMessage

func (*VerifyServiceAccountResponse) ProtoMessage()

func (*VerifyServiceAccountResponse) ProtoReflect

func (*VerifyServiceAccountResponse) Reset

func (x *VerifyServiceAccountResponse) Reset()

func (*VerifyServiceAccountResponse) SetAuthentication

func (x *VerifyServiceAccountResponse) SetAuthentication(v *Authentication)

func (*VerifyServiceAccountResponse) SetClientToken

func (x *VerifyServiceAccountResponse) SetClientToken(v string)

func (*VerifyServiceAccountResponse) String

type VerifyServiceAccountResponse_builder

type VerifyServiceAccountResponse_builder struct {
	ClientToken    string
	Authentication *Authentication
	// contains filtered or unexported fields
}

func (VerifyServiceAccountResponse_builder) Build

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL