authconnection

package
v1.7.75 Latest Latest
Warning

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

Go to latest
Published: May 1, 2024 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

View Source
const (
	AuthConnectionService_CreateAuthConnection_FullMethodName       = "/api.v1alpha1.org.authconnection.AuthConnectionService/CreateAuthConnection"
	AuthConnectionService_ListAuthConnectionIds_FullMethodName      = "/api.v1alpha1.org.authconnection.AuthConnectionService/ListAuthConnectionIds"
	AuthConnectionService_GetAuthConnectionSettings_FullMethodName  = "/api.v1alpha1.org.authconnection.AuthConnectionService/GetAuthConnectionSettings"
	AuthConnectionService_GetAuthConnection_FullMethodName          = "/api.v1alpha1.org.authconnection.AuthConnectionService/GetAuthConnection"
	AuthConnectionService_DeleteAuthConnection_FullMethodName       = "/api.v1alpha1.org.authconnection.AuthConnectionService/DeleteAuthConnection"
	AuthConnectionService_UpdateAuthConnectionSecret_FullMethodName = "/api.v1alpha1.org.authconnection.AuthConnectionService/UpdateAuthConnectionSecret"
	AuthConnectionService_UpdateAuthConnectionGroups_FullMethodName = "/api.v1alpha1.org.authconnection.AuthConnectionService/UpdateAuthConnectionGroups"
)

Variables

View Source
var AuthConnectionService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "api.v1alpha1.org.authconnection.AuthConnectionService",
	HandlerType: (*AuthConnectionServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateAuthConnection",
			Handler:    _AuthConnectionService_CreateAuthConnection_Handler,
		},
		{
			MethodName: "ListAuthConnectionIds",
			Handler:    _AuthConnectionService_ListAuthConnectionIds_Handler,
		},
		{
			MethodName: "GetAuthConnectionSettings",
			Handler:    _AuthConnectionService_GetAuthConnectionSettings_Handler,
		},
		{
			MethodName: "GetAuthConnection",
			Handler:    _AuthConnectionService_GetAuthConnection_Handler,
		},
		{
			MethodName: "DeleteAuthConnection",
			Handler:    _AuthConnectionService_DeleteAuthConnection_Handler,
		},
		{
			MethodName: "UpdateAuthConnectionSecret",
			Handler:    _AuthConnectionService_UpdateAuthConnectionSecret_Handler,
		},
		{
			MethodName: "UpdateAuthConnectionGroups",
			Handler:    _AuthConnectionService_UpdateAuthConnectionGroups_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/v1alpha1/org/authconnection/service.proto",
}

AuthConnectionService_ServiceDesc is the grpc.ServiceDesc for AuthConnectionService 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_api_v1alpha1_org_authconnection_entities_proto protoreflect.FileDescriptor
View Source
var File_api_v1alpha1_org_authconnection_service_proto protoreflect.FileDescriptor

Functions

func RegisterAuthConnectionServiceServer

func RegisterAuthConnectionServiceServer(s grpc.ServiceRegistrar, srv AuthConnectionServiceServer)

Types

type AuthConnectionServiceClient

type AuthConnectionServiceClient interface {
	// CreateAuthConnection creates a new auth0 connection.
	CreateAuthConnection(ctx context.Context, in *CreateAuthConnectionRequest, opts ...grpc.CallOption) (*CreateAuthConnectionResponse, error)
	// ListAuthConnectionIds returns the IDs of all authconnections belonging to the current org.
	ListAuthConnectionIds(ctx context.Context, in *ListAuthConnectionIdsRequest, opts ...grpc.CallOption) (*ListAuthConnectionIdsResponse, error)
	// GetAuthConnectionSettings gets auth connection settings.
	// DEPRECATED: use GetAuthConnection
	GetAuthConnectionSettings(ctx context.Context, in *GetAuthConnectionSettingsRequest, opts ...grpc.CallOption) (*GetAuthConnectionSettingsResponse, error)
	// GetAuthConnection gets an existing auth connection.
	GetAuthConnection(ctx context.Context, in *GetAuthConnectionRequest, opts ...grpc.CallOption) (*GetAuthConnectionResponse, error)
	// DeleteAuthConnection removes the current orgs auth settings.
	DeleteAuthConnection(ctx context.Context, in *DeleteAuthConnectionRequest, opts ...grpc.CallOption) (*DeleteAuthConnectionResponse, error)
	// UpdateAuthConnectionSecret updates a connections secret.
	UpdateAuthConnectionSecret(ctx context.Context, in *UpdateAuthConnectionSecretRequest, opts ...grpc.CallOption) (*UpdateAuthConnectionSecretResponse, error)
	// UpdateAuthConnectionGroups updates a connections groups.
	UpdateAuthConnectionGroups(ctx context.Context, in *UpdateAuthConnectionGroupsRequest, opts ...grpc.CallOption) (*UpdateAuthConnectionGroupsResponse, error)
}

AuthConnectionServiceClient is the client API for AuthConnectionService 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 AuthConnectionServiceServer

type AuthConnectionServiceServer interface {
	// CreateAuthConnection creates a new auth0 connection.
	CreateAuthConnection(context.Context, *CreateAuthConnectionRequest) (*CreateAuthConnectionResponse, error)
	// ListAuthConnectionIds returns the IDs of all authconnections belonging to the current org.
	ListAuthConnectionIds(context.Context, *ListAuthConnectionIdsRequest) (*ListAuthConnectionIdsResponse, error)
	// GetAuthConnectionSettings gets auth connection settings.
	// DEPRECATED: use GetAuthConnection
	GetAuthConnectionSettings(context.Context, *GetAuthConnectionSettingsRequest) (*GetAuthConnectionSettingsResponse, error)
	// GetAuthConnection gets an existing auth connection.
	GetAuthConnection(context.Context, *GetAuthConnectionRequest) (*GetAuthConnectionResponse, error)
	// DeleteAuthConnection removes the current orgs auth settings.
	DeleteAuthConnection(context.Context, *DeleteAuthConnectionRequest) (*DeleteAuthConnectionResponse, error)
	// UpdateAuthConnectionSecret updates a connections secret.
	UpdateAuthConnectionSecret(context.Context, *UpdateAuthConnectionSecretRequest) (*UpdateAuthConnectionSecretResponse, error)
	// UpdateAuthConnectionGroups updates a connections groups.
	UpdateAuthConnectionGroups(context.Context, *UpdateAuthConnectionGroupsRequest) (*UpdateAuthConnectionGroupsResponse, error)
	// contains filtered or unexported methods
}

AuthConnectionServiceServer is the server API for AuthConnectionService service. All implementations must embed UnimplementedAuthConnectionServiceServer for forward compatibility

type CreateAuthConnectionRequest

type CreateAuthConnectionRequest struct {
	Settings *org.AuthConnectionSettings `protobuf:"bytes,1,opt,name=settings,proto3" json:"settings,omitempty"`
	// client secret is the secret required for the provider.
	// Some providers don't allow for non expiring secrets. If this
	// is the case the secret_expiration field on the settings should
	// be set.
	// This field is not part of the ConnectionSettings message
	// because it should never be stored.
	ClientSecret string `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
	// contains filtered or unexported fields
}

Request message for the CreateAuthConnection rpc.

func (*CreateAuthConnectionRequest) Descriptor deprecated

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

Deprecated: Use CreateAuthConnectionRequest.ProtoReflect.Descriptor instead.

func (*CreateAuthConnectionRequest) GetClientSecret

func (x *CreateAuthConnectionRequest) GetClientSecret() string

func (*CreateAuthConnectionRequest) GetSettings

func (*CreateAuthConnectionRequest) ProtoMessage

func (*CreateAuthConnectionRequest) ProtoMessage()

func (*CreateAuthConnectionRequest) ProtoReflect

func (*CreateAuthConnectionRequest) Reset

func (x *CreateAuthConnectionRequest) Reset()

func (*CreateAuthConnectionRequest) String

func (x *CreateAuthConnectionRequest) String() string

type CreateAuthConnectionResponse

type CreateAuthConnectionResponse struct {

	// The id of the newly created auth connection.
	ConnectionId string `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	// contains filtered or unexported fields
}

Response message for the CreateAuthConnection rpc.

func (*CreateAuthConnectionResponse) Descriptor deprecated

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

Deprecated: Use CreateAuthConnectionResponse.ProtoReflect.Descriptor instead.

func (*CreateAuthConnectionResponse) GetConnectionId added in v1.7.25

func (x *CreateAuthConnectionResponse) GetConnectionId() string

func (*CreateAuthConnectionResponse) ProtoMessage

func (*CreateAuthConnectionResponse) ProtoMessage()

func (*CreateAuthConnectionResponse) ProtoReflect

func (*CreateAuthConnectionResponse) Reset

func (x *CreateAuthConnectionResponse) Reset()

func (*CreateAuthConnectionResponse) String

type DeleteAuthConnectionRequest

type DeleteAuthConnectionRequest struct {
	ConnectionId string `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	// contains filtered or unexported fields
}

Request message for the DeleteAuthConnection rpc.

func (*DeleteAuthConnectionRequest) Descriptor deprecated

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

Deprecated: Use DeleteAuthConnectionRequest.ProtoReflect.Descriptor instead.

func (*DeleteAuthConnectionRequest) GetConnectionId

func (x *DeleteAuthConnectionRequest) GetConnectionId() string

func (*DeleteAuthConnectionRequest) ProtoMessage

func (*DeleteAuthConnectionRequest) ProtoMessage()

func (*DeleteAuthConnectionRequest) ProtoReflect

func (*DeleteAuthConnectionRequest) Reset

func (x *DeleteAuthConnectionRequest) Reset()

func (*DeleteAuthConnectionRequest) String

func (x *DeleteAuthConnectionRequest) String() string

type DeleteAuthConnectionResponse

type DeleteAuthConnectionResponse struct {
	// contains filtered or unexported fields
}

Response message for the DeleteAuthConnection rpc.

func (*DeleteAuthConnectionResponse) Descriptor deprecated

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

Deprecated: Use DeleteAuthConnectionResponse.ProtoReflect.Descriptor instead.

func (*DeleteAuthConnectionResponse) ProtoMessage

func (*DeleteAuthConnectionResponse) ProtoMessage()

func (*DeleteAuthConnectionResponse) ProtoReflect

func (*DeleteAuthConnectionResponse) Reset

func (x *DeleteAuthConnectionResponse) Reset()

func (*DeleteAuthConnectionResponse) String

type GetAuthConnectionRequest added in v1.7.25

type GetAuthConnectionRequest struct {

	// The id of the connetion to retrieve.
	ConnectionId string `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	// contains filtered or unexported fields
}

Request message for the GetAuthConnection rpc.

func (*GetAuthConnectionRequest) Descriptor deprecated added in v1.7.25

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

Deprecated: Use GetAuthConnectionRequest.ProtoReflect.Descriptor instead.

func (*GetAuthConnectionRequest) GetConnectionId added in v1.7.25

func (x *GetAuthConnectionRequest) GetConnectionId() string

func (*GetAuthConnectionRequest) ProtoMessage added in v1.7.25

func (*GetAuthConnectionRequest) ProtoMessage()

func (*GetAuthConnectionRequest) ProtoReflect added in v1.7.25

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

func (*GetAuthConnectionRequest) Reset added in v1.7.25

func (x *GetAuthConnectionRequest) Reset()

func (*GetAuthConnectionRequest) String added in v1.7.25

func (x *GetAuthConnectionRequest) String() string

type GetAuthConnectionResponse added in v1.7.25

type GetAuthConnectionResponse struct {
	Settings *org.AuthConnectionSettings `protobuf:"bytes,1,opt,name=settings,proto3" json:"settings,omitempty"`
	// contains filtered or unexported fields
}

Response message for the GetAuthConnection rpc.

func (*GetAuthConnectionResponse) Descriptor deprecated added in v1.7.25

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

Deprecated: Use GetAuthConnectionResponse.ProtoReflect.Descriptor instead.

func (*GetAuthConnectionResponse) GetSettings added in v1.7.25

func (*GetAuthConnectionResponse) ProtoMessage added in v1.7.25

func (*GetAuthConnectionResponse) ProtoMessage()

func (*GetAuthConnectionResponse) ProtoReflect added in v1.7.25

func (*GetAuthConnectionResponse) Reset added in v1.7.25

func (x *GetAuthConnectionResponse) Reset()

func (*GetAuthConnectionResponse) String added in v1.7.25

func (x *GetAuthConnectionResponse) String() string

type GetAuthConnectionSettingsRequest

type GetAuthConnectionSettingsRequest struct {
	// contains filtered or unexported fields
}

Request message for the GetAuthConnectionSettings rpc.

func (*GetAuthConnectionSettingsRequest) Descriptor deprecated

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

Deprecated: Use GetAuthConnectionSettingsRequest.ProtoReflect.Descriptor instead.

func (*GetAuthConnectionSettingsRequest) ProtoMessage

func (*GetAuthConnectionSettingsRequest) ProtoMessage()

func (*GetAuthConnectionSettingsRequest) ProtoReflect

func (*GetAuthConnectionSettingsRequest) Reset

func (*GetAuthConnectionSettingsRequest) String

type GetAuthConnectionSettingsResponse

type GetAuthConnectionSettingsResponse struct {
	Settings *org.AuthConnectionSettings `protobuf:"bytes,1,opt,name=settings,proto3" json:"settings,omitempty"`
	// contains filtered or unexported fields
}

Response message for the GetConnectionSettings rpc.

func (*GetAuthConnectionSettingsResponse) Descriptor deprecated

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

Deprecated: Use GetAuthConnectionSettingsResponse.ProtoReflect.Descriptor instead.

func (*GetAuthConnectionSettingsResponse) GetSettings

func (*GetAuthConnectionSettingsResponse) ProtoMessage

func (*GetAuthConnectionSettingsResponse) ProtoMessage()

func (*GetAuthConnectionSettingsResponse) ProtoReflect

func (*GetAuthConnectionSettingsResponse) Reset

func (*GetAuthConnectionSettingsResponse) String

type ListAuthConnectionIdsRequest added in v1.7.53

type ListAuthConnectionIdsRequest struct {
	// contains filtered or unexported fields
}

Request message for the ListAuthConnectionIds rpc.

func (*ListAuthConnectionIdsRequest) Descriptor deprecated added in v1.7.53

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

Deprecated: Use ListAuthConnectionIdsRequest.ProtoReflect.Descriptor instead.

func (*ListAuthConnectionIdsRequest) ProtoMessage added in v1.7.53

func (*ListAuthConnectionIdsRequest) ProtoMessage()

func (*ListAuthConnectionIdsRequest) ProtoReflect added in v1.7.53

func (*ListAuthConnectionIdsRequest) Reset added in v1.7.53

func (x *ListAuthConnectionIdsRequest) Reset()

func (*ListAuthConnectionIdsRequest) String added in v1.7.53

type ListAuthConnectionIdsResponse added in v1.7.53

type ListAuthConnectionIdsResponse struct {
	Connections []*ListAuthConnectionIdsResponse_Connection `protobuf:"bytes,1,rep,name=connections,proto3" json:"connections,omitempty"`
	// contains filtered or unexported fields
}

Response message for the ListAuthConnectionIds rpc.

func (*ListAuthConnectionIdsResponse) Descriptor deprecated added in v1.7.53

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

Deprecated: Use ListAuthConnectionIdsResponse.ProtoReflect.Descriptor instead.

func (*ListAuthConnectionIdsResponse) GetConnections added in v1.7.53

func (*ListAuthConnectionIdsResponse) ProtoMessage added in v1.7.53

func (*ListAuthConnectionIdsResponse) ProtoMessage()

func (*ListAuthConnectionIdsResponse) ProtoReflect added in v1.7.53

func (*ListAuthConnectionIdsResponse) Reset added in v1.7.53

func (x *ListAuthConnectionIdsResponse) Reset()

func (*ListAuthConnectionIdsResponse) String added in v1.7.53

type ListAuthConnectionIdsResponse_Connection added in v1.7.53

type ListAuthConnectionIdsResponse_Connection struct {
	AuthConnectionId string `protobuf:"bytes,1,opt,name=auth_connection_id,json=authConnectionId,proto3" json:"auth_connection_id,omitempty"`
	Name             string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAuthConnectionIdsResponse_Connection) Descriptor deprecated added in v1.7.53

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

Deprecated: Use ListAuthConnectionIdsResponse_Connection.ProtoReflect.Descriptor instead.

func (*ListAuthConnectionIdsResponse_Connection) GetAuthConnectionId added in v1.7.53

func (x *ListAuthConnectionIdsResponse_Connection) GetAuthConnectionId() string

func (*ListAuthConnectionIdsResponse_Connection) GetName added in v1.7.53

func (*ListAuthConnectionIdsResponse_Connection) ProtoMessage added in v1.7.53

func (*ListAuthConnectionIdsResponse_Connection) ProtoReflect added in v1.7.53

func (*ListAuthConnectionIdsResponse_Connection) Reset added in v1.7.53

func (*ListAuthConnectionIdsResponse_Connection) String added in v1.7.53

type UnimplementedAuthConnectionServiceServer

type UnimplementedAuthConnectionServiceServer struct {
}

UnimplementedAuthConnectionServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedAuthConnectionServiceServer) CreateAuthConnection

func (UnimplementedAuthConnectionServiceServer) DeleteAuthConnection

func (UnimplementedAuthConnectionServiceServer) GetAuthConnection added in v1.7.25

func (UnimplementedAuthConnectionServiceServer) ListAuthConnectionIds added in v1.7.53

type UnsafeAuthConnectionServiceServer

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

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

type UpdateAuthConnectionGroupsRequest

type UpdateAuthConnectionGroupsRequest struct {

	// The default group. This group is assigned to all users
	// that don't match any custom groups.
	DefaultGroup *org.GroupItem `protobuf:"bytes,1,opt,name=default_group,json=defaultGroup,proto3" json:"default_group,omitempty"`
	// Custom groups. These groups are assigned to users that belong
	// to groups in the sso provider with the same name.
	CustomGroups []*org.GroupItem `protobuf:"bytes,2,rep,name=custom_groups,json=customGroups,proto3" json:"custom_groups,omitempty"`
	// the connection that will be updated.
	ConnectionId string `protobuf:"bytes,3,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	// contains filtered or unexported fields
}

Request message for the UpdateAuthConnectionGroups rpc.

func (*UpdateAuthConnectionGroupsRequest) Descriptor deprecated

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

Deprecated: Use UpdateAuthConnectionGroupsRequest.ProtoReflect.Descriptor instead.

func (*UpdateAuthConnectionGroupsRequest) GetConnectionId added in v1.7.25

func (x *UpdateAuthConnectionGroupsRequest) GetConnectionId() string

func (*UpdateAuthConnectionGroupsRequest) GetCustomGroups

func (x *UpdateAuthConnectionGroupsRequest) GetCustomGroups() []*org.GroupItem

func (*UpdateAuthConnectionGroupsRequest) GetDefaultGroup

func (x *UpdateAuthConnectionGroupsRequest) GetDefaultGroup() *org.GroupItem

func (*UpdateAuthConnectionGroupsRequest) ProtoMessage

func (*UpdateAuthConnectionGroupsRequest) ProtoMessage()

func (*UpdateAuthConnectionGroupsRequest) ProtoReflect

func (*UpdateAuthConnectionGroupsRequest) Reset

func (*UpdateAuthConnectionGroupsRequest) String

type UpdateAuthConnectionGroupsResponse

type UpdateAuthConnectionGroupsResponse struct {
	// contains filtered or unexported fields
}

Response message for the UpdateAuthConnectionGroups rpc.

func (*UpdateAuthConnectionGroupsResponse) Descriptor deprecated

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

Deprecated: Use UpdateAuthConnectionGroupsResponse.ProtoReflect.Descriptor instead.

func (*UpdateAuthConnectionGroupsResponse) ProtoMessage

func (*UpdateAuthConnectionGroupsResponse) ProtoMessage()

func (*UpdateAuthConnectionGroupsResponse) ProtoReflect

func (*UpdateAuthConnectionGroupsResponse) Reset

func (*UpdateAuthConnectionGroupsResponse) String

type UpdateAuthConnectionSecretRequest

type UpdateAuthConnectionSecretRequest struct {

	// the connection that will be updated.
	ConnectionId string `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	// A secret associated with the provider.
	ClientSecret string `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
	// OPTIONAL: The date the secret will expire.
	SecretExpiration *UpdateAuthConnectionSecretRequest_SecretExpiration `protobuf:"bytes,3,opt,name=secret_expiration,json=secretExpiration,proto3" json:"secret_expiration,omitempty"`
	// contains filtered or unexported fields
}

Request message for the UpdateAuthConnectionSecret rpc.

func (*UpdateAuthConnectionSecretRequest) Descriptor deprecated

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

Deprecated: Use UpdateAuthConnectionSecretRequest.ProtoReflect.Descriptor instead.

func (*UpdateAuthConnectionSecretRequest) GetClientSecret

func (x *UpdateAuthConnectionSecretRequest) GetClientSecret() string

func (*UpdateAuthConnectionSecretRequest) GetConnectionId

func (x *UpdateAuthConnectionSecretRequest) GetConnectionId() string

func (*UpdateAuthConnectionSecretRequest) GetSecretExpiration added in v1.7.25

func (*UpdateAuthConnectionSecretRequest) ProtoMessage

func (*UpdateAuthConnectionSecretRequest) ProtoMessage()

func (*UpdateAuthConnectionSecretRequest) ProtoReflect

func (*UpdateAuthConnectionSecretRequest) Reset

func (*UpdateAuthConnectionSecretRequest) String

type UpdateAuthConnectionSecretRequest_SecretExpiration added in v1.7.25

type UpdateAuthConnectionSecretRequest_SecretExpiration struct {
	Date *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=date,proto3" json:"date,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAuthConnectionSecretRequest_SecretExpiration) Descriptor deprecated added in v1.7.25

Deprecated: Use UpdateAuthConnectionSecretRequest_SecretExpiration.ProtoReflect.Descriptor instead.

func (*UpdateAuthConnectionSecretRequest_SecretExpiration) GetDate added in v1.7.25

func (*UpdateAuthConnectionSecretRequest_SecretExpiration) ProtoMessage added in v1.7.25

func (*UpdateAuthConnectionSecretRequest_SecretExpiration) ProtoReflect added in v1.7.25

func (*UpdateAuthConnectionSecretRequest_SecretExpiration) Reset added in v1.7.25

func (*UpdateAuthConnectionSecretRequest_SecretExpiration) String added in v1.7.25

type UpdateAuthConnectionSecretResponse

type UpdateAuthConnectionSecretResponse struct {
	// contains filtered or unexported fields
}

Response message for the UpdateAuthConnectionSecret rpc.

func (*UpdateAuthConnectionSecretResponse) Descriptor deprecated

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

Deprecated: Use UpdateAuthConnectionSecretResponse.ProtoReflect.Descriptor instead.

func (*UpdateAuthConnectionSecretResponse) ProtoMessage

func (*UpdateAuthConnectionSecretResponse) ProtoMessage()

func (*UpdateAuthConnectionSecretResponse) ProtoReflect

func (*UpdateAuthConnectionSecretResponse) Reset

func (*UpdateAuthConnectionSecretResponse) String

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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