common

package
v0.2.0-b6 Latest Latest
Warning

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

Go to latest
Published: Aug 22, 2025 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Action_name = map[int32]string{
		0:  "ACTION_NONE",
		1:  "ACTION_CREATE",
		2:  "ACTION_READ",
		3:  "ACTION_UPDATE",
		4:  "ACTION_DELETE",
		5:  "ACTION_VIEW_FLYTE_INVENTORY",
		6:  "ACTION_VIEW_FLYTE_EXECUTIONS",
		7:  "ACTION_REGISTER_FLYTE_INVENTORY",
		8:  "ACTION_CREATE_FLYTE_EXECUTIONS",
		9:  "ACTION_ADMINISTER_PROJECT",
		10: "ACTION_MANAGE_PERMISSIONS",
		11: "ACTION_ADMINISTER_ACCOUNT",
		12: "ACTION_MANAGE_CLUSTER",
		13: "ACTION_EDIT_EXECUTION_RELATED_ATTRIBUTES",
		14: "ACTION_EDIT_CLUSTER_RELATED_ATTRIBUTES",
		15: "ACTION_EDIT_UNUSED_ATTRIBUTES",
		16: "ACTION_SUPPORT_SYSTEM_LOGS",
	}
	Action_value = map[string]int32{
		"ACTION_NONE":                              0,
		"ACTION_CREATE":                            1,
		"ACTION_READ":                              2,
		"ACTION_UPDATE":                            3,
		"ACTION_DELETE":                            4,
		"ACTION_VIEW_FLYTE_INVENTORY":              5,
		"ACTION_VIEW_FLYTE_EXECUTIONS":             6,
		"ACTION_REGISTER_FLYTE_INVENTORY":          7,
		"ACTION_CREATE_FLYTE_EXECUTIONS":           8,
		"ACTION_ADMINISTER_PROJECT":                9,
		"ACTION_MANAGE_PERMISSIONS":                10,
		"ACTION_ADMINISTER_ACCOUNT":                11,
		"ACTION_MANAGE_CLUSTER":                    12,
		"ACTION_EDIT_EXECUTION_RELATED_ATTRIBUTES": 13,
		"ACTION_EDIT_CLUSTER_RELATED_ATTRIBUTES":   14,
		"ACTION_EDIT_UNUSED_ATTRIBUTES":            15,
		"ACTION_SUPPORT_SYSTEM_LOGS":               16,
	}
)

Enum value maps for Action.

View Source
var (
	Sort_Direction_name = map[int32]string{
		0: "DESCENDING",
		1: "ASCENDING",
	}
	Sort_Direction_value = map[string]int32{
		"DESCENDING": 0,
		"ASCENDING":  1,
	}
)

Enum value maps for Sort_Direction.

View Source
var (
	Filter_Function_name = map[int32]string{
		0:  "EQUAL",
		1:  "NOT_EQUAL",
		2:  "GREATER_THAN",
		3:  "GREATER_THAN_OR_EQUAL",
		4:  "LESS_THAN",
		5:  "LESS_THAN_OR_EQUAL",
		6:  "CONTAINS",
		7:  "VALUE_IN",
		12: "ENDS_WITH",
		13: "NOT_ENDS_WITH",
		14: "CONTAINS_CASE_INSENSITIVE",
	}
	Filter_Function_value = map[string]int32{
		"EQUAL":                     0,
		"NOT_EQUAL":                 1,
		"GREATER_THAN":              2,
		"GREATER_THAN_OR_EQUAL":     3,
		"LESS_THAN":                 4,
		"LESS_THAN_OR_EQUAL":        5,
		"CONTAINS":                  6,
		"VALUE_IN":                  7,
		"ENDS_WITH":                 12,
		"NOT_ENDS_WITH":             13,
		"CONTAINS_CASE_INSENSITIVE": 14,
	}
)

Enum value maps for Filter_Function.

View Source
var (
	RoleType_name = map[int32]string{
		0: "ROLE_TYPE_NONE",
		1: "ROLE_TYPE_ADMIN",
		2: "ROLE_TYPE_CONTRIBUTOR",
		3: "ROLE_TYPE_VIEWER",
		4: "ROLE_TYPE_CUSTOM",
		5: "ROLE_TYPE_CLUSTER_MANAGER",
		6: "ROLE_TYPE_FLYTE_PROJECT_ADMIN",
		7: "ROLE_TYPE_SERVERLESS_VIEWER",
		8: "ROLE_TYPE_SERVERLESS_CONTRIBUTOR",
		9: "ROLE_TYPE_SUPPORT",
	}
	RoleType_value = map[string]int32{
		"ROLE_TYPE_NONE":                   0,
		"ROLE_TYPE_ADMIN":                  1,
		"ROLE_TYPE_CONTRIBUTOR":            2,
		"ROLE_TYPE_VIEWER":                 3,
		"ROLE_TYPE_CUSTOM":                 4,
		"ROLE_TYPE_CLUSTER_MANAGER":        5,
		"ROLE_TYPE_FLYTE_PROJECT_ADMIN":    6,
		"ROLE_TYPE_SERVERLESS_VIEWER":      7,
		"ROLE_TYPE_SERVERLESS_CONTRIBUTOR": 8,
		"ROLE_TYPE_SUPPORT":                9,
	}
)

Enum value maps for RoleType.

View Source
var (
	RuntimeMetadata_RuntimeType_name = map[int32]string{
		0: "OTHER",
		1: "FLYTE_SDK",
		2: "UNION_SDK",
	}
	RuntimeMetadata_RuntimeType_value = map[string]int32{
		"OTHER":     0,
		"FLYTE_SDK": 1,
		"UNION_SDK": 2,
	}
)

Enum value maps for RuntimeMetadata_RuntimeType.

View Source
var File_common_authorization_proto protoreflect.FileDescriptor
View Source
var File_common_identifier_proto protoreflect.FileDescriptor
View Source
var File_common_identity_proto protoreflect.FileDescriptor
View Source
var File_common_list_proto protoreflect.FileDescriptor
View Source
var File_common_policy_proto protoreflect.FileDescriptor
View Source
var File_common_role_proto protoreflect.FileDescriptor
View Source
var File_common_runtime_version_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Action

type Action int32
const (
	Action_ACTION_NONE Action = 0
	// Deprecated: Marked as deprecated in common/authorization.proto.
	Action_ACTION_CREATE Action = 1
	// Deprecated: Marked as deprecated in common/authorization.proto.
	Action_ACTION_READ Action = 2
	// Deprecated: Marked as deprecated in common/authorization.proto.
	Action_ACTION_UPDATE Action = 3
	// Deprecated: Marked as deprecated in common/authorization.proto.
	Action_ACTION_DELETE Action = 4
	// Read Flyte workflows, tasks and launch plans
	Action_ACTION_VIEW_FLYTE_INVENTORY Action = 5
	// View Flyte executions
	Action_ACTION_VIEW_FLYTE_EXECUTIONS Action = 6
	// Register new versions of Flyte workflows, tasks and launch plans
	Action_ACTION_REGISTER_FLYTE_INVENTORY Action = 7
	// Create new Flyte workflow and task executions
	Action_ACTION_CREATE_FLYTE_EXECUTIONS Action = 8
	// Create new projects and update project descriptions
	Action_ACTION_ADMINISTER_PROJECT Action = 9
	// Add users, roles and update role assignments.
	Action_ACTION_MANAGE_PERMISSIONS Action = 10
	// Manage billing, account-wide settings
	Action_ACTION_ADMINISTER_ACCOUNT Action = 11
	// Operations for clusters
	Action_ACTION_MANAGE_CLUSTER Action = 12
	// Edit execution related attributes, including TASK_RESOURCE, WORKFLOW_EXECUTION_CONFIG, and EXTERNAL_RESOURCE
	Action_ACTION_EDIT_EXECUTION_RELATED_ATTRIBUTES Action = 13
	// Edit cluster related attributes, including CLUSTER_RESOURCE and CLUSTER_ASSIGNMENT
	Action_ACTION_EDIT_CLUSTER_RELATED_ATTRIBUTES Action = 14
	// Edit unused attributes, including EXECUTION_QUEUE, EXECUTION_CLUSTER_LABEL, QUALITY_OF_SERVICE_SPECIFICATION, and PLUGIN_OVERRIDE
	Action_ACTION_EDIT_UNUSED_ATTRIBUTES Action = 15
	// View system logs
	Action_ACTION_SUPPORT_SYSTEM_LOGS Action = 16
)

func (Action) Descriptor

func (Action) Descriptor() protoreflect.EnumDescriptor

func (Action) Enum

func (x Action) Enum() *Action

func (Action) EnumDescriptor deprecated

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

Deprecated: Use Action.Descriptor instead.

func (Action) Number

func (x Action) Number() protoreflect.EnumNumber

func (Action) String

func (x Action) String() string

func (Action) Type

func (Action) Type() protoreflect.EnumType

type ActionAttemptIdentifier

type ActionAttemptIdentifier struct {
	ActionId *ActionIdentifier `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
	Attempt  uint32            `protobuf:"varint,2,opt,name=attempt,proto3" json:"attempt,omitempty"`
	// contains filtered or unexported fields
}

Unique identifier of a single action attempt

func (*ActionAttemptIdentifier) Descriptor deprecated

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

Deprecated: Use ActionAttemptIdentifier.ProtoReflect.Descriptor instead.

func (*ActionAttemptIdentifier) GetActionId

func (x *ActionAttemptIdentifier) GetActionId() *ActionIdentifier

func (*ActionAttemptIdentifier) GetAttempt

func (x *ActionAttemptIdentifier) GetAttempt() uint32

func (*ActionAttemptIdentifier) ProtoMessage

func (*ActionAttemptIdentifier) ProtoMessage()

func (*ActionAttemptIdentifier) ProtoReflect

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

func (*ActionAttemptIdentifier) Reset

func (x *ActionAttemptIdentifier) Reset()

func (*ActionAttemptIdentifier) String

func (x *ActionAttemptIdentifier) String() string

func (*ActionAttemptIdentifier) Validate

func (m *ActionAttemptIdentifier) Validate() error

Validate checks the field values on ActionAttemptIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ActionAttemptIdentifier) ValidateAll

func (m *ActionAttemptIdentifier) ValidateAll() error

ValidateAll checks the field values on ActionAttemptIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ActionAttemptIdentifierMultiError, or nil if none found.

type ActionAttemptIdentifierMultiError

type ActionAttemptIdentifierMultiError []error

ActionAttemptIdentifierMultiError is an error wrapping multiple validation errors returned by ActionAttemptIdentifier.ValidateAll() if the designated constraints aren't met.

func (ActionAttemptIdentifierMultiError) AllErrors

func (m ActionAttemptIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ActionAttemptIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ActionAttemptIdentifierValidationError

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

ActionAttemptIdentifierValidationError is the validation error returned by ActionAttemptIdentifier.Validate if the designated constraints aren't met.

func (ActionAttemptIdentifierValidationError) Cause

Cause function returns cause value.

func (ActionAttemptIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ActionAttemptIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ActionAttemptIdentifierValidationError) Field

Field function returns field value.

func (ActionAttemptIdentifierValidationError) Key

Key function returns key value.

func (ActionAttemptIdentifierValidationError) Reason

Reason function returns reason value.

type ActionIdentifier

type ActionIdentifier struct {

	// Identifier for the run.
	Run *RunIdentifier `protobuf:"bytes,1,opt,name=run,proto3" json:"run,omitempty"`
	// Name of the action. Must be unique within the run.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

Unique identifier of an action.

func (*ActionIdentifier) Descriptor deprecated

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

Deprecated: Use ActionIdentifier.ProtoReflect.Descriptor instead.

func (*ActionIdentifier) GetName

func (x *ActionIdentifier) GetName() string

func (*ActionIdentifier) GetRun

func (x *ActionIdentifier) GetRun() *RunIdentifier

func (*ActionIdentifier) ProtoMessage

func (*ActionIdentifier) ProtoMessage()

func (*ActionIdentifier) ProtoReflect

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

func (*ActionIdentifier) Reset

func (x *ActionIdentifier) Reset()

func (*ActionIdentifier) String

func (x *ActionIdentifier) String() string

func (*ActionIdentifier) Validate

func (m *ActionIdentifier) Validate() error

Validate checks the field values on ActionIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ActionIdentifier) ValidateAll

func (m *ActionIdentifier) ValidateAll() error

ValidateAll checks the field values on ActionIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ActionIdentifierMultiError, or nil if none found.

type ActionIdentifierMultiError

type ActionIdentifierMultiError []error

ActionIdentifierMultiError is an error wrapping multiple validation errors returned by ActionIdentifier.ValidateAll() if the designated constraints aren't met.

func (ActionIdentifierMultiError) AllErrors

func (m ActionIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ActionIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ActionIdentifierValidationError

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

ActionIdentifierValidationError is the validation error returned by ActionIdentifier.Validate if the designated constraints aren't met.

func (ActionIdentifierValidationError) Cause

Cause function returns cause value.

func (ActionIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ActionIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ActionIdentifierValidationError) Field

Field function returns field value.

func (ActionIdentifierValidationError) Key

Key function returns key value.

func (ActionIdentifierValidationError) Reason

Reason function returns reason value.

type AppSpec

type AppSpec struct {
	Name         string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Organization string `protobuf:"bytes,2,opt,name=organization,proto3" json:"organization,omitempty"`
	// contains filtered or unexported fields
}

func (*AppSpec) Descriptor deprecated

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

Deprecated: Use AppSpec.ProtoReflect.Descriptor instead.

func (*AppSpec) GetName

func (x *AppSpec) GetName() string

func (*AppSpec) GetOrganization

func (x *AppSpec) GetOrganization() string

func (*AppSpec) ProtoMessage

func (*AppSpec) ProtoMessage()

func (*AppSpec) ProtoReflect

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

func (*AppSpec) Reset

func (x *AppSpec) Reset()

func (*AppSpec) String

func (x *AppSpec) String() string

func (*AppSpec) Validate

func (m *AppSpec) Validate() error

Validate checks the field values on AppSpec with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AppSpec) ValidateAll

func (m *AppSpec) ValidateAll() error

ValidateAll checks the field values on AppSpec with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AppSpecMultiError, or nil if none found.

type AppSpecMultiError

type AppSpecMultiError []error

AppSpecMultiError is an error wrapping multiple validation errors returned by AppSpec.ValidateAll() if the designated constraints aren't met.

func (AppSpecMultiError) AllErrors

func (m AppSpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppSpecMultiError) Error

func (m AppSpecMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AppSpecValidationError

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

AppSpecValidationError is the validation error returned by AppSpec.Validate if the designated constraints aren't met.

func (AppSpecValidationError) Cause

func (e AppSpecValidationError) Cause() error

Cause function returns cause value.

func (AppSpecValidationError) Error

func (e AppSpecValidationError) Error() string

Error satisfies the builtin error interface

func (AppSpecValidationError) ErrorName

func (e AppSpecValidationError) ErrorName() string

ErrorName returns error name.

func (AppSpecValidationError) Field

func (e AppSpecValidationError) Field() string

Field function returns field value.

func (AppSpecValidationError) Key

func (e AppSpecValidationError) Key() bool

Key function returns key value.

func (AppSpecValidationError) Reason

func (e AppSpecValidationError) Reason() string

Reason function returns reason value.

type Application

type Application struct {
	Id   *ApplicationIdentifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Spec *AppSpec               `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"`
	// contains filtered or unexported fields
}

func (*Application) Descriptor deprecated

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

Deprecated: Use Application.ProtoReflect.Descriptor instead.

func (*Application) GetId

func (x *Application) GetId() *ApplicationIdentifier

func (*Application) GetSpec

func (x *Application) GetSpec() *AppSpec

func (*Application) ProtoMessage

func (*Application) ProtoMessage()

func (*Application) ProtoReflect

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

func (*Application) Reset

func (x *Application) Reset()

func (*Application) String

func (x *Application) String() string

func (*Application) Validate

func (m *Application) Validate() error

Validate checks the field values on Application with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Application) ValidateAll

func (m *Application) ValidateAll() error

ValidateAll checks the field values on Application with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ApplicationMultiError, or nil if none found.

type ApplicationIdentifier

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

func (*ApplicationIdentifier) Descriptor deprecated

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

Deprecated: Use ApplicationIdentifier.ProtoReflect.Descriptor instead.

func (*ApplicationIdentifier) GetSubject

func (x *ApplicationIdentifier) GetSubject() string

func (*ApplicationIdentifier) ProtoMessage

func (*ApplicationIdentifier) ProtoMessage()

func (*ApplicationIdentifier) ProtoReflect

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

func (*ApplicationIdentifier) Reset

func (x *ApplicationIdentifier) Reset()

func (*ApplicationIdentifier) String

func (x *ApplicationIdentifier) String() string

func (*ApplicationIdentifier) Validate

func (m *ApplicationIdentifier) Validate() error

Validate checks the field values on ApplicationIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ApplicationIdentifier) ValidateAll

func (m *ApplicationIdentifier) ValidateAll() error

ValidateAll checks the field values on ApplicationIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ApplicationIdentifierMultiError, or nil if none found.

type ApplicationIdentifierMultiError

type ApplicationIdentifierMultiError []error

ApplicationIdentifierMultiError is an error wrapping multiple validation errors returned by ApplicationIdentifier.ValidateAll() if the designated constraints aren't met.

func (ApplicationIdentifierMultiError) AllErrors

func (m ApplicationIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ApplicationIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ApplicationIdentifierValidationError

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

ApplicationIdentifierValidationError is the validation error returned by ApplicationIdentifier.Validate if the designated constraints aren't met.

func (ApplicationIdentifierValidationError) Cause

Cause function returns cause value.

func (ApplicationIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ApplicationIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ApplicationIdentifierValidationError) Field

Field function returns field value.

func (ApplicationIdentifierValidationError) Key

Key function returns key value.

func (ApplicationIdentifierValidationError) Reason

Reason function returns reason value.

type ApplicationMultiError

type ApplicationMultiError []error

ApplicationMultiError is an error wrapping multiple validation errors returned by Application.ValidateAll() if the designated constraints aren't met.

func (ApplicationMultiError) AllErrors

func (m ApplicationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ApplicationMultiError) Error

func (m ApplicationMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ApplicationValidationError

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

ApplicationValidationError is the validation error returned by Application.Validate if the designated constraints aren't met.

func (ApplicationValidationError) Cause

Cause function returns cause value.

func (ApplicationValidationError) Error

Error satisfies the builtin error interface

func (ApplicationValidationError) ErrorName

func (e ApplicationValidationError) ErrorName() string

ErrorName returns error name.

func (ApplicationValidationError) Field

Field function returns field value.

func (ApplicationValidationError) Key

Key function returns key value.

func (ApplicationValidationError) Reason

Reason function returns reason value.

type ClusterConfigIdentifier

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

func (*ClusterConfigIdentifier) Descriptor deprecated

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

Deprecated: Use ClusterConfigIdentifier.ProtoReflect.Descriptor instead.

func (*ClusterConfigIdentifier) GetId

func (x *ClusterConfigIdentifier) GetId() string

func (*ClusterConfigIdentifier) GetOrganization

func (x *ClusterConfigIdentifier) GetOrganization() string

func (*ClusterConfigIdentifier) ProtoMessage

func (*ClusterConfigIdentifier) ProtoMessage()

func (*ClusterConfigIdentifier) ProtoReflect

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

func (*ClusterConfigIdentifier) Reset

func (x *ClusterConfigIdentifier) Reset()

func (*ClusterConfigIdentifier) String

func (x *ClusterConfigIdentifier) String() string

func (*ClusterConfigIdentifier) Validate

func (m *ClusterConfigIdentifier) Validate() error

Validate checks the field values on ClusterConfigIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterConfigIdentifier) ValidateAll

func (m *ClusterConfigIdentifier) ValidateAll() error

ValidateAll checks the field values on ClusterConfigIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterConfigIdentifierMultiError, or nil if none found.

type ClusterConfigIdentifierMultiError

type ClusterConfigIdentifierMultiError []error

ClusterConfigIdentifierMultiError is an error wrapping multiple validation errors returned by ClusterConfigIdentifier.ValidateAll() if the designated constraints aren't met.

func (ClusterConfigIdentifierMultiError) AllErrors

func (m ClusterConfigIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClusterConfigIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterConfigIdentifierValidationError

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

ClusterConfigIdentifierValidationError is the validation error returned by ClusterConfigIdentifier.Validate if the designated constraints aren't met.

func (ClusterConfigIdentifierValidationError) Cause

Cause function returns cause value.

func (ClusterConfigIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ClusterConfigIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ClusterConfigIdentifierValidationError) Field

Field function returns field value.

func (ClusterConfigIdentifierValidationError) Key

Key function returns key value.

func (ClusterConfigIdentifierValidationError) Reason

Reason function returns reason value.

type ClusterIdentifier

type ClusterIdentifier struct {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	Name         string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterIdentifier) Descriptor deprecated

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

Deprecated: Use ClusterIdentifier.ProtoReflect.Descriptor instead.

func (*ClusterIdentifier) GetName

func (x *ClusterIdentifier) GetName() string

func (*ClusterIdentifier) GetOrganization

func (x *ClusterIdentifier) GetOrganization() string

func (*ClusterIdentifier) ProtoMessage

func (*ClusterIdentifier) ProtoMessage()

func (*ClusterIdentifier) ProtoReflect

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

func (*ClusterIdentifier) Reset

func (x *ClusterIdentifier) Reset()

func (*ClusterIdentifier) String

func (x *ClusterIdentifier) String() string

func (*ClusterIdentifier) Validate

func (m *ClusterIdentifier) Validate() error

Validate checks the field values on ClusterIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterIdentifier) ValidateAll

func (m *ClusterIdentifier) ValidateAll() error

ValidateAll checks the field values on ClusterIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterIdentifierMultiError, or nil if none found.

type ClusterIdentifierMultiError

type ClusterIdentifierMultiError []error

ClusterIdentifierMultiError is an error wrapping multiple validation errors returned by ClusterIdentifier.ValidateAll() if the designated constraints aren't met.

func (ClusterIdentifierMultiError) AllErrors

func (m ClusterIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClusterIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterIdentifierValidationError

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

ClusterIdentifierValidationError is the validation error returned by ClusterIdentifier.Validate if the designated constraints aren't met.

func (ClusterIdentifierValidationError) Cause

Cause function returns cause value.

func (ClusterIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ClusterIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ClusterIdentifierValidationError) Field

Field function returns field value.

func (ClusterIdentifierValidationError) Key

Key function returns key value.

func (ClusterIdentifierValidationError) Reason

Reason function returns reason value.

type ClusterNodepoolIdentifier

type ClusterNodepoolIdentifier struct {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	ClusterName  string `protobuf:"bytes,2,opt,name=cluster_name,json=clusterName,proto3" json:"cluster_name,omitempty"`
	Name         string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterNodepoolIdentifier) Descriptor deprecated

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

Deprecated: Use ClusterNodepoolIdentifier.ProtoReflect.Descriptor instead.

func (*ClusterNodepoolIdentifier) GetClusterName

func (x *ClusterNodepoolIdentifier) GetClusterName() string

func (*ClusterNodepoolIdentifier) GetName

func (x *ClusterNodepoolIdentifier) GetName() string

func (*ClusterNodepoolIdentifier) GetOrganization

func (x *ClusterNodepoolIdentifier) GetOrganization() string

func (*ClusterNodepoolIdentifier) ProtoMessage

func (*ClusterNodepoolIdentifier) ProtoMessage()

func (*ClusterNodepoolIdentifier) ProtoReflect

func (*ClusterNodepoolIdentifier) Reset

func (x *ClusterNodepoolIdentifier) Reset()

func (*ClusterNodepoolIdentifier) String

func (x *ClusterNodepoolIdentifier) String() string

func (*ClusterNodepoolIdentifier) Validate

func (m *ClusterNodepoolIdentifier) Validate() error

Validate checks the field values on ClusterNodepoolIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterNodepoolIdentifier) ValidateAll

func (m *ClusterNodepoolIdentifier) ValidateAll() error

ValidateAll checks the field values on ClusterNodepoolIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterNodepoolIdentifierMultiError, or nil if none found.

type ClusterNodepoolIdentifierMultiError

type ClusterNodepoolIdentifierMultiError []error

ClusterNodepoolIdentifierMultiError is an error wrapping multiple validation errors returned by ClusterNodepoolIdentifier.ValidateAll() if the designated constraints aren't met.

func (ClusterNodepoolIdentifierMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ClusterNodepoolIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterNodepoolIdentifierValidationError

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

ClusterNodepoolIdentifierValidationError is the validation error returned by ClusterNodepoolIdentifier.Validate if the designated constraints aren't met.

func (ClusterNodepoolIdentifierValidationError) Cause

Cause function returns cause value.

func (ClusterNodepoolIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ClusterNodepoolIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ClusterNodepoolIdentifierValidationError) Field

Field function returns field value.

func (ClusterNodepoolIdentifierValidationError) Key

Key function returns key value.

func (ClusterNodepoolIdentifierValidationError) Reason

Reason function returns reason value.

type ClusterPoolIdentifier

type ClusterPoolIdentifier struct {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	Name         string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterPoolIdentifier) Descriptor deprecated

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

Deprecated: Use ClusterPoolIdentifier.ProtoReflect.Descriptor instead.

func (*ClusterPoolIdentifier) GetName

func (x *ClusterPoolIdentifier) GetName() string

func (*ClusterPoolIdentifier) GetOrganization

func (x *ClusterPoolIdentifier) GetOrganization() string

func (*ClusterPoolIdentifier) ProtoMessage

func (*ClusterPoolIdentifier) ProtoMessage()

func (*ClusterPoolIdentifier) ProtoReflect

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

func (*ClusterPoolIdentifier) Reset

func (x *ClusterPoolIdentifier) Reset()

func (*ClusterPoolIdentifier) String

func (x *ClusterPoolIdentifier) String() string

func (*ClusterPoolIdentifier) Validate

func (m *ClusterPoolIdentifier) Validate() error

Validate checks the field values on ClusterPoolIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterPoolIdentifier) ValidateAll

func (m *ClusterPoolIdentifier) ValidateAll() error

ValidateAll checks the field values on ClusterPoolIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterPoolIdentifierMultiError, or nil if none found.

type ClusterPoolIdentifierMultiError

type ClusterPoolIdentifierMultiError []error

ClusterPoolIdentifierMultiError is an error wrapping multiple validation errors returned by ClusterPoolIdentifier.ValidateAll() if the designated constraints aren't met.

func (ClusterPoolIdentifierMultiError) AllErrors

func (m ClusterPoolIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClusterPoolIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterPoolIdentifierValidationError

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

ClusterPoolIdentifierValidationError is the validation error returned by ClusterPoolIdentifier.Validate if the designated constraints aren't met.

func (ClusterPoolIdentifierValidationError) Cause

Cause function returns cause value.

func (ClusterPoolIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ClusterPoolIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ClusterPoolIdentifierValidationError) Field

Field function returns field value.

func (ClusterPoolIdentifierValidationError) Key

Key function returns key value.

func (ClusterPoolIdentifierValidationError) Reason

Reason function returns reason value.

type Domain

type Domain struct {
	Name         string        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Organization *Organization `protobuf:"bytes,2,opt,name=organization,proto3" json:"organization,omitempty"`
	// contains filtered or unexported fields
}

func (*Domain) Descriptor deprecated

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

Deprecated: Use Domain.ProtoReflect.Descriptor instead.

func (*Domain) GetName

func (x *Domain) GetName() string

func (*Domain) GetOrganization

func (x *Domain) GetOrganization() *Organization

func (*Domain) ProtoMessage

func (*Domain) ProtoMessage()

func (*Domain) ProtoReflect

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

func (*Domain) Reset

func (x *Domain) Reset()

func (*Domain) String

func (x *Domain) String() string

func (*Domain) Validate

func (m *Domain) Validate() error

Validate checks the field values on Domain with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Domain) ValidateAll

func (m *Domain) ValidateAll() error

ValidateAll checks the field values on Domain with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DomainMultiError, or nil if none found.

type DomainMultiError

type DomainMultiError []error

DomainMultiError is an error wrapping multiple validation errors returned by Domain.ValidateAll() if the designated constraints aren't met.

func (DomainMultiError) AllErrors

func (m DomainMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DomainMultiError) Error

func (m DomainMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DomainValidationError

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

DomainValidationError is the validation error returned by Domain.Validate if the designated constraints aren't met.

func (DomainValidationError) Cause

func (e DomainValidationError) Cause() error

Cause function returns cause value.

func (DomainValidationError) Error

func (e DomainValidationError) Error() string

Error satisfies the builtin error interface

func (DomainValidationError) ErrorName

func (e DomainValidationError) ErrorName() string

ErrorName returns error name.

func (DomainValidationError) Field

func (e DomainValidationError) Field() string

Field function returns field value.

func (DomainValidationError) Key

func (e DomainValidationError) Key() bool

Key function returns key value.

func (DomainValidationError) Reason

func (e DomainValidationError) Reason() string

Reason function returns reason value.

type EnrichedIdentity

type EnrichedIdentity struct {

	// Types that are assignable to Principal:
	//
	//	*EnrichedIdentity_User
	//	*EnrichedIdentity_Application
	Principal isEnrichedIdentity_Principal `protobuf_oneof:"principal"`
	// contains filtered or unexported fields
}

func (*EnrichedIdentity) Descriptor deprecated

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

Deprecated: Use EnrichedIdentity.ProtoReflect.Descriptor instead.

func (*EnrichedIdentity) GetApplication

func (x *EnrichedIdentity) GetApplication() *Application

func (*EnrichedIdentity) GetPrincipal

func (m *EnrichedIdentity) GetPrincipal() isEnrichedIdentity_Principal

func (*EnrichedIdentity) GetUser

func (x *EnrichedIdentity) GetUser() *User

func (*EnrichedIdentity) ProtoMessage

func (*EnrichedIdentity) ProtoMessage()

func (*EnrichedIdentity) ProtoReflect

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

func (*EnrichedIdentity) Reset

func (x *EnrichedIdentity) Reset()

func (*EnrichedIdentity) String

func (x *EnrichedIdentity) String() string

func (*EnrichedIdentity) Validate

func (m *EnrichedIdentity) Validate() error

Validate checks the field values on EnrichedIdentity with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EnrichedIdentity) ValidateAll

func (m *EnrichedIdentity) ValidateAll() error

ValidateAll checks the field values on EnrichedIdentity with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EnrichedIdentityMultiError, or nil if none found.

type EnrichedIdentityMultiError

type EnrichedIdentityMultiError []error

EnrichedIdentityMultiError is an error wrapping multiple validation errors returned by EnrichedIdentity.ValidateAll() if the designated constraints aren't met.

func (EnrichedIdentityMultiError) AllErrors

func (m EnrichedIdentityMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnrichedIdentityMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type EnrichedIdentityValidationError

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

EnrichedIdentityValidationError is the validation error returned by EnrichedIdentity.Validate if the designated constraints aren't met.

func (EnrichedIdentityValidationError) Cause

Cause function returns cause value.

func (EnrichedIdentityValidationError) Error

Error satisfies the builtin error interface

func (EnrichedIdentityValidationError) ErrorName

ErrorName returns error name.

func (EnrichedIdentityValidationError) Field

Field function returns field value.

func (EnrichedIdentityValidationError) Key

Key function returns key value.

func (EnrichedIdentityValidationError) Reason

Reason function returns reason value.

type EnrichedIdentity_Application

type EnrichedIdentity_Application struct {
	Application *Application `protobuf:"bytes,2,opt,name=application,proto3,oneof"`
}

type EnrichedIdentity_User

type EnrichedIdentity_User struct {
	User *User `protobuf:"bytes,1,opt,name=user,proto3,oneof"`
}

type Filter

type Filter struct {
	Function Filter_Function `protobuf:"varint,1,opt,name=function,proto3,enum=flyteidl.common.Filter_Function" json:"function,omitempty"`
	// e.g. name or version
	Field string `protobuf:"bytes,2,opt,name=field,proto3" json:"field,omitempty"`
	// Only in the case of a VALUE_IN function, values may contain multiple entries.
	Values []string `protobuf:"bytes,3,rep,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*Filter) Descriptor deprecated

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

Deprecated: Use Filter.ProtoReflect.Descriptor instead.

func (*Filter) GetField

func (x *Filter) GetField() string

func (*Filter) GetFunction

func (x *Filter) GetFunction() Filter_Function

func (*Filter) GetValues

func (x *Filter) GetValues() []string

func (*Filter) ProtoMessage

func (*Filter) ProtoMessage()

func (*Filter) ProtoReflect

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

func (*Filter) Reset

func (x *Filter) Reset()

func (*Filter) String

func (x *Filter) String() string

func (*Filter) Validate

func (m *Filter) Validate() error

Validate checks the field values on Filter with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Filter) ValidateAll

func (m *Filter) ValidateAll() error

ValidateAll checks the field values on Filter with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FilterMultiError, or nil if none found.

type FilterMultiError

type FilterMultiError []error

FilterMultiError is an error wrapping multiple validation errors returned by Filter.ValidateAll() if the designated constraints aren't met.

func (FilterMultiError) AllErrors

func (m FilterMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FilterMultiError) Error

func (m FilterMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FilterValidationError

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

FilterValidationError is the validation error returned by Filter.Validate if the designated constraints aren't met.

func (FilterValidationError) Cause

func (e FilterValidationError) Cause() error

Cause function returns cause value.

func (FilterValidationError) Error

func (e FilterValidationError) Error() string

Error satisfies the builtin error interface

func (FilterValidationError) ErrorName

func (e FilterValidationError) ErrorName() string

ErrorName returns error name.

func (FilterValidationError) Field

func (e FilterValidationError) Field() string

Field function returns field value.

func (FilterValidationError) Key

func (e FilterValidationError) Key() bool

Key function returns key value.

func (FilterValidationError) Reason

func (e FilterValidationError) Reason() string

Reason function returns reason value.

type Filter_Function

type Filter_Function int32
const (
	Filter_EQUAL                     Filter_Function = 0
	Filter_NOT_EQUAL                 Filter_Function = 1
	Filter_GREATER_THAN              Filter_Function = 2
	Filter_GREATER_THAN_OR_EQUAL     Filter_Function = 3
	Filter_LESS_THAN                 Filter_Function = 4
	Filter_LESS_THAN_OR_EQUAL        Filter_Function = 5
	Filter_CONTAINS                  Filter_Function = 6 // Case sensitive contains function.
	Filter_VALUE_IN                  Filter_Function = 7
	Filter_ENDS_WITH                 Filter_Function = 12
	Filter_NOT_ENDS_WITH             Filter_Function = 13
	Filter_CONTAINS_CASE_INSENSITIVE Filter_Function = 14 // Case insensitive contains function.
)

func (Filter_Function) Descriptor

func (Filter_Function) Enum

func (x Filter_Function) Enum() *Filter_Function

func (Filter_Function) EnumDescriptor deprecated

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

Deprecated: Use Filter_Function.Descriptor instead.

func (Filter_Function) Number

func (Filter_Function) String

func (x Filter_Function) String() string

func (Filter_Function) Type

type Identity

type Identity struct {

	// Types that are assignable to Principal:
	//
	//	*Identity_UserId
	//	*Identity_ApplicationId
	Principal isIdentity_Principal `protobuf_oneof:"principal"`
	// contains filtered or unexported fields
}

func (*Identity) Descriptor deprecated

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

Deprecated: Use Identity.ProtoReflect.Descriptor instead.

func (*Identity) GetApplicationId

func (x *Identity) GetApplicationId() *ApplicationIdentifier

func (*Identity) GetPrincipal

func (m *Identity) GetPrincipal() isIdentity_Principal

func (*Identity) GetUserId

func (x *Identity) GetUserId() *UserIdentifier

func (*Identity) ProtoMessage

func (*Identity) ProtoMessage()

func (*Identity) ProtoReflect

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

func (*Identity) Reset

func (x *Identity) Reset()

func (*Identity) String

func (x *Identity) String() string

func (*Identity) Validate

func (m *Identity) Validate() error

Validate checks the field values on Identity with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Identity) ValidateAll

func (m *Identity) ValidateAll() error

ValidateAll checks the field values on Identity with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in IdentityMultiError, or nil if none found.

type IdentityMultiError

type IdentityMultiError []error

IdentityMultiError is an error wrapping multiple validation errors returned by Identity.ValidateAll() if the designated constraints aren't met.

func (IdentityMultiError) AllErrors

func (m IdentityMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (IdentityMultiError) Error

func (m IdentityMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type IdentityValidationError

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

IdentityValidationError is the validation error returned by Identity.Validate if the designated constraints aren't met.

func (IdentityValidationError) Cause

func (e IdentityValidationError) Cause() error

Cause function returns cause value.

func (IdentityValidationError) Error

func (e IdentityValidationError) Error() string

Error satisfies the builtin error interface

func (IdentityValidationError) ErrorName

func (e IdentityValidationError) ErrorName() string

ErrorName returns error name.

func (IdentityValidationError) Field

func (e IdentityValidationError) Field() string

Field function returns field value.

func (IdentityValidationError) Key

func (e IdentityValidationError) Key() bool

Key function returns key value.

func (IdentityValidationError) Reason

func (e IdentityValidationError) Reason() string

Reason function returns reason value.

type Identity_ApplicationId

type Identity_ApplicationId struct {
	ApplicationId *ApplicationIdentifier `protobuf:"bytes,2,opt,name=application_id,json=applicationId,proto3,oneof"`
}

type Identity_UserId

type Identity_UserId struct {
	UserId *UserIdentifier `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3,oneof"`
}

type LaunchPlan

type LaunchPlan struct {
	Name    string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Project *Project `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"`
	// contains filtered or unexported fields
}

func (*LaunchPlan) Descriptor deprecated

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

Deprecated: Use LaunchPlan.ProtoReflect.Descriptor instead.

func (*LaunchPlan) GetName

func (x *LaunchPlan) GetName() string

func (*LaunchPlan) GetProject

func (x *LaunchPlan) GetProject() *Project

func (*LaunchPlan) ProtoMessage

func (*LaunchPlan) ProtoMessage()

func (*LaunchPlan) ProtoReflect

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

func (*LaunchPlan) Reset

func (x *LaunchPlan) Reset()

func (*LaunchPlan) String

func (x *LaunchPlan) String() string

func (*LaunchPlan) Validate

func (m *LaunchPlan) Validate() error

Validate checks the field values on LaunchPlan with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*LaunchPlan) ValidateAll

func (m *LaunchPlan) ValidateAll() error

ValidateAll checks the field values on LaunchPlan with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LaunchPlanMultiError, or nil if none found.

type LaunchPlanMultiError

type LaunchPlanMultiError []error

LaunchPlanMultiError is an error wrapping multiple validation errors returned by LaunchPlan.ValidateAll() if the designated constraints aren't met.

func (LaunchPlanMultiError) AllErrors

func (m LaunchPlanMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LaunchPlanMultiError) Error

func (m LaunchPlanMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type LaunchPlanValidationError

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

LaunchPlanValidationError is the validation error returned by LaunchPlan.Validate if the designated constraints aren't met.

func (LaunchPlanValidationError) Cause

func (e LaunchPlanValidationError) Cause() error

Cause function returns cause value.

func (LaunchPlanValidationError) Error

Error satisfies the builtin error interface

func (LaunchPlanValidationError) ErrorName

func (e LaunchPlanValidationError) ErrorName() string

ErrorName returns error name.

func (LaunchPlanValidationError) Field

Field function returns field value.

func (LaunchPlanValidationError) Key

Key function returns key value.

func (LaunchPlanValidationError) Reason

func (e LaunchPlanValidationError) Reason() string

Reason function returns reason value.

type ListRequest

type ListRequest struct {

	// Indicates the number of resources to be returned.
	// +required
	Limit uint32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
	// In the case of multiple pages of results, the server-provided token can be used to fetch the next page
	// in a query.
	// +optional
	Token string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	// Deprecated, use sort_by_fields instead.
	// Specifies how listed entities should be sorted in the response.
	// +optional
	//
	// Deprecated: Marked as deprecated in common/list.proto.
	SortBy *Sort `protobuf:"bytes,3,opt,name=sort_by,json=sortBy,proto3" json:"sort_by,omitempty"`
	// Indicates a list of filters. This field is used for grpc get requests.
	// +optional
	Filters []*Filter `protobuf:"bytes,4,rep,name=filters,proto3" json:"filters,omitempty"`
	// Indicates a raw list of filters passed as string.This field is used for REST get requests
	// +optional
	RawFilters []string `protobuf:"bytes,5,rep,name=raw_filters,json=rawFilters,proto3" json:"raw_filters,omitempty"`
	// Specifies how listed entities should be sorted in the response.
	// Sort fields are applied in order.
	// +optional
	SortByFields []*Sort `protobuf:"bytes,6,rep,name=sort_by_fields,json=sortByFields,proto3" json:"sort_by_fields,omitempty"`
	// contains filtered or unexported fields
}

func (*ListRequest) Descriptor deprecated

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

Deprecated: Use ListRequest.ProtoReflect.Descriptor instead.

func (*ListRequest) GetFilters

func (x *ListRequest) GetFilters() []*Filter

func (*ListRequest) GetLimit

func (x *ListRequest) GetLimit() uint32

func (*ListRequest) GetRawFilters

func (x *ListRequest) GetRawFilters() []string

func (*ListRequest) GetSortBy deprecated

func (x *ListRequest) GetSortBy() *Sort

Deprecated: Marked as deprecated in common/list.proto.

func (*ListRequest) GetSortByFields

func (x *ListRequest) GetSortByFields() []*Sort

func (*ListRequest) GetToken

func (x *ListRequest) GetToken() string

func (*ListRequest) ProtoMessage

func (*ListRequest) ProtoMessage()

func (*ListRequest) ProtoReflect

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

func (*ListRequest) Reset

func (x *ListRequest) Reset()

func (*ListRequest) String

func (x *ListRequest) String() string

func (*ListRequest) Validate

func (m *ListRequest) Validate() error

Validate checks the field values on ListRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListRequest) ValidateAll

func (m *ListRequest) ValidateAll() error

ValidateAll checks the field values on ListRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListRequestMultiError, or nil if none found.

type ListRequestMultiError

type ListRequestMultiError []error

ListRequestMultiError is an error wrapping multiple validation errors returned by ListRequest.ValidateAll() if the designated constraints aren't met.

func (ListRequestMultiError) AllErrors

func (m ListRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListRequestMultiError) Error

func (m ListRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ListRequestValidationError

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

ListRequestValidationError is the validation error returned by ListRequest.Validate if the designated constraints aren't met.

func (ListRequestValidationError) Cause

Cause function returns cause value.

func (ListRequestValidationError) Error

Error satisfies the builtin error interface

func (ListRequestValidationError) ErrorName

func (e ListRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ListRequestValidationError) Field

Field function returns field value.

func (ListRequestValidationError) Key

Key function returns key value.

func (ListRequestValidationError) Reason

Reason function returns reason value.

type ManagedClusterIdentifier

type ManagedClusterIdentifier struct {
	Name string         `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Org  *OrgIdentifier `protobuf:"bytes,3,opt,name=org,proto3" json:"org,omitempty"`
	// contains filtered or unexported fields
}

func (*ManagedClusterIdentifier) Descriptor deprecated

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

Deprecated: Use ManagedClusterIdentifier.ProtoReflect.Descriptor instead.

func (*ManagedClusterIdentifier) GetName

func (x *ManagedClusterIdentifier) GetName() string

func (*ManagedClusterIdentifier) GetOrg

func (*ManagedClusterIdentifier) ProtoMessage

func (*ManagedClusterIdentifier) ProtoMessage()

func (*ManagedClusterIdentifier) ProtoReflect

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

func (*ManagedClusterIdentifier) Reset

func (x *ManagedClusterIdentifier) Reset()

func (*ManagedClusterIdentifier) String

func (x *ManagedClusterIdentifier) String() string

func (*ManagedClusterIdentifier) Validate

func (m *ManagedClusterIdentifier) Validate() error

Validate checks the field values on ManagedClusterIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ManagedClusterIdentifier) ValidateAll

func (m *ManagedClusterIdentifier) ValidateAll() error

ValidateAll checks the field values on ManagedClusterIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ManagedClusterIdentifierMultiError, or nil if none found.

type ManagedClusterIdentifierMultiError

type ManagedClusterIdentifierMultiError []error

ManagedClusterIdentifierMultiError is an error wrapping multiple validation errors returned by ManagedClusterIdentifier.ValidateAll() if the designated constraints aren't met.

func (ManagedClusterIdentifierMultiError) AllErrors

func (m ManagedClusterIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ManagedClusterIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ManagedClusterIdentifierValidationError

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

ManagedClusterIdentifierValidationError is the validation error returned by ManagedClusterIdentifier.Validate if the designated constraints aren't met.

func (ManagedClusterIdentifierValidationError) Cause

Cause function returns cause value.

func (ManagedClusterIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ManagedClusterIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ManagedClusterIdentifierValidationError) Field

Field function returns field value.

func (ManagedClusterIdentifierValidationError) Key

Key function returns key value.

func (ManagedClusterIdentifierValidationError) Reason

Reason function returns reason value.

type OrgIdentifier

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

func (*OrgIdentifier) Descriptor deprecated

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

Deprecated: Use OrgIdentifier.ProtoReflect.Descriptor instead.

func (*OrgIdentifier) GetName

func (x *OrgIdentifier) GetName() string

func (*OrgIdentifier) ProtoMessage

func (*OrgIdentifier) ProtoMessage()

func (*OrgIdentifier) ProtoReflect

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

func (*OrgIdentifier) Reset

func (x *OrgIdentifier) Reset()

func (*OrgIdentifier) String

func (x *OrgIdentifier) String() string

func (*OrgIdentifier) Validate

func (m *OrgIdentifier) Validate() error

Validate checks the field values on OrgIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*OrgIdentifier) ValidateAll

func (m *OrgIdentifier) ValidateAll() error

ValidateAll checks the field values on OrgIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in OrgIdentifierMultiError, or nil if none found.

type OrgIdentifierMultiError

type OrgIdentifierMultiError []error

OrgIdentifierMultiError is an error wrapping multiple validation errors returned by OrgIdentifier.ValidateAll() if the designated constraints aren't met.

func (OrgIdentifierMultiError) AllErrors

func (m OrgIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (OrgIdentifierMultiError) Error

func (m OrgIdentifierMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type OrgIdentifierValidationError

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

OrgIdentifierValidationError is the validation error returned by OrgIdentifier.Validate if the designated constraints aren't met.

func (OrgIdentifierValidationError) Cause

Cause function returns cause value.

func (OrgIdentifierValidationError) Error

Error satisfies the builtin error interface

func (OrgIdentifierValidationError) ErrorName

func (e OrgIdentifierValidationError) ErrorName() string

ErrorName returns error name.

func (OrgIdentifierValidationError) Field

Field function returns field value.

func (OrgIdentifierValidationError) Key

Key function returns key value.

func (OrgIdentifierValidationError) Reason

Reason function returns reason value.

type Organization

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

func (*Organization) Descriptor deprecated

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

Deprecated: Use Organization.ProtoReflect.Descriptor instead.

func (*Organization) GetName

func (x *Organization) GetName() string

func (*Organization) ProtoMessage

func (*Organization) ProtoMessage()

func (*Organization) ProtoReflect

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

func (*Organization) Reset

func (x *Organization) Reset()

func (*Organization) String

func (x *Organization) String() string

func (*Organization) Validate

func (m *Organization) Validate() error

Validate checks the field values on Organization with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Organization) ValidateAll

func (m *Organization) ValidateAll() error

ValidateAll checks the field values on Organization with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in OrganizationMultiError, or nil if none found.

type OrganizationMultiError

type OrganizationMultiError []error

OrganizationMultiError is an error wrapping multiple validation errors returned by Organization.ValidateAll() if the designated constraints aren't met.

func (OrganizationMultiError) AllErrors

func (m OrganizationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (OrganizationMultiError) Error

func (m OrganizationMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type OrganizationValidationError

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

OrganizationValidationError is the validation error returned by Organization.Validate if the designated constraints aren't met.

func (OrganizationValidationError) Cause

Cause function returns cause value.

func (OrganizationValidationError) Error

Error satisfies the builtin error interface

func (OrganizationValidationError) ErrorName

func (e OrganizationValidationError) ErrorName() string

ErrorName returns error name.

func (OrganizationValidationError) Field

Field function returns field value.

func (OrganizationValidationError) Key

Key function returns key value.

func (OrganizationValidationError) Reason

Reason function returns reason value.

type Permission

type Permission struct {
	Resource *Resource `protobuf:"bytes,1,opt,name=resource,proto3" json:"resource,omitempty"`
	Actions  []Action  `protobuf:"varint,2,rep,packed,name=actions,proto3,enum=flyteidl.common.Action" json:"actions,omitempty"`
	// contains filtered or unexported fields
}

Defines a set of allowed actions on a specific authorization resource.

func (*Permission) Descriptor deprecated

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

Deprecated: Use Permission.ProtoReflect.Descriptor instead.

func (*Permission) GetActions

func (x *Permission) GetActions() []Action

func (*Permission) GetResource

func (x *Permission) GetResource() *Resource

func (*Permission) ProtoMessage

func (*Permission) ProtoMessage()

func (*Permission) ProtoReflect

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

func (*Permission) Reset

func (x *Permission) Reset()

func (*Permission) String

func (x *Permission) String() string

func (*Permission) Validate

func (m *Permission) Validate() error

Validate checks the field values on Permission with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Permission) ValidateAll

func (m *Permission) ValidateAll() error

ValidateAll checks the field values on Permission with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PermissionMultiError, or nil if none found.

type PermissionMultiError

type PermissionMultiError []error

PermissionMultiError is an error wrapping multiple validation errors returned by Permission.ValidateAll() if the designated constraints aren't met.

func (PermissionMultiError) AllErrors

func (m PermissionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PermissionMultiError) Error

func (m PermissionMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PermissionValidationError

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

PermissionValidationError is the validation error returned by Permission.Validate if the designated constraints aren't met.

func (PermissionValidationError) Cause

func (e PermissionValidationError) Cause() error

Cause function returns cause value.

func (PermissionValidationError) Error

Error satisfies the builtin error interface

func (PermissionValidationError) ErrorName

func (e PermissionValidationError) ErrorName() string

ErrorName returns error name.

func (PermissionValidationError) Field

Field function returns field value.

func (PermissionValidationError) Key

Key function returns key value.

func (PermissionValidationError) Reason

func (e PermissionValidationError) Reason() string

Reason function returns reason value.

type Policy

type Policy struct {
	Id       *PolicyIdentifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Bindings []*PolicyBinding  `protobuf:"bytes,2,rep,name=bindings,proto3" json:"bindings,omitempty"`
	// Optional: human readable description
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

A policy is a collection of roles bound to a resource.

func (*Policy) Descriptor deprecated

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

Deprecated: Use Policy.ProtoReflect.Descriptor instead.

func (*Policy) GetBindings

func (x *Policy) GetBindings() []*PolicyBinding

func (*Policy) GetDescription

func (x *Policy) GetDescription() string

func (*Policy) GetId

func (x *Policy) GetId() *PolicyIdentifier

func (*Policy) ProtoMessage

func (*Policy) ProtoMessage()

func (*Policy) ProtoReflect

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

func (*Policy) Reset

func (x *Policy) Reset()

func (*Policy) String

func (x *Policy) String() string

func (*Policy) Validate

func (m *Policy) Validate() error

Validate checks the field values on Policy with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Policy) ValidateAll

func (m *Policy) ValidateAll() error

ValidateAll checks the field values on Policy with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PolicyMultiError, or nil if none found.

type PolicyBinding

type PolicyBinding struct {

	// The role designates the permitted set of actions which can be applied to the resource.
	RoleId   *RoleIdentifier `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	Resource *Resource       `protobuf:"bytes,2,opt,name=resource,proto3" json:"resource,omitempty"`
	// contains filtered or unexported fields
}

A policy binding represents a role (a set of actions) defined on a resource.

func (*PolicyBinding) Descriptor deprecated

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

Deprecated: Use PolicyBinding.ProtoReflect.Descriptor instead.

func (*PolicyBinding) GetResource

func (x *PolicyBinding) GetResource() *Resource

func (*PolicyBinding) GetRoleId

func (x *PolicyBinding) GetRoleId() *RoleIdentifier

func (*PolicyBinding) ProtoMessage

func (*PolicyBinding) ProtoMessage()

func (*PolicyBinding) ProtoReflect

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

func (*PolicyBinding) Reset

func (x *PolicyBinding) Reset()

func (*PolicyBinding) String

func (x *PolicyBinding) String() string

func (*PolicyBinding) Validate

func (m *PolicyBinding) Validate() error

Validate checks the field values on PolicyBinding with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PolicyBinding) ValidateAll

func (m *PolicyBinding) ValidateAll() error

ValidateAll checks the field values on PolicyBinding with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PolicyBindingMultiError, or nil if none found.

type PolicyBindingMultiError

type PolicyBindingMultiError []error

PolicyBindingMultiError is an error wrapping multiple validation errors returned by PolicyBinding.ValidateAll() if the designated constraints aren't met.

func (PolicyBindingMultiError) AllErrors

func (m PolicyBindingMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PolicyBindingMultiError) Error

func (m PolicyBindingMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PolicyBindingValidationError

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

PolicyBindingValidationError is the validation error returned by PolicyBinding.Validate if the designated constraints aren't met.

func (PolicyBindingValidationError) Cause

Cause function returns cause value.

func (PolicyBindingValidationError) Error

Error satisfies the builtin error interface

func (PolicyBindingValidationError) ErrorName

func (e PolicyBindingValidationError) ErrorName() string

ErrorName returns error name.

func (PolicyBindingValidationError) Field

Field function returns field value.

func (PolicyBindingValidationError) Key

Key function returns key value.

func (PolicyBindingValidationError) Reason

Reason function returns reason value.

type PolicyIdentifier

type PolicyIdentifier struct {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	// Unique name for this policy within the organization
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*PolicyIdentifier) Descriptor deprecated

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

Deprecated: Use PolicyIdentifier.ProtoReflect.Descriptor instead.

func (*PolicyIdentifier) GetName

func (x *PolicyIdentifier) GetName() string

func (*PolicyIdentifier) GetOrganization

func (x *PolicyIdentifier) GetOrganization() string

func (*PolicyIdentifier) ProtoMessage

func (*PolicyIdentifier) ProtoMessage()

func (*PolicyIdentifier) ProtoReflect

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

func (*PolicyIdentifier) Reset

func (x *PolicyIdentifier) Reset()

func (*PolicyIdentifier) String

func (x *PolicyIdentifier) String() string

func (*PolicyIdentifier) Validate

func (m *PolicyIdentifier) Validate() error

Validate checks the field values on PolicyIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PolicyIdentifier) ValidateAll

func (m *PolicyIdentifier) ValidateAll() error

ValidateAll checks the field values on PolicyIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PolicyIdentifierMultiError, or nil if none found.

type PolicyIdentifierMultiError

type PolicyIdentifierMultiError []error

PolicyIdentifierMultiError is an error wrapping multiple validation errors returned by PolicyIdentifier.ValidateAll() if the designated constraints aren't met.

func (PolicyIdentifierMultiError) AllErrors

func (m PolicyIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PolicyIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type PolicyIdentifierValidationError

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

PolicyIdentifierValidationError is the validation error returned by PolicyIdentifier.Validate if the designated constraints aren't met.

func (PolicyIdentifierValidationError) Cause

Cause function returns cause value.

func (PolicyIdentifierValidationError) Error

Error satisfies the builtin error interface

func (PolicyIdentifierValidationError) ErrorName

ErrorName returns error name.

func (PolicyIdentifierValidationError) Field

Field function returns field value.

func (PolicyIdentifierValidationError) Key

Key function returns key value.

func (PolicyIdentifierValidationError) Reason

Reason function returns reason value.

type PolicyMultiError

type PolicyMultiError []error

PolicyMultiError is an error wrapping multiple validation errors returned by Policy.ValidateAll() if the designated constraints aren't met.

func (PolicyMultiError) AllErrors

func (m PolicyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PolicyMultiError) Error

func (m PolicyMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PolicyValidationError

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

PolicyValidationError is the validation error returned by Policy.Validate if the designated constraints aren't met.

func (PolicyValidationError) Cause

func (e PolicyValidationError) Cause() error

Cause function returns cause value.

func (PolicyValidationError) Error

func (e PolicyValidationError) Error() string

Error satisfies the builtin error interface

func (PolicyValidationError) ErrorName

func (e PolicyValidationError) ErrorName() string

ErrorName returns error name.

func (PolicyValidationError) Field

func (e PolicyValidationError) Field() string

Field function returns field value.

func (PolicyValidationError) Key

func (e PolicyValidationError) Key() bool

Key function returns key value.

func (PolicyValidationError) Reason

func (e PolicyValidationError) Reason() string

Reason function returns reason value.

type Project

type Project struct {
	Name   string  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Domain *Domain `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
	// contains filtered or unexported fields
}

func (*Project) Descriptor deprecated

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

Deprecated: Use Project.ProtoReflect.Descriptor instead.

func (*Project) GetDomain

func (x *Project) GetDomain() *Domain

func (*Project) GetName

func (x *Project) GetName() string

func (*Project) ProtoMessage

func (*Project) ProtoMessage()

func (*Project) ProtoReflect

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

func (*Project) Reset

func (x *Project) Reset()

func (*Project) String

func (x *Project) String() string

func (*Project) Validate

func (m *Project) Validate() error

Validate checks the field values on Project with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Project) ValidateAll

func (m *Project) ValidateAll() error

ValidateAll checks the field values on Project with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProjectMultiError, or nil if none found.

type ProjectIdentifier

type ProjectIdentifier struct {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	Domain       string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
	Name         string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectIdentifier) Descriptor deprecated

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

Deprecated: Use ProjectIdentifier.ProtoReflect.Descriptor instead.

func (*ProjectIdentifier) GetDomain

func (x *ProjectIdentifier) GetDomain() string

func (*ProjectIdentifier) GetName

func (x *ProjectIdentifier) GetName() string

func (*ProjectIdentifier) GetOrganization

func (x *ProjectIdentifier) GetOrganization() string

func (*ProjectIdentifier) ProtoMessage

func (*ProjectIdentifier) ProtoMessage()

func (*ProjectIdentifier) ProtoReflect

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

func (*ProjectIdentifier) Reset

func (x *ProjectIdentifier) Reset()

func (*ProjectIdentifier) String

func (x *ProjectIdentifier) String() string

func (*ProjectIdentifier) Validate

func (m *ProjectIdentifier) Validate() error

Validate checks the field values on ProjectIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ProjectIdentifier) ValidateAll

func (m *ProjectIdentifier) ValidateAll() error

ValidateAll checks the field values on ProjectIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProjectIdentifierMultiError, or nil if none found.

type ProjectIdentifierMultiError

type ProjectIdentifierMultiError []error

ProjectIdentifierMultiError is an error wrapping multiple validation errors returned by ProjectIdentifier.ValidateAll() if the designated constraints aren't met.

func (ProjectIdentifierMultiError) AllErrors

func (m ProjectIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProjectIdentifierMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ProjectIdentifierValidationError

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

ProjectIdentifierValidationError is the validation error returned by ProjectIdentifier.Validate if the designated constraints aren't met.

func (ProjectIdentifierValidationError) Cause

Cause function returns cause value.

func (ProjectIdentifierValidationError) Error

Error satisfies the builtin error interface

func (ProjectIdentifierValidationError) ErrorName

ErrorName returns error name.

func (ProjectIdentifierValidationError) Field

Field function returns field value.

func (ProjectIdentifierValidationError) Key

Key function returns key value.

func (ProjectIdentifierValidationError) Reason

Reason function returns reason value.

type ProjectMultiError

type ProjectMultiError []error

ProjectMultiError is an error wrapping multiple validation errors returned by Project.ValidateAll() if the designated constraints aren't met.

func (ProjectMultiError) AllErrors

func (m ProjectMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProjectMultiError) Error

func (m ProjectMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ProjectValidationError

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

ProjectValidationError is the validation error returned by Project.Validate if the designated constraints aren't met.

func (ProjectValidationError) Cause

func (e ProjectValidationError) Cause() error

Cause function returns cause value.

func (ProjectValidationError) Error

func (e ProjectValidationError) Error() string

Error satisfies the builtin error interface

func (ProjectValidationError) ErrorName

func (e ProjectValidationError) ErrorName() string

ErrorName returns error name.

func (ProjectValidationError) Field

func (e ProjectValidationError) Field() string

Field function returns field value.

func (ProjectValidationError) Key

func (e ProjectValidationError) Key() bool

Key function returns key value.

func (ProjectValidationError) Reason

func (e ProjectValidationError) Reason() string

Reason function returns reason value.

type Resource

type Resource struct {

	// Types that are assignable to Resource:
	//
	//	*Resource_Organization
	//	*Resource_Domain
	//	*Resource_Project
	//	*Resource_Workflow
	//	*Resource_LaunchPlan
	//	*Resource_Cluster
	Resource isResource_Resource `protobuf_oneof:"resource"`
	// contains filtered or unexported fields
}

func (*Resource) Descriptor deprecated

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

Deprecated: Use Resource.ProtoReflect.Descriptor instead.

func (*Resource) GetCluster

func (x *Resource) GetCluster() *ClusterIdentifier

func (*Resource) GetDomain

func (x *Resource) GetDomain() *Domain

func (*Resource) GetLaunchPlan

func (x *Resource) GetLaunchPlan() *LaunchPlan

func (*Resource) GetOrganization

func (x *Resource) GetOrganization() *Organization

func (*Resource) GetProject

func (x *Resource) GetProject() *Project

func (*Resource) GetResource

func (m *Resource) GetResource() isResource_Resource

func (*Resource) GetWorkflow

func (x *Resource) GetWorkflow() *Workflow

func (*Resource) ProtoMessage

func (*Resource) ProtoMessage()

func (*Resource) ProtoReflect

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

func (*Resource) Reset

func (x *Resource) Reset()

func (*Resource) String

func (x *Resource) String() string

func (*Resource) Validate

func (m *Resource) Validate() error

Validate checks the field values on Resource with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Resource) ValidateAll

func (m *Resource) ValidateAll() error

ValidateAll checks the field values on Resource with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ResourceMultiError, or nil if none found.

type ResourceMultiError

type ResourceMultiError []error

ResourceMultiError is an error wrapping multiple validation errors returned by Resource.ValidateAll() if the designated constraints aren't met.

func (ResourceMultiError) AllErrors

func (m ResourceMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ResourceMultiError) Error

func (m ResourceMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ResourceValidationError

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

ResourceValidationError is the validation error returned by Resource.Validate if the designated constraints aren't met.

func (ResourceValidationError) Cause

func (e ResourceValidationError) Cause() error

Cause function returns cause value.

func (ResourceValidationError) Error

func (e ResourceValidationError) Error() string

Error satisfies the builtin error interface

func (ResourceValidationError) ErrorName

func (e ResourceValidationError) ErrorName() string

ErrorName returns error name.

func (ResourceValidationError) Field

func (e ResourceValidationError) Field() string

Field function returns field value.

func (ResourceValidationError) Key

func (e ResourceValidationError) Key() bool

Key function returns key value.

func (ResourceValidationError) Reason

func (e ResourceValidationError) Reason() string

Reason function returns reason value.

type Resource_Cluster

type Resource_Cluster struct {
	Cluster *ClusterIdentifier `protobuf:"bytes,6,opt,name=cluster,proto3,oneof"`
}

type Resource_Domain

type Resource_Domain struct {
	Domain *Domain `protobuf:"bytes,2,opt,name=domain,proto3,oneof"`
}

type Resource_LaunchPlan

type Resource_LaunchPlan struct {
	LaunchPlan *LaunchPlan `protobuf:"bytes,5,opt,name=launch_plan,json=launchPlan,proto3,oneof"`
}

type Resource_Organization

type Resource_Organization struct {
	Organization *Organization `protobuf:"bytes,1,opt,name=organization,proto3,oneof"`
}

type Resource_Project

type Resource_Project struct {
	Project *Project `protobuf:"bytes,3,opt,name=project,proto3,oneof"`
}

type Resource_Workflow

type Resource_Workflow struct {
	Workflow *Workflow `protobuf:"bytes,4,opt,name=workflow,proto3,oneof"`
}

type Role

type Role struct {
	Id *RoleIdentifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Deprecated: Marked as deprecated in common/role.proto.
	Permissions []*Permission `protobuf:"bytes,2,rep,name=permissions,proto3" json:"permissions,omitempty"`
	RoleSpec    *RoleSpec     `protobuf:"bytes,3,opt,name=role_spec,json=roleSpec,proto3" json:"role_spec,omitempty"`
	RoleType    RoleType      `protobuf:"varint,4,opt,name=role_type,json=roleType,proto3,enum=flyteidl.common.RoleType" json:"role_type,omitempty"`
	Actions     []Action      `protobuf:"varint,5,rep,packed,name=actions,proto3,enum=flyteidl.common.Action" json:"actions,omitempty"`
	// contains filtered or unexported fields
}

func (*Role) Descriptor deprecated

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

Deprecated: Use Role.ProtoReflect.Descriptor instead.

func (*Role) GetActions

func (x *Role) GetActions() []Action

func (*Role) GetId

func (x *Role) GetId() *RoleIdentifier

func (*Role) GetPermissions deprecated

func (x *Role) GetPermissions() []*Permission

Deprecated: Marked as deprecated in common/role.proto.

func (*Role) GetRoleSpec

func (x *Role) GetRoleSpec() *RoleSpec

func (*Role) GetRoleType

func (x *Role) GetRoleType() RoleType

func (*Role) ProtoMessage

func (*Role) ProtoMessage()

func (*Role) ProtoReflect

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

func (*Role) Reset

func (x *Role) Reset()

func (*Role) String

func (x *Role) String() string

func (*Role) Validate

func (m *Role) Validate() error

Validate checks the field values on Role with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Role) ValidateAll

func (m *Role) ValidateAll() error

ValidateAll checks the field values on Role with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RoleMultiError, or nil if none found.

type RoleIdentifier

type RoleIdentifier struct {
	Organization string `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	// Unique name for this role within the organization
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*RoleIdentifier) Descriptor deprecated

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

Deprecated: Use RoleIdentifier.ProtoReflect.Descriptor instead.

func (*RoleIdentifier) GetName

func (x *RoleIdentifier) GetName() string

func (*RoleIdentifier) GetOrganization

func (x *RoleIdentifier) GetOrganization() string

func (*RoleIdentifier) ProtoMessage

func (*RoleIdentifier) ProtoMessage()

func (*RoleIdentifier) ProtoReflect

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

func (*RoleIdentifier) Reset

func (x *RoleIdentifier) Reset()

func (*RoleIdentifier) String

func (x *RoleIdentifier) String() string

func (*RoleIdentifier) Validate

func (m *RoleIdentifier) Validate() error

Validate checks the field values on RoleIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RoleIdentifier) ValidateAll

func (m *RoleIdentifier) ValidateAll() error

ValidateAll checks the field values on RoleIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RoleIdentifierMultiError, or nil if none found.

type RoleIdentifierMultiError

type RoleIdentifierMultiError []error

RoleIdentifierMultiError is an error wrapping multiple validation errors returned by RoleIdentifier.ValidateAll() if the designated constraints aren't met.

func (RoleIdentifierMultiError) AllErrors

func (m RoleIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RoleIdentifierMultiError) Error

func (m RoleIdentifierMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type RoleIdentifierValidationError

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

RoleIdentifierValidationError is the validation error returned by RoleIdentifier.Validate if the designated constraints aren't met.

func (RoleIdentifierValidationError) Cause

Cause function returns cause value.

func (RoleIdentifierValidationError) Error

Error satisfies the builtin error interface

func (RoleIdentifierValidationError) ErrorName

func (e RoleIdentifierValidationError) ErrorName() string

ErrorName returns error name.

func (RoleIdentifierValidationError) Field

Field function returns field value.

func (RoleIdentifierValidationError) Key

Key function returns key value.

func (RoleIdentifierValidationError) Reason

Reason function returns reason value.

type RoleMultiError

type RoleMultiError []error

RoleMultiError is an error wrapping multiple validation errors returned by Role.ValidateAll() if the designated constraints aren't met.

func (RoleMultiError) AllErrors

func (m RoleMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RoleMultiError) Error

func (m RoleMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type RoleSpec

type RoleSpec struct {

	// Optional, human readable description for this role.
	Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*RoleSpec) Descriptor deprecated

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

Deprecated: Use RoleSpec.ProtoReflect.Descriptor instead.

func (*RoleSpec) GetDescription

func (x *RoleSpec) GetDescription() string

func (*RoleSpec) ProtoMessage

func (*RoleSpec) ProtoMessage()

func (*RoleSpec) ProtoReflect

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

func (*RoleSpec) Reset

func (x *RoleSpec) Reset()

func (*RoleSpec) String

func (x *RoleSpec) String() string

func (*RoleSpec) Validate

func (m *RoleSpec) Validate() error

Validate checks the field values on RoleSpec with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RoleSpec) ValidateAll

func (m *RoleSpec) ValidateAll() error

ValidateAll checks the field values on RoleSpec with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RoleSpecMultiError, or nil if none found.

type RoleSpecMultiError

type RoleSpecMultiError []error

RoleSpecMultiError is an error wrapping multiple validation errors returned by RoleSpec.ValidateAll() if the designated constraints aren't met.

func (RoleSpecMultiError) AllErrors

func (m RoleSpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RoleSpecMultiError) Error

func (m RoleSpecMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type RoleSpecValidationError

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

RoleSpecValidationError is the validation error returned by RoleSpec.Validate if the designated constraints aren't met.

func (RoleSpecValidationError) Cause

func (e RoleSpecValidationError) Cause() error

Cause function returns cause value.

func (RoleSpecValidationError) Error

func (e RoleSpecValidationError) Error() string

Error satisfies the builtin error interface

func (RoleSpecValidationError) ErrorName

func (e RoleSpecValidationError) ErrorName() string

ErrorName returns error name.

func (RoleSpecValidationError) Field

func (e RoleSpecValidationError) Field() string

Field function returns field value.

func (RoleSpecValidationError) Key

func (e RoleSpecValidationError) Key() bool

Key function returns key value.

func (RoleSpecValidationError) Reason

func (e RoleSpecValidationError) Reason() string

Reason function returns reason value.

type RoleType

type RoleType int32

A role type is a short-hand for understanding the permissions associated with a role. Boilerplate role types include a conventional collection of permissions Custom role types include a user-defined collection of permissions

const (
	// Default group. Not used in practice.
	RoleType_ROLE_TYPE_NONE RoleType = 0
	// The admin role has a collective set of permissions to do everything
	RoleType_ROLE_TYPE_ADMIN RoleType = 1
	// The contributor role has a collective set of permissions to view inventory, view executions, write inventory and create executions
	RoleType_ROLE_TYPE_CONTRIBUTOR RoleType = 2
	// The viewer role has a collective set of permissions to view inventory and view executions
	RoleType_ROLE_TYPE_VIEWER RoleType = 3
	// Represent a role with user-defined sets of permissions.
	RoleType_ROLE_TYPE_CUSTOM RoleType = 4
	// The role with permissions to administer a specific customer cluster.
	RoleType_ROLE_TYPE_CLUSTER_MANAGER RoleType = 5
	// Role with permissions specific to administer flyte project(s).
	RoleType_ROLE_TYPE_FLYTE_PROJECT_ADMIN RoleType = 6
	// The viewer role for serverless
	RoleType_ROLE_TYPE_SERVERLESS_VIEWER RoleType = 7
	// The contributor role for serverless
	RoleType_ROLE_TYPE_SERVERLESS_CONTRIBUTOR RoleType = 8
	// The support role would have contributor permissions plus the access to support endpoints
	RoleType_ROLE_TYPE_SUPPORT RoleType = 9
)

func (RoleType) Descriptor

func (RoleType) Descriptor() protoreflect.EnumDescriptor

func (RoleType) Enum

func (x RoleType) Enum() *RoleType

func (RoleType) EnumDescriptor deprecated

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

Deprecated: Use RoleType.Descriptor instead.

func (RoleType) Number

func (x RoleType) Number() protoreflect.EnumNumber

func (RoleType) String

func (x RoleType) String() string

func (RoleType) Type

type RoleValidationError

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

RoleValidationError is the validation error returned by Role.Validate if the designated constraints aren't met.

func (RoleValidationError) Cause

func (e RoleValidationError) Cause() error

Cause function returns cause value.

func (RoleValidationError) Error

func (e RoleValidationError) Error() string

Error satisfies the builtin error interface

func (RoleValidationError) ErrorName

func (e RoleValidationError) ErrorName() string

ErrorName returns error name.

func (RoleValidationError) Field

func (e RoleValidationError) Field() string

Field function returns field value.

func (RoleValidationError) Key

func (e RoleValidationError) Key() bool

Key function returns key value.

func (RoleValidationError) Reason

func (e RoleValidationError) Reason() string

Reason function returns reason value.

type RunIdentifier

type RunIdentifier struct {

	// Org this run belongs to.
	Org string `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"`
	// Project this run belongs to.
	Project string `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"`
	// Domain this run belongs to.
	Domain string `protobuf:"bytes,3,opt,name=domain,proto3" json:"domain,omitempty"`
	// Name of the run. Must be unique across all runs in this org, project, and domain pairing.
	Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

Unique identifier of a run.

func (*RunIdentifier) Descriptor deprecated

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

Deprecated: Use RunIdentifier.ProtoReflect.Descriptor instead.

func (*RunIdentifier) GetDomain

func (x *RunIdentifier) GetDomain() string

func (*RunIdentifier) GetName

func (x *RunIdentifier) GetName() string

func (*RunIdentifier) GetOrg

func (x *RunIdentifier) GetOrg() string

func (*RunIdentifier) GetProject

func (x *RunIdentifier) GetProject() string

func (*RunIdentifier) ProtoMessage

func (*RunIdentifier) ProtoMessage()

func (*RunIdentifier) ProtoReflect

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

func (*RunIdentifier) Reset

func (x *RunIdentifier) Reset()

func (*RunIdentifier) String

func (x *RunIdentifier) String() string

func (*RunIdentifier) Validate

func (m *RunIdentifier) Validate() error

Validate checks the field values on RunIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RunIdentifier) ValidateAll

func (m *RunIdentifier) ValidateAll() error

ValidateAll checks the field values on RunIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RunIdentifierMultiError, or nil if none found.

type RunIdentifierMultiError

type RunIdentifierMultiError []error

RunIdentifierMultiError is an error wrapping multiple validation errors returned by RunIdentifier.ValidateAll() if the designated constraints aren't met.

func (RunIdentifierMultiError) AllErrors

func (m RunIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RunIdentifierMultiError) Error

func (m RunIdentifierMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type RunIdentifierValidationError

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

RunIdentifierValidationError is the validation error returned by RunIdentifier.Validate if the designated constraints aren't met.

func (RunIdentifierValidationError) Cause

Cause function returns cause value.

func (RunIdentifierValidationError) Error

Error satisfies the builtin error interface

func (RunIdentifierValidationError) ErrorName

func (e RunIdentifierValidationError) ErrorName() string

ErrorName returns error name.

func (RunIdentifierValidationError) Field

Field function returns field value.

func (RunIdentifierValidationError) Key

Key function returns key value.

func (RunIdentifierValidationError) Reason

Reason function returns reason value.

type RuntimeMetadata

type RuntimeMetadata struct {

	// Type of runtime.
	Type RuntimeMetadata_RuntimeType `protobuf:"varint,1,opt,name=type,proto3,enum=flyteidl.common.RuntimeMetadata_RuntimeType" json:"type,omitempty"`
	// Version of the runtime. All versions should be backward compatible. However, certain cases call for version
	// checks to ensure tighter validation or setting expectations.
	Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	// +optional It can be used to provide extra information about the runtime (e.g. python, golang... etc.).
	Flavor string `protobuf:"bytes,3,opt,name=flavor,proto3" json:"flavor,omitempty"`
	// contains filtered or unexported fields
}

Runtime information. This is loosely defined to allow for extensibility.

func (*RuntimeMetadata) Descriptor deprecated

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

Deprecated: Use RuntimeMetadata.ProtoReflect.Descriptor instead.

func (*RuntimeMetadata) GetFlavor

func (x *RuntimeMetadata) GetFlavor() string

func (*RuntimeMetadata) GetType

func (*RuntimeMetadata) GetVersion

func (x *RuntimeMetadata) GetVersion() string

func (*RuntimeMetadata) ProtoMessage

func (*RuntimeMetadata) ProtoMessage()

func (*RuntimeMetadata) ProtoReflect

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

func (*RuntimeMetadata) Reset

func (x *RuntimeMetadata) Reset()

func (*RuntimeMetadata) String

func (x *RuntimeMetadata) String() string

func (*RuntimeMetadata) Validate

func (m *RuntimeMetadata) Validate() error

Validate checks the field values on RuntimeMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RuntimeMetadata) ValidateAll

func (m *RuntimeMetadata) ValidateAll() error

ValidateAll checks the field values on RuntimeMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RuntimeMetadataMultiError, or nil if none found.

type RuntimeMetadataMultiError

type RuntimeMetadataMultiError []error

RuntimeMetadataMultiError is an error wrapping multiple validation errors returned by RuntimeMetadata.ValidateAll() if the designated constraints aren't met.

func (RuntimeMetadataMultiError) AllErrors

func (m RuntimeMetadataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RuntimeMetadataMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type RuntimeMetadataValidationError

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

RuntimeMetadataValidationError is the validation error returned by RuntimeMetadata.Validate if the designated constraints aren't met.

func (RuntimeMetadataValidationError) Cause

Cause function returns cause value.

func (RuntimeMetadataValidationError) Error

Error satisfies the builtin error interface

func (RuntimeMetadataValidationError) ErrorName

func (e RuntimeMetadataValidationError) ErrorName() string

ErrorName returns error name.

func (RuntimeMetadataValidationError) Field

Field function returns field value.

func (RuntimeMetadataValidationError) Key

Key function returns key value.

func (RuntimeMetadataValidationError) Reason

Reason function returns reason value.

type RuntimeMetadata_RuntimeType

type RuntimeMetadata_RuntimeType int32
const (
	RuntimeMetadata_OTHER     RuntimeMetadata_RuntimeType = 0
	RuntimeMetadata_FLYTE_SDK RuntimeMetadata_RuntimeType = 1
	RuntimeMetadata_UNION_SDK RuntimeMetadata_RuntimeType = 2
)

func (RuntimeMetadata_RuntimeType) Descriptor

func (RuntimeMetadata_RuntimeType) Enum

func (RuntimeMetadata_RuntimeType) EnumDescriptor deprecated

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

Deprecated: Use RuntimeMetadata_RuntimeType.Descriptor instead.

func (RuntimeMetadata_RuntimeType) Number

func (RuntimeMetadata_RuntimeType) String

func (RuntimeMetadata_RuntimeType) Type

type Sort

type Sort struct {

	// Indicates an attribute to sort the response values.
	// +required
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// Indicates the direction to apply sort key for response values.
	// +optional
	Direction Sort_Direction `protobuf:"varint,2,opt,name=direction,proto3,enum=flyteidl.common.Sort_Direction" json:"direction,omitempty"`
	// contains filtered or unexported fields
}

Specifies sort ordering in a list request.

func (*Sort) Descriptor deprecated

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

Deprecated: Use Sort.ProtoReflect.Descriptor instead.

func (*Sort) GetDirection

func (x *Sort) GetDirection() Sort_Direction

func (*Sort) GetKey

func (x *Sort) GetKey() string

func (*Sort) ProtoMessage

func (*Sort) ProtoMessage()

func (*Sort) ProtoReflect

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

func (*Sort) Reset

func (x *Sort) Reset()

func (*Sort) String

func (x *Sort) String() string

func (*Sort) Validate

func (m *Sort) Validate() error

Validate checks the field values on Sort with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Sort) ValidateAll

func (m *Sort) ValidateAll() error

ValidateAll checks the field values on Sort with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SortMultiError, or nil if none found.

type SortMultiError

type SortMultiError []error

SortMultiError is an error wrapping multiple validation errors returned by Sort.ValidateAll() if the designated constraints aren't met.

func (SortMultiError) AllErrors

func (m SortMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SortMultiError) Error

func (m SortMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SortValidationError

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

SortValidationError is the validation error returned by Sort.Validate if the designated constraints aren't met.

func (SortValidationError) Cause

func (e SortValidationError) Cause() error

Cause function returns cause value.

func (SortValidationError) Error

func (e SortValidationError) Error() string

Error satisfies the builtin error interface

func (SortValidationError) ErrorName

func (e SortValidationError) ErrorName() string

ErrorName returns error name.

func (SortValidationError) Field

func (e SortValidationError) Field() string

Field function returns field value.

func (SortValidationError) Key

func (e SortValidationError) Key() bool

Key function returns key value.

func (SortValidationError) Reason

func (e SortValidationError) Reason() string

Reason function returns reason value.

type Sort_Direction

type Sort_Direction int32
const (
	// By default, fields are sorted in descending order.
	Sort_DESCENDING Sort_Direction = 0
	Sort_ASCENDING  Sort_Direction = 1
)

func (Sort_Direction) Descriptor

func (Sort_Direction) Enum

func (x Sort_Direction) Enum() *Sort_Direction

func (Sort_Direction) EnumDescriptor deprecated

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

Deprecated: Use Sort_Direction.Descriptor instead.

func (Sort_Direction) Number

func (Sort_Direction) String

func (x Sort_Direction) String() string

func (Sort_Direction) Type

type User

type User struct {
	Id   *UserIdentifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Spec *UserSpec       `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"`
	// Deprecated: Marked as deprecated in common/identity.proto.
	Roles    []*Role   `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
	Policies []*Policy `protobuf:"bytes,4,rep,name=policies,proto3" json:"policies,omitempty"`
	// contains filtered or unexported fields
}

Encapsulates user profile details for a member of an organization.

func (*User) Descriptor deprecated

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetId

func (x *User) GetId() *UserIdentifier

func (*User) GetPolicies

func (x *User) GetPolicies() []*Policy

func (*User) GetRoles deprecated

func (x *User) GetRoles() []*Role

Deprecated: Marked as deprecated in common/identity.proto.

func (*User) GetSpec

func (x *User) GetSpec() *UserSpec

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) ProtoReflect

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

func (*User) Reset

func (x *User) Reset()

func (*User) String

func (x *User) String() string

func (*User) Validate

func (m *User) Validate() error

Validate checks the field values on User with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*User) ValidateAll

func (m *User) ValidateAll() error

ValidateAll checks the field values on User with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserMultiError, or nil if none found.

type UserIdentifier

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

func (*UserIdentifier) Descriptor deprecated

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

Deprecated: Use UserIdentifier.ProtoReflect.Descriptor instead.

func (*UserIdentifier) GetSubject

func (x *UserIdentifier) GetSubject() string

func (*UserIdentifier) ProtoMessage

func (*UserIdentifier) ProtoMessage()

func (*UserIdentifier) ProtoReflect

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

func (*UserIdentifier) Reset

func (x *UserIdentifier) Reset()

func (*UserIdentifier) String

func (x *UserIdentifier) String() string

func (*UserIdentifier) Validate

func (m *UserIdentifier) Validate() error

Validate checks the field values on UserIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserIdentifier) ValidateAll

func (m *UserIdentifier) ValidateAll() error

ValidateAll checks the field values on UserIdentifier with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserIdentifierMultiError, or nil if none found.

type UserIdentifierMultiError

type UserIdentifierMultiError []error

UserIdentifierMultiError is an error wrapping multiple validation errors returned by UserIdentifier.ValidateAll() if the designated constraints aren't met.

func (UserIdentifierMultiError) AllErrors

func (m UserIdentifierMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserIdentifierMultiError) Error

func (m UserIdentifierMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserIdentifierValidationError

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

UserIdentifierValidationError is the validation error returned by UserIdentifier.Validate if the designated constraints aren't met.

func (UserIdentifierValidationError) Cause

Cause function returns cause value.

func (UserIdentifierValidationError) Error

Error satisfies the builtin error interface

func (UserIdentifierValidationError) ErrorName

func (e UserIdentifierValidationError) ErrorName() string

ErrorName returns error name.

func (UserIdentifierValidationError) Field

Field function returns field value.

func (UserIdentifierValidationError) Key

Key function returns key value.

func (UserIdentifierValidationError) Reason

Reason function returns reason value.

type UserMultiError

type UserMultiError []error

UserMultiError is an error wrapping multiple validation errors returned by User.ValidateAll() if the designated constraints aren't met.

func (UserMultiError) AllErrors

func (m UserMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserMultiError) Error

func (m UserMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserSpec

type UserSpec struct {
	FirstName    string   `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
	LastName     string   `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
	Email        string   `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	Organization string   `protobuf:"bytes,4,opt,name=organization,proto3" json:"organization,omitempty"`
	UserHandle   string   `protobuf:"bytes,5,opt,name=user_handle,json=userHandle,proto3" json:"user_handle,omitempty"`
	Groups       []string `protobuf:"bytes,6,rep,name=groups,proto3" json:"groups,omitempty"`
	PhotoUrl     string   `protobuf:"bytes,7,opt,name=photo_url,json=photoUrl,proto3" json:"photo_url,omitempty"`
	// contains filtered or unexported fields
}

func (*UserSpec) Descriptor deprecated

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

Deprecated: Use UserSpec.ProtoReflect.Descriptor instead.

func (*UserSpec) GetEmail

func (x *UserSpec) GetEmail() string

func (*UserSpec) GetFirstName

func (x *UserSpec) GetFirstName() string

func (*UserSpec) GetGroups

func (x *UserSpec) GetGroups() []string

func (*UserSpec) GetLastName

func (x *UserSpec) GetLastName() string

func (*UserSpec) GetOrganization

func (x *UserSpec) GetOrganization() string

func (*UserSpec) GetPhotoUrl

func (x *UserSpec) GetPhotoUrl() string

func (*UserSpec) GetUserHandle

func (x *UserSpec) GetUserHandle() string

func (*UserSpec) ProtoMessage

func (*UserSpec) ProtoMessage()

func (*UserSpec) ProtoReflect

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

func (*UserSpec) Reset

func (x *UserSpec) Reset()

func (*UserSpec) String

func (x *UserSpec) String() string

func (*UserSpec) Validate

func (m *UserSpec) Validate() error

Validate checks the field values on UserSpec with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserSpec) ValidateAll

func (m *UserSpec) ValidateAll() error

ValidateAll checks the field values on UserSpec with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserSpecMultiError, or nil if none found.

type UserSpecMultiError

type UserSpecMultiError []error

UserSpecMultiError is an error wrapping multiple validation errors returned by UserSpec.ValidateAll() if the designated constraints aren't met.

func (UserSpecMultiError) AllErrors

func (m UserSpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserSpecMultiError) Error

func (m UserSpecMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserSpecValidationError

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

UserSpecValidationError is the validation error returned by UserSpec.Validate if the designated constraints aren't met.

func (UserSpecValidationError) Cause

func (e UserSpecValidationError) Cause() error

Cause function returns cause value.

func (UserSpecValidationError) Error

func (e UserSpecValidationError) Error() string

Error satisfies the builtin error interface

func (UserSpecValidationError) ErrorName

func (e UserSpecValidationError) ErrorName() string

ErrorName returns error name.

func (UserSpecValidationError) Field

func (e UserSpecValidationError) Field() string

Field function returns field value.

func (UserSpecValidationError) Key

func (e UserSpecValidationError) Key() bool

Key function returns key value.

func (UserSpecValidationError) Reason

func (e UserSpecValidationError) Reason() string

Reason function returns reason value.

type UserValidationError

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

UserValidationError is the validation error returned by User.Validate if the designated constraints aren't met.

func (UserValidationError) Cause

func (e UserValidationError) Cause() error

Cause function returns cause value.

func (UserValidationError) Error

func (e UserValidationError) Error() string

Error satisfies the builtin error interface

func (UserValidationError) ErrorName

func (e UserValidationError) ErrorName() string

ErrorName returns error name.

func (UserValidationError) Field

func (e UserValidationError) Field() string

Field function returns field value.

func (UserValidationError) Key

func (e UserValidationError) Key() bool

Key function returns key value.

func (UserValidationError) Reason

func (e UserValidationError) Reason() string

Reason function returns reason value.

type Workflow

type Workflow struct {
	Name    string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Project *Project `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"`
	// contains filtered or unexported fields
}

func (*Workflow) Descriptor deprecated

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

Deprecated: Use Workflow.ProtoReflect.Descriptor instead.

func (*Workflow) GetName

func (x *Workflow) GetName() string

func (*Workflow) GetProject

func (x *Workflow) GetProject() *Project

func (*Workflow) ProtoMessage

func (*Workflow) ProtoMessage()

func (*Workflow) ProtoReflect

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

func (*Workflow) Reset

func (x *Workflow) Reset()

func (*Workflow) String

func (x *Workflow) String() string

func (*Workflow) Validate

func (m *Workflow) Validate() error

Validate checks the field values on Workflow with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Workflow) ValidateAll

func (m *Workflow) ValidateAll() error

ValidateAll checks the field values on Workflow with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in WorkflowMultiError, or nil if none found.

type WorkflowMultiError

type WorkflowMultiError []error

WorkflowMultiError is an error wrapping multiple validation errors returned by Workflow.ValidateAll() if the designated constraints aren't met.

func (WorkflowMultiError) AllErrors

func (m WorkflowMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WorkflowMultiError) Error

func (m WorkflowMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type WorkflowValidationError

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

WorkflowValidationError is the validation error returned by Workflow.Validate if the designated constraints aren't met.

func (WorkflowValidationError) Cause

func (e WorkflowValidationError) Cause() error

Cause function returns cause value.

func (WorkflowValidationError) Error

func (e WorkflowValidationError) Error() string

Error satisfies the builtin error interface

func (WorkflowValidationError) ErrorName

func (e WorkflowValidationError) ErrorName() string

ErrorName returns error name.

func (WorkflowValidationError) Field

func (e WorkflowValidationError) Field() string

Field function returns field value.

func (WorkflowValidationError) Key

func (e WorkflowValidationError) Key() bool

Key function returns key value.

func (WorkflowValidationError) Reason

func (e WorkflowValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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