sso_manager

package
v0.0.0-...-e4f806a Latest Latest
Warning

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

Go to latest
Published: Nov 11, 2019 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ClientType_name = map[int32]string{
	0: "PUBLIC",
	1: "CONFIDENTIAL",
}
View Source
var ClientType_value = map[string]int32{
	"PUBLIC":       0,
	"CONFIDENTIAL": 1,
}

Functions

func RegisterAccountServiceServer

func RegisterAccountServiceServer(s *grpc.Server, srv AccountServiceServer)

func RegisterClientServiceServer

func RegisterClientServiceServer(s *grpc.Server, srv ClientServiceServer)

func RegisterManagementServiceServer

func RegisterManagementServiceServer(s *grpc.Server, srv ManagementServiceServer)

Types

type AccountServiceClient

type AccountServiceClient interface {
	UpsertAccount(ctx context.Context, in *UpsertAccountRequest, opts ...grpc.CallOption) (*UpsertAccountResponse, error)
	DeleteAccount(ctx context.Context, in *DeleteAccountRequest, opts ...grpc.CallOption) (*DeleteAccountResponse, error)
}

AccountServiceClient is the client API for AccountService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewAccountServiceClient

func NewAccountServiceClient(cc *grpc.ClientConn) AccountServiceClient

type AccountServiceServer

type AccountServiceServer interface {
	UpsertAccount(context.Context, *UpsertAccountRequest) (*UpsertAccountResponse, error)
	DeleteAccount(context.Context, *DeleteAccountRequest) (*DeleteAccountResponse, error)
}

AccountServiceServer is the server API for AccountService service.

type ClientServiceClient

type ClientServiceClient interface {
	UpsertClient(ctx context.Context, in *UpsertClientRequest, opts ...grpc.CallOption) (*UpsertClientResponse, error)
	DeleteClient(ctx context.Context, in *DeleteClientRequest, opts ...grpc.CallOption) (*DeleteClientResponse, error)
	UpsertScope(ctx context.Context, in *UpsertScopeRequest, opts ...grpc.CallOption) (*UpsertScopeResponse, error)
	DeleteScope(ctx context.Context, in *DeleteScopeRequest, opts ...grpc.CallOption) (*DeleteClientResponse, error)
}

ClientServiceClient is the client API for ClientService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewClientServiceClient

func NewClientServiceClient(cc *grpc.ClientConn) ClientServiceClient

type ClientServiceServer

ClientServiceServer is the server API for ClientService service.

type ClientType

type ClientType int32
const (
	ClientType_PUBLIC       ClientType = 0
	ClientType_CONFIDENTIAL ClientType = 1
)

func (ClientType) EnumDescriptor

func (ClientType) EnumDescriptor() ([]byte, []int)

func (ClientType) String

func (x ClientType) String() string

type DeleteAccountRequest

type DeleteAccountRequest struct {
	Session              *sso_common.RequestSession `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	AccountId            string                     `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*DeleteAccountRequest) Descriptor

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

func (*DeleteAccountRequest) GetAccountId

func (m *DeleteAccountRequest) GetAccountId() string

func (*DeleteAccountRequest) GetSession

func (*DeleteAccountRequest) ProtoMessage

func (*DeleteAccountRequest) ProtoMessage()

func (*DeleteAccountRequest) Reset

func (m *DeleteAccountRequest) Reset()

func (*DeleteAccountRequest) String

func (m *DeleteAccountRequest) String() string

func (*DeleteAccountRequest) XXX_DiscardUnknown

func (m *DeleteAccountRequest) XXX_DiscardUnknown()

func (*DeleteAccountRequest) XXX_Marshal

func (m *DeleteAccountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteAccountRequest) XXX_Merge

func (m *DeleteAccountRequest) XXX_Merge(src proto.Message)

func (*DeleteAccountRequest) XXX_Size

func (m *DeleteAccountRequest) XXX_Size() int

func (*DeleteAccountRequest) XXX_Unmarshal

func (m *DeleteAccountRequest) XXX_Unmarshal(b []byte) error

type DeleteAccountResponse

type DeleteAccountResponse struct {
	Status               *sso_common.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*DeleteAccountResponse) Descriptor

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

func (*DeleteAccountResponse) GetStatus

func (*DeleteAccountResponse) ProtoMessage

func (*DeleteAccountResponse) ProtoMessage()

func (*DeleteAccountResponse) Reset

func (m *DeleteAccountResponse) Reset()

func (*DeleteAccountResponse) String

func (m *DeleteAccountResponse) String() string

func (*DeleteAccountResponse) XXX_DiscardUnknown

func (m *DeleteAccountResponse) XXX_DiscardUnknown()

func (*DeleteAccountResponse) XXX_Marshal

func (m *DeleteAccountResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteAccountResponse) XXX_Merge

func (m *DeleteAccountResponse) XXX_Merge(src proto.Message)

func (*DeleteAccountResponse) XXX_Size

func (m *DeleteAccountResponse) XXX_Size() int

func (*DeleteAccountResponse) XXX_Unmarshal

func (m *DeleteAccountResponse) XXX_Unmarshal(b []byte) error

type DeleteClientRequest

type DeleteClientRequest struct {
	Session              *sso_common.RequestSession `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	ClientId             string                     `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*DeleteClientRequest) Descriptor

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

func (*DeleteClientRequest) GetClientId

func (m *DeleteClientRequest) GetClientId() string

func (*DeleteClientRequest) GetSession

func (*DeleteClientRequest) ProtoMessage

func (*DeleteClientRequest) ProtoMessage()

func (*DeleteClientRequest) Reset

func (m *DeleteClientRequest) Reset()

func (*DeleteClientRequest) String

func (m *DeleteClientRequest) String() string

func (*DeleteClientRequest) XXX_DiscardUnknown

func (m *DeleteClientRequest) XXX_DiscardUnknown()

func (*DeleteClientRequest) XXX_Marshal

func (m *DeleteClientRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteClientRequest) XXX_Merge

func (m *DeleteClientRequest) XXX_Merge(src proto.Message)

func (*DeleteClientRequest) XXX_Size

func (m *DeleteClientRequest) XXX_Size() int

func (*DeleteClientRequest) XXX_Unmarshal

func (m *DeleteClientRequest) XXX_Unmarshal(b []byte) error

type DeleteClientResponse

type DeleteClientResponse struct {
	Status               *sso_common.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*DeleteClientResponse) Descriptor

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

func (*DeleteClientResponse) GetStatus

func (*DeleteClientResponse) ProtoMessage

func (*DeleteClientResponse) ProtoMessage()

func (*DeleteClientResponse) Reset

func (m *DeleteClientResponse) Reset()

func (*DeleteClientResponse) String

func (m *DeleteClientResponse) String() string

func (*DeleteClientResponse) XXX_DiscardUnknown

func (m *DeleteClientResponse) XXX_DiscardUnknown()

func (*DeleteClientResponse) XXX_Marshal

func (m *DeleteClientResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteClientResponse) XXX_Merge

func (m *DeleteClientResponse) XXX_Merge(src proto.Message)

func (*DeleteClientResponse) XXX_Size

func (m *DeleteClientResponse) XXX_Size() int

func (*DeleteClientResponse) XXX_Unmarshal

func (m *DeleteClientResponse) XXX_Unmarshal(b []byte) error

type DeleteScopeRequest

type DeleteScopeRequest struct {
	Session              *sso_common.RequestSession `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	ClientId             string                     `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	Scope                string                     `protobuf:"bytes,3,opt,name=scope,proto3" json:"scope,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*DeleteScopeRequest) Descriptor

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

func (*DeleteScopeRequest) GetClientId

func (m *DeleteScopeRequest) GetClientId() string

func (*DeleteScopeRequest) GetScope

func (m *DeleteScopeRequest) GetScope() string

func (*DeleteScopeRequest) GetSession

func (m *DeleteScopeRequest) GetSession() *sso_common.RequestSession

func (*DeleteScopeRequest) ProtoMessage

func (*DeleteScopeRequest) ProtoMessage()

func (*DeleteScopeRequest) Reset

func (m *DeleteScopeRequest) Reset()

func (*DeleteScopeRequest) String

func (m *DeleteScopeRequest) String() string

func (*DeleteScopeRequest) XXX_DiscardUnknown

func (m *DeleteScopeRequest) XXX_DiscardUnknown()

func (*DeleteScopeRequest) XXX_Marshal

func (m *DeleteScopeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteScopeRequest) XXX_Merge

func (m *DeleteScopeRequest) XXX_Merge(src proto.Message)

func (*DeleteScopeRequest) XXX_Size

func (m *DeleteScopeRequest) XXX_Size() int

func (*DeleteScopeRequest) XXX_Unmarshal

func (m *DeleteScopeRequest) XXX_Unmarshal(b []byte) error

type DeleteScopeResponse

type DeleteScopeResponse struct {
	Status               *sso_common.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*DeleteScopeResponse) Descriptor

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

func (*DeleteScopeResponse) GetStatus

func (*DeleteScopeResponse) ProtoMessage

func (*DeleteScopeResponse) ProtoMessage()

func (*DeleteScopeResponse) Reset

func (m *DeleteScopeResponse) Reset()

func (*DeleteScopeResponse) String

func (m *DeleteScopeResponse) String() string

func (*DeleteScopeResponse) XXX_DiscardUnknown

func (m *DeleteScopeResponse) XXX_DiscardUnknown()

func (*DeleteScopeResponse) XXX_Marshal

func (m *DeleteScopeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteScopeResponse) XXX_Merge

func (m *DeleteScopeResponse) XXX_Merge(src proto.Message)

func (*DeleteScopeResponse) XXX_Size

func (m *DeleteScopeResponse) XXX_Size() int

func (*DeleteScopeResponse) XXX_Unmarshal

func (m *DeleteScopeResponse) XXX_Unmarshal(b []byte) error

type DeleteTenantRequest

type DeleteTenantRequest struct {
	Session              *sso_common.RequestSession `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	TenantId             string                     `protobuf:"bytes,2,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*DeleteTenantRequest) Descriptor

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

func (*DeleteTenantRequest) GetSession

func (*DeleteTenantRequest) GetTenantId

func (m *DeleteTenantRequest) GetTenantId() string

func (*DeleteTenantRequest) ProtoMessage

func (*DeleteTenantRequest) ProtoMessage()

func (*DeleteTenantRequest) Reset

func (m *DeleteTenantRequest) Reset()

func (*DeleteTenantRequest) String

func (m *DeleteTenantRequest) String() string

func (*DeleteTenantRequest) XXX_DiscardUnknown

func (m *DeleteTenantRequest) XXX_DiscardUnknown()

func (*DeleteTenantRequest) XXX_Marshal

func (m *DeleteTenantRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteTenantRequest) XXX_Merge

func (m *DeleteTenantRequest) XXX_Merge(src proto.Message)

func (*DeleteTenantRequest) XXX_Size

func (m *DeleteTenantRequest) XXX_Size() int

func (*DeleteTenantRequest) XXX_Unmarshal

func (m *DeleteTenantRequest) XXX_Unmarshal(b []byte) error

type DeleteTenantResponse

type DeleteTenantResponse struct {
	Status               *sso_common.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*DeleteTenantResponse) Descriptor

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

func (*DeleteTenantResponse) GetStatus

func (*DeleteTenantResponse) ProtoMessage

func (*DeleteTenantResponse) ProtoMessage()

func (*DeleteTenantResponse) Reset

func (m *DeleteTenantResponse) Reset()

func (*DeleteTenantResponse) String

func (m *DeleteTenantResponse) String() string

func (*DeleteTenantResponse) XXX_DiscardUnknown

func (m *DeleteTenantResponse) XXX_DiscardUnknown()

func (*DeleteTenantResponse) XXX_Marshal

func (m *DeleteTenantResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteTenantResponse) XXX_Merge

func (m *DeleteTenantResponse) XXX_Merge(src proto.Message)

func (*DeleteTenantResponse) XXX_Size

func (m *DeleteTenantResponse) XXX_Size() int

func (*DeleteTenantResponse) XXX_Unmarshal

func (m *DeleteTenantResponse) XXX_Unmarshal(b []byte) error

type ManagementServiceClient

type ManagementServiceClient interface {
	UpsertTenant(ctx context.Context, in *UpsertTenantRequest, opts ...grpc.CallOption) (*UpsertTenantResponse, error)
	DeleteTenant(ctx context.Context, in *DeleteTenantRequest, opts ...grpc.CallOption) (*DeleteTenantResponse, error)
}

ManagementServiceClient is the client API for ManagementService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewManagementServiceClient

func NewManagementServiceClient(cc *grpc.ClientConn) ManagementServiceClient

type ManagementServiceServer

type ManagementServiceServer interface {
	UpsertTenant(context.Context, *UpsertTenantRequest) (*UpsertTenantResponse, error)
	DeleteTenant(context.Context, *DeleteTenantRequest) (*DeleteTenantResponse, error)
}

ManagementServiceServer is the server API for ManagementService service.

type UnimplementedAccountServiceServer

type UnimplementedAccountServiceServer struct {
}

UnimplementedAccountServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAccountServiceServer) DeleteAccount

func (*UnimplementedAccountServiceServer) UpsertAccount

type UnimplementedClientServiceServer

type UnimplementedClientServiceServer struct {
}

UnimplementedClientServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedClientServiceServer) DeleteClient

func (*UnimplementedClientServiceServer) DeleteScope

func (*UnimplementedClientServiceServer) UpsertClient

func (*UnimplementedClientServiceServer) UpsertScope

type UnimplementedManagementServiceServer

type UnimplementedManagementServiceServer struct {
}

UnimplementedManagementServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedManagementServiceServer) DeleteTenant

func (*UnimplementedManagementServiceServer) UpsertTenant

type UpsertAccountRequest

type UpsertAccountRequest struct {
	Session              *sso_common.RequestSession   `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	AccountId            string                       `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	ActivationMethod     sso_service.ActivationMethod `` /* 144-byte string literal not displayed */
	Password             string                       `protobuf:"bytes,4,opt,name=password,proto3" json:"password,omitempty"`
	Name                 string                       `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Identifiers          []string                     `protobuf:"bytes,6,rep,name=identifiers,proto3" json:"identifiers,omitempty"`
	TenantIds            []string                     `protobuf:"bytes,7,rep,name=tenant_ids,json=tenantIds,proto3" json:"tenant_ids,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*UpsertAccountRequest) Descriptor

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

func (*UpsertAccountRequest) GetAccountId

func (m *UpsertAccountRequest) GetAccountId() string

func (*UpsertAccountRequest) GetActivationMethod

func (m *UpsertAccountRequest) GetActivationMethod() sso_service.ActivationMethod

func (*UpsertAccountRequest) GetIdentifiers

func (m *UpsertAccountRequest) GetIdentifiers() []string

func (*UpsertAccountRequest) GetName

func (m *UpsertAccountRequest) GetName() string

func (*UpsertAccountRequest) GetPassword

func (m *UpsertAccountRequest) GetPassword() string

func (*UpsertAccountRequest) GetSession

func (*UpsertAccountRequest) GetTenantIds

func (m *UpsertAccountRequest) GetTenantIds() []string

func (*UpsertAccountRequest) ProtoMessage

func (*UpsertAccountRequest) ProtoMessage()

func (*UpsertAccountRequest) Reset

func (m *UpsertAccountRequest) Reset()

func (*UpsertAccountRequest) String

func (m *UpsertAccountRequest) String() string

func (*UpsertAccountRequest) XXX_DiscardUnknown

func (m *UpsertAccountRequest) XXX_DiscardUnknown()

func (*UpsertAccountRequest) XXX_Marshal

func (m *UpsertAccountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpsertAccountRequest) XXX_Merge

func (m *UpsertAccountRequest) XXX_Merge(src proto.Message)

func (*UpsertAccountRequest) XXX_Size

func (m *UpsertAccountRequest) XXX_Size() int

func (*UpsertAccountRequest) XXX_Unmarshal

func (m *UpsertAccountRequest) XXX_Unmarshal(b []byte) error

type UpsertAccountResponse

type UpsertAccountResponse struct {
	Status               *sso_common.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*UpsertAccountResponse) Descriptor

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

func (*UpsertAccountResponse) GetStatus

func (*UpsertAccountResponse) ProtoMessage

func (*UpsertAccountResponse) ProtoMessage()

func (*UpsertAccountResponse) Reset

func (m *UpsertAccountResponse) Reset()

func (*UpsertAccountResponse) String

func (m *UpsertAccountResponse) String() string

func (*UpsertAccountResponse) XXX_DiscardUnknown

func (m *UpsertAccountResponse) XXX_DiscardUnknown()

func (*UpsertAccountResponse) XXX_Marshal

func (m *UpsertAccountResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpsertAccountResponse) XXX_Merge

func (m *UpsertAccountResponse) XXX_Merge(src proto.Message)

func (*UpsertAccountResponse) XXX_Size

func (m *UpsertAccountResponse) XXX_Size() int

func (*UpsertAccountResponse) XXX_Unmarshal

func (m *UpsertAccountResponse) XXX_Unmarshal(b []byte) error

type UpsertClientRequest

type UpsertClientRequest struct {
	Session              *sso_common.RequestSession `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	ClientId             string                     `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	Type                 ClientType                 `protobuf:"varint,3,opt,name=type,proto3,enum=sso.manager.ClientType" json:"type,omitempty"`
	RedirectUris         []string                   `protobuf:"bytes,4,rep,name=redirect_uris,json=redirectUris,proto3" json:"redirect_uris,omitempty"`
	Name                 string                     `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*UpsertClientRequest) Descriptor

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

func (*UpsertClientRequest) GetClientId

func (m *UpsertClientRequest) GetClientId() string

func (*UpsertClientRequest) GetName

func (m *UpsertClientRequest) GetName() string

func (*UpsertClientRequest) GetRedirectUris

func (m *UpsertClientRequest) GetRedirectUris() []string

func (*UpsertClientRequest) GetSession

func (*UpsertClientRequest) GetType

func (m *UpsertClientRequest) GetType() ClientType

func (*UpsertClientRequest) ProtoMessage

func (*UpsertClientRequest) ProtoMessage()

func (*UpsertClientRequest) Reset

func (m *UpsertClientRequest) Reset()

func (*UpsertClientRequest) String

func (m *UpsertClientRequest) String() string

func (*UpsertClientRequest) XXX_DiscardUnknown

func (m *UpsertClientRequest) XXX_DiscardUnknown()

func (*UpsertClientRequest) XXX_Marshal

func (m *UpsertClientRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpsertClientRequest) XXX_Merge

func (m *UpsertClientRequest) XXX_Merge(src proto.Message)

func (*UpsertClientRequest) XXX_Size

func (m *UpsertClientRequest) XXX_Size() int

func (*UpsertClientRequest) XXX_Unmarshal

func (m *UpsertClientRequest) XXX_Unmarshal(b []byte) error

type UpsertClientResponse

type UpsertClientResponse struct {
	Status               *sso_common.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	ClientId             string                     `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecret         string                     `protobuf:"bytes,3,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*UpsertClientResponse) Descriptor

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

func (*UpsertClientResponse) GetClientId

func (m *UpsertClientResponse) GetClientId() string

func (*UpsertClientResponse) GetClientSecret

func (m *UpsertClientResponse) GetClientSecret() string

func (*UpsertClientResponse) GetStatus

func (*UpsertClientResponse) ProtoMessage

func (*UpsertClientResponse) ProtoMessage()

func (*UpsertClientResponse) Reset

func (m *UpsertClientResponse) Reset()

func (*UpsertClientResponse) String

func (m *UpsertClientResponse) String() string

func (*UpsertClientResponse) XXX_DiscardUnknown

func (m *UpsertClientResponse) XXX_DiscardUnknown()

func (*UpsertClientResponse) XXX_Marshal

func (m *UpsertClientResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpsertClientResponse) XXX_Merge

func (m *UpsertClientResponse) XXX_Merge(src proto.Message)

func (*UpsertClientResponse) XXX_Size

func (m *UpsertClientResponse) XXX_Size() int

func (*UpsertClientResponse) XXX_Unmarshal

func (m *UpsertClientResponse) XXX_Unmarshal(b []byte) error

type UpsertScopeRequest

type UpsertScopeRequest struct {
	Session              *sso_common.RequestSession `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	ClientId             string                     `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	Scope                string                     `protobuf:"bytes,3,opt,name=scope,proto3" json:"scope,omitempty"`
	Description          string                     `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*UpsertScopeRequest) Descriptor

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

func (*UpsertScopeRequest) GetClientId

func (m *UpsertScopeRequest) GetClientId() string

func (*UpsertScopeRequest) GetDescription

func (m *UpsertScopeRequest) GetDescription() string

func (*UpsertScopeRequest) GetScope

func (m *UpsertScopeRequest) GetScope() string

func (*UpsertScopeRequest) GetSession

func (m *UpsertScopeRequest) GetSession() *sso_common.RequestSession

func (*UpsertScopeRequest) ProtoMessage

func (*UpsertScopeRequest) ProtoMessage()

func (*UpsertScopeRequest) Reset

func (m *UpsertScopeRequest) Reset()

func (*UpsertScopeRequest) String

func (m *UpsertScopeRequest) String() string

func (*UpsertScopeRequest) XXX_DiscardUnknown

func (m *UpsertScopeRequest) XXX_DiscardUnknown()

func (*UpsertScopeRequest) XXX_Marshal

func (m *UpsertScopeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpsertScopeRequest) XXX_Merge

func (m *UpsertScopeRequest) XXX_Merge(src proto.Message)

func (*UpsertScopeRequest) XXX_Size

func (m *UpsertScopeRequest) XXX_Size() int

func (*UpsertScopeRequest) XXX_Unmarshal

func (m *UpsertScopeRequest) XXX_Unmarshal(b []byte) error

type UpsertScopeResponse

type UpsertScopeResponse struct {
	Status               *sso_common.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*UpsertScopeResponse) Descriptor

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

func (*UpsertScopeResponse) GetStatus

func (*UpsertScopeResponse) ProtoMessage

func (*UpsertScopeResponse) ProtoMessage()

func (*UpsertScopeResponse) Reset

func (m *UpsertScopeResponse) Reset()

func (*UpsertScopeResponse) String

func (m *UpsertScopeResponse) String() string

func (*UpsertScopeResponse) XXX_DiscardUnknown

func (m *UpsertScopeResponse) XXX_DiscardUnknown()

func (*UpsertScopeResponse) XXX_Marshal

func (m *UpsertScopeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpsertScopeResponse) XXX_Merge

func (m *UpsertScopeResponse) XXX_Merge(src proto.Message)

func (*UpsertScopeResponse) XXX_Size

func (m *UpsertScopeResponse) XXX_Size() int

func (*UpsertScopeResponse) XXX_Unmarshal

func (m *UpsertScopeResponse) XXX_Unmarshal(b []byte) error

type UpsertTenantRequest

type UpsertTenantRequest struct {
	Session              *sso_common.RequestSession `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	TenantId             string                     `protobuf:"bytes,2,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"`
	Name                 string                     `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*UpsertTenantRequest) Descriptor

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

func (*UpsertTenantRequest) GetName

func (m *UpsertTenantRequest) GetName() string

func (*UpsertTenantRequest) GetSession

func (*UpsertTenantRequest) GetTenantId

func (m *UpsertTenantRequest) GetTenantId() string

func (*UpsertTenantRequest) ProtoMessage

func (*UpsertTenantRequest) ProtoMessage()

func (*UpsertTenantRequest) Reset

func (m *UpsertTenantRequest) Reset()

func (*UpsertTenantRequest) String

func (m *UpsertTenantRequest) String() string

func (*UpsertTenantRequest) XXX_DiscardUnknown

func (m *UpsertTenantRequest) XXX_DiscardUnknown()

func (*UpsertTenantRequest) XXX_Marshal

func (m *UpsertTenantRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpsertTenantRequest) XXX_Merge

func (m *UpsertTenantRequest) XXX_Merge(src proto.Message)

func (*UpsertTenantRequest) XXX_Size

func (m *UpsertTenantRequest) XXX_Size() int

func (*UpsertTenantRequest) XXX_Unmarshal

func (m *UpsertTenantRequest) XXX_Unmarshal(b []byte) error

type UpsertTenantResponse

type UpsertTenantResponse struct {
	Status               *sso_common.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	TenantId             string                     `protobuf:"bytes,2,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*UpsertTenantResponse) Descriptor

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

func (*UpsertTenantResponse) GetStatus

func (*UpsertTenantResponse) GetTenantId

func (m *UpsertTenantResponse) GetTenantId() string

func (*UpsertTenantResponse) ProtoMessage

func (*UpsertTenantResponse) ProtoMessage()

func (*UpsertTenantResponse) Reset

func (m *UpsertTenantResponse) Reset()

func (*UpsertTenantResponse) String

func (m *UpsertTenantResponse) String() string

func (*UpsertTenantResponse) XXX_DiscardUnknown

func (m *UpsertTenantResponse) XXX_DiscardUnknown()

func (*UpsertTenantResponse) XXX_Marshal

func (m *UpsertTenantResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpsertTenantResponse) XXX_Merge

func (m *UpsertTenantResponse) XXX_Merge(src proto.Message)

func (*UpsertTenantResponse) XXX_Size

func (m *UpsertTenantResponse) XXX_Size() int

func (*UpsertTenantResponse) XXX_Unmarshal

func (m *UpsertTenantResponse) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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