credentialsfetcher

package
v0.0.0-...-b702281 Latest Latest
Warning

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

Go to latest
Published: Apr 19, 2024 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CredentialsFetcherService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "credentialsfetcher.CredentialsFetcherService",
	HandlerType: (*CredentialsFetcherServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "AddKerberosLease",
			Handler:    _CredentialsFetcherService_AddKerberosLease_Handler,
		},
		{
			MethodName: "AddNonDomainJoinedKerberosLease",
			Handler:    _CredentialsFetcherService_AddNonDomainJoinedKerberosLease_Handler,
		},
		{
			MethodName: "RenewNonDomainJoinedKerberosLease",
			Handler:    _CredentialsFetcherService_RenewNonDomainJoinedKerberosLease_Handler,
		},
		{
			MethodName: "DeleteKerberosLease",
			Handler:    _CredentialsFetcherService_DeleteKerberosLease_Handler,
		},
		{
			MethodName: "HealthCheck",
			Handler:    _CredentialsFetcherService_HealthCheck_Handler,
		},
		{
			MethodName: "AddKerberosArnLease",
			Handler:    _CredentialsFetcherService_AddKerberosArnLease_Handler,
		},
		{
			MethodName: "RenewKerberosArnLease",
			Handler:    _CredentialsFetcherService_RenewKerberosArnLease_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "credentialsfetcher/credentialsfetcher.proto",
}

CredentialsFetcherService_ServiceDesc is the grpc.ServiceDesc for CredentialsFetcherService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_credentialsfetcher_credentialsfetcher_proto protoreflect.FileDescriptor

Functions

func RegisterCredentialsFetcherServiceServer

func RegisterCredentialsFetcherServiceServer(s grpc.ServiceRegistrar, srv CredentialsFetcherServiceServer)

Types

type CreateKerberosArnLeaseResponse

type CreateKerberosArnLeaseResponse struct {
	LeaseId              string                       `protobuf:"bytes,1,opt,name=lease_id,json=leaseId,proto3" json:"lease_id,omitempty"`
	KrbTicketResponseMap []*KerberosTicketArnResponse `protobuf:"bytes,2,rep,name=krb_ticket_response_map,json=krbTicketResponseMap,proto3" json:"krb_ticket_response_map,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateKerberosArnLeaseResponse) Descriptor deprecated

func (*CreateKerberosArnLeaseResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateKerberosArnLeaseResponse.ProtoReflect.Descriptor instead.

func (*CreateKerberosArnLeaseResponse) GetKrbTicketResponseMap

func (x *CreateKerberosArnLeaseResponse) GetKrbTicketResponseMap() []*KerberosTicketArnResponse

func (*CreateKerberosArnLeaseResponse) GetLeaseId

func (x *CreateKerberosArnLeaseResponse) GetLeaseId() string

func (*CreateKerberosArnLeaseResponse) ProtoMessage

func (*CreateKerberosArnLeaseResponse) ProtoMessage()

func (*CreateKerberosArnLeaseResponse) ProtoReflect

func (*CreateKerberosArnLeaseResponse) Reset

func (x *CreateKerberosArnLeaseResponse) Reset()

func (*CreateKerberosArnLeaseResponse) String

type CreateKerberosLeaseRequest

type CreateKerberosLeaseRequest struct {
	CredspecContents []string `protobuf:"bytes,1,rep,name=credspec_contents,json=credspecContents,proto3" json:"credspec_contents,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateKerberosLeaseRequest) Descriptor deprecated

func (*CreateKerberosLeaseRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateKerberosLeaseRequest.ProtoReflect.Descriptor instead.

func (*CreateKerberosLeaseRequest) GetCredspecContents

func (x *CreateKerberosLeaseRequest) GetCredspecContents() []string

func (*CreateKerberosLeaseRequest) ProtoMessage

func (*CreateKerberosLeaseRequest) ProtoMessage()

func (*CreateKerberosLeaseRequest) ProtoReflect

func (*CreateKerberosLeaseRequest) Reset

func (x *CreateKerberosLeaseRequest) Reset()

func (*CreateKerberosLeaseRequest) String

func (x *CreateKerberosLeaseRequest) String() string

type CreateKerberosLeaseResponse

type CreateKerberosLeaseResponse struct {
	LeaseId                  string   `protobuf:"bytes,1,opt,name=lease_id,json=leaseId,proto3" json:"lease_id,omitempty"`
	CreatedKerberosFilePaths []string `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateKerberosLeaseResponse) Descriptor deprecated

func (*CreateKerberosLeaseResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateKerberosLeaseResponse.ProtoReflect.Descriptor instead.

func (*CreateKerberosLeaseResponse) GetCreatedKerberosFilePaths

func (x *CreateKerberosLeaseResponse) GetCreatedKerberosFilePaths() []string

func (*CreateKerberosLeaseResponse) GetLeaseId

func (x *CreateKerberosLeaseResponse) GetLeaseId() string

func (*CreateKerberosLeaseResponse) ProtoMessage

func (*CreateKerberosLeaseResponse) ProtoMessage()

func (*CreateKerberosLeaseResponse) ProtoReflect

func (*CreateKerberosLeaseResponse) Reset

func (x *CreateKerberosLeaseResponse) Reset()

func (*CreateKerberosLeaseResponse) String

func (x *CreateKerberosLeaseResponse) String() string

type CreateNonDomainJoinedKerberosLeaseRequest

type CreateNonDomainJoinedKerberosLeaseRequest struct {
	CredspecContents []string `protobuf:"bytes,1,rep,name=credspec_contents,json=credspecContents,proto3" json:"credspec_contents,omitempty"`
	Username         string   `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
	Password         string   `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	Domain           string   `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateNonDomainJoinedKerberosLeaseRequest) Descriptor deprecated

func (*CreateNonDomainJoinedKerberosLeaseRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateNonDomainJoinedKerberosLeaseRequest.ProtoReflect.Descriptor instead.

func (*CreateNonDomainJoinedKerberosLeaseRequest) GetCredspecContents

func (x *CreateNonDomainJoinedKerberosLeaseRequest) GetCredspecContents() []string

func (*CreateNonDomainJoinedKerberosLeaseRequest) GetDomain

func (*CreateNonDomainJoinedKerberosLeaseRequest) GetPassword

func (*CreateNonDomainJoinedKerberosLeaseRequest) GetUsername

func (*CreateNonDomainJoinedKerberosLeaseRequest) ProtoMessage

func (*CreateNonDomainJoinedKerberosLeaseRequest) ProtoReflect

func (*CreateNonDomainJoinedKerberosLeaseRequest) Reset

func (*CreateNonDomainJoinedKerberosLeaseRequest) String

type CreateNonDomainJoinedKerberosLeaseResponse

type CreateNonDomainJoinedKerberosLeaseResponse struct {
	LeaseId                  string   `protobuf:"bytes,1,opt,name=lease_id,json=leaseId,proto3" json:"lease_id,omitempty"`
	CreatedKerberosFilePaths []string `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateNonDomainJoinedKerberosLeaseResponse) Descriptor deprecated

Deprecated: Use CreateNonDomainJoinedKerberosLeaseResponse.ProtoReflect.Descriptor instead.

func (*CreateNonDomainJoinedKerberosLeaseResponse) GetCreatedKerberosFilePaths

func (x *CreateNonDomainJoinedKerberosLeaseResponse) GetCreatedKerberosFilePaths() []string

func (*CreateNonDomainJoinedKerberosLeaseResponse) GetLeaseId

func (*CreateNonDomainJoinedKerberosLeaseResponse) ProtoMessage

func (*CreateNonDomainJoinedKerberosLeaseResponse) ProtoReflect

func (*CreateNonDomainJoinedKerberosLeaseResponse) Reset

func (*CreateNonDomainJoinedKerberosLeaseResponse) String

type CredentialsFetcherServiceClient

CredentialsFetcherServiceClient is the client API for CredentialsFetcherService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type CredentialsFetcherServiceServer

CredentialsFetcherServiceServer is the server API for CredentialsFetcherService service. All implementations must embed UnimplementedCredentialsFetcherServiceServer for forward compatibility

type DeleteKerberosLeaseRequest

type DeleteKerberosLeaseRequest struct {
	LeaseId string `protobuf:"bytes,1,opt,name=lease_id,json=leaseId,proto3" json:"lease_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteKerberosLeaseRequest) Descriptor deprecated

func (*DeleteKerberosLeaseRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteKerberosLeaseRequest.ProtoReflect.Descriptor instead.

func (*DeleteKerberosLeaseRequest) GetLeaseId

func (x *DeleteKerberosLeaseRequest) GetLeaseId() string

func (*DeleteKerberosLeaseRequest) ProtoMessage

func (*DeleteKerberosLeaseRequest) ProtoMessage()

func (*DeleteKerberosLeaseRequest) ProtoReflect

func (*DeleteKerberosLeaseRequest) Reset

func (x *DeleteKerberosLeaseRequest) Reset()

func (*DeleteKerberosLeaseRequest) String

func (x *DeleteKerberosLeaseRequest) String() string

type DeleteKerberosLeaseResponse

type DeleteKerberosLeaseResponse struct {
	LeaseId                  string   `protobuf:"bytes,1,opt,name=lease_id,json=leaseId,proto3" json:"lease_id,omitempty"`
	DeletedKerberosFilePaths []string `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DeleteKerberosLeaseResponse) Descriptor deprecated

func (*DeleteKerberosLeaseResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteKerberosLeaseResponse.ProtoReflect.Descriptor instead.

func (*DeleteKerberosLeaseResponse) GetDeletedKerberosFilePaths

func (x *DeleteKerberosLeaseResponse) GetDeletedKerberosFilePaths() []string

func (*DeleteKerberosLeaseResponse) GetLeaseId

func (x *DeleteKerberosLeaseResponse) GetLeaseId() string

func (*DeleteKerberosLeaseResponse) ProtoMessage

func (*DeleteKerberosLeaseResponse) ProtoMessage()

func (*DeleteKerberosLeaseResponse) ProtoReflect

func (*DeleteKerberosLeaseResponse) Reset

func (x *DeleteKerberosLeaseResponse) Reset()

func (*DeleteKerberosLeaseResponse) String

func (x *DeleteKerberosLeaseResponse) String() string

type HealthCheckRequest

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

func (*HealthCheckRequest) Descriptor deprecated

func (*HealthCheckRequest) Descriptor() ([]byte, []int)

Deprecated: Use HealthCheckRequest.ProtoReflect.Descriptor instead.

func (*HealthCheckRequest) GetService

func (x *HealthCheckRequest) GetService() string

func (*HealthCheckRequest) ProtoMessage

func (*HealthCheckRequest) ProtoMessage()

func (*HealthCheckRequest) ProtoReflect

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

func (*HealthCheckRequest) Reset

func (x *HealthCheckRequest) Reset()

func (*HealthCheckRequest) String

func (x *HealthCheckRequest) String() string

type HealthCheckResponse

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

func (*HealthCheckResponse) Descriptor deprecated

func (*HealthCheckResponse) Descriptor() ([]byte, []int)

Deprecated: Use HealthCheckResponse.ProtoReflect.Descriptor instead.

func (*HealthCheckResponse) GetStatus

func (x *HealthCheckResponse) GetStatus() string

func (*HealthCheckResponse) ProtoMessage

func (*HealthCheckResponse) ProtoMessage()

func (*HealthCheckResponse) ProtoReflect

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

func (*HealthCheckResponse) Reset

func (x *HealthCheckResponse) Reset()

func (*HealthCheckResponse) String

func (x *HealthCheckResponse) String() string

type KerberosArnLeaseRequest

type KerberosArnLeaseRequest struct {
	CredspecArns    []string `protobuf:"bytes,1,rep,name=credspec_arns,json=credspecArns,proto3" json:"credspec_arns,omitempty"`
	AccessKeyId     string   `protobuf:"bytes,2,opt,name=access_key_id,json=accessKeyId,proto3" json:"access_key_id,omitempty"`
	SecretAccessKey string   `protobuf:"bytes,3,opt,name=secret_access_key,json=secretAccessKey,proto3" json:"secret_access_key,omitempty"`
	SessionToken    string   `protobuf:"bytes,4,opt,name=session_token,json=sessionToken,proto3" json:"session_token,omitempty"`
	Region          string   `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
	// contains filtered or unexported fields
}

func (*KerberosArnLeaseRequest) Descriptor deprecated

func (*KerberosArnLeaseRequest) Descriptor() ([]byte, []int)

Deprecated: Use KerberosArnLeaseRequest.ProtoReflect.Descriptor instead.

func (*KerberosArnLeaseRequest) GetAccessKeyId

func (x *KerberosArnLeaseRequest) GetAccessKeyId() string

func (*KerberosArnLeaseRequest) GetCredspecArns

func (x *KerberosArnLeaseRequest) GetCredspecArns() []string

func (*KerberosArnLeaseRequest) GetRegion

func (x *KerberosArnLeaseRequest) GetRegion() string

func (*KerberosArnLeaseRequest) GetSecretAccessKey

func (x *KerberosArnLeaseRequest) GetSecretAccessKey() string

func (*KerberosArnLeaseRequest) GetSessionToken

func (x *KerberosArnLeaseRequest) GetSessionToken() string

func (*KerberosArnLeaseRequest) ProtoMessage

func (*KerberosArnLeaseRequest) ProtoMessage()

func (*KerberosArnLeaseRequest) ProtoReflect

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

func (*KerberosArnLeaseRequest) Reset

func (x *KerberosArnLeaseRequest) Reset()

func (*KerberosArnLeaseRequest) String

func (x *KerberosArnLeaseRequest) String() string

type KerberosTicketArnResponse

type KerberosTicketArnResponse struct {
	CredspecArns             string `protobuf:"bytes,1,opt,name=credspec_arns,json=credspecArns,proto3" json:"credspec_arns,omitempty"`
	CreatedKerberosFilePaths string `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*KerberosTicketArnResponse) Descriptor deprecated

func (*KerberosTicketArnResponse) Descriptor() ([]byte, []int)

Deprecated: Use KerberosTicketArnResponse.ProtoReflect.Descriptor instead.

func (*KerberosTicketArnResponse) GetCreatedKerberosFilePaths

func (x *KerberosTicketArnResponse) GetCreatedKerberosFilePaths() string

func (*KerberosTicketArnResponse) GetCredspecArns

func (x *KerberosTicketArnResponse) GetCredspecArns() string

func (*KerberosTicketArnResponse) ProtoMessage

func (*KerberosTicketArnResponse) ProtoMessage()

func (*KerberosTicketArnResponse) ProtoReflect

func (*KerberosTicketArnResponse) Reset

func (x *KerberosTicketArnResponse) Reset()

func (*KerberosTicketArnResponse) String

func (x *KerberosTicketArnResponse) String() string

type RenewKerberosArnLeaseRequest

type RenewKerberosArnLeaseRequest struct {
	AccessKeyId     string `protobuf:"bytes,1,opt,name=access_key_id,json=accessKeyId,proto3" json:"access_key_id,omitempty"`
	SecretAccessKey string `protobuf:"bytes,2,opt,name=secret_access_key,json=secretAccessKey,proto3" json:"secret_access_key,omitempty"`
	SessionToken    string `protobuf:"bytes,3,opt,name=session_token,json=sessionToken,proto3" json:"session_token,omitempty"`
	Region          string `protobuf:"bytes,4,opt,name=region,proto3" json:"region,omitempty"`
	// contains filtered or unexported fields
}

func (*RenewKerberosArnLeaseRequest) Descriptor deprecated

func (*RenewKerberosArnLeaseRequest) Descriptor() ([]byte, []int)

Deprecated: Use RenewKerberosArnLeaseRequest.ProtoReflect.Descriptor instead.

func (*RenewKerberosArnLeaseRequest) GetAccessKeyId

func (x *RenewKerberosArnLeaseRequest) GetAccessKeyId() string

func (*RenewKerberosArnLeaseRequest) GetRegion

func (x *RenewKerberosArnLeaseRequest) GetRegion() string

func (*RenewKerberosArnLeaseRequest) GetSecretAccessKey

func (x *RenewKerberosArnLeaseRequest) GetSecretAccessKey() string

func (*RenewKerberosArnLeaseRequest) GetSessionToken

func (x *RenewKerberosArnLeaseRequest) GetSessionToken() string

func (*RenewKerberosArnLeaseRequest) ProtoMessage

func (*RenewKerberosArnLeaseRequest) ProtoMessage()

func (*RenewKerberosArnLeaseRequest) ProtoReflect

func (*RenewKerberosArnLeaseRequest) Reset

func (x *RenewKerberosArnLeaseRequest) Reset()

func (*RenewKerberosArnLeaseRequest) String

type RenewKerberosArnLeaseResponse

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

func (*RenewKerberosArnLeaseResponse) Descriptor deprecated

func (*RenewKerberosArnLeaseResponse) Descriptor() ([]byte, []int)

Deprecated: Use RenewKerberosArnLeaseResponse.ProtoReflect.Descriptor instead.

func (*RenewKerberosArnLeaseResponse) GetStatus

func (x *RenewKerberosArnLeaseResponse) GetStatus() string

func (*RenewKerberosArnLeaseResponse) ProtoMessage

func (*RenewKerberosArnLeaseResponse) ProtoMessage()

func (*RenewKerberosArnLeaseResponse) ProtoReflect

func (*RenewKerberosArnLeaseResponse) Reset

func (x *RenewKerberosArnLeaseResponse) Reset()

func (*RenewKerberosArnLeaseResponse) String

type RenewNonDomainJoinedKerberosLeaseRequest

type RenewNonDomainJoinedKerberosLeaseRequest struct {
	Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	Domain   string `protobuf:"bytes,3,opt,name=domain,proto3" json:"domain,omitempty"`
	// contains filtered or unexported fields
}

func (*RenewNonDomainJoinedKerberosLeaseRequest) Descriptor deprecated

func (*RenewNonDomainJoinedKerberosLeaseRequest) Descriptor() ([]byte, []int)

Deprecated: Use RenewNonDomainJoinedKerberosLeaseRequest.ProtoReflect.Descriptor instead.

func (*RenewNonDomainJoinedKerberosLeaseRequest) GetDomain

func (*RenewNonDomainJoinedKerberosLeaseRequest) GetPassword

func (*RenewNonDomainJoinedKerberosLeaseRequest) GetUsername

func (*RenewNonDomainJoinedKerberosLeaseRequest) ProtoMessage

func (*RenewNonDomainJoinedKerberosLeaseRequest) ProtoReflect

func (*RenewNonDomainJoinedKerberosLeaseRequest) Reset

func (*RenewNonDomainJoinedKerberosLeaseRequest) String

type RenewNonDomainJoinedKerberosLeaseResponse

type RenewNonDomainJoinedKerberosLeaseResponse struct {
	RenewedKerberosFilePaths []string `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*RenewNonDomainJoinedKerberosLeaseResponse) Descriptor deprecated

func (*RenewNonDomainJoinedKerberosLeaseResponse) Descriptor() ([]byte, []int)

Deprecated: Use RenewNonDomainJoinedKerberosLeaseResponse.ProtoReflect.Descriptor instead.

func (*RenewNonDomainJoinedKerberosLeaseResponse) GetRenewedKerberosFilePaths

func (x *RenewNonDomainJoinedKerberosLeaseResponse) GetRenewedKerberosFilePaths() []string

func (*RenewNonDomainJoinedKerberosLeaseResponse) ProtoMessage

func (*RenewNonDomainJoinedKerberosLeaseResponse) ProtoReflect

func (*RenewNonDomainJoinedKerberosLeaseResponse) Reset

func (*RenewNonDomainJoinedKerberosLeaseResponse) String

type UnimplementedCredentialsFetcherServiceServer

type UnimplementedCredentialsFetcherServiceServer struct {
}

UnimplementedCredentialsFetcherServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedCredentialsFetcherServiceServer) AddKerberosArnLease

func (UnimplementedCredentialsFetcherServiceServer) AddKerberosLease

func (UnimplementedCredentialsFetcherServiceServer) DeleteKerberosLease

func (UnimplementedCredentialsFetcherServiceServer) HealthCheck

func (UnimplementedCredentialsFetcherServiceServer) RenewKerberosArnLease

type UnsafeCredentialsFetcherServiceServer

type UnsafeCredentialsFetcherServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeCredentialsFetcherServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to CredentialsFetcherServiceServer will result in compilation errors.

Jump to

Keyboard shortcuts

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