a1

package
v0.9.4 Latest Latest
Warning

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

Go to latest
Published: Feb 24, 2022 License: Apache-2.0 Imports: 11 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthAdmin        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowAdmin          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupAdmin = fmt.Errorf("proto: unexpected end of group")
)

Functions

func RegisterA1TAdminServiceServer

func RegisterA1TAdminServiceServer(s *grpc.Server, srv A1TAdminServiceServer)

Types

type A1TAdminServiceClient

type A1TAdminServiceClient interface {
	// GetXAppConnections
	GetXAppConnections(ctx context.Context, in *GetXAppConnectionsRequest, opts ...grpc.CallOption) (A1TAdminService_GetXAppConnectionsClient, error)
	// GetPolicyTypeObject
	GetPolicyTypeObject(ctx context.Context, in *GetPolicyTypeObjectRequest, opts ...grpc.CallOption) (A1TAdminService_GetPolicyTypeObjectClient, error)
	// GetPolicyObject
	GetPolicyObject(ctx context.Context, in *GetPolicyObjectRequest, opts ...grpc.CallOption) (A1TAdminService_GetPolicyObjectClient, error)
	// GetPolicyObjectStatus
	GetPolicyObjectStatus(ctx context.Context, in *GetPolicyObjectStatusRequest, opts ...grpc.CallOption) (A1TAdminService_GetPolicyObjectStatusClient, error)
}

A1TAdminServiceClient is the client API for A1TAdminService service.

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

func NewA1TAdminServiceClient

func NewA1TAdminServiceClient(cc *grpc.ClientConn) A1TAdminServiceClient

type A1TAdminServiceServer

type A1TAdminServiceServer interface {
	// GetXAppConnections
	GetXAppConnections(*GetXAppConnectionsRequest, A1TAdminService_GetXAppConnectionsServer) error
	// GetPolicyTypeObject
	GetPolicyTypeObject(*GetPolicyTypeObjectRequest, A1TAdminService_GetPolicyTypeObjectServer) error
	// GetPolicyObject
	GetPolicyObject(*GetPolicyObjectRequest, A1TAdminService_GetPolicyObjectServer) error
	// GetPolicyObjectStatus
	GetPolicyObjectStatus(*GetPolicyObjectStatusRequest, A1TAdminService_GetPolicyObjectStatusServer) error
}

A1TAdminServiceServer is the server API for A1TAdminService service.

type A1TAdminService_GetPolicyObjectClient

type A1TAdminService_GetPolicyObjectClient interface {
	Recv() (*GetPolicyObjectResponse, error)
	grpc.ClientStream
}

type A1TAdminService_GetPolicyObjectServer

type A1TAdminService_GetPolicyObjectServer interface {
	Send(*GetPolicyObjectResponse) error
	grpc.ServerStream
}

type A1TAdminService_GetPolicyObjectStatusClient

type A1TAdminService_GetPolicyObjectStatusClient interface {
	Recv() (*GetPolicyObjectStatusResponse, error)
	grpc.ClientStream
}

type A1TAdminService_GetPolicyObjectStatusServer

type A1TAdminService_GetPolicyObjectStatusServer interface {
	Send(*GetPolicyObjectStatusResponse) error
	grpc.ServerStream
}

type A1TAdminService_GetPolicyTypeObjectClient

type A1TAdminService_GetPolicyTypeObjectClient interface {
	Recv() (*GetPolicyTypeObjectResponse, error)
	grpc.ClientStream
}

type A1TAdminService_GetPolicyTypeObjectServer

type A1TAdminService_GetPolicyTypeObjectServer interface {
	Send(*GetPolicyTypeObjectResponse) error
	grpc.ServerStream
}

type A1TAdminService_GetXAppConnectionsClient

type A1TAdminService_GetXAppConnectionsClient interface {
	Recv() (*GetXAppConnectionResponse, error)
	grpc.ClientStream
}

type A1TAdminService_GetXAppConnectionsServer

type A1TAdminService_GetXAppConnectionsServer interface {
	Send(*GetXAppConnectionResponse) error
	grpc.ServerStream
}

type GetPolicyObjectRequest

type GetPolicyObjectRequest struct {
	PolicyTypeId   string `protobuf:"bytes,1,opt,name=policy_type_id,json=policyTypeId,proto3" json:"policy_type_id,omitempty"`
	PolicyObjectId string `protobuf:"bytes,2,opt,name=policy_object_id,json=policyObjectId,proto3" json:"policy_object_id,omitempty"`
}

func (*GetPolicyObjectRequest) Descriptor

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

func (*GetPolicyObjectRequest) GetPolicyObjectId

func (m *GetPolicyObjectRequest) GetPolicyObjectId() string

func (*GetPolicyObjectRequest) GetPolicyTypeId

func (m *GetPolicyObjectRequest) GetPolicyTypeId() string

func (*GetPolicyObjectRequest) Marshal

func (m *GetPolicyObjectRequest) Marshal() (dAtA []byte, err error)

func (*GetPolicyObjectRequest) MarshalTo

func (m *GetPolicyObjectRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetPolicyObjectRequest) MarshalToSizedBuffer

func (m *GetPolicyObjectRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetPolicyObjectRequest) ProtoMessage

func (*GetPolicyObjectRequest) ProtoMessage()

func (*GetPolicyObjectRequest) Reset

func (m *GetPolicyObjectRequest) Reset()

func (*GetPolicyObjectRequest) Size

func (m *GetPolicyObjectRequest) Size() (n int)

func (*GetPolicyObjectRequest) String

func (m *GetPolicyObjectRequest) String() string

func (*GetPolicyObjectRequest) Unmarshal

func (m *GetPolicyObjectRequest) Unmarshal(dAtA []byte) error

func (*GetPolicyObjectRequest) XXX_DiscardUnknown

func (m *GetPolicyObjectRequest) XXX_DiscardUnknown()

func (*GetPolicyObjectRequest) XXX_Marshal

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

func (*GetPolicyObjectRequest) XXX_Merge

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

func (*GetPolicyObjectRequest) XXX_Size

func (m *GetPolicyObjectRequest) XXX_Size() int

func (*GetPolicyObjectRequest) XXX_Unmarshal

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

type GetPolicyObjectResponse

type GetPolicyObjectResponse struct {
	PolicyTypeId   string `protobuf:"bytes,1,opt,name=policy_type_id,json=policyTypeId,proto3" json:"policy_type_id,omitempty"`
	PolicyObjectId string `protobuf:"bytes,2,opt,name=policy_object_id,json=policyObjectId,proto3" json:"policy_object_id,omitempty"`
	PolicyObject   string `protobuf:"bytes,3,opt,name=policy_object,json=policyObject,proto3" json:"policy_object,omitempty"`
}

func (*GetPolicyObjectResponse) Descriptor

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

func (*GetPolicyObjectResponse) GetPolicyObject

func (m *GetPolicyObjectResponse) GetPolicyObject() string

func (*GetPolicyObjectResponse) GetPolicyObjectId

func (m *GetPolicyObjectResponse) GetPolicyObjectId() string

func (*GetPolicyObjectResponse) GetPolicyTypeId

func (m *GetPolicyObjectResponse) GetPolicyTypeId() string

func (*GetPolicyObjectResponse) Marshal

func (m *GetPolicyObjectResponse) Marshal() (dAtA []byte, err error)

func (*GetPolicyObjectResponse) MarshalTo

func (m *GetPolicyObjectResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetPolicyObjectResponse) MarshalToSizedBuffer

func (m *GetPolicyObjectResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetPolicyObjectResponse) ProtoMessage

func (*GetPolicyObjectResponse) ProtoMessage()

func (*GetPolicyObjectResponse) Reset

func (m *GetPolicyObjectResponse) Reset()

func (*GetPolicyObjectResponse) Size

func (m *GetPolicyObjectResponse) Size() (n int)

func (*GetPolicyObjectResponse) String

func (m *GetPolicyObjectResponse) String() string

func (*GetPolicyObjectResponse) Unmarshal

func (m *GetPolicyObjectResponse) Unmarshal(dAtA []byte) error

func (*GetPolicyObjectResponse) XXX_DiscardUnknown

func (m *GetPolicyObjectResponse) XXX_DiscardUnknown()

func (*GetPolicyObjectResponse) XXX_Marshal

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

func (*GetPolicyObjectResponse) XXX_Merge

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

func (*GetPolicyObjectResponse) XXX_Size

func (m *GetPolicyObjectResponse) XXX_Size() int

func (*GetPolicyObjectResponse) XXX_Unmarshal

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

type GetPolicyObjectStatusRequest

type GetPolicyObjectStatusRequest struct {
	PolicyTypeId   string `protobuf:"bytes,1,opt,name=policy_type_id,json=policyTypeId,proto3" json:"policy_type_id,omitempty"`
	PolicyObjectId string `protobuf:"bytes,2,opt,name=policy_object_id,json=policyObjectId,proto3" json:"policy_object_id,omitempty"`
}

func (*GetPolicyObjectStatusRequest) Descriptor

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

func (*GetPolicyObjectStatusRequest) GetPolicyObjectId

func (m *GetPolicyObjectStatusRequest) GetPolicyObjectId() string

func (*GetPolicyObjectStatusRequest) GetPolicyTypeId

func (m *GetPolicyObjectStatusRequest) GetPolicyTypeId() string

func (*GetPolicyObjectStatusRequest) Marshal

func (m *GetPolicyObjectStatusRequest) Marshal() (dAtA []byte, err error)

func (*GetPolicyObjectStatusRequest) MarshalTo

func (m *GetPolicyObjectStatusRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetPolicyObjectStatusRequest) MarshalToSizedBuffer

func (m *GetPolicyObjectStatusRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetPolicyObjectStatusRequest) ProtoMessage

func (*GetPolicyObjectStatusRequest) ProtoMessage()

func (*GetPolicyObjectStatusRequest) Reset

func (m *GetPolicyObjectStatusRequest) Reset()

func (*GetPolicyObjectStatusRequest) Size

func (m *GetPolicyObjectStatusRequest) Size() (n int)

func (*GetPolicyObjectStatusRequest) String

func (*GetPolicyObjectStatusRequest) Unmarshal

func (m *GetPolicyObjectStatusRequest) Unmarshal(dAtA []byte) error

func (*GetPolicyObjectStatusRequest) XXX_DiscardUnknown

func (m *GetPolicyObjectStatusRequest) XXX_DiscardUnknown()

func (*GetPolicyObjectStatusRequest) XXX_Marshal

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

func (*GetPolicyObjectStatusRequest) XXX_Merge

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

func (*GetPolicyObjectStatusRequest) XXX_Size

func (m *GetPolicyObjectStatusRequest) XXX_Size() int

func (*GetPolicyObjectStatusRequest) XXX_Unmarshal

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

type GetPolicyObjectStatusResponse

type GetPolicyObjectStatusResponse struct {
	PolicyTypeId       string `protobuf:"bytes,1,opt,name=policy_type_id,json=policyTypeId,proto3" json:"policy_type_id,omitempty"`
	PolicyObjectId     string `protobuf:"bytes,2,opt,name=policy_object_id,json=policyObjectId,proto3" json:"policy_object_id,omitempty"`
	PolicyObjectStatus string `protobuf:"bytes,3,opt,name=policy_object_status,json=policyObjectStatus,proto3" json:"policy_object_status,omitempty"`
}

func (*GetPolicyObjectStatusResponse) Descriptor

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

func (*GetPolicyObjectStatusResponse) GetPolicyObjectId

func (m *GetPolicyObjectStatusResponse) GetPolicyObjectId() string

func (*GetPolicyObjectStatusResponse) GetPolicyObjectStatus

func (m *GetPolicyObjectStatusResponse) GetPolicyObjectStatus() string

func (*GetPolicyObjectStatusResponse) GetPolicyTypeId

func (m *GetPolicyObjectStatusResponse) GetPolicyTypeId() string

func (*GetPolicyObjectStatusResponse) Marshal

func (m *GetPolicyObjectStatusResponse) Marshal() (dAtA []byte, err error)

func (*GetPolicyObjectStatusResponse) MarshalTo

func (m *GetPolicyObjectStatusResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetPolicyObjectStatusResponse) MarshalToSizedBuffer

func (m *GetPolicyObjectStatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetPolicyObjectStatusResponse) ProtoMessage

func (*GetPolicyObjectStatusResponse) ProtoMessage()

func (*GetPolicyObjectStatusResponse) Reset

func (m *GetPolicyObjectStatusResponse) Reset()

func (*GetPolicyObjectStatusResponse) Size

func (m *GetPolicyObjectStatusResponse) Size() (n int)

func (*GetPolicyObjectStatusResponse) String

func (*GetPolicyObjectStatusResponse) Unmarshal

func (m *GetPolicyObjectStatusResponse) Unmarshal(dAtA []byte) error

func (*GetPolicyObjectStatusResponse) XXX_DiscardUnknown

func (m *GetPolicyObjectStatusResponse) XXX_DiscardUnknown()

func (*GetPolicyObjectStatusResponse) XXX_Marshal

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

func (*GetPolicyObjectStatusResponse) XXX_Merge

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

func (*GetPolicyObjectStatusResponse) XXX_Size

func (m *GetPolicyObjectStatusResponse) XXX_Size() int

func (*GetPolicyObjectStatusResponse) XXX_Unmarshal

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

type GetPolicyTypeObjectRequest

type GetPolicyTypeObjectRequest struct {
	PolicyTypeId string `protobuf:"bytes,1,opt,name=policy_type_id,json=policyTypeId,proto3" json:"policy_type_id,omitempty"`
}

func (*GetPolicyTypeObjectRequest) Descriptor

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

func (*GetPolicyTypeObjectRequest) GetPolicyTypeId

func (m *GetPolicyTypeObjectRequest) GetPolicyTypeId() string

func (*GetPolicyTypeObjectRequest) Marshal

func (m *GetPolicyTypeObjectRequest) Marshal() (dAtA []byte, err error)

func (*GetPolicyTypeObjectRequest) MarshalTo

func (m *GetPolicyTypeObjectRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetPolicyTypeObjectRequest) MarshalToSizedBuffer

func (m *GetPolicyTypeObjectRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetPolicyTypeObjectRequest) ProtoMessage

func (*GetPolicyTypeObjectRequest) ProtoMessage()

func (*GetPolicyTypeObjectRequest) Reset

func (m *GetPolicyTypeObjectRequest) Reset()

func (*GetPolicyTypeObjectRequest) Size

func (m *GetPolicyTypeObjectRequest) Size() (n int)

func (*GetPolicyTypeObjectRequest) String

func (m *GetPolicyTypeObjectRequest) String() string

func (*GetPolicyTypeObjectRequest) Unmarshal

func (m *GetPolicyTypeObjectRequest) Unmarshal(dAtA []byte) error

func (*GetPolicyTypeObjectRequest) XXX_DiscardUnknown

func (m *GetPolicyTypeObjectRequest) XXX_DiscardUnknown()

func (*GetPolicyTypeObjectRequest) XXX_Marshal

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

func (*GetPolicyTypeObjectRequest) XXX_Merge

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

func (*GetPolicyTypeObjectRequest) XXX_Size

func (m *GetPolicyTypeObjectRequest) XXX_Size() int

func (*GetPolicyTypeObjectRequest) XXX_Unmarshal

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

type GetPolicyTypeObjectResponse

type GetPolicyTypeObjectResponse struct {
	PolicyTypeId     string   `protobuf:"bytes,1,opt,name=policy_type_id,json=policyTypeId,proto3" json:"policy_type_id,omitempty"`
	PolicyIds        []string `protobuf:"bytes,2,rep,name=policy_ids,json=policyIds,proto3" json:"policy_ids,omitempty"`
	PolicyTypeObject string   `protobuf:"bytes,3,opt,name=policy_type_object,json=policyTypeObject,proto3" json:"policy_type_object,omitempty"`
}

func (*GetPolicyTypeObjectResponse) Descriptor

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

func (*GetPolicyTypeObjectResponse) GetPolicyIds

func (m *GetPolicyTypeObjectResponse) GetPolicyIds() []string

func (*GetPolicyTypeObjectResponse) GetPolicyTypeId

func (m *GetPolicyTypeObjectResponse) GetPolicyTypeId() string

func (*GetPolicyTypeObjectResponse) GetPolicyTypeObject

func (m *GetPolicyTypeObjectResponse) GetPolicyTypeObject() string

func (*GetPolicyTypeObjectResponse) Marshal

func (m *GetPolicyTypeObjectResponse) Marshal() (dAtA []byte, err error)

func (*GetPolicyTypeObjectResponse) MarshalTo

func (m *GetPolicyTypeObjectResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetPolicyTypeObjectResponse) MarshalToSizedBuffer

func (m *GetPolicyTypeObjectResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetPolicyTypeObjectResponse) ProtoMessage

func (*GetPolicyTypeObjectResponse) ProtoMessage()

func (*GetPolicyTypeObjectResponse) Reset

func (m *GetPolicyTypeObjectResponse) Reset()

func (*GetPolicyTypeObjectResponse) Size

func (m *GetPolicyTypeObjectResponse) Size() (n int)

func (*GetPolicyTypeObjectResponse) String

func (m *GetPolicyTypeObjectResponse) String() string

func (*GetPolicyTypeObjectResponse) Unmarshal

func (m *GetPolicyTypeObjectResponse) Unmarshal(dAtA []byte) error

func (*GetPolicyTypeObjectResponse) XXX_DiscardUnknown

func (m *GetPolicyTypeObjectResponse) XXX_DiscardUnknown()

func (*GetPolicyTypeObjectResponse) XXX_Marshal

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

func (*GetPolicyTypeObjectResponse) XXX_Merge

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

func (*GetPolicyTypeObjectResponse) XXX_Size

func (m *GetPolicyTypeObjectResponse) XXX_Size() int

func (*GetPolicyTypeObjectResponse) XXX_Unmarshal

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

type GetXAppConnectionResponse

type GetXAppConnectionResponse struct {
	XappId                   string `protobuf:"bytes,1,opt,name=xapp_id,json=xappId,proto3" json:"xapp_id,omitempty"`
	SupportedA1Service       string `protobuf:"bytes,2,opt,name=supported_a1_service,json=supportedA1Service,proto3" json:"supported_a1_service,omitempty"`
	SupportedA1ServiceTypeId string `` /* 139-byte string literal not displayed */
	XappA1Endpoint           string `protobuf:"bytes,4,opt,name=xapp_a1_endpoint,json=xappA1Endpoint,proto3" json:"xapp_a1_endpoint,omitempty"`
}

func (*GetXAppConnectionResponse) Descriptor

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

func (*GetXAppConnectionResponse) GetSupportedA1Service

func (m *GetXAppConnectionResponse) GetSupportedA1Service() string

func (*GetXAppConnectionResponse) GetSupportedA1ServiceTypeId

func (m *GetXAppConnectionResponse) GetSupportedA1ServiceTypeId() string

func (*GetXAppConnectionResponse) GetXappA1Endpoint

func (m *GetXAppConnectionResponse) GetXappA1Endpoint() string

func (*GetXAppConnectionResponse) GetXappId

func (m *GetXAppConnectionResponse) GetXappId() string

func (*GetXAppConnectionResponse) Marshal

func (m *GetXAppConnectionResponse) Marshal() (dAtA []byte, err error)

func (*GetXAppConnectionResponse) MarshalTo

func (m *GetXAppConnectionResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetXAppConnectionResponse) MarshalToSizedBuffer

func (m *GetXAppConnectionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetXAppConnectionResponse) ProtoMessage

func (*GetXAppConnectionResponse) ProtoMessage()

func (*GetXAppConnectionResponse) Reset

func (m *GetXAppConnectionResponse) Reset()

func (*GetXAppConnectionResponse) Size

func (m *GetXAppConnectionResponse) Size() (n int)

func (*GetXAppConnectionResponse) String

func (m *GetXAppConnectionResponse) String() string

func (*GetXAppConnectionResponse) Unmarshal

func (m *GetXAppConnectionResponse) Unmarshal(dAtA []byte) error

func (*GetXAppConnectionResponse) XXX_DiscardUnknown

func (m *GetXAppConnectionResponse) XXX_DiscardUnknown()

func (*GetXAppConnectionResponse) XXX_Marshal

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

func (*GetXAppConnectionResponse) XXX_Merge

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

func (*GetXAppConnectionResponse) XXX_Size

func (m *GetXAppConnectionResponse) XXX_Size() int

func (*GetXAppConnectionResponse) XXX_Unmarshal

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

type GetXAppConnectionsRequest

type GetXAppConnectionsRequest struct {
	XappId string `protobuf:"bytes,1,opt,name=xapp_id,json=xappId,proto3" json:"xapp_id,omitempty"`
}

func (*GetXAppConnectionsRequest) Descriptor

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

func (*GetXAppConnectionsRequest) GetXappId

func (m *GetXAppConnectionsRequest) GetXappId() string

func (*GetXAppConnectionsRequest) Marshal

func (m *GetXAppConnectionsRequest) Marshal() (dAtA []byte, err error)

func (*GetXAppConnectionsRequest) MarshalTo

func (m *GetXAppConnectionsRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetXAppConnectionsRequest) MarshalToSizedBuffer

func (m *GetXAppConnectionsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetXAppConnectionsRequest) ProtoMessage

func (*GetXAppConnectionsRequest) ProtoMessage()

func (*GetXAppConnectionsRequest) Reset

func (m *GetXAppConnectionsRequest) Reset()

func (*GetXAppConnectionsRequest) Size

func (m *GetXAppConnectionsRequest) Size() (n int)

func (*GetXAppConnectionsRequest) String

func (m *GetXAppConnectionsRequest) String() string

func (*GetXAppConnectionsRequest) Unmarshal

func (m *GetXAppConnectionsRequest) Unmarshal(dAtA []byte) error

func (*GetXAppConnectionsRequest) XXX_DiscardUnknown

func (m *GetXAppConnectionsRequest) XXX_DiscardUnknown()

func (*GetXAppConnectionsRequest) XXX_Marshal

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

func (*GetXAppConnectionsRequest) XXX_Merge

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

func (*GetXAppConnectionsRequest) XXX_Size

func (m *GetXAppConnectionsRequest) XXX_Size() int

func (*GetXAppConnectionsRequest) XXX_Unmarshal

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

type UnimplementedA1TAdminServiceServer

type UnimplementedA1TAdminServiceServer struct {
}

UnimplementedA1TAdminServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedA1TAdminServiceServer) GetPolicyObject

func (*UnimplementedA1TAdminServiceServer) GetPolicyObjectStatus

func (*UnimplementedA1TAdminServiceServer) GetPolicyTypeObject

func (*UnimplementedA1TAdminServiceServer) GetXAppConnections

Jump to

Keyboard shortcuts

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