From 45225f6c3f70ca3b9a4d346076359813fd2a3ed0 Mon Sep 17 00:00:00 2001 From: Iaroslav Ciupin Date: Sat, 20 Jan 2024 17:38:49 +0200 Subject: [PATCH] integration test + make generate Signed-off-by: Iaroslav Ciupin --- flyteadmin/tests/shared.go | 5 +- flyteadmin/tests/task_execution_test.go | 5 +- flyteadmin/tests/workflow_test.go | 122 + .../gen/pb-cpp/flyteidl/service/admin.pb.cc | 688 +- .../gen/pb-go/flyteidl/service/admin.pb.go | 387 +- .../gen/pb-go/flyteidl/service/admin.pb.gw.go | 95 + .../pb-go/flyteidl/service/admin.swagger.json | 7 + .../flyteidl/service/flyteadmin/README.md | 2 + .../service/flyteadmin/api/swagger.yaml | 39 + .../service/flyteadmin/api_admin_service.go | 104 + .../gen/pb-go/flyteidl/service/openapi.go | 4 +- .../gen/pb-java/flyteidl/service/Admin.java | 686 +- flyteidl/gen/pb-js/flyteidl.d.ts | 26268 ------- flyteidl/gen/pb-js/flyteidl.js | 61548 ---------------- .../pb_python/flyteidl/service/admin_pb2.py | 6 +- .../flyteidl/service/flyteadmin/README.md | 2 + .../flyteadmin/api/admin_service_api.py | 125 + .../flyteadmin/test/test_admin_service_api.py | 7 + flyteidl/generate_protos.sh | 2 +- 19 files changed, 1423 insertions(+), 88679 deletions(-) delete mode 100644 flyteidl/gen/pb-js/flyteidl.d.ts delete mode 100644 flyteidl/gen/pb-js/flyteidl.js diff --git a/flyteadmin/tests/shared.go b/flyteadmin/tests/shared.go index 5c81522972e..4654fa4c09f 100644 --- a/flyteadmin/tests/shared.go +++ b/flyteadmin/tests/shared.go @@ -10,6 +10,7 @@ import ( "testing" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" @@ -48,7 +49,7 @@ func insertTasksForTests(t *testing.T, client service.AdminServiceClient) { } _, err := client.CreateTask(ctx, &req) - assert.Nil(t, err) + require.NoError(t, err) } } } @@ -105,7 +106,7 @@ func insertWorkflowsForTests(t *testing.T, client service.AdminServiceClient) { } _, err := client.CreateWorkflow(ctx, &req) - assert.Nil(t, err, "Failed to create workflow test data with err %v", err) + require.NoError(t, err, "Failed to create workflow test data with err %v", err) } } } diff --git a/flyteadmin/tests/task_execution_test.go b/flyteadmin/tests/task_execution_test.go index f0fad9d7f42..e380104684c 100644 --- a/flyteadmin/tests/task_execution_test.go +++ b/flyteadmin/tests/task_execution_test.go @@ -14,6 +14,7 @@ import ( ptypesStruct "github.com/golang/protobuf/ptypes/struct" "github.com/golang/protobuf/ptypes/timestamp" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" "google.golang.org/grpc" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" @@ -51,7 +52,7 @@ func createTaskAndNodeExecution( Id: taskIdentifier, Spec: testutils.GetValidTaskRequest().Spec, }) - assert.Nil(t, err) + require.NoError(t, err) _, err = client.CreateNodeEvent(ctx, &admin.NodeExecutionEventRequest{ RequestId: "request id", @@ -64,7 +65,7 @@ func createTaskAndNodeExecution( OccurredAt: occurredAtProto, }, }) - assert.Nil(t, err) + require.NoError(t, err) } func TestCreateTaskExecution(t *testing.T) { diff --git a/flyteadmin/tests/workflow_test.go b/flyteadmin/tests/workflow_test.go index ad4140b0350..5bddb2df9c5 100644 --- a/flyteadmin/tests/workflow_test.go +++ b/flyteadmin/tests/workflow_test.go @@ -6,16 +6,21 @@ package tests import ( "context" "fmt" + "io" "io/ioutil" "net/http" "testing" + "time" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "google.golang.org/protobuf/types/known/timestamppb" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" ) func TestCreateWorkflow(t *testing.T) { @@ -81,6 +86,123 @@ func TestGetWorkflows(t *testing.T) { t.Run("TestListWorkflow_FiltersHTTP", testListWorkflow_FiltersHTTP) } +func TestGetDynamicNodeWorkflow(t *testing.T) { + ctx := context.Background() + truncateAllTablesForTestingOnly() + populateWorkflowExecutionForTestingOnly(project, domain, name) + client, conn := GetTestAdminServiceClient() + defer conn.Close() + + occurredAt := time.Now() + occurredAtProto := timestamppb.New(occurredAt) + childOccurredAt := occurredAt.Add(time.Minute) + childOccurredAtProto := timestamppb.New(childOccurredAt) + + createTaskAndNodeExecution(ctx, t, client, conn, occurredAtProto) + + _, err := client.CreateTaskEvent(ctx, &admin.TaskExecutionEventRequest{ + RequestId: "request id", + Event: &event.TaskExecutionEvent{ + TaskId: taskIdentifier, + ParentNodeExecutionId: nodeExecutionId, + Phase: core.TaskExecution_RUNNING, + RetryAttempt: 1, + OccurredAt: occurredAtProto, + }, + }) + require.NoError(t, err) + + wfIdentifier := core.Identifier{ + ResourceType: core.ResourceType_WORKFLOW, + Project: "admintests", + Domain: "development", + Name: "name", + Version: "version", + } + wfClosure := &core.CompiledWorkflowClosure{ + Primary: &core.CompiledWorkflow{ + Template: &core.WorkflowTemplate{ + Id: &wfIdentifier, + Interface: &core.TypedInterface{}, + Nodes: []*core.Node{ + { + Id: "I'm a node", + Target: &core.Node_TaskNode{ + TaskNode: &core.TaskNode{ + Reference: &core.TaskNode_ReferenceId{ + ReferenceId: taskIdentifier, + }, + }, + }, + }, + }, + }, + }, + } + childNodeExecutionID := &core.NodeExecutionIdentifier{ + NodeId: "child_node", + ExecutionId: &core.WorkflowExecutionIdentifier{ + Project: project, + Domain: domain, + Name: name, + }, + } + _, err = client.CreateNodeEvent(ctx, &admin.NodeExecutionEventRequest{ + RequestId: "request id", + Event: &event.NodeExecutionEvent{ + Id: childNodeExecutionID, + Phase: core.NodeExecution_RUNNING, + InputValue: &event.NodeExecutionEvent_InputUri{ + InputUri: inputURI, + }, + OccurredAt: childOccurredAtProto, + ParentTaskMetadata: &event.ParentTaskExecutionMetadata{ + Id: taskExecutionIdentifier, + }, + IsDynamic: true, + IsParent: true, + TargetMetadata: &event.NodeExecutionEvent_TaskNodeMetadata{ + TaskNodeMetadata: &event.TaskNodeMetadata{ + DynamicWorkflow: &event.DynamicWorkflowNodeMetadata{ + Id: &wfIdentifier, + CompiledWorkflow: wfClosure, + DynamicJobSpecUri: "s3://bla-bla", + }, + }, + }, + }, + }) + require.NoError(t, err) + + t.Run("TestGetDynamicNodeWorkflowGrpc", func(t *testing.T) { + resp, err := client.GetDynamicNodeWorkflow(ctx, &admin.GetDynamicNodeWorkflowRequest{ + Id: childNodeExecutionID, + }) + + assert.NoError(t, err) + assert.True(t, proto.Equal(wfClosure, resp.GetCompiledWorkflow())) + }) + + t.Run("TestGetDynamicNodeWorkflowHttp", func(t *testing.T) { + url := fmt.Sprintf("%s/api/v1/dynamic_node_workflow/project/domain/execution%%20name/child_node", GetTestHostEndpoint()) + getRequest, err := http.NewRequest(http.MethodGet, url, nil) + require.NoError(t, err) + addHTTPRequestHeaders(getRequest) + + httpClient := &http.Client{} + resp, err := httpClient.Do(getRequest) + require.NoError(t, err) + defer resp.Body.Close() + + body, err := io.ReadAll(resp.Body) + require.NoError(t, err) + require.Equal(t, http.StatusOK, resp.StatusCode, "unexpected resp: %s", string(body)) + wfResp := &admin.DynamicNodeWorkflowResponse{} + require.NoError(t, proto.Unmarshal(body, wfResp)) + assert.True(t, proto.Equal(wfClosure, wfResp.GetCompiledWorkflow())) + }) +} + func testGetWorkflowGrpc(t *testing.T) { ctx := context.Background() client, conn := GetTestAdminServiceClient() diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc index 2824f12e1cd..c5fc72b0159 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc @@ -52,7 +52,7 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "admin/task_execution.proto\032\034flyteidl/adm" "in/version.proto\032\033flyteidl/admin/common." "proto\032\'flyteidl/admin/description_entity" - ".proto2\227v\n\014AdminService\022\216\001\n\nCreateTask\022!" + ".proto2\214x\n\014AdminService\022\216\001\n\nCreateTask\022!" ".flyteidl.admin.TaskCreateRequest\032\".flyt" "eidl.admin.TaskCreateResponse\"9\202\323\344\223\0023\"\r/" "api/v1/tasks:\001*Z\037\"\032/api/v1/tasks/org/{id" @@ -84,360 +84,366 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = ".project}/{id.domain}/{id.name}/{id.vers" "ion}ZP\022N/api/v1/workflows/org/{id.org}/{" "id.project}/{id.domain}/{id.name}/{id.ve" - "rsion}\022\321\001\n\017ListWorkflowIds\0220.flyteidl.ad" - "min.NamedEntityIdentifierListRequest\032).f" - "lyteidl.admin.NamedEntityIdentifierList\"" - "a\202\323\344\223\002[\022\'/api/v1/workflow_ids/{project}/" - "{domain}Z0\022./api/v1/workflows/org/{org}/" - "{project}/{domain}\022\300\002\n\rListWorkflows\022#.f" - "lyteidl.admin.ResourceListRequest\032\034.flyt" - "eidl.admin.WorkflowList\"\353\001\202\323\344\223\002\344\001\0224/api/" - "v1/workflows/{id.project}/{id.domain}/{i" - "d.name}ZC\022A/api/v1/workflows/org/{id.org" - "}/{id.project}/{id.domain}/{id.name}Z,\022*" + "rsion}\022\362\001\n\026GetDynamicNodeWorkflow\022-.flyt" + "eidl.admin.GetDynamicNodeWorkflowRequest" + "\032+.flyteidl.admin.DynamicNodeWorkflowRes" + "ponse\"|\202\323\344\223\002v\022t/api/v1/dynamic_node_work" + "flow/{id.execution_id.project}/{id.execu" + "tion_id.domain}/{id.execution_id.name}/{" + "id.node_id}\022\321\001\n\017ListWorkflowIds\0220.flytei" + "dl.admin.NamedEntityIdentifierListReques" + "t\032).flyteidl.admin.NamedEntityIdentifier" + "List\"a\202\323\344\223\002[\022\'/api/v1/workflow_ids/{proj" + "ect}/{domain}Z0\022./api/v1/workflows/org/{" + "org}/{project}/{domain}\022\300\002\n\rListWorkflow" + "s\022#.flyteidl.admin.ResourceListRequest\032\034" + ".flyteidl.admin.WorkflowList\"\353\001\202\323\344\223\002\344\001\0224" "/api/v1/workflows/{id.project}/{id.domai" - "n}Z9\0227/api/v1/workflows/org/{id.org}/{id" - ".project}/{id.domain}\022\256\001\n\020CreateLaunchPl" - "an\022\'.flyteidl.admin.LaunchPlanCreateRequ" - "est\032(.flyteidl.admin.LaunchPlanCreateRes" - "ponse\"G\202\323\344\223\002A\"\024/api/v1/launch_plans:\001*Z&" - "\"!/api/v1/launch_plans/org/{id.org}:\001*\022\362" - "\001\n\rGetLaunchPlan\022 .flyteidl.admin.Object" - "GetRequest\032\032.flyteidl.admin.LaunchPlan\"\242" - "\001\202\323\344\223\002\233\001\022D/api/v1/launch_plans/{id.proje" - "ct}/{id.domain}/{id.name}/{id.version}ZS" - "\022Q/api/v1/launch_plans/org/{id.org}/{id." + "n}/{id.name}ZC\022A/api/v1/workflows/org/{i" + "d.org}/{id.project}/{id.domain}/{id.name" + "}Z,\022*/api/v1/workflows/{id.project}/{id." + "domain}Z9\0227/api/v1/workflows/org/{id.org" + "}/{id.project}/{id.domain}\022\256\001\n\020CreateLau" + "nchPlan\022\'.flyteidl.admin.LaunchPlanCreat" + "eRequest\032(.flyteidl.admin.LaunchPlanCrea" + "teResponse\"G\202\323\344\223\002A\"\024/api/v1/launch_plans" + ":\001*Z&\"!/api/v1/launch_plans/org/{id.org}" + ":\001*\022\362\001\n\rGetLaunchPlan\022 .flyteidl.admin.O" + "bjectGetRequest\032\032.flyteidl.admin.LaunchP" + "lan\"\242\001\202\323\344\223\002\233\001\022D/api/v1/launch_plans/{id." "project}/{id.domain}/{id.name}/{id.versi" - "on}\022\363\001\n\023GetActiveLaunchPlan\022\'.flyteidl.a" - "dmin.ActiveLaunchPlanRequest\032\032.flyteidl." - "admin.LaunchPlan\"\226\001\202\323\344\223\002\217\001\022>/api/v1/acti" - "ve_launch_plans/{id.project}/{id.domain}" - "/{id.name}ZM\022K/api/v1/active_launch_plan" - "s/org/{id.org}/{id.project}/{id.domain}/" - "{id.name}\022\330\001\n\025ListActiveLaunchPlans\022+.fl" - "yteidl.admin.ActiveLaunchPlanListRequest" - "\032\036.flyteidl.admin.LaunchPlanList\"r\202\323\344\223\002l" - "\022./api/v1/active_launch_plans/{project}/" - "{domain}Z:\0228/api/v1/active_launch_plans/" - "org/{org}/{project}/{domain}\022\334\001\n\021ListLau" - "nchPlanIds\0220.flyteidl.admin.NamedEntityI" - "dentifierListRequest\032).flyteidl.admin.Na" - "medEntityIdentifierList\"j\202\323\344\223\002d\022*/api/v1" - "/launch_plan_ids/{project}/{domain}Z6\0224/" - "api/v1/launch_plan_ids/org/{org}/{projec" - "t}/{domain}\022\320\002\n\017ListLaunchPlans\022#.flytei" - "dl.admin.ResourceListRequest\032\036.flyteidl." - "admin.LaunchPlanList\"\367\001\202\323\344\223\002\360\001\0227/api/v1/" - "launch_plans/{id.project}/{id.domain}/{i" - "d.name}ZF\022D/api/v1/launch_plans/org/{id." - "org}/{id.project}/{id.domain}/{id.name}Z" - "/\022-/api/v1/launch_plans/{id.project}/{id" - ".domain}Z<\022:/api/v1/launch_plans/org/{id" - ".org}/{id.project}/{id.domain}\022\215\002\n\020Updat" - "eLaunchPlan\022\'.flyteidl.admin.LaunchPlanU" - "pdateRequest\032(.flyteidl.admin.LaunchPlan" - "UpdateResponse\"\245\001\202\323\344\223\002\236\001\032D/api/v1/launch" - "_plans/{id.project}/{id.domain}/{id.name" - "}/{id.version}:\001*ZS\032Q/api/v1/launch_plan" - "s/org/{id.org}/{id.project}/{id.domain}/" - "{id.name}/{id.version}\022\244\001\n\017CreateExecuti" - "on\022&.flyteidl.admin.ExecutionCreateReque" - "st\032\'.flyteidl.admin.ExecutionCreateRespo" - "nse\"@\202\323\344\223\002:\"\022/api/v1/executions:\001*Z!\032\034/a" - "pi/v1/executions/org/{org}:\001*\022\275\001\n\021Relaun" - "chExecution\022(.flyteidl.admin.ExecutionRe" - "launchRequest\032\'.flyteidl.admin.Execution" - "CreateResponse\"U\202\323\344\223\002O\"\033/api/v1/executio" - "ns/relaunch:\001*Z-\"(/api/v1/executions/org" - "/{id.org}/relaunch:\001*\022\271\001\n\020RecoverExecuti" - "on\022\'.flyteidl.admin.ExecutionRecoverRequ" - "est\032\'.flyteidl.admin.ExecutionCreateResp" - "onse\"S\202\323\344\223\002M\"\032/api/v1/executions/recover" - ":\001*Z,\"\'/api/v1/executions/org/{id.org}/r" - "ecover:\001*\022\334\001\n\014GetExecution\022+.flyteidl.ad" - "min.WorkflowExecutionGetRequest\032\031.flytei" - "dl.admin.Execution\"\203\001\202\323\344\223\002}\0225/api/v1/exe" - "cutions/{id.project}/{id.domain}/{id.nam" - "e}ZD\022B/api/v1/executions/org/{id.org}/{i" - "d.project}/{id.domain}/{id.name}\022\357\001\n\017Upd" - "ateExecution\022&.flyteidl.admin.ExecutionU" - "pdateRequest\032\'.flyteidl.admin.ExecutionU" - "pdateResponse\"\212\001\202\323\344\223\002\203\001\0325/api/v1/executi" - "ons/{id.project}/{id.domain}/{id.name}:\001" - "*ZG\032B/api/v1/executions/org/{id.org}/{id" - ".project}/{id.domain}/{id.name}:\001*\022\206\002\n\020G" - "etExecutionData\022/.flyteidl.admin.Workflo" - "wExecutionGetDataRequest\0320.flyteidl.admi" - "n.WorkflowExecutionGetDataResponse\"\216\001\202\323\344" - "\223\002\207\001\022:/api/v1/data/executions/{id.projec" - "t}/{id.domain}/{id.name}ZI\022G/api/v1/data" - "/executions/org/{id.org}/{id.project}/{i" - "d.domain}/{id.name}\022\305\001\n\016ListExecutions\022#" - ".flyteidl.admin.ResourceListRequest\032\035.fl" - "yteidl.admin.ExecutionList\"o\202\323\344\223\002i\022+/api" - "/v1/executions/{id.project}/{id.domain}Z" - ":\0228/api/v1/executions/org/{id.org}/{id.p" - "roject}/{id.domain}\022\370\001\n\022TerminateExecuti" - "on\022).flyteidl.admin.ExecutionTerminateRe" - "quest\032*.flyteidl.admin.ExecutionTerminat" - "eResponse\"\212\001\202\323\344\223\002\203\001*5/api/v1/executions/" - "{id.project}/{id.domain}/{id.name}:\001*ZG*" - "B/api/v1/executions/org/{id.org}/{id.pro" - "ject}/{id.domain}/{id.name}:\001*\022\342\002\n\020GetNo" - "deExecution\022\'.flyteidl.admin.NodeExecuti" - "onGetRequest\032\035.flyteidl.admin.NodeExecut" - "ion\"\205\002\202\323\344\223\002\376\001\022n/api/v1/node_executions/{" - "id.execution_id.project}/{id.execution_i" - "d.domain}/{id.execution_id.name}/{id.nod" - "e_id}Z\213\001\022\210\001/api/v1/node_executions/org/{" - "id.execution_id.org}/{id.execution_id.pr" - "oject}/{id.execution_id.domain}/{id.exec" - "ution_id.name}/{id.node_id}\022\371\002\n\022ListNode" - "Executions\022(.flyteidl.admin.NodeExecutio" - "nListRequest\032!.flyteidl.admin.NodeExecut" - "ionList\"\225\002\202\323\344\223\002\216\002\022s/api/v1/node_executio" - "ns/{workflow_execution_id.project}/{work" - "flow_execution_id.domain}/{workflow_exec" - "ution_id.name}Z\226\001\022\223\001/api/v1/node_executi" - "ons/org/{workflow_execution_id.org}/{wor" - "kflow_execution_id.project}/{workflow_ex" - "ecution_id.domain}/{workflow_execution_i" - "d.name}\022\217\010\n\031ListNodeExecutionsForTask\022/." - "flyteidl.admin.NodeExecutionForTaskListR" - "equest\032!.flyteidl.admin.NodeExecutionLis" - "t\"\235\007\202\323\344\223\002\226\007\022\251\003/api/v1/children/task_exec" - "utions/{task_execution_id.node_execution" - "_id.execution_id.project}/{task_executio" - "n_id.node_execution_id.execution_id.doma" - "in}/{task_execution_id.node_execution_id" - ".execution_id.name}/{task_execution_id.n" - "ode_execution_id.node_id}/{task_executio" - "n_id.task_id.project}/{task_execution_id" - ".task_id.domain}/{task_execution_id.task" - "_id.name}/{task_execution_id.task_id.ver" - "sion}/{task_execution_id.retry_attempt}Z" - "\347\003\022\344\003/api/v1/children/task_executions/or" - "g/{task_execution_id.node_execution_id.e" - "xecution_id.org}/{task_execution_id.node" - "_execution_id.execution_id.project}/{tas" - "k_execution_id.node_execution_id.executi" - "on_id.domain}/{task_execution_id.node_ex" - "ecution_id.execution_id.name}/{task_exec" - "ution_id.node_execution_id.node_id}/{tas" - "k_execution_id.task_id.project}/{task_ex" - "ecution_id.task_id.domain}/{task_executi" - "on_id.task_id.name}/{task_execution_id.t" - "ask_id.version}/{task_execution_id.retry" - "_attempt}\022\203\003\n\024GetNodeExecutionData\022+.fly" - "teidl.admin.NodeExecutionGetDataRequest\032" - ",.flyteidl.admin.NodeExecutionGetDataRes" - "ponse\"\217\002\202\323\344\223\002\210\002\022s/api/v1/data/node_execu" - "tions/{id.execution_id.project}/{id.exec" - "ution_id.domain}/{id.execution_id.name}/" - "{id.node_id}Z\220\001\022\215\001/api/v1/data/node_exec" - "utions/org/{id.execution_id.org}/{id.exe" - "cution_id.project}/{id.execution_id.doma" - "in}/{id.execution_id.name}/{id.node_id}\022" - "\250\001\n\017RegisterProject\022&.flyteidl.admin.Pro" - "jectRegisterRequest\032\'.flyteidl.admin.Pro" - "jectRegisterResponse\"D\202\323\344\223\002>\"\020/api/v1/pr" - "ojects:\001*Z\'\"\"/api/v1/projects/org/{proje" - "ct.org}:\001*\022\227\001\n\rUpdateProject\022\027.flyteidl." - "admin.Project\032%.flyteidl.admin.ProjectUp" - "dateResponse\"F\202\323\344\223\002@\032\025/api/v1/projects/{" - "id}:\001*Z$\032\037/api/v1/projects/org/{org}/{id" - "}:\001*\022\204\001\n\014ListProjects\022\".flyteidl.admin.P" - "rojectListRequest\032\030.flyteidl.admin.Proje" - "cts\"6\202\323\344\223\0020\022\020/api/v1/projectsZ\034\022\032/api/v1" - "/projects/org/{org}\022\325\001\n\023CreateWorkflowEv" - "ent\022-.flyteidl.admin.WorkflowExecutionEv" - "entRequest\032..flyteidl.admin.WorkflowExec" - "utionEventResponse\"_\202\323\344\223\002Y\"\030/api/v1/even" - "ts/workflows:\001*Z:\"5/api/v1/events/org/{e" - "vent.execution_id.org}/workflows:\001*\022\304\001\n\017" - "CreateNodeEvent\022).flyteidl.admin.NodeExe" - "cutionEventRequest\032*.flyteidl.admin.Node" - "ExecutionEventResponse\"Z\202\323\344\223\002T\"\024/api/v1/" - "events/nodes:\001*Z9\"4/api/v1/events/org/{e" - "vent.id.execution_id.org}/nodes:\001*\022\332\001\n\017C" - "reateTaskEvent\022).flyteidl.admin.TaskExec" - "utionEventRequest\032*.flyteidl.admin.TaskE" - "xecutionEventResponse\"p\202\323\344\223\002j\"\024/api/v1/e" - "vents/tasks:\001*ZO\"J/api/v1/events/org/{ev" - "ent.parent_node_execution_id.execution_i" - "d.org}/tasks:\001*\022\313\005\n\020GetTaskExecution\022\'.f" - "lyteidl.admin.TaskExecutionGetRequest\032\035." - "flyteidl.admin.TaskExecution\"\356\004\202\323\344\223\002\347\004\022\231" - "\002/api/v1/task_executions/{id.node_execut" - "ion_id.execution_id.project}/{id.node_ex" - "ecution_id.execution_id.domain}/{id.node" - "_execution_id.execution_id.name}/{id.nod" - "e_execution_id.node_id}/{id.task_id.proj" - "ect}/{id.task_id.domain}/{id.task_id.nam" - "e}/{id.task_id.version}/{id.retry_attemp" - "t}Z\310\002\022\305\002/api/v1/task_executions/org/{id." - "node_execution_id.execution_id.org}/{id." + "on}ZS\022Q/api/v1/launch_plans/org/{id.org}" + "/{id.project}/{id.domain}/{id.name}/{id." + "version}\022\363\001\n\023GetActiveLaunchPlan\022\'.flyte" + "idl.admin.ActiveLaunchPlanRequest\032\032.flyt" + "eidl.admin.LaunchPlan\"\226\001\202\323\344\223\002\217\001\022>/api/v1" + "/active_launch_plans/{id.project}/{id.do" + "main}/{id.name}ZM\022K/api/v1/active_launch" + "_plans/org/{id.org}/{id.project}/{id.dom" + "ain}/{id.name}\022\330\001\n\025ListActiveLaunchPlans" + "\022+.flyteidl.admin.ActiveLaunchPlanListRe" + "quest\032\036.flyteidl.admin.LaunchPlanList\"r\202" + "\323\344\223\002l\022./api/v1/active_launch_plans/{proj" + "ect}/{domain}Z:\0228/api/v1/active_launch_p" + "lans/org/{org}/{project}/{domain}\022\334\001\n\021Li" + "stLaunchPlanIds\0220.flyteidl.admin.NamedEn" + "tityIdentifierListRequest\032).flyteidl.adm" + "in.NamedEntityIdentifierList\"j\202\323\344\223\002d\022*/a" + "pi/v1/launch_plan_ids/{project}/{domain}" + "Z6\0224/api/v1/launch_plan_ids/org/{org}/{p" + "roject}/{domain}\022\320\002\n\017ListLaunchPlans\022#.f" + "lyteidl.admin.ResourceListRequest\032\036.flyt" + "eidl.admin.LaunchPlanList\"\367\001\202\323\344\223\002\360\001\0227/ap" + "i/v1/launch_plans/{id.project}/{id.domai" + "n}/{id.name}ZF\022D/api/v1/launch_plans/org" + "/{id.org}/{id.project}/{id.domain}/{id.n" + "ame}Z/\022-/api/v1/launch_plans/{id.project" + "}/{id.domain}Z<\022:/api/v1/launch_plans/or" + "g/{id.org}/{id.project}/{id.domain}\022\215\002\n\020" + "UpdateLaunchPlan\022\'.flyteidl.admin.Launch" + "PlanUpdateRequest\032(.flyteidl.admin.Launc" + "hPlanUpdateResponse\"\245\001\202\323\344\223\002\236\001\032D/api/v1/l" + "aunch_plans/{id.project}/{id.domain}/{id" + ".name}/{id.version}:\001*ZS\032Q/api/v1/launch" + "_plans/org/{id.org}/{id.project}/{id.dom" + "ain}/{id.name}/{id.version}\022\244\001\n\017CreateEx" + "ecution\022&.flyteidl.admin.ExecutionCreate" + "Request\032\'.flyteidl.admin.ExecutionCreate" + "Response\"@\202\323\344\223\002:\"\022/api/v1/executions:\001*Z" + "!\032\034/api/v1/executions/org/{org}:\001*\022\275\001\n\021R" + "elaunchExecution\022(.flyteidl.admin.Execut" + "ionRelaunchRequest\032\'.flyteidl.admin.Exec" + "utionCreateResponse\"U\202\323\344\223\002O\"\033/api/v1/exe" + "cutions/relaunch:\001*Z-\"(/api/v1/execution" + "s/org/{id.org}/relaunch:\001*\022\271\001\n\020RecoverEx" + "ecution\022\'.flyteidl.admin.ExecutionRecove" + "rRequest\032\'.flyteidl.admin.ExecutionCreat" + "eResponse\"S\202\323\344\223\002M\"\032/api/v1/executions/re" + "cover:\001*Z,\"\'/api/v1/executions/org/{id.o" + "rg}/recover:\001*\022\334\001\n\014GetExecution\022+.flytei" + "dl.admin.WorkflowExecutionGetRequest\032\031.f" + "lyteidl.admin.Execution\"\203\001\202\323\344\223\002}\0225/api/v" + "1/executions/{id.project}/{id.domain}/{i" + "d.name}ZD\022B/api/v1/executions/org/{id.or" + "g}/{id.project}/{id.domain}/{id.name}\022\357\001" + "\n\017UpdateExecution\022&.flyteidl.admin.Execu" + "tionUpdateRequest\032\'.flyteidl.admin.Execu" + "tionUpdateResponse\"\212\001\202\323\344\223\002\203\001\0325/api/v1/ex" + "ecutions/{id.project}/{id.domain}/{id.na" + "me}:\001*ZG\032B/api/v1/executions/org/{id.org" + "}/{id.project}/{id.domain}/{id.name}:\001*\022" + "\206\002\n\020GetExecutionData\022/.flyteidl.admin.Wo" + "rkflowExecutionGetDataRequest\0320.flyteidl" + ".admin.WorkflowExecutionGetDataResponse\"" + "\216\001\202\323\344\223\002\207\001\022:/api/v1/data/executions/{id.p" + "roject}/{id.domain}/{id.name}ZI\022G/api/v1" + "/data/executions/org/{id.org}/{id.projec" + "t}/{id.domain}/{id.name}\022\305\001\n\016ListExecuti" + "ons\022#.flyteidl.admin.ResourceListRequest" + "\032\035.flyteidl.admin.ExecutionList\"o\202\323\344\223\002i\022" + "+/api/v1/executions/{id.project}/{id.dom" + "ain}Z:\0228/api/v1/executions/org/{id.org}/" + "{id.project}/{id.domain}\022\370\001\n\022TerminateEx" + "ecution\022).flyteidl.admin.ExecutionTermin" + "ateRequest\032*.flyteidl.admin.ExecutionTer" + "minateResponse\"\212\001\202\323\344\223\002\203\001*5/api/v1/execut" + "ions/{id.project}/{id.domain}/{id.name}:" + "\001*ZG*B/api/v1/executions/org/{id.org}/{i" + "d.project}/{id.domain}/{id.name}:\001*\022\342\002\n\020" + "GetNodeExecution\022\'.flyteidl.admin.NodeEx" + "ecutionGetRequest\032\035.flyteidl.admin.NodeE" + "xecution\"\205\002\202\323\344\223\002\376\001\022n/api/v1/node_executi" + "ons/{id.execution_id.project}/{id.execut" + "ion_id.domain}/{id.execution_id.name}/{i" + "d.node_id}Z\213\001\022\210\001/api/v1/node_executions/" + "org/{id.execution_id.org}/{id.execution_" + "id.project}/{id.execution_id.domain}/{id" + ".execution_id.name}/{id.node_id}\022\371\002\n\022Lis" + "tNodeExecutions\022(.flyteidl.admin.NodeExe" + "cutionListRequest\032!.flyteidl.admin.NodeE" + "xecutionList\"\225\002\202\323\344\223\002\216\002\022s/api/v1/node_exe" + "cutions/{workflow_execution_id.project}/" + "{workflow_execution_id.domain}/{workflow" + "_execution_id.name}Z\226\001\022\223\001/api/v1/node_ex" + "ecutions/org/{workflow_execution_id.org}" + "/{workflow_execution_id.project}/{workfl" + "ow_execution_id.domain}/{workflow_execut" + "ion_id.name}\022\217\010\n\031ListNodeExecutionsForTa" + "sk\022/.flyteidl.admin.NodeExecutionForTask" + "ListRequest\032!.flyteidl.admin.NodeExecuti" + "onList\"\235\007\202\323\344\223\002\226\007\022\251\003/api/v1/children/task" + "_executions/{task_execution_id.node_exec" + "ution_id.execution_id.project}/{task_exe" + "cution_id.node_execution_id.execution_id" + ".domain}/{task_execution_id.node_executi" + "on_id.execution_id.name}/{task_execution" + "_id.node_execution_id.node_id}/{task_exe" + "cution_id.task_id.project}/{task_executi" + "on_id.task_id.domain}/{task_execution_id" + ".task_id.name}/{task_execution_id.task_i" + "d.version}/{task_execution_id.retry_atte" + "mpt}Z\347\003\022\344\003/api/v1/children/task_executio" + "ns/org/{task_execution_id.node_execution" + "_id.execution_id.org}/{task_execution_id" + ".node_execution_id.execution_id.project}" + "/{task_execution_id.node_execution_id.ex" + "ecution_id.domain}/{task_execution_id.no" + "de_execution_id.execution_id.name}/{task" + "_execution_id.node_execution_id.node_id}" + "/{task_execution_id.task_id.project}/{ta" + "sk_execution_id.task_id.domain}/{task_ex" + "ecution_id.task_id.name}/{task_execution" + "_id.task_id.version}/{task_execution_id." + "retry_attempt}\022\203\003\n\024GetNodeExecutionData\022" + "+.flyteidl.admin.NodeExecutionGetDataReq" + "uest\032,.flyteidl.admin.NodeExecutionGetDa" + "taResponse\"\217\002\202\323\344\223\002\210\002\022s/api/v1/data/node_" + "executions/{id.execution_id.project}/{id" + ".execution_id.domain}/{id.execution_id.n" + "ame}/{id.node_id}Z\220\001\022\215\001/api/v1/data/node" + "_executions/org/{id.execution_id.org}/{i" + "d.execution_id.project}/{id.execution_id" + ".domain}/{id.execution_id.name}/{id.node" + "_id}\022\250\001\n\017RegisterProject\022&.flyteidl.admi" + "n.ProjectRegisterRequest\032\'.flyteidl.admi" + "n.ProjectRegisterResponse\"D\202\323\344\223\002>\"\020/api/" + "v1/projects:\001*Z\'\"\"/api/v1/projects/org/{" + "project.org}:\001*\022\227\001\n\rUpdateProject\022\027.flyt" + "eidl.admin.Project\032%.flyteidl.admin.Proj" + "ectUpdateResponse\"F\202\323\344\223\002@\032\025/api/v1/proje" + "cts/{id}:\001*Z$\032\037/api/v1/projects/org/{org" + "}/{id}:\001*\022\204\001\n\014ListProjects\022\".flyteidl.ad" + "min.ProjectListRequest\032\030.flyteidl.admin." + "Projects\"6\202\323\344\223\0020\022\020/api/v1/projectsZ\034\022\032/a" + "pi/v1/projects/org/{org}\022\325\001\n\023CreateWorkf" + "lowEvent\022-.flyteidl.admin.WorkflowExecut" + "ionEventRequest\032..flyteidl.admin.Workflo" + "wExecutionEventResponse\"_\202\323\344\223\002Y\"\030/api/v1" + "/events/workflows:\001*Z:\"5/api/v1/events/o" + "rg/{event.execution_id.org}/workflows:\001*" + "\022\304\001\n\017CreateNodeEvent\022).flyteidl.admin.No" + "deExecutionEventRequest\032*.flyteidl.admin" + ".NodeExecutionEventResponse\"Z\202\323\344\223\002T\"\024/ap" + "i/v1/events/nodes:\001*Z9\"4/api/v1/events/o" + "rg/{event.id.execution_id.org}/nodes:\001*\022" + "\332\001\n\017CreateTaskEvent\022).flyteidl.admin.Tas" + "kExecutionEventRequest\032*.flyteidl.admin." + "TaskExecutionEventResponse\"p\202\323\344\223\002j\"\024/api" + "/v1/events/tasks:\001*ZO\"J/api/v1/events/or" + "g/{event.parent_node_execution_id.execut" + "ion_id.org}/tasks:\001*\022\313\005\n\020GetTaskExecutio" + "n\022\'.flyteidl.admin.TaskExecutionGetReque" + "st\032\035.flyteidl.admin.TaskExecution\"\356\004\202\323\344\223" + "\002\347\004\022\231\002/api/v1/task_executions/{id.node_e" + "xecution_id.execution_id.project}/{id.no" + "de_execution_id.execution_id.domain}/{id" + ".node_execution_id.execution_id.name}/{i" + "d.node_execution_id.node_id}/{id.task_id" + ".project}/{id.task_id.domain}/{id.task_i" + "d.name}/{id.task_id.version}/{id.retry_a" + "ttempt}Z\310\002\022\305\002/api/v1/task_executions/org" + "/{id.node_execution_id.execution_id.org}" + "/{id.node_execution_id.execution_id.proj" + "ect}/{id.node_execution_id.execution_id." + "domain}/{id.node_execution_id.execution_" + "id.name}/{id.node_execution_id.node_id}/" + "{id.task_id.project}/{id.task_id.domain}" + "/{id.task_id.name}/{id.task_id.version}/" + "{id.retry_attempt}\022\361\003\n\022ListTaskExecution" + "s\022(.flyteidl.admin.TaskExecutionListRequ" + "est\032!.flyteidl.admin.TaskExecutionList\"\215" + "\003\202\323\344\223\002\206\003\022\252\001/api/v1/task_executions/{node" + "_execution_id.execution_id.project}/{nod" + "e_execution_id.execution_id.domain}/{nod" + "e_execution_id.execution_id.name}/{node_" + "execution_id.node_id}Z\326\001\022\323\001/api/v1/task_" + "executions/org/{node_execution_id.execut" + "ion_id.org}/{node_execution_id.execution" + "_id.project}/{node_execution_id.executio" + "n_id.domain}/{node_execution_id.executio" + "n_id.name}/{node_execution_id.node_id}\022\354" + "\005\n\024GetTaskExecutionData\022+.flyteidl.admin" + ".TaskExecutionGetDataRequest\032,.flyteidl." + "admin.TaskExecutionGetDataResponse\"\370\004\202\323\344" + "\223\002\361\004\022\236\002/api/v1/data/task_executions/{id." "node_execution_id.execution_id.project}/" "{id.node_execution_id.execution_id.domai" "n}/{id.node_execution_id.execution_id.na" "me}/{id.node_execution_id.node_id}/{id.t" "ask_id.project}/{id.task_id.domain}/{id." "task_id.name}/{id.task_id.version}/{id.r" - "etry_attempt}\022\361\003\n\022ListTaskExecutions\022(.f" - "lyteidl.admin.TaskExecutionListRequest\032!" - ".flyteidl.admin.TaskExecutionList\"\215\003\202\323\344\223" - "\002\206\003\022\252\001/api/v1/task_executions/{node_exec" - "ution_id.execution_id.project}/{node_exe" - "cution_id.execution_id.domain}/{node_exe" - "cution_id.execution_id.name}/{node_execu" - "tion_id.node_id}Z\326\001\022\323\001/api/v1/task_execu" - "tions/org/{node_execution_id.execution_i" - "d.org}/{node_execution_id.execution_id.p" - "roject}/{node_execution_id.execution_id." - "domain}/{node_execution_id.execution_id." - "name}/{node_execution_id.node_id}\022\354\005\n\024Ge" - "tTaskExecutionData\022+.flyteidl.admin.Task" - "ExecutionGetDataRequest\032,.flyteidl.admin" - ".TaskExecutionGetDataResponse\"\370\004\202\323\344\223\002\361\004\022" - "\236\002/api/v1/data/task_executions/{id.node_" - "execution_id.execution_id.project}/{id.n" - "ode_execution_id.execution_id.domain}/{i" - "d.node_execution_id.execution_id.name}/{" - "id.node_execution_id.node_id}/{id.task_i" - "d.project}/{id.task_id.domain}/{id.task_" - "id.name}/{id.task_id.version}/{id.retry_" - "attempt}Z\315\002\022\312\002/api/v1/data/task_executio" - "ns/org/{id.node_execution_id.execution_i" - "d.org}/{id.node_execution_id.execution_i" - "d.project}/{id.node_execution_id.executi" - "on_id.domain}/{id.node_execution_id.exec" - "ution_id.name}/{id.node_execution_id.nod" - "e_id}/{id.task_id.project}/{id.task_id.d" - "omain}/{id.task_id.name}/{id.task_id.ver" - "sion}/{id.retry_attempt}\022\313\002\n\035UpdateProje" - "ctDomainAttributes\0224.flyteidl.admin.Proj" - "ectDomainAttributesUpdateRequest\0325.flyte" - "idl.admin.ProjectDomainAttributesUpdateR" - "esponse\"\274\001\202\323\344\223\002\265\001\032J/api/v1/project_domai" - "n_attributes/{attributes.project}/{attri" - "butes.domain}:\001*Zd\032_/api/v1/project_doma" - "in_attributes/org/{attributes.org}/{attr" - "ibutes.project}/{attributes.domain}:\001*\022\203" - "\002\n\032GetProjectDomainAttributes\0221.flyteidl" - ".admin.ProjectDomainAttributesGetRequest" - "\0322.flyteidl.admin.ProjectDomainAttribute" - "sGetResponse\"~\202\323\344\223\002x\0224/api/v1/project_do" - "main_attributes/{project}/{domain}Z@\022>/a" + "etry_attempt}Z\315\002\022\312\002/api/v1/data/task_exe" + "cutions/org/{id.node_execution_id.execut" + "ion_id.org}/{id.node_execution_id.execut" + "ion_id.project}/{id.node_execution_id.ex" + "ecution_id.domain}/{id.node_execution_id" + ".execution_id.name}/{id.node_execution_i" + "d.node_id}/{id.task_id.project}/{id.task" + "_id.domain}/{id.task_id.name}/{id.task_i" + "d.version}/{id.retry_attempt}\022\313\002\n\035Update" + "ProjectDomainAttributes\0224.flyteidl.admin" + ".ProjectDomainAttributesUpdateRequest\0325." + "flyteidl.admin.ProjectDomainAttributesUp" + "dateResponse\"\274\001\202\323\344\223\002\265\001\032J/api/v1/project_" + "domain_attributes/{attributes.project}/{" + "attributes.domain}:\001*Zd\032_/api/v1/project" + "_domain_attributes/org/{attributes.org}/" + "{attributes.project}/{attributes.domain}" + ":\001*\022\203\002\n\032GetProjectDomainAttributes\0221.fly" + "teidl.admin.ProjectDomainAttributesGetRe" + "quest\0322.flyteidl.admin.ProjectDomainAttr" + "ibutesGetResponse\"~\202\323\344\223\002x\0224/api/v1/proje" + "ct_domain_attributes/{project}/{domain}Z" + "@\022>/api/v1/project_domain_attributes/org" + "/{org}/{project}/{domain}\022\223\002\n\035DeleteProj" + "ectDomainAttributes\0224.flyteidl.admin.Pro" + "jectDomainAttributesDeleteRequest\0325.flyt" + "eidl.admin.ProjectDomainAttributesDelete" + "Response\"\204\001\202\323\344\223\002~*4/api/v1/project_domai" + "n_attributes/{project}/{domain}:\001*ZC*>/a" "pi/v1/project_domain_attributes/org/{org" - "}/{project}/{domain}\022\223\002\n\035DeleteProjectDo" - "mainAttributes\0224.flyteidl.admin.ProjectD" - "omainAttributesDeleteRequest\0325.flyteidl." - "admin.ProjectDomainAttributesDeleteRespo" - "nse\"\204\001\202\323\344\223\002~*4/api/v1/project_domain_att" - "ributes/{project}/{domain}:\001*ZC*>/api/v1" - "/project_domain_attributes/org/{org}/{pr" - "oject}/{domain}:\001*\022\212\002\n\027UpdateProjectAttr" - "ibutes\022..flyteidl.admin.ProjectAttribute" - "sUpdateRequest\032/.flyteidl.admin.ProjectA" - "ttributesUpdateResponse\"\215\001\202\323\344\223\002\206\001\032//api/" - "v1/project_attributes/{attributes.projec" - "t}:\001*ZP\032K/api/v1/project_domain_attribut" - "es/org/{attributes.org}/{attributes.proj" - "ect}:\001*\022\330\001\n\024GetProjectAttributes\022+.flyte" - "idl.admin.ProjectAttributesGetRequest\032,." - "flyteidl.admin.ProjectAttributesGetRespo" - "nse\"e\202\323\344\223\002_\022$/api/v1/project_attributes/" - "{project}Z7\0225/api/v1/project_domain_attr" - "ibutes/org/{org}/{project}\022\347\001\n\027DeletePro" - "jectAttributes\022..flyteidl.admin.ProjectA" - "ttributesDeleteRequest\032/.flyteidl.admin." - "ProjectAttributesDeleteResponse\"k\202\323\344\223\002e*" - "$/api/v1/project_attributes/{project}:\001*" - "Z:*5/api/v1/project_domain_attributes/or" - "g/{org}/{project}:\001*\022\334\002\n\030UpdateWorkflowA" - "ttributes\022/.flyteidl.admin.WorkflowAttri" - "butesUpdateRequest\0320.flyteidl.admin.Work" - "flowAttributesUpdateResponse\"\334\001\202\323\344\223\002\325\001\032Z" - "/api/v1/workflow_attributes/{attributes." - "project}/{attributes.domain}/{attributes" - ".workflow}:\001*Zt\032o/api/v1/workflow_attrib" - "utes/org/{attributes.org}/{attributes.pr" - "oject}/{attributes.domain}/{attributes.w" - "orkflow}:\001*\022\200\002\n\025GetWorkflowAttributes\022,." - "flyteidl.admin.WorkflowAttributesGetRequ" - "est\032-.flyteidl.admin.WorkflowAttributesG" - "etResponse\"\211\001\202\323\344\223\002\202\001\0229/api/v1/workflow_a" - "ttributes/{project}/{domain}/{workflow}Z" - "E\022C/api/v1/workflow_attributes/org/{org}" - "/{project}/{domain}/{workflow}\022\217\002\n\030Delet" - "eWorkflowAttributes\022/.flyteidl.admin.Wor" - "kflowAttributesDeleteRequest\0320.flyteidl." - "admin.WorkflowAttributesDeleteResponse\"\217" - "\001\202\323\344\223\002\210\001*9/api/v1/workflow_attributes/{p" - "roject}/{domain}/{workflow}:\001*ZH*C/api/v" - "1/workflow_attributes/org/{org}/{project" - "}/{domain}/{workflow}:\001*\022\312\001\n\027ListMatchab" - "leAttributes\022..flyteidl.admin.ListMatcha" - "bleAttributesRequest\032/.flyteidl.admin.Li" - "stMatchableAttributesResponse\"N\202\323\344\223\002H\022\034/" - "api/v1/matchable_attributesZ(\022&/api/v1/m" - "atchable_attributes/org/{org}\022\350\001\n\021ListNa" - "medEntities\022&.flyteidl.admin.NamedEntity" - "ListRequest\032\037.flyteidl.admin.NamedEntity" - "List\"\211\001\202\323\344\223\002\202\001\0229/api/v1/named_entities/{" - "resource_type}/{project}/{domain}ZE\022C/ap" - "i/v1/named_entities/{resource_type}/org/" - "{org}/{project}/{domain}\022\203\002\n\016GetNamedEnt" - "ity\022%.flyteidl.admin.NamedEntityGetReque" - "st\032\033.flyteidl.admin.NamedEntity\"\254\001\202\323\344\223\002\245" - "\001\022I/api/v1/named_entities/{resource_type" - "}/{id.project}/{id.domain}/{id.name}ZX\022V" - "/api/v1/named_entities/{resource_type}/o" - "rg/{id.org}/{id.project}/{id.domain}/{id" - ".name}\022\235\002\n\021UpdateNamedEntity\022(.flyteidl." - "admin.NamedEntityUpdateRequest\032).flyteid" - "l.admin.NamedEntityUpdateResponse\"\262\001\202\323\344\223" - "\002\253\001\032I/api/v1/named_entities/{resource_ty" - "pe}/{id.project}/{id.domain}/{id.name}:\001" - "*Z[\032V/api/v1/named_entities/{resource_ty" - "pe}/org/{id.org}/{id.project}/{id.domain" - "}/{id.name}:\001*\022l\n\nGetVersion\022!.flyteidl." - "admin.GetVersionRequest\032\".flyteidl.admin" - ".GetVersionResponse\"\027\202\323\344\223\002\021\022\017/api/v1/ver" - "sion\022\266\002\n\024GetDescriptionEntity\022 .flyteidl" - ".admin.ObjectGetRequest\032!.flyteidl.admin" - ".DescriptionEntity\"\330\001\202\323\344\223\002\321\001\022_/api/v1/de" - "scription_entities/{id.resource_type}/{i" - "d.project}/{id.domain}/{id.name}/{id.ver" - "sion}Zn\022l/api/v1/description_entities/or" - "g/{id.org}/{id.resource_type}/{id.projec" - "t}/{id.domain}/{id.name}/{id.version}\022\310\003" - "\n\027ListDescriptionEntities\022,.flyteidl.adm" - "in.DescriptionEntityListRequest\032%.flytei" - "dl.admin.DescriptionEntityList\"\327\002\202\323\344\223\002\320\002" - "\022O/api/v1/description_entities/{resource" + "}/{project}/{domain}:\001*\022\212\002\n\027UpdateProjec" + "tAttributes\022..flyteidl.admin.ProjectAttr" + "ibutesUpdateRequest\032/.flyteidl.admin.Pro" + "jectAttributesUpdateResponse\"\215\001\202\323\344\223\002\206\001\032/" + "/api/v1/project_attributes/{attributes.p" + "roject}:\001*ZP\032K/api/v1/project_domain_att" + "ributes/org/{attributes.org}/{attributes" + ".project}:\001*\022\330\001\n\024GetProjectAttributes\022+." + "flyteidl.admin.ProjectAttributesGetReque" + "st\032,.flyteidl.admin.ProjectAttributesGet" + "Response\"e\202\323\344\223\002_\022$/api/v1/project_attrib" + "utes/{project}Z7\0225/api/v1/project_domain" + "_attributes/org/{org}/{project}\022\347\001\n\027Dele" + "teProjectAttributes\022..flyteidl.admin.Pro" + "jectAttributesDeleteRequest\032/.flyteidl.a" + "dmin.ProjectAttributesDeleteResponse\"k\202\323" + "\344\223\002e*$/api/v1/project_attributes/{projec" + "t}:\001*Z:*5/api/v1/project_domain_attribut" + "es/org/{org}/{project}:\001*\022\334\002\n\030UpdateWork" + "flowAttributes\022/.flyteidl.admin.Workflow" + "AttributesUpdateRequest\0320.flyteidl.admin" + ".WorkflowAttributesUpdateResponse\"\334\001\202\323\344\223" + "\002\325\001\032Z/api/v1/workflow_attributes/{attrib" + "utes.project}/{attributes.domain}/{attri" + "butes.workflow}:\001*Zt\032o/api/v1/workflow_a" + "ttributes/org/{attributes.org}/{attribut" + "es.project}/{attributes.domain}/{attribu" + "tes.workflow}:\001*\022\200\002\n\025GetWorkflowAttribut" + "es\022,.flyteidl.admin.WorkflowAttributesGe" + "tRequest\032-.flyteidl.admin.WorkflowAttrib" + "utesGetResponse\"\211\001\202\323\344\223\002\202\001\0229/api/v1/workf" + "low_attributes/{project}/{domain}/{workf" + "low}ZE\022C/api/v1/workflow_attributes/org/" + "{org}/{project}/{domain}/{workflow}\022\217\002\n\030" + "DeleteWorkflowAttributes\022/.flyteidl.admi" + "n.WorkflowAttributesDeleteRequest\0320.flyt" + "eidl.admin.WorkflowAttributesDeleteRespo" + "nse\"\217\001\202\323\344\223\002\210\001*9/api/v1/workflow_attribut" + "es/{project}/{domain}/{workflow}:\001*ZH*C/" + "api/v1/workflow_attributes/org/{org}/{pr" + "oject}/{domain}/{workflow}:\001*\022\312\001\n\027ListMa" + "tchableAttributes\022..flyteidl.admin.ListM" + "atchableAttributesRequest\032/.flyteidl.adm" + "in.ListMatchableAttributesResponse\"N\202\323\344\223" + "\002H\022\034/api/v1/matchable_attributesZ(\022&/api" + "/v1/matchable_attributes/org/{org}\022\350\001\n\021L" + "istNamedEntities\022&.flyteidl.admin.NamedE" + "ntityListRequest\032\037.flyteidl.admin.NamedE" + "ntityList\"\211\001\202\323\344\223\002\202\001\0229/api/v1/named_entit" + "ies/{resource_type}/{project}/{domain}ZE" + "\022C/api/v1/named_entities/{resource_type}" + "/org/{org}/{project}/{domain}\022\203\002\n\016GetNam" + "edEntity\022%.flyteidl.admin.NamedEntityGet" + "Request\032\033.flyteidl.admin.NamedEntity\"\254\001\202" + "\323\344\223\002\245\001\022I/api/v1/named_entities/{resource" "_type}/{id.project}/{id.domain}/{id.name" - "}Z^\022\\/api/v1/description_entities/{resou" - "rce_type}/org/{id.org}/{id.project}/{id." - "domain}/{id.name}ZG\022E/api/v1/description" - "_entities/{resource_type}/{id.project}/{" - "id.domain}ZT\022R/api/v1/description_entiti" - "es/{resource_type}/org/{id.org}/{id.proj" - "ect}/{id.domain}\022\225\002\n\023GetExecutionMetrics" - "\0222.flyteidl.admin.WorkflowExecutionGetMe" - "tricsRequest\0323.flyteidl.admin.WorkflowEx" - "ecutionGetMetricsResponse\"\224\001\202\323\344\223\002\215\001\022=/ap" - "i/v1/metrics/executions/{id.project}/{id" - ".domain}/{id.name}ZL\022J/api/v1/metrics/ex" - "ecutions/org/{id.org}/{id.project}/{id.d" - "omain}/{id.name}B\?Z=github.com/flyteorg/" - "flyte/flyteidl/gen/pb-go/flyteidl/servic" - "eb\006proto3" + "}ZX\022V/api/v1/named_entities/{resource_ty" + "pe}/org/{id.org}/{id.project}/{id.domain" + "}/{id.name}\022\235\002\n\021UpdateNamedEntity\022(.flyt" + "eidl.admin.NamedEntityUpdateRequest\032).fl" + "yteidl.admin.NamedEntityUpdateResponse\"\262" + "\001\202\323\344\223\002\253\001\032I/api/v1/named_entities/{resour" + "ce_type}/{id.project}/{id.domain}/{id.na" + "me}:\001*Z[\032V/api/v1/named_entities/{resour" + "ce_type}/org/{id.org}/{id.project}/{id.d" + "omain}/{id.name}:\001*\022l\n\nGetVersion\022!.flyt" + "eidl.admin.GetVersionRequest\032\".flyteidl." + "admin.GetVersionResponse\"\027\202\323\344\223\002\021\022\017/api/v" + "1/version\022\266\002\n\024GetDescriptionEntity\022 .fly" + "teidl.admin.ObjectGetRequest\032!.flyteidl." + "admin.DescriptionEntity\"\330\001\202\323\344\223\002\321\001\022_/api/" + "v1/description_entities/{id.resource_typ" + "e}/{id.project}/{id.domain}/{id.name}/{i" + "d.version}Zn\022l/api/v1/description_entiti" + "es/org/{id.org}/{id.resource_type}/{id.p" + "roject}/{id.domain}/{id.name}/{id.versio" + "n}\022\310\003\n\027ListDescriptionEntities\022,.flyteid" + "l.admin.DescriptionEntityListRequest\032%.f" + "lyteidl.admin.DescriptionEntityList\"\327\002\202\323" + "\344\223\002\320\002\022O/api/v1/description_entities/{res" + "ource_type}/{id.project}/{id.domain}/{id" + ".name}Z^\022\\/api/v1/description_entities/{" + "resource_type}/org/{id.org}/{id.project}" + "/{id.domain}/{id.name}ZG\022E/api/v1/descri" + "ption_entities/{resource_type}/{id.proje" + "ct}/{id.domain}ZT\022R/api/v1/description_e" + "ntities/{resource_type}/org/{id.org}/{id" + ".project}/{id.domain}\022\225\002\n\023GetExecutionMe" + "trics\0222.flyteidl.admin.WorkflowExecution" + "GetMetricsRequest\0323.flyteidl.admin.Workf" + "lowExecutionGetMetricsResponse\"\224\001\202\323\344\223\002\215\001" + "\022=/api/v1/metrics/executions/{id.project" + "}/{id.domain}/{id.name}ZL\022J/api/v1/metri" + "cs/executions/org/{id.org}/{id.project}/" + "{id.domain}/{id.name}B\?Z=github.com/flyt" + "eorg/flyte/flyteidl/gen/pb-go/flyteidl/s" + "erviceb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fservice_2fadmin_2eproto = { false, InitDefaults_flyteidl_2fservice_2fadmin_2eproto, descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto, - "flyteidl/service/admin.proto", &assign_descriptors_table_flyteidl_2fservice_2fadmin_2eproto, 15809, + "flyteidl/service/admin.proto", &assign_descriptors_table_flyteidl_2fservice_2fadmin_2eproto, 16054, }; void AddDescriptors_flyteidl_2fservice_2fadmin_2eproto() { diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go index db032156459..ecdbad459f0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go @@ -29,181 +29,184 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("flyteidl/service/admin.proto", fileDescriptor_5cfa31da1d67295d) } var fileDescriptor_5cfa31da1d67295d = []byte{ - // 2771 bytes of a gzipped FileDescriptorProto + // 2826 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5b, 0x6b, 0x8c, 0x15, 0x57, - 0x1d, 0xcf, 0x99, 0xa5, 0xa2, 0xa7, 0x3c, 0x96, 0x7f, 0x21, 0xc0, 0xf0, 0x2a, 0x43, 0x61, 0x97, - 0x0b, 0xec, 0xdd, 0xf2, 0x68, 0x65, 0xb5, 0x2d, 0x5b, 0x16, 0x6e, 0xa1, 0xbc, 0x5c, 0x68, 0xb5, - 0xb7, 0xc6, 0x9b, 0xd9, 0x7b, 0x0f, 0xcb, 0xc0, 0xdd, 0x3b, 0xd7, 0x99, 0xd9, 0x6d, 0x09, 0xd9, - 0xc6, 0x94, 0x8a, 0x58, 0x03, 0x98, 0x20, 0x34, 0x46, 0xdb, 0x0f, 0x8d, 0x4d, 0xea, 0x23, 0x7e, + 0x1d, 0xcf, 0x99, 0xa5, 0xa2, 0xa7, 0x3c, 0x96, 0x7f, 0x41, 0x60, 0x78, 0x95, 0xa1, 0xb0, 0xcb, + 0x5d, 0xd8, 0xbb, 0xe5, 0xd1, 0xca, 0x6a, 0x5b, 0xb6, 0x2c, 0xdc, 0x42, 0x79, 0xb9, 0xd0, 0x6a, + 0x6f, 0x8d, 0x37, 0xb3, 0xf7, 0x1e, 0x96, 0x81, 0x7b, 0xef, 0x5c, 0x67, 0x66, 0xb7, 0x6c, 0x70, + 0x1b, 0x53, 0x2a, 0x62, 0x15, 0x30, 0x41, 0x30, 0x46, 0xdb, 0x0f, 0x8d, 0x4d, 0xea, 0x23, 0x7e, 0x30, 0xd1, 0xc4, 0x44, 0x13, 0x3f, 0x48, 0xd2, 0xb4, 0x31, 0x69, 0x53, 0xab, 0x8d, 0xf6, 0x93, - 0x21, 0xa1, 0x89, 0x46, 0xad, 0x7e, 0xb0, 0x7e, 0x31, 0x66, 0xce, 0x63, 0xe6, 0xcc, 0xe3, 0xcc, - 0x63, 0x59, 0x9a, 0x26, 0xe5, 0xdb, 0xee, 0x3d, 0xff, 0x73, 0xce, 0xef, 0xf7, 0xfb, 0x3f, 0xce, - 0x39, 0x33, 0x67, 0xf0, 0xca, 0xe3, 0xed, 0xd3, 0x1e, 0xb1, 0x5a, 0xed, 0xaa, 0x4b, 0x9c, 0x29, - 0xab, 0x49, 0xaa, 0x66, 0x6b, 0xc2, 0xea, 0x0c, 0x74, 0x1d, 0xdb, 0xb3, 0xa1, 0x57, 0xb4, 0x0e, - 0xf0, 0x56, 0x7d, 0xe5, 0xb8, 0x6d, 0x8f, 0xb7, 0x49, 0xd5, 0xec, 0x5a, 0x55, 0xb3, 0xd3, 0xb1, - 0x3d, 0xd3, 0xb3, 0xec, 0x8e, 0xcb, 0xec, 0xf5, 0x70, 0x34, 0x3a, 0x4a, 0xb5, 0xeb, 0xd8, 0x27, - 0x49, 0xd3, 0xe3, 0xad, 0x03, 0xe9, 0xad, 0x8d, 0x96, 0x3d, 0x61, 0x5a, 0x9d, 0x86, 0xe9, 0x79, - 0x8e, 0x35, 0x36, 0xe9, 0x11, 0x31, 0x5a, 0x9f, 0xc2, 0x3e, 0x61, 0xb8, 0x3c, 0x66, 0xe8, 0x99, - 0xee, 0x29, 0xde, 0xb4, 0x2a, 0xd6, 0xf4, 0x94, 0xed, 0x9c, 0x3a, 0xde, 0xb6, 0x9f, 0xe2, 0xcd, - 0xfd, 0x8a, 0xe6, 0xe4, 0x1c, 0x77, 0xc7, 0x2c, 0xdb, 0xe6, 0x64, 0xa7, 0x79, 0xa2, 0xd1, 0x6d, - 0x9b, 0x5c, 0x2c, 0x5d, 0x8f, 0x59, 0x90, 0x29, 0xd2, 0x11, 0xd4, 0x57, 0xc7, 0xdb, 0x9e, 0x26, - 0xcd, 0x49, 0x5f, 0x39, 0x05, 0xd5, 0x09, 0xd3, 0x6b, 0x9e, 0x30, 0xc7, 0xda, 0xa4, 0xe1, 0x10, - 0xd7, 0x9e, 0x74, 0x9a, 0x84, 0x1b, 0xae, 0x8b, 0x19, 0x76, 0xec, 0x16, 0x69, 0xc4, 0x47, 0x5b, - 0x97, 0xa2, 0x47, 0xc2, 0x28, 0xee, 0xab, 0x29, 0xe2, 0xb8, 0x61, 0xeb, 0x8a, 0x58, 0x6b, 0xd3, - 0x9e, 0x98, 0x50, 0xa2, 0x6d, 0x11, 0xb7, 0xe9, 0x58, 0x5d, 0x7f, 0xf0, 0x06, 0xe9, 0x78, 0x96, - 0x77, 0x9a, 0x19, 0x6e, 0x7d, 0x61, 0x0a, 0xcf, 0x1b, 0xf6, 0x4d, 0x8e, 0xb2, 0xf0, 0x81, 0x8b, - 0x08, 0xe3, 0xdd, 0x0e, 0x31, 0x3d, 0x72, 0xcc, 0x74, 0x4f, 0xc1, 0xda, 0x20, 0x24, 0x06, 0x58, - 0xd8, 0xf9, 0xbf, 0xb2, 0xf6, 0x51, 0xf2, 0xd5, 0x49, 0xe2, 0x7a, 0xba, 0x91, 0x65, 0xe2, 0x76, - 0xed, 0x8e, 0x4b, 0x8c, 0x9d, 0xcf, 0xbe, 0x7d, 0xfd, 0xb2, 0xb6, 0xcd, 0x98, 0x4f, 0xc3, 0x72, - 0xea, 0x5e, 0x4a, 0xd8, 0x1d, 0x42, 0x95, 0xfa, 0x1a, 0x43, 0x8f, 0xfc, 0x56, 0xb5, 0x9d, 0xf1, - 0xea, 0x19, 0xab, 0x35, 0x60, 0x3b, 0xe3, 0xd3, 0x43, 0xa8, 0x02, 0xef, 0x22, 0x3c, 0xb7, 0x46, - 0x3c, 0x8a, 0xe6, 0xee, 0xf8, 0x54, 0x87, 0xc7, 0xfc, 0x78, 0xab, 0x11, 0x4f, 0x80, 0x59, 0x9c, - 0x06, 0xc6, 0xf8, 0x0e, 0xa2, 0xf3, 0x5f, 0x40, 0xf0, 0x40, 0x74, 0x32, 0x7f, 0x22, 0x1e, 0xb4, - 0xd3, 0xf4, 0x1f, 0x16, 0xe9, 0xec, 0xef, 0x8e, 0x39, 0x41, 0xd8, 0x5f, 0x5c, 0xf9, 0xe9, 0xfa, - 0x01, 0xd8, 0xaf, 0x46, 0x5b, 0x76, 0x34, 0xb8, 0x86, 0xf0, 0x9d, 0x07, 0x2c, 0x97, 0x72, 0xdb, - 0xd7, 0x72, 0x61, 0x30, 0x0e, 0xfe, 0x90, 0x39, 0x41, 0x5a, 0x7b, 0xa8, 0xbf, 0xf6, 0xb5, 0x7c, - 0xbf, 0x1d, 0xb7, 0x88, 0xe3, 0xf7, 0x10, 0x74, 0x37, 0x16, 0xee, 0x61, 0x3c, 0x41, 0x25, 0x38, - 0x0a, 0xeb, 0x64, 0x02, 0x0d, 0xab, 0xe5, 0x56, 0xcf, 0x84, 0x98, 0x39, 0xe0, 0xfa, 0x66, 0xa8, - 0xa4, 0xf0, 0x64, 0x24, 0x13, 0xd6, 0xf0, 0xaa, 0x86, 0x3f, 0x23, 0x78, 0xb8, 0xb0, 0x2e, 0x8e, - 0x69, 0x94, 0x27, 0x88, 0x0c, 0x7c, 0x59, 0x9a, 0x9f, 0x28, 0xce, 0x3f, 0x33, 0x5f, 0xfd, 0x1e, - 0xc1, 0x60, 0x59, 0x5f, 0xd5, 0x1f, 0x8a, 0xfb, 0xb7, 0xa4, 0x7b, 0xea, 0xfd, 0xb0, 0xa1, 0xd8, - 0xa4, 0xf5, 0x1d, 0xb0, 0x6d, 0x06, 0x53, 0xc1, 0xcb, 0x08, 0x2f, 0x60, 0xb9, 0xf1, 0x45, 0x5e, - 0xc8, 0x60, 0x7d, 0x5c, 0x0a, 0xd1, 0x12, 0x4d, 0xb3, 0x0d, 0x79, 0x66, 0x3c, 0xd5, 0x86, 0xa9, - 0x7c, 0x9f, 0x33, 0x16, 0x09, 0x78, 0xa2, 0x62, 0xd2, 0x74, 0x5b, 0x67, 0xac, 0x4e, 0xfc, 0x9e, - 0x48, 0xb9, 0xf7, 0x11, 0xbe, 0xb3, 0x46, 0xbc, 0x00, 0x61, 0x7e, 0xda, 0x2d, 0x53, 0x81, 0x33, - 0xbe, 0xcf, 0xdc, 0x79, 0x05, 0xc1, 0x70, 0x72, 0xe2, 0xb2, 0xe9, 0x77, 0x04, 0x0e, 0x65, 0xa3, - 0x2f, 0x9d, 0x82, 0x6f, 0x21, 0xbc, 0xd0, 0x0f, 0x3b, 0x81, 0xf7, 0x96, 0xa7, 0xa1, 0x49, 0xe5, - 0x78, 0x12, 0xfa, 0xe2, 0x44, 0x54, 0xa9, 0x38, 0x08, 0x03, 0x0a, 0xce, 0xaa, 0x74, 0xfc, 0x8d, - 0x86, 0xe7, 0xcb, 0x9c, 0x0a, 0xa6, 0xe4, 0x4a, 0x95, 0x0f, 0x29, 0xee, 0xbf, 0x32, 0x3f, 0x5e, - 0x47, 0xb0, 0x7d, 0x26, 0x7e, 0xac, 0xef, 0x4e, 0xf3, 0x7f, 0xd9, 0xf4, 0x94, 0xca, 0x52, 0xfe, - 0xe4, 0xf5, 0x9d, 0x70, 0xff, 0x0c, 0xa7, 0x84, 0x9f, 0x22, 0xdc, 0xcb, 0xf2, 0xea, 0x00, 0xdd, - 0x45, 0x1c, 0x69, 0x9b, 0x1d, 0xe8, 0x8b, 0x0b, 0x14, 0xb6, 0x45, 0x53, 0xb5, 0x3f, 0xdf, 0x90, - 0x27, 0x6b, 0x8d, 0x8a, 0x3a, 0x6c, 0x2c, 0x16, 0x40, 0xa5, 0x4d, 0x0b, 0xcd, 0xd7, 0x0d, 0xc6, - 0xda, 0xb4, 0xa6, 0x44, 0xca, 0xfe, 0x0b, 0xe1, 0xf9, 0x35, 0xe2, 0x49, 0x68, 0xf3, 0x93, 0x56, - 0x57, 0xc3, 0x34, 0x5e, 0x66, 0xee, 0xfe, 0x1e, 0x82, 0x91, 0xd4, 0xf9, 0xcb, 0x66, 0xee, 0x51, - 0xf8, 0x42, 0x2e, 0x8f, 0xd2, 0xc9, 0xfb, 0x6f, 0x84, 0xef, 0xaa, 0x11, 0x6f, 0xb8, 0xe9, 0x59, - 0x53, 0x99, 0x8e, 0x8a, 0x5b, 0x14, 0x51, 0xe0, 0x2a, 0x53, 0xe0, 0x12, 0x82, 0x07, 0x05, 0x72, - 0x93, 0x0e, 0xd3, 0x28, 0x29, 0x44, 0xfd, 0x20, 0x3c, 0x9a, 0x35, 0x42, 0x49, 0x09, 0xfc, 0x0d, - 0xd1, 0x12, 0x3f, 0x25, 0xe3, 0xa4, 0x5c, 0xd8, 0x94, 0xc7, 0x5b, 0x4e, 0xf7, 0xd5, 0x6a, 0xee, - 0x34, 0xe1, 0x1d, 0x4a, 0xbf, 0x1d, 0x56, 0x9f, 0x54, 0xf6, 0xc9, 0x7a, 0x35, 0x04, 0x9f, 0xcd, - 0x65, 0xab, 0xaa, 0x5c, 0xef, 0x21, 0xbc, 0xc8, 0x9f, 0x3c, 0x84, 0x72, 0xcb, 0xeb, 0xf1, 0x49, - 0x4a, 0xb3, 0x15, 0x16, 0x16, 0x09, 0xad, 0xaa, 0x24, 0xdf, 0x17, 0xd6, 0xc0, 0xb8, 0x75, 0x26, - 0xbd, 0x37, 0x35, 0xb6, 0xd8, 0xc8, 0x3e, 0x2b, 0x54, 0x9a, 0xf3, 0x7c, 0xf5, 0x1f, 0x16, 0xab, - 0xff, 0x44, 0x61, 0xc5, 0x2b, 0x1b, 0xa4, 0x7b, 0x15, 0x89, 0x5e, 0xb6, 0x44, 0x57, 0x61, 0x4b, - 0x29, 0x08, 0xf5, 0xcf, 0xc3, 0xd0, 0xcc, 0x27, 0x86, 0x0b, 0x1a, 0xee, 0x7d, 0xac, 0xdb, 0x2a, - 0x5c, 0xa8, 0x99, 0x6d, 0x81, 0x42, 0x2d, 0x0c, 0x79, 0xa1, 0x7e, 0x85, 0x29, 0xfc, 0x12, 0xd2, - 0x67, 0xa5, 0x1e, 0xfa, 0xa5, 0xfd, 0xa8, 0x7e, 0x0b, 0x4a, 0xe2, 0x0f, 0x10, 0x5e, 0xc8, 0xd6, - 0x98, 0x3d, 0xe2, 0x34, 0x09, 0x89, 0x9d, 0x63, 0xd0, 0x14, 0x5d, 0xb6, 0xfa, 0x72, 0xed, 0xb8, - 0x18, 0xbb, 0xa8, 0x16, 0x43, 0x06, 0x08, 0xfc, 0xc1, 0xc9, 0x95, 0xae, 0x59, 0x6b, 0xf5, 0x95, - 0xc9, 0x86, 0x30, 0x33, 0xfc, 0xe5, 0xea, 0xd7, 0x08, 0x2f, 0x1a, 0x25, 0x8c, 0x76, 0x08, 0xb4, - 0x5f, 0x09, 0x40, 0xd8, 0x96, 0x86, 0xfa, 0x18, 0x85, 0x7a, 0xd8, 0x58, 0x91, 0x82, 0xc8, 0xe1, - 0x83, 0xfa, 0x98, 0xb7, 0x18, 0xfd, 0x2a, 0xcc, 0xc2, 0x15, 0x92, 0x39, 0xfc, 0x12, 0xe1, 0xde, - 0x51, 0xd2, 0xb4, 0xa7, 0x88, 0x13, 0xc2, 0xef, 0xcb, 0x80, 0x4f, 0x4d, 0x4b, 0xa3, 0x3f, 0x4a, - 0xd1, 0x1f, 0x0c, 0x8f, 0xc8, 0x11, 0xf4, 0x74, 0x4c, 0x1f, 0xfc, 0x66, 0xa3, 0x2f, 0x1f, 0xbc, - 0xb0, 0xf6, 0x8b, 0xec, 0xbc, 0x1a, 0xf1, 0x42, 0xdc, 0x9b, 0x54, 0x1b, 0xbf, 0xc0, 0x44, 0xda, - 0x34, 0x2c, 0x57, 0x62, 0x37, 0xce, 0xb2, 0x1c, 0x99, 0x86, 0x1d, 0x29, 0x68, 0x0a, 0x94, 0x8e, - 0x11, 0x78, 0x38, 0x8f, 0x46, 0x81, 0xe5, 0xf1, 0x1f, 0x08, 0x2f, 0x64, 0xc9, 0x5b, 0x24, 0x03, - 0xa2, 0xf5, 0xa0, 0x2f, 0xd7, 0x8e, 0x3b, 0xe6, 0x79, 0x46, 0xf5, 0x2c, 0xd2, 0x67, 0xc6, 0xd5, - 0xf7, 0x5a, 0x4d, 0x9f, 0x05, 0xba, 0xbe, 0x43, 0xcf, 0x69, 0xb8, 0x57, 0x76, 0xe8, 0x88, 0xe9, - 0x99, 0x50, 0x2d, 0xe2, 0x54, 0xdf, 0x52, 0x70, 0x1f, 0x2c, 0xde, 0x81, 0x8b, 0x70, 0x91, 0x89, - 0xf0, 0x0d, 0x14, 0x56, 0xf0, 0x96, 0xe9, 0x99, 0x25, 0xbd, 0xbe, 0x0f, 0x6a, 0xaa, 0xde, 0x65, - 0x5d, 0x7f, 0x0d, 0xe1, 0x05, 0xfe, 0x7a, 0x18, 0x20, 0x2e, 0xb8, 0xbc, 0xae, 0x52, 0xba, 0x9d, - 0xae, 0xae, 0x36, 0xa5, 0x69, 0xc1, 0xa6, 0x12, 0xae, 0x96, 0xb7, 0x41, 0x65, 0x19, 0xc1, 0x87, - 0x08, 0xc3, 0x31, 0xe2, 0x4c, 0x58, 0x9d, 0x48, 0x14, 0x6f, 0x54, 0xc2, 0x0c, 0x8c, 0x05, 0xa3, - 0x4a, 0x11, 0xd3, 0x78, 0x2c, 0x57, 0x6e, 0x22, 0x96, 0x2b, 0xb3, 0x14, 0xcb, 0x7f, 0x61, 0xb1, - 0x7c, 0xc8, 0x6e, 0x91, 0x8c, 0xc2, 0x1a, 0x69, 0x96, 0x8a, 0xd3, 0xaa, 0x4c, 0x43, 0xe3, 0xeb, - 0x1a, 0x65, 0xfa, 0x3f, 0x04, 0x1d, 0x81, 0x36, 0xfa, 0x74, 0x96, 0xd1, 0x0d, 0xfe, 0x6d, 0xc4, - 0x21, 0x47, 0x5a, 0x64, 0xfc, 0x91, 0x86, 0x70, 0x59, 0xa6, 0xa3, 0x5b, 0xad, 0xe9, 0xfa, 0xb7, - 0x10, 0x9c, 0x47, 0xaa, 0x39, 0x85, 0x4c, 0x91, 0x41, 0x02, 0xcd, 0x66, 0x1f, 0x0d, 0xfc, 0x57, - 0xc3, 0xe0, 0x47, 0x76, 0x44, 0x1d, 0x37, 0xb9, 0xfc, 0x46, 0xda, 0xe5, 0x84, 0x59, 0x9b, 0x6b, - 0x69, 0x5c, 0x61, 0x5a, 0x5f, 0xd4, 0xc0, 0x55, 0x6a, 0x1d, 0x3c, 0xfa, 0x50, 0x70, 0x4c, 0x6f, - 0x0f, 0x98, 0xa6, 0x37, 0xb3, 0xaa, 0x72, 0x15, 0xc1, 0xe5, 0x6c, 0xc1, 0xd3, 0x7b, 0x33, 0xd9, - 0x6f, 0x1d, 0x30, 0xb8, 0xf4, 0x69, 0xbc, 0x3c, 0xa9, 0xfd, 0x5e, 0xdb, 0xa1, 0x0f, 0xb8, 0xab, - 0x99, 0xc2, 0x72, 0xab, 0x92, 0x9e, 0x78, 0x71, 0x2e, 0xf5, 0xc4, 0xd5, 0xb9, 0xf0, 0xc3, 0x1e, - 0xa1, 0x48, 0xf3, 0x84, 0xd5, 0x6e, 0x39, 0x24, 0xfe, 0xe2, 0xc1, 0xad, 0x9e, 0x89, 0xfe, 0xd0, - 0x10, 0x61, 0x13, 0xf9, 0x45, 0xa1, 0x4a, 0xe9, 0xae, 0x81, 0x60, 0xa5, 0x7b, 0xf2, 0xa0, 0x2e, - 0xd2, 0x4f, 0x44, 0x7d, 0x9a, 0x35, 0x7f, 0x04, 0x9e, 0xc9, 0x41, 0xd8, 0x64, 0x80, 0x15, 0x26, - 0x4a, 0x54, 0xc2, 0x40, 0x6c, 0xd3, 0xd3, 0x6c, 0x1c, 0xe2, 0x39, 0xa7, 0x1b, 0xa6, 0xe7, 0x91, - 0x89, 0xae, 0x37, 0x5d, 0xbf, 0xd1, 0x03, 0xd7, 0xf3, 0xdd, 0x45, 0x23, 0xb9, 0xb4, 0x7a, 0x2c, - 0xc8, 0x6f, 0x7b, 0xfa, 0x63, 0xe1, 0x69, 0x38, 0xdb, 0x83, 0x17, 0xc7, 0x97, 0x3c, 0xba, 0x85, - 0xdb, 0x94, 0xb7, 0xec, 0xc9, 0xdb, 0xb7, 0xcd, 0xc5, 0x8c, 0xf9, 0x9a, 0x7f, 0x89, 0x55, 0xe7, - 0xf3, 0x52, 0x75, 0xa6, 0x9b, 0xaf, 0x8f, 0x68, 0x39, 0xfc, 0x36, 0x82, 0x0b, 0x28, 0x73, 0xe2, - 0x8f, 0x7c, 0x4d, 0x7c, 0x15, 0xe1, 0x85, 0xa3, 0x64, 0xdc, 0x72, 0x3d, 0xe2, 0x1c, 0x61, 0x23, - 0x26, 0x8f, 0x0d, 0xbc, 0x41, 0xd8, 0x29, 0x8f, 0x0d, 0x09, 0x3b, 0x2e, 0xfb, 0x08, 0x55, 0xfd, - 0x41, 0xa3, 0x57, 0x70, 0xe7, 0xd8, 0xe9, 0xb1, 0xb9, 0xcf, 0x30, 0xe2, 0x3f, 0x33, 0x19, 0xc4, - 0x3b, 0x7a, 0x71, 0x78, 0x7e, 0x01, 0xe1, 0xf9, 0xec, 0x3c, 0x22, 0x80, 0x2e, 0x55, 0x00, 0xd0, - 0xd7, 0x2b, 0x1a, 0x62, 0xc7, 0x99, 0xbd, 0x14, 0xd7, 0x2e, 0x7d, 0x49, 0x02, 0xc0, 0x19, 0xab, - 0x45, 0x37, 0x78, 0xf7, 0xe8, 0x6b, 0xd2, 0xc1, 0x09, 0x9f, 0x50, 0x64, 0xcf, 0x21, 0x3c, 0xcf, - 0x5f, 0x73, 0xf8, 0x2c, 0x2e, 0x18, 0x8a, 0xf9, 0x33, 0x5f, 0x05, 0x8a, 0xde, 0xc6, 0x7d, 0x14, - 0xd6, 0x20, 0x24, 0xe4, 0xaa, 0xaf, 0x04, 0x5d, 0x0d, 0x07, 0xde, 0x41, 0xf8, 0xae, 0xe8, 0x4b, - 0xb6, 0x3d, 0x53, 0xa4, 0xe3, 0xc1, 0x96, 0xdc, 0x23, 0x0e, 0xb5, 0x13, 0xc0, 0x06, 0x8a, 0x9a, - 0x73, 0x15, 0x1b, 0x14, 0xee, 0x13, 0xc6, 0xb2, 0x60, 0x2b, 0xec, 0x37, 0xbb, 0xd1, 0x17, 0x70, - 0x43, 0xc6, 0x8e, 0x58, 0x33, 0xc5, 0xcd, 0xae, 0x22, 0x24, 0xa3, 0x5d, 0xee, 0x0b, 0xbf, 0x0d, - 0x1e, 0xee, 0xd0, 0xe4, 0xa6, 0x9c, 0x36, 0x66, 0xe6, 0x7d, 0x84, 0x4f, 0xa5, 0x88, 0x29, 0xe7, - 0x52, 0xa7, 0x5c, 0x8e, 0x85, 0x2f, 0x26, 0x38, 0x58, 0x3f, 0x5f, 0x28, 0x8f, 0x9d, 0xc6, 0x76, - 0x35, 0x8f, 0xd4, 0xc4, 0x15, 0x5d, 0xe1, 0x4f, 0x01, 0x0d, 0x7f, 0x37, 0xa3, 0xa0, 0x41, 0x9b, - 0x8a, 0xd1, 0x48, 0x33, 0xe5, 0x34, 0xba, 0x94, 0xc6, 0xc9, 0x04, 0x8d, 0xe0, 0xfa, 0xc1, 0x61, - 0x63, 0xbf, 0x9a, 0x46, 0xd7, 0x74, 0x48, 0xc7, 0x6b, 0x14, 0x59, 0x4d, 0xc5, 0x80, 0xf0, 0xc6, - 0x1d, 0xf4, 0x00, 0x13, 0xc1, 0x94, 0x3c, 0xc0, 0x44, 0x9a, 0xb3, 0x0e, 0x30, 0x11, 0x43, 0xe3, - 0xef, 0x73, 0x28, 0x9f, 0x1b, 0x73, 0xe0, 0xbb, 0x5a, 0xe4, 0x35, 0x7e, 0xac, 0x64, 0x17, 0x5e, - 0xc8, 0x4b, 0xac, 0xdc, 0x85, 0x97, 0xea, 0x9c, 0xb5, 0x39, 0x75, 0x31, 0x4e, 0x5b, 0x7d, 0x93, - 0xcb, 0x6d, 0xea, 0xfa, 0x9a, 0xdc, 0x3a, 0xbd, 0xa6, 0xc1, 0x35, 0xa5, 0x3c, 0x62, 0x61, 0x29, - 0xb4, 0x45, 0xfa, 0xa4, 0x4b, 0x09, 0x1f, 0xf4, 0xb0, 0x93, 0x62, 0x24, 0x0c, 0x53, 0x4e, 0x8a, - 0x91, 0xf6, 0xcc, 0xf3, 0x49, 0xc2, 0xd2, 0xb8, 0xd0, 0x43, 0x83, 0xfa, 0x5c, 0x0f, 0xfc, 0x08, - 0x29, 0x83, 0xba, 0xb0, 0x1b, 0x8a, 0xfa, 0xa0, 0x98, 0x03, 0xd4, 0xea, 0xd7, 0xff, 0x80, 0xe0, - 0x6d, 0x94, 0x19, 0x65, 0x85, 0x42, 0xec, 0x63, 0x47, 0x0c, 0xfe, 0x76, 0x07, 0xdd, 0x8f, 0x46, - 0x1c, 0x95, 0xbe, 0x1f, 0x8d, 0x57, 0xb1, 0xcc, 0xfd, 0x68, 0xba, 0x31, 0xaf, 0xd3, 0x1f, 0xb2, - 0xc2, 0xf6, 0xc1, 0x1c, 0x78, 0x49, 0x8b, 0xec, 0x0b, 0x6f, 0x57, 0xb7, 0x78, 0x75, 0xfb, 0x9d, - 0x06, 0xaf, 0x67, 0x6b, 0x74, 0xbb, 0xc4, 0x95, 0x29, 0x71, 0x6f, 0x68, 0x78, 0x55, 0x64, 0x37, - 0x3d, 0x42, 0x87, 0x1c, 0x0e, 0xae, 0x97, 0xc2, 0x76, 0xc5, 0x06, 0x35, 0x6e, 0x18, 0x7d, 0x97, - 0xb0, 0xa3, 0x64, 0x2f, 0x9e, 0x09, 0xbf, 0x62, 0x4f, 0x63, 0x7f, 0x8e, 0xf4, 0xfd, 0xb1, 0x1d, - 0x6e, 0xf2, 0x16, 0x6e, 0xf5, 0x4c, 0xf4, 0x12, 0x2c, 0x97, 0x47, 0xfa, 0x91, 0xcb, 0xe3, 0xef, - 0x74, 0x5a, 0x7a, 0x23, 0x7f, 0x40, 0x1a, 0x3a, 0x52, 0x7f, 0x16, 0x23, 0xc5, 0x67, 0x81, 0xb3, - 0x1a, 0xd6, 0x6b, 0xc4, 0x53, 0x49, 0x79, 0x6f, 0x41, 0x51, 0xa4, 0x2d, 0xd1, 0xd6, 0x32, 0x5d, - 0xb8, 0x88, 0xcf, 0x50, 0x0d, 0x9f, 0x0e, 0x5f, 0xd3, 0x67, 0x48, 0x98, 0x7c, 0xbd, 0xbf, 0x2b, - 0xbc, 0xf1, 0x91, 0xa3, 0x94, 0xea, 0x45, 0xff, 0x65, 0x0d, 0xaf, 0x1a, 0x21, 0x6d, 0x72, 0xf3, - 0x31, 0xc5, 0x46, 0x29, 0x1b, 0x53, 0xa2, 0x17, 0x97, 0xe3, 0x39, 0x16, 0x53, 0xcf, 0x54, 0x66, - 0xa4, 0x87, 0x1f, 0x3c, 0xbb, 0x2b, 0x37, 0x29, 0x89, 0x1f, 0x1b, 0xcf, 0x6b, 0x78, 0x69, 0x24, - 0xd3, 0x24, 0x3d, 0x06, 0x14, 0xcc, 0x54, 0xd9, 0x55, 0x2d, 0x6c, 0xcf, 0x35, 0xb8, 0xc0, 0x34, - 0x38, 0x87, 0xf4, 0x6a, 0x9c, 0x49, 0x4e, 0x42, 0xf9, 0xfc, 0x8f, 0xe8, 0x8f, 0xce, 0x62, 0xf2, - 0xf0, 0x6b, 0xcd, 0x8b, 0xc3, 0x44, 0x91, 0x94, 0xd8, 0x94, 0xcb, 0x4c, 0x4a, 0x8e, 0xcd, 0xc5, - 0x8c, 0xb9, 0x06, 0x84, 0x4a, 0xd0, 0x80, 0x7b, 0xb2, 0x14, 0x10, 0x20, 0xeb, 0xf7, 0x87, 0xef, - 0x71, 0x4b, 0xf9, 0x1c, 0x6e, 0x20, 0xbc, 0x34, 0x12, 0xfd, 0xa5, 0xfc, 0x1c, 0x8d, 0xf8, 0x6a, - 0x61, 0x7b, 0xce, 0xf1, 0x14, 0xe5, 0x48, 0x2a, 0x85, 0x38, 0xd2, 0x03, 0x79, 0x65, 0x66, 0x34, - 0xe9, 0xab, 0x74, 0x0d, 0x2f, 0x63, 0x71, 0x26, 0x1e, 0x0d, 0x48, 0x54, 0x95, 0x6f, 0x60, 0x55, - 0x31, 0x3d, 0x58, 0xbc, 0x03, 0x27, 0xfb, 0x1e, 0x0b, 0xea, 0x77, 0x90, 0x5e, 0x4f, 0x5c, 0x27, - 0x9d, 0xc1, 0x32, 0x11, 0xf9, 0x4d, 0x0c, 0x44, 0x45, 0xf2, 0x74, 0x3b, 0x6b, 0x82, 0x9b, 0x5a, - 0x36, 0x94, 0xb3, 0xc2, 0xd7, 0x34, 0xbc, 0x44, 0xba, 0x87, 0x2c, 0x69, 0xbb, 0x39, 0x5f, 0x2a, - 0x29, 0x4b, 0xb6, 0x14, 0xb4, 0xe6, 0xaa, 0x7e, 0x93, 0xa9, 0xfa, 0x2c, 0x82, 0x9d, 0x99, 0xaa, - 0x26, 0x8a, 0x5c, 0xf8, 0xe6, 0x67, 0xba, 0xbe, 0x07, 0x76, 0xe7, 0x2a, 0xa6, 0xa8, 0x95, 0xd2, - 0x30, 0x70, 0x49, 0xc3, 0xcb, 0x58, 0x84, 0xcf, 0x2c, 0xc2, 0xa2, 0xd9, 0x34, 0x58, 0xbc, 0x83, - 0x78, 0x50, 0xcc, 0xb4, 0x38, 0x8f, 0x2a, 0x33, 0xd7, 0xc2, 0x0f, 0xa0, 0x47, 0x2a, 0xb3, 0x21, - 0x87, 0x1f, 0x14, 0xaf, 0x23, 0xbc, 0xd4, 0x3f, 0x37, 0x1e, 0x14, 0x1f, 0xe0, 0x64, 0x55, 0x17, - 0x85, 0xa1, 0xb2, 0xba, 0x28, 0xed, 0xb9, 0x1c, 0x87, 0xa8, 0x1a, 0x8f, 0x40, 0x70, 0xc1, 0x29, - 0xfc, 0x0c, 0x28, 0x64, 0x23, 0x7f, 0x45, 0x90, 0xd6, 0x2e, 0x3d, 0xa9, 0x7c, 0x9f, 0x5f, 0x78, - 0x0c, 0xef, 0x27, 0x5a, 0xc4, 0x4d, 0x3e, 0x77, 0x96, 0xae, 0x2f, 0xca, 0x87, 0xeb, 0x35, 0x39, - 0x76, 0x69, 0x91, 0xec, 0x6f, 0x8e, 0x5b, 0xec, 0x1b, 0x20, 0xcb, 0x77, 0x9c, 0xf8, 0x7a, 0xa9, - 0xe1, 0x9d, 0xee, 0x92, 0x34, 0xf9, 0xe5, 0x48, 0xce, 0xe9, 0x9c, 0xb9, 0x27, 0x3a, 0xab, 0xe1, - 0x05, 0x35, 0x22, 0x31, 0x3d, 0x9d, 0xfc, 0xf2, 0x41, 0x6a, 0x94, 0xd2, 0x77, 0x45, 0x86, 0x99, - 0xf1, 0x13, 0x46, 0xf1, 0x15, 0x04, 0xfb, 0x8a, 0x52, 0xcc, 0xbf, 0x93, 0xf2, 0x25, 0x78, 0xbc, - 0x0c, 0xe5, 0x12, 0x57, 0x54, 0x5e, 0xd4, 0xf0, 0x22, 0x56, 0xc4, 0x65, 0x21, 0xfa, 0x33, 0x18, - 0x46, 0xd7, 0x88, 0x8d, 0x05, 0x2c, 0x79, 0xac, 0xfe, 0x8c, 0x29, 0xf3, 0x63, 0xa4, 0xcf, 0x9e, - 0x32, 0x7e, 0x2a, 0x3f, 0xa9, 0xdf, 0x22, 0x71, 0xfc, 0xec, 0x6e, 0x63, 0x5c, 0x23, 0xde, 0xe3, - 0xec, 0xbc, 0x96, 0xfc, 0xfa, 0x2c, 0x6c, 0x53, 0x7e, 0x7d, 0x26, 0x9b, 0x70, 0x25, 0x96, 0x52, - 0x21, 0x16, 0xc1, 0x42, 0x81, 0x9b, 0x9f, 0x07, 0xe1, 0x17, 0x1a, 0xdd, 0x84, 0x8d, 0x84, 0x5f, - 0xc7, 0x71, 0x87, 0xe4, 0x5f, 0x9e, 0x4f, 0x40, 0x4b, 0x0c, 0x62, 0xbc, 0xcb, 0x1c, 0xf0, 0x16, - 0x82, 0xe0, 0xe4, 0x95, 0xf8, 0x0e, 0x8f, 0xca, 0x46, 0x0f, 0xa5, 0x25, 0x3d, 0x11, 0xbd, 0x5e, - 0xdf, 0x81, 0x76, 0xe6, 0x14, 0x09, 0x4f, 0xdc, 0xdc, 0x7c, 0xf0, 0x5a, 0x0f, 0x2b, 0xc2, 0x71, - 0xd2, 0x56, 0xda, 0xda, 0x9c, 0x50, 0x46, 0xae, 0x61, 0xeb, 0x0b, 0x59, 0x1b, 0x7f, 0x64, 0x2f, - 0x2c, 0xdf, 0xd4, 0xe0, 0x70, 0xb6, 0x96, 0xe5, 0x93, 0xfd, 0x2b, 0xf0, 0xe5, 0x52, 0x43, 0x96, - 0xbd, 0x11, 0x5d, 0x83, 0x3d, 0xb3, 0x02, 0xb9, 0x7e, 0x0c, 0x46, 0x67, 0x1f, 0x28, 0x5c, 0xd1, - 0xe8, 0x47, 0x14, 0xc1, 0xa3, 0xb9, 0x83, 0xc4, 0x73, 0xac, 0xa6, 0x0b, 0x5b, 0x8b, 0xdc, 0x07, - 0xe4, 0xc6, 0xc2, 0x99, 0xdb, 0x4a, 0xf5, 0xe1, 0xd9, 0x99, 0xf2, 0x71, 0xe6, 0x04, 0x33, 0x29, - 0x79, 0x93, 0x50, 0xfa, 0x38, 0x33, 0x65, 0x80, 0x92, 0x6e, 0x7b, 0xf8, 0xa1, 0xfa, 0x03, 0xe3, - 0x96, 0x77, 0x62, 0x72, 0x6c, 0xa0, 0x69, 0x4f, 0x54, 0x29, 0x2f, 0x7f, 0x08, 0xfa, 0x47, 0x35, - 0xf8, 0xbc, 0x76, 0x9c, 0x74, 0xaa, 0xdd, 0xb1, 0x2d, 0xe3, 0x76, 0x35, 0xfe, 0x99, 0xf6, 0xd8, - 0xa7, 0xe8, 0x17, 0xb6, 0xdb, 0xfe, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x62, 0x8b, 0x12, 0xc0, 0xc1, - 0x3d, 0x00, 0x00, + 0x21, 0xa1, 0x89, 0x46, 0x6d, 0xfd, 0x60, 0xfd, 0x62, 0xcc, 0x9c, 0xc7, 0xbc, 0xcf, 0x3c, 0x2e, + 0xbb, 0x4d, 0x13, 0xf9, 0xb6, 0x7b, 0xcf, 0xff, 0x9c, 0xf3, 0xfb, 0xfd, 0xfe, 0x8f, 0x73, 0xce, + 0xcc, 0x19, 0xbc, 0xfa, 0x44, 0x73, 0xda, 0x21, 0x46, 0xa3, 0x59, 0xb6, 0x89, 0x35, 0x65, 0xd4, + 0x49, 0x59, 0x6f, 0xb4, 0x8c, 0xf6, 0x60, 0xc7, 0x32, 0x1d, 0x13, 0x7a, 0x45, 0xeb, 0x20, 0x6f, + 0x55, 0x57, 0x4f, 0x98, 0xe6, 0x44, 0x93, 0x94, 0xf5, 0x8e, 0x51, 0xd6, 0xdb, 0x6d, 0xd3, 0xd1, + 0x1d, 0xc3, 0x6c, 0xdb, 0xcc, 0x5e, 0xf5, 0x47, 0xa3, 0xa3, 0x94, 0x3b, 0x96, 0x79, 0x8a, 0xd4, + 0x1d, 0xde, 0x3a, 0x98, 0xdc, 0x5a, 0x6b, 0x98, 0x2d, 0xdd, 0x68, 0xd7, 0x74, 0xc7, 0xb1, 0x8c, + 0xf1, 0x49, 0x87, 0x88, 0xd1, 0xfa, 0x24, 0xf6, 0x31, 0xc3, 0x95, 0x11, 0x43, 0x47, 0xb7, 0x4f, + 0xf3, 0xa6, 0x35, 0x91, 0xa6, 0xa7, 0x4c, 0xeb, 0xf4, 0x89, 0xa6, 0xf9, 0x14, 0x6f, 0xee, 0x97, + 0x34, 0xc7, 0xe7, 0xb8, 0x3b, 0x62, 0xd9, 0xd4, 0x27, 0xdb, 0xf5, 0x93, 0xb5, 0x4e, 0x53, 0xe7, + 0x62, 0xa9, 0x6a, 0xc4, 0x82, 0x4c, 0x91, 0xb6, 0xa0, 0xbe, 0x36, 0xda, 0x76, 0x86, 0xd4, 0x27, + 0x5d, 0xe5, 0x24, 0x54, 0x5b, 0xba, 0x53, 0x3f, 0xa9, 0x8f, 0x37, 0x49, 0xcd, 0x22, 0xb6, 0x39, + 0x69, 0xd5, 0x09, 0x37, 0xdc, 0x10, 0x31, 0x6c, 0x9b, 0x0d, 0x52, 0x8b, 0x8e, 0xb6, 0x21, 0x41, + 0x8f, 0x98, 0x51, 0xd4, 0x57, 0x53, 0xc4, 0xb2, 0xfd, 0xd6, 0x55, 0x91, 0xd6, 0xba, 0xd9, 0x6a, + 0x49, 0xd1, 0x36, 0x88, 0x5d, 0xb7, 0x8c, 0x8e, 0x3b, 0x78, 0x8d, 0xb4, 0x1d, 0xc3, 0x99, 0x66, + 0x86, 0xdb, 0xbe, 0x79, 0x06, 0x2f, 0x18, 0x71, 0x4d, 0x8e, 0xb1, 0xf0, 0x81, 0x4b, 0x08, 0xe3, + 0x3d, 0x16, 0xd1, 0x1d, 0x72, 0x5c, 0xb7, 0x4f, 0xc3, 0x7a, 0x2f, 0x24, 0x06, 0x59, 0xd8, 0xb9, + 0xbf, 0xb2, 0xf6, 0x31, 0xf2, 0xa5, 0x49, 0x62, 0x3b, 0xaa, 0x96, 0x66, 0x62, 0x77, 0xcc, 0xb6, + 0x4d, 0xb4, 0x5d, 0xcf, 0xbc, 0x79, 0xe3, 0x8a, 0xb2, 0x5d, 0x5b, 0x48, 0xc3, 0x72, 0xea, 0x5e, + 0x4a, 0xd8, 0x1e, 0x46, 0xa5, 0xea, 0x3a, 0x4d, 0x0d, 0xfd, 0x56, 0x36, 0xad, 0x89, 0xf2, 0x59, + 0xa3, 0x31, 0x68, 0x5a, 0x13, 0x33, 0xc3, 0xa8, 0x04, 0x6f, 0x23, 0x3c, 0xbf, 0x42, 0x1c, 0x8a, + 0xe6, 0xee, 0xe8, 0x54, 0x47, 0xc6, 0xdd, 0x78, 0xab, 0x10, 0x47, 0x80, 0x59, 0x9a, 0x04, 0x46, + 0xfb, 0x36, 0xa2, 0xf3, 0x5f, 0x44, 0xf0, 0x40, 0x78, 0x32, 0x77, 0x22, 0x1e, 0xb4, 0x33, 0xf4, + 0x1f, 0x16, 0xe9, 0xec, 0xef, 0xb6, 0xde, 0x22, 0xec, 0x2f, 0xae, 0xfc, 0x4c, 0xf5, 0x20, 0x1c, + 0x90, 0xa3, 0x2d, 0x3a, 0x1a, 0x5c, 0x47, 0xf8, 0xce, 0x83, 0x86, 0x4d, 0xb9, 0xed, 0x6f, 0xd8, + 0x30, 0x14, 0x05, 0x7f, 0x58, 0x6f, 0x91, 0xc6, 0x5e, 0xea, 0xaf, 0xfd, 0x0d, 0xd7, 0x6f, 0x27, + 0x0c, 0x62, 0xb9, 0x3d, 0x04, 0xdd, 0xcd, 0xb9, 0x7b, 0x68, 0x4f, 0x50, 0x09, 0x8e, 0xc1, 0x86, + 0x20, 0x81, 0x9a, 0xd1, 0xb0, 0xcb, 0x67, 0x7d, 0xcc, 0x1c, 0x70, 0x75, 0x0b, 0x94, 0x12, 0x78, + 0x32, 0x92, 0x31, 0x6b, 0x78, 0x59, 0xc1, 0x9f, 0x10, 0x3c, 0x6c, 0xd8, 0x10, 0xc5, 0x34, 0xc6, + 0x13, 0x24, 0x08, 0x7c, 0x45, 0x92, 0x9f, 0x28, 0xce, 0x3f, 0x33, 0x5f, 0xfd, 0x1e, 0xc1, 0x50, + 0x51, 0x5f, 0x55, 0x1f, 0x8a, 0xfa, 0xb7, 0xa0, 0x7b, 0xaa, 0xfd, 0xb0, 0x29, 0xdf, 0xa4, 0xd5, + 0x9d, 0xb0, 0xbd, 0x8b, 0xa9, 0xe0, 0x45, 0x84, 0x17, 0xb1, 0xdc, 0xf8, 0x1c, 0x2f, 0x64, 0xb0, + 0x31, 0x2a, 0x85, 0x68, 0x09, 0xa7, 0xd9, 0xa6, 0x2c, 0x33, 0x9e, 0x6a, 0x23, 0x54, 0xbe, 0x4f, + 0x6b, 0x4b, 0x04, 0x3c, 0x51, 0x31, 0x69, 0xba, 0x6d, 0xd0, 0xd6, 0xc6, 0x7e, 0x8f, 0xa5, 0xdc, + 0xbb, 0x08, 0xdf, 0x59, 0x21, 0x8e, 0x87, 0x30, 0x3b, 0xed, 0x56, 0xc8, 0xc0, 0x69, 0xdf, 0x67, + 0xee, 0xbc, 0x8a, 0x60, 0x24, 0x3e, 0x71, 0xd1, 0xf4, 0x3b, 0x0a, 0x87, 0xd3, 0xd1, 0x17, 0x4e, + 0xc1, 0xf7, 0x11, 0xfe, 0x64, 0x85, 0x38, 0xa3, 0xd3, 0x6d, 0xbd, 0x65, 0xd4, 0x0f, 0x9b, 0x0d, + 0xdf, 0x2f, 0x5b, 0xa3, 0x9c, 0x92, 0xed, 0x84, 0x04, 0x03, 0x51, 0xf3, 0x44, 0x5b, 0xee, 0xa4, + 0x2f, 0x53, 0x51, 0xa6, 0xc0, 0x11, 0x74, 0x1a, 0xcc, 0xb8, 0x46, 0x57, 0x0b, 0xc1, 0x8d, 0x42, + 0xf5, 0x56, 0x85, 0x5a, 0x94, 0x5a, 0xa8, 0x25, 0xc8, 0x33, 0xd4, 0xe0, 0x93, 0xa6, 0x63, 0x1b, + 0x8d, 0x19, 0x78, 0x03, 0xe1, 0xc5, 0x6e, 0xae, 0x09, 0x58, 0x73, 0x5e, 0x7b, 0x74, 0x4a, 0xf7, + 0x49, 0xe8, 0x8b, 0x7a, 0x4f, 0x56, 0x7f, 0x86, 0x60, 0x50, 0xe2, 0x68, 0x59, 0x0d, 0xfa, 0x8d, + 0x82, 0x17, 0x06, 0x39, 0xe5, 0xac, 0x43, 0xab, 0x65, 0x81, 0x4b, 0x71, 0xff, 0x95, 0x05, 0xef, + 0x0d, 0x04, 0x3b, 0xba, 0x09, 0xde, 0xea, 0x9e, 0xa4, 0xa0, 0x2f, 0x5a, 0x93, 0x02, 0xb5, 0x38, + 0x7b, 0xf2, 0xea, 0x2e, 0xb8, 0xbf, 0xcb, 0x29, 0xe1, 0xa7, 0x08, 0xf7, 0xb2, 0x62, 0x72, 0x90, + 0x6e, 0x9d, 0x8e, 0x36, 0xf5, 0x36, 0xf4, 0x45, 0x05, 0xf2, 0xdb, 0xc2, 0xf5, 0xa9, 0x3f, 0xdb, + 0x90, 0x07, 0x7f, 0x85, 0x8a, 0x3a, 0xa2, 0x2d, 0x15, 0x40, 0x03, 0x3b, 0x35, 0x5a, 0xa4, 0x36, + 0x69, 0xeb, 0x93, 0x9a, 0x62, 0x75, 0xea, 0x7d, 0x84, 0x17, 0x56, 0x88, 0x13, 0x40, 0x9b, 0x5d, + 0xa9, 0x54, 0x39, 0x4c, 0xed, 0x45, 0xe6, 0xee, 0xef, 0x21, 0x18, 0x4d, 0x9c, 0xbf, 0x68, 0xb9, + 0x3a, 0x06, 0x9f, 0xcd, 0xe4, 0x51, 0xb8, 0x62, 0xfd, 0x0b, 0xe1, 0xbb, 0x2a, 0xc4, 0x19, 0xa9, + 0x3b, 0xc6, 0x54, 0xaa, 0xa3, 0xa2, 0x16, 0x79, 0x14, 0xb8, 0xc6, 0x14, 0xb8, 0x8c, 0xe0, 0x41, + 0x81, 0x5c, 0xa7, 0xc3, 0xd4, 0x0a, 0x0a, 0x51, 0x3d, 0x04, 0x8f, 0xa6, 0x8d, 0x50, 0x50, 0x02, + 0x77, 0x17, 0xb8, 0xcc, 0x4d, 0xc9, 0x28, 0x29, 0x1b, 0x06, 0xb2, 0x78, 0x07, 0xd3, 0x7d, 0xad, + 0x9c, 0x3b, 0x4d, 0x78, 0x8b, 0xd2, 0x6f, 0xfa, 0xd5, 0x27, 0x91, 0x7d, 0xbc, 0x5e, 0x0d, 0xc3, + 0xa7, 0x32, 0xd9, 0xca, 0x2a, 0xd7, 0x3b, 0x08, 0x2f, 0x71, 0x27, 0xf7, 0xa1, 0xcc, 0x79, 0x3d, + 0x3e, 0x45, 0x69, 0x36, 0xfc, 0xc2, 0x12, 0x40, 0x2b, 0x2b, 0xc9, 0xf7, 0xf9, 0x35, 0x30, 0x6a, + 0x9d, 0x4a, 0xef, 0x75, 0x85, 0x2d, 0x36, 0x41, 0x9f, 0xe5, 0x2a, 0xcd, 0x59, 0xbe, 0xfa, 0x37, + 0x8b, 0xd5, 0x7f, 0x22, 0xbf, 0xe2, 0x15, 0x0d, 0xd2, 0x7d, 0x92, 0x44, 0x2f, 0x5a, 0xa2, 0xcb, + 0xb0, 0xb5, 0x10, 0x84, 0xea, 0x67, 0x60, 0xb8, 0xfb, 0x89, 0xe1, 0xa2, 0x82, 0x7b, 0x1f, 0xeb, + 0x34, 0x72, 0x17, 0x6a, 0x66, 0x9b, 0xa3, 0x50, 0x0b, 0x43, 0x5e, 0xa8, 0x5f, 0x62, 0x0a, 0xbf, + 0x80, 0xd4, 0x59, 0xa9, 0x87, 0x6e, 0x69, 0x3f, 0xa6, 0xce, 0x41, 0x49, 0xfc, 0x01, 0xc2, 0x8b, + 0xd9, 0x1a, 0xb3, 0x57, 0xec, 0x7c, 0x20, 0xb6, 0x5d, 0xf6, 0x9a, 0xc2, 0xcb, 0x56, 0x5f, 0xa6, + 0x1d, 0x17, 0x63, 0x37, 0xd5, 0x62, 0x58, 0x03, 0x81, 0xdf, 0xdb, 0x65, 0xd1, 0x35, 0x6b, 0xbd, + 0xba, 0x3a, 0xde, 0xe0, 0x67, 0x86, 0xbb, 0x5c, 0xfd, 0x1a, 0xe1, 0x25, 0x63, 0x84, 0xd1, 0xf6, + 0x81, 0xf6, 0x4b, 0x01, 0x08, 0xdb, 0xc2, 0x50, 0x1f, 0xa3, 0x50, 0x8f, 0x68, 0xab, 0x12, 0x10, + 0x59, 0x7c, 0x50, 0x17, 0xf3, 0x56, 0xad, 0x5f, 0x86, 0x59, 0xb8, 0x22, 0x60, 0x0e, 0xbf, 0x44, + 0xb8, 0x77, 0x8c, 0xd4, 0xcd, 0x29, 0x62, 0xf9, 0xf0, 0xfb, 0x52, 0xe0, 0x53, 0xd3, 0xc2, 0xe8, + 0x8f, 0x51, 0xf4, 0x87, 0xfc, 0xe7, 0x02, 0x21, 0xf4, 0x74, 0x4c, 0x17, 0xfc, 0x16, 0xad, 0x2f, + 0x1b, 0xbc, 0xb0, 0x76, 0x8b, 0xec, 0x82, 0x0a, 0x71, 0x7c, 0xdc, 0x03, 0xb2, 0x8d, 0x9f, 0x67, + 0x12, 0xd8, 0x34, 0xac, 0x94, 0x62, 0xd7, 0xce, 0xb1, 0x1c, 0x99, 0x81, 0x9d, 0x09, 0x68, 0x72, + 0x94, 0x8e, 0x51, 0x78, 0x38, 0x8b, 0x46, 0x8e, 0xe5, 0xf1, 0x1f, 0x08, 0x2f, 0x66, 0xc9, 0x9b, + 0x27, 0x03, 0xc2, 0xf5, 0xa0, 0x2f, 0xd3, 0x8e, 0x3b, 0xe6, 0x39, 0x46, 0xf5, 0x1c, 0x52, 0xbb, + 0xe3, 0xea, 0x7a, 0xad, 0xa2, 0xce, 0x02, 0x5d, 0xd7, 0xa1, 0xe7, 0x15, 0xdc, 0x1b, 0x74, 0xe8, + 0xa8, 0xee, 0xe8, 0x50, 0xce, 0xe3, 0x54, 0xd7, 0x52, 0x70, 0x1f, 0xca, 0xdf, 0x81, 0x8b, 0x70, + 0x89, 0x89, 0xf0, 0x35, 0xe4, 0x57, 0xf0, 0x86, 0xee, 0xe8, 0x05, 0xbd, 0xbe, 0x1f, 0x2a, 0xb2, + 0xde, 0x45, 0x5d, 0x7f, 0x1d, 0xe1, 0x45, 0xee, 0x7a, 0xe8, 0x21, 0xce, 0xb9, 0xbc, 0xae, 0x91, + 0xba, 0x9d, 0xae, 0xae, 0x26, 0xa5, 0x69, 0xc0, 0x40, 0x01, 0x57, 0x07, 0xb7, 0x41, 0x45, 0x19, + 0xc1, 0x07, 0x08, 0xc3, 0x71, 0x62, 0xb5, 0x8c, 0x76, 0x28, 0x8a, 0x37, 0x4b, 0x61, 0x7a, 0xc6, + 0x82, 0x51, 0x29, 0x8f, 0x69, 0x34, 0x96, 0x4b, 0xb7, 0x10, 0xcb, 0xa5, 0x59, 0x8a, 0xe5, 0xbf, + 0xb0, 0x58, 0x3e, 0x6c, 0x36, 0x48, 0x4a, 0x61, 0x0d, 0x35, 0x07, 0x8a, 0xd3, 0x9a, 0x54, 0x43, + 0xed, 0xab, 0x0a, 0x65, 0xfa, 0x5f, 0x04, 0x6d, 0x81, 0x36, 0xfc, 0x48, 0xda, 0x9e, 0xa3, 0xc7, + 0x0c, 0xd5, 0x6f, 0x20, 0xb8, 0x80, 0x64, 0x73, 0x0a, 0x99, 0x42, 0x83, 0x78, 0x9a, 0xcd, 0xc1, + 0x43, 0x8f, 0xff, 0x28, 0x18, 0xdc, 0xc8, 0x0e, 0xa9, 0x63, 0xc7, 0x97, 0xdf, 0x50, 0x7b, 0x30, + 0x61, 0xd6, 0x67, 0x5a, 0x6a, 0x57, 0x99, 0xd6, 0x97, 0x14, 0xb0, 0xa5, 0x5a, 0x7b, 0x8f, 0x3e, + 0x24, 0x1c, 0x93, 0xdb, 0x3d, 0xa6, 0xc9, 0xcd, 0xac, 0xaa, 0x5c, 0x43, 0x70, 0x25, 0x5d, 0xf0, + 0xe4, 0xde, 0x4c, 0xf6, 0xb9, 0x03, 0x06, 0x97, 0x3f, 0x8e, 0x57, 0xc6, 0xb5, 0xdf, 0x67, 0x5a, + 0xf4, 0xa9, 0x7e, 0x39, 0x55, 0x58, 0x6e, 0x55, 0xd0, 0x13, 0xcf, 0xcf, 0xa7, 0x9e, 0xb8, 0x36, + 0x1f, 0x7e, 0xd8, 0x23, 0x14, 0xa9, 0x9f, 0x34, 0x9a, 0x0d, 0x8b, 0x44, 0xdf, 0xb6, 0xd8, 0xe5, + 0xb3, 0xe1, 0x1f, 0x6a, 0x22, 0x6c, 0x42, 0xbf, 0x48, 0x54, 0x29, 0xdc, 0xd5, 0x13, 0xac, 0x70, + 0x4f, 0x1e, 0xd4, 0x79, 0xfa, 0x89, 0xa8, 0x4f, 0xb2, 0xe6, 0xcf, 0xfd, 0x53, 0x39, 0x08, 0x9b, + 0x14, 0xb0, 0xc2, 0x44, 0x8a, 0x4a, 0x18, 0x88, 0x6d, 0x7a, 0x92, 0x8d, 0x45, 0x1c, 0x6b, 0xba, + 0xa6, 0x3b, 0x0e, 0x69, 0x75, 0x9c, 0x99, 0xea, 0xcd, 0x1e, 0xb8, 0x91, 0xed, 0x2e, 0x1a, 0xc9, + 0x85, 0xd5, 0x63, 0x41, 0x7e, 0xdb, 0xd3, 0x1f, 0x09, 0x4f, 0xc3, 0xb9, 0x1e, 0xbc, 0x34, 0xba, + 0xe4, 0xd1, 0x2d, 0xdc, 0x40, 0xd6, 0xb2, 0x17, 0xdc, 0xbe, 0x6d, 0xc9, 0x67, 0xcc, 0xd7, 0xfc, + 0xcb, 0xac, 0x3a, 0x5f, 0x08, 0x54, 0x67, 0xba, 0xf9, 0xfa, 0x90, 0x96, 0xc3, 0x6f, 0x21, 0xb8, + 0x88, 0x52, 0x27, 0xfe, 0xd0, 0xd7, 0xc4, 0x97, 0x11, 0x5e, 0x3c, 0x46, 0x26, 0x0c, 0xdb, 0x21, + 0xd6, 0x51, 0x36, 0x62, 0xfc, 0xd8, 0xc0, 0x1b, 0x84, 0x9d, 0xf4, 0xd8, 0x10, 0xb3, 0xe3, 0xb2, + 0x8f, 0x52, 0xd5, 0x1f, 0xd4, 0x7a, 0x05, 0x77, 0x8e, 0x9d, 0x1e, 0x9b, 0xfb, 0x34, 0x2d, 0xfa, + 0x33, 0x93, 0x41, 0x5c, 0x4c, 0x10, 0x87, 0xe7, 0xef, 0x20, 0xbc, 0x90, 0x9d, 0x47, 0x04, 0xd0, + 0xe5, 0x12, 0x00, 0xea, 0x46, 0x49, 0x43, 0xe4, 0x38, 0xb3, 0x8f, 0xe2, 0xda, 0xad, 0x2e, 0x8b, + 0x01, 0x38, 0x6b, 0x34, 0xe8, 0x06, 0xef, 0x1e, 0x75, 0x5d, 0x32, 0x38, 0xe1, 0x13, 0x8a, 0xec, + 0x59, 0x84, 0x17, 0xb8, 0x6b, 0x0e, 0x9f, 0xc5, 0x06, 0x4d, 0x32, 0x7f, 0xea, 0xfb, 0x4f, 0xd1, + 0x5b, 0xbb, 0x8f, 0xc2, 0x1a, 0x82, 0x98, 0x5c, 0xd5, 0xd5, 0xa0, 0xca, 0xe1, 0xc0, 0x5b, 0x08, + 0xdf, 0x15, 0x7e, 0xb3, 0xb8, 0x77, 0x8a, 0xb4, 0x9d, 0xf8, 0x6b, 0xac, 0xd8, 0x11, 0x87, 0xda, + 0x09, 0x60, 0x83, 0x79, 0xcd, 0xb9, 0x8a, 0x35, 0x0a, 0xf7, 0x09, 0x6d, 0x85, 0xb7, 0x15, 0x76, + 0x9b, 0xed, 0xf0, 0x5b, 0xc7, 0x61, 0x6d, 0x67, 0xa4, 0x99, 0xe2, 0x66, 0xf7, 0x2f, 0xe2, 0xd1, + 0x1e, 0xec, 0x0b, 0xbf, 0xf5, 0x1e, 0xee, 0xd0, 0xe4, 0xa6, 0x9c, 0x36, 0xa7, 0xe6, 0x7d, 0x88, + 0x4f, 0x29, 0x8f, 0x29, 0xe7, 0x52, 0xa5, 0x5c, 0x8e, 0xfb, 0x2f, 0x26, 0x38, 0x58, 0x37, 0x5f, + 0x28, 0x8f, 0x5d, 0xda, 0x0e, 0x39, 0x8f, 0xc4, 0xc4, 0x15, 0x5d, 0xe1, 0x4f, 0x1e, 0x0d, 0x77, + 0x37, 0x23, 0xa1, 0x41, 0x9b, 0xf2, 0xd1, 0x48, 0x32, 0xe5, 0x34, 0x3a, 0x94, 0xc6, 0xa9, 0x18, + 0x0d, 0xef, 0xce, 0xc5, 0x11, 0xed, 0x80, 0x9c, 0x46, 0x47, 0xb7, 0x48, 0xdb, 0xa9, 0xe5, 0x59, + 0x4d, 0xc5, 0x80, 0xf0, 0xda, 0x1d, 0xf4, 0x00, 0x13, 0xc2, 0x14, 0x3f, 0xc0, 0x84, 0x9a, 0xd3, + 0x0e, 0x30, 0x21, 0x43, 0xed, 0xef, 0xf3, 0x28, 0x9f, 0x9b, 0xf3, 0xe0, 0xbb, 0x4a, 0xe8, 0xee, + 0x42, 0xa4, 0x64, 0xe7, 0x5e, 0xc8, 0x0b, 0xac, 0xdc, 0xb9, 0x97, 0xea, 0x8c, 0xb5, 0x39, 0x71, + 0x31, 0x4e, 0x5a, 0x7d, 0xe3, 0xcb, 0x6d, 0xe2, 0xfa, 0x1a, 0xdf, 0x3a, 0xbd, 0xa2, 0xc0, 0x75, + 0xa9, 0x3c, 0x62, 0x61, 0xc9, 0xb5, 0x45, 0xfa, 0x7f, 0x97, 0x12, 0xde, 0xeb, 0x61, 0x27, 0xc5, + 0x50, 0x18, 0x26, 0x9c, 0x14, 0x43, 0xed, 0xa9, 0xe7, 0x93, 0x98, 0xa5, 0x76, 0xb1, 0x87, 0x06, + 0xf5, 0xf9, 0x1e, 0xf8, 0x11, 0x92, 0x06, 0x75, 0x6e, 0x37, 0xe4, 0xf5, 0x41, 0x3e, 0x07, 0xc8, + 0xd5, 0xaf, 0xfe, 0x01, 0xc1, 0x9b, 0x28, 0x35, 0xca, 0x72, 0x85, 0xd8, 0x47, 0x8e, 0x18, 0xfc, + 0xed, 0x0e, 0xba, 0x1f, 0x0d, 0x39, 0x2a, 0x79, 0x3f, 0x1a, 0xad, 0x62, 0xa9, 0xfb, 0xd1, 0x64, + 0x63, 0x5e, 0xa7, 0x3f, 0x60, 0x85, 0xed, 0xbd, 0x79, 0xf0, 0x82, 0x12, 0xda, 0x17, 0xde, 0xae, + 0x6e, 0xd1, 0xea, 0xf6, 0x3b, 0x05, 0x5e, 0x4d, 0xd7, 0xe8, 0x76, 0x89, 0x2b, 0x52, 0xe2, 0x5e, + 0x53, 0xf0, 0x9a, 0xd0, 0x6e, 0x7a, 0x94, 0x0e, 0x39, 0xe2, 0xdd, 0xa9, 0x85, 0x1d, 0x92, 0x0d, + 0x6a, 0xd4, 0x30, 0xfc, 0x2e, 0x61, 0x67, 0xc1, 0x5e, 0x3c, 0x13, 0x7e, 0xc5, 0x9e, 0xc6, 0xfe, + 0x1c, 0xa9, 0x07, 0x22, 0x3b, 0xdc, 0xf8, 0xd5, 0xe3, 0xf2, 0xd9, 0xf0, 0xcd, 0x5f, 0x2e, 0x4f, + 0xe0, 0x47, 0x2e, 0x8f, 0xbb, 0xd3, 0x69, 0xa8, 0xb5, 0xec, 0x01, 0x69, 0xe8, 0x04, 0xfa, 0xb3, + 0x18, 0xc9, 0x3f, 0x0b, 0x9c, 0x53, 0xb0, 0x5a, 0x21, 0x8e, 0x4c, 0xca, 0x7b, 0x73, 0x8a, 0x12, + 0xd8, 0x12, 0x6d, 0x2b, 0xd2, 0x85, 0x8b, 0xf8, 0x34, 0xd5, 0xf0, 0x8c, 0xff, 0x9a, 0x3e, 0x45, + 0xc2, 0xf8, 0xeb, 0xfd, 0xdd, 0xfe, 0x8d, 0x8f, 0x0c, 0xa5, 0x64, 0x2f, 0xfa, 0xaf, 0x28, 0x78, + 0xcd, 0x28, 0x69, 0x92, 0x5b, 0x8f, 0x29, 0x36, 0x4a, 0xd1, 0x98, 0x12, 0xbd, 0xb8, 0x1c, 0xcf, + 0xb2, 0x98, 0x7a, 0xba, 0xd4, 0x95, 0x1e, 0x6e, 0xf0, 0xec, 0x29, 0xdd, 0xa2, 0x24, 0x6e, 0x6c, + 0x3c, 0xa7, 0xe0, 0xe5, 0xa1, 0x4c, 0x0b, 0xe8, 0x31, 0x28, 0x61, 0x26, 0xcb, 0xae, 0x72, 0x6e, + 0x7b, 0xae, 0xc1, 0x45, 0xa6, 0xc1, 0x79, 0xa4, 0x96, 0xa3, 0x4c, 0x32, 0x12, 0xca, 0xe5, 0x7f, + 0x54, 0x7d, 0x74, 0x16, 0x93, 0x87, 0xdf, 0xe5, 0x5e, 0xea, 0x27, 0x4a, 0x40, 0x89, 0x81, 0x4c, + 0x66, 0x81, 0xe4, 0xd8, 0x92, 0xcf, 0x98, 0x6b, 0x40, 0xa8, 0x04, 0x35, 0xb8, 0x27, 0x4d, 0x01, + 0x01, 0xb2, 0x7a, 0xbf, 0xff, 0x1e, 0xb7, 0x90, 0xcf, 0xe1, 0x26, 0xc2, 0xcb, 0x43, 0xd1, 0x5f, + 0xc8, 0xcf, 0xe1, 0x88, 0x2f, 0xe7, 0xb6, 0xe7, 0x1c, 0x4f, 0x53, 0x8e, 0xa4, 0x94, 0x8b, 0x23, + 0x3d, 0x90, 0x97, 0xba, 0xa3, 0x49, 0x5f, 0xa5, 0x2b, 0x78, 0x05, 0x8b, 0x33, 0xf1, 0x68, 0x20, + 0x40, 0x55, 0xfa, 0x06, 0x56, 0x16, 0xd3, 0x43, 0xf9, 0x3b, 0x70, 0xb2, 0xef, 0xb0, 0xa0, 0x7e, + 0x0b, 0xa9, 0xd5, 0xd8, 0x75, 0xd2, 0x2e, 0x96, 0x89, 0xd0, 0x6f, 0x62, 0x20, 0x2a, 0x92, 0xa3, + 0x9a, 0x69, 0x13, 0xdc, 0xd2, 0xb2, 0x21, 0x9d, 0x15, 0xbe, 0xa2, 0xe0, 0x65, 0x81, 0xcb, 0xd7, + 0x01, 0x6d, 0xb7, 0x64, 0x4b, 0x15, 0xc8, 0x92, 0xad, 0x39, 0xad, 0xb9, 0xaa, 0x5f, 0x67, 0xaa, + 0x3e, 0x83, 0x60, 0x57, 0xaa, 0xaa, 0xb1, 0x22, 0xe7, 0xbf, 0xf9, 0x99, 0xa9, 0xee, 0x85, 0x3d, + 0x99, 0x8a, 0x49, 0x6a, 0x65, 0x60, 0x18, 0xb8, 0xac, 0xe0, 0x15, 0x2c, 0xc2, 0xbb, 0x8b, 0xb0, + 0x70, 0x36, 0x0d, 0xe5, 0xef, 0x20, 0x1e, 0x14, 0x33, 0x2d, 0x2e, 0xa0, 0x52, 0xf7, 0x5a, 0xb8, + 0x01, 0xf4, 0x48, 0x69, 0x36, 0xe4, 0x70, 0x83, 0xe2, 0x55, 0x84, 0x97, 0xbb, 0xe7, 0xc6, 0x43, + 0xe2, 0xab, 0xa3, 0xb4, 0xea, 0x22, 0x31, 0x94, 0x56, 0x17, 0xa9, 0x3d, 0x97, 0xe3, 0x30, 0x55, + 0xe3, 0x11, 0xf0, 0x2e, 0x38, 0xf9, 0xdf, 0x3e, 0xf9, 0x6c, 0x82, 0x9f, 0x4e, 0x24, 0xb5, 0x07, + 0x9e, 0x54, 0xbe, 0xcb, 0x2f, 0x3c, 0xfa, 0xf7, 0x13, 0x0d, 0x62, 0xc7, 0x9f, 0x3b, 0x07, 0xae, + 0x2f, 0x06, 0x0f, 0xd7, 0xeb, 0x32, 0xec, 0x92, 0x22, 0xd9, 0xdd, 0x1c, 0x37, 0xd8, 0x87, 0x4f, + 0x86, 0xeb, 0x38, 0xf1, 0xc9, 0x56, 0xcd, 0x99, 0xee, 0x90, 0x24, 0xf9, 0x83, 0x91, 0x9c, 0xd1, + 0x39, 0x75, 0x4f, 0x74, 0x4e, 0xc1, 0x8b, 0x2a, 0x24, 0xc0, 0x74, 0x3a, 0xfe, 0xb9, 0x47, 0xa0, + 0x31, 0x90, 0xbe, 0xab, 0x52, 0xcc, 0xb4, 0x9f, 0x30, 0x8a, 0x2f, 0x21, 0xd8, 0x9f, 0x97, 0x62, + 0xf6, 0x9d, 0x94, 0xcf, 0xc3, 0xe3, 0x45, 0x28, 0x17, 0xb8, 0xa2, 0xf2, 0xbc, 0x82, 0x97, 0xb0, + 0x22, 0x1e, 0x14, 0xa2, 0x3f, 0x85, 0x61, 0x78, 0x8d, 0xd8, 0x9c, 0xc3, 0x92, 0xc7, 0xea, 0xcf, + 0x98, 0x32, 0x3f, 0x46, 0xea, 0xec, 0x29, 0xe3, 0xa6, 0xf2, 0x93, 0xea, 0x1c, 0x89, 0xe3, 0x66, + 0x77, 0x13, 0xe3, 0x0a, 0x71, 0x1e, 0x67, 0xe7, 0xb5, 0xf8, 0x27, 0x77, 0x7e, 0x9b, 0xf4, 0x93, + 0xbb, 0xa0, 0x09, 0x57, 0x62, 0x39, 0x15, 0x62, 0x09, 0x2c, 0x16, 0xb8, 0xf9, 0x79, 0x10, 0x7e, + 0xa1, 0xd0, 0x4d, 0xd8, 0xa8, 0xff, 0x49, 0x20, 0x77, 0x48, 0xf6, 0xe5, 0xf9, 0x18, 0xb4, 0xd8, + 0x20, 0xda, 0xdb, 0xcc, 0x01, 0x6f, 0x20, 0xf0, 0x4e, 0x5e, 0xb1, 0x8f, 0x0f, 0xa9, 0x6c, 0xf4, + 0x50, 0x5a, 0xd0, 0x13, 0xe1, 0xeb, 0xf5, 0x6d, 0x68, 0xa6, 0x4e, 0x11, 0xf3, 0xc4, 0xad, 0xcd, + 0x07, 0xaf, 0xf4, 0xb0, 0x22, 0x1c, 0x25, 0x6d, 0x24, 0xad, 0xcd, 0x31, 0x65, 0x82, 0x35, 0x6c, + 0x63, 0x2e, 0x6b, 0xed, 0x8f, 0xec, 0x85, 0xe5, 0xeb, 0x0a, 0x1c, 0x49, 0xd7, 0xb2, 0x78, 0xb2, + 0x7f, 0x11, 0xbe, 0x50, 0x68, 0xc8, 0xa2, 0x37, 0xa2, 0x2b, 0xb0, 0x77, 0x56, 0x20, 0x57, 0x8f, + 0xc3, 0xd8, 0xec, 0x03, 0x85, 0xab, 0x0a, 0xfd, 0x88, 0xc2, 0x7b, 0x34, 0x77, 0x88, 0x38, 0x96, + 0x51, 0xb7, 0x61, 0x5b, 0x9e, 0xfb, 0x80, 0xdc, 0x58, 0x38, 0x73, 0x7b, 0xa1, 0x3e, 0x3c, 0x3b, + 0x13, 0xbe, 0x48, 0x6d, 0x31, 0x93, 0x82, 0x37, 0x09, 0x03, 0x5f, 0xa4, 0x26, 0x0c, 0x50, 0xd0, + 0x6d, 0x0f, 0x3f, 0x54, 0x7d, 0x60, 0xc2, 0x70, 0x4e, 0x4e, 0x8e, 0x0f, 0xd6, 0xcd, 0x56, 0x99, + 0xf2, 0x72, 0x87, 0xa0, 0x7f, 0x94, 0xbd, 0x6f, 0x8a, 0x27, 0x48, 0xbb, 0xdc, 0x19, 0xdf, 0x3a, + 0x61, 0x96, 0xa3, 0xdf, 0xa6, 0x8f, 0x7f, 0x8c, 0x7e, 0x56, 0xbc, 0xfd, 0x7f, 0x01, 0x00, 0x00, + 0xff, 0xff, 0xc9, 0x01, 0x14, 0x6f, 0xb6, 0x3e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -230,6 +233,8 @@ type AdminServiceClient interface { CreateWorkflow(ctx context.Context, in *admin.WorkflowCreateRequest, opts ...grpc.CallOption) (*admin.WorkflowCreateResponse, error) // Fetch a :ref:`ref_flyteidl.admin.Workflow` definition. GetWorkflow(ctx context.Context, in *admin.ObjectGetRequest, opts ...grpc.CallOption) (*admin.Workflow, error) + // Fetches a :ref:`ref_flyteidl.admin.DynamicNodeWorkflowResponse`. + GetDynamicNodeWorkflow(ctx context.Context, in *admin.GetDynamicNodeWorkflowRequest, opts ...grpc.CallOption) (*admin.DynamicNodeWorkflowResponse, error) // Fetch a list of :ref:`ref_flyteidl.admin.NamedEntityIdentifier` of workflow objects. ListWorkflowIds(ctx context.Context, in *admin.NamedEntityIdentifierListRequest, opts ...grpc.CallOption) (*admin.NamedEntityIdentifierList, error) // Fetch a list of :ref:`ref_flyteidl.admin.Workflow` definitions. @@ -393,6 +398,15 @@ func (c *adminServiceClient) GetWorkflow(ctx context.Context, in *admin.ObjectGe return out, nil } +func (c *adminServiceClient) GetDynamicNodeWorkflow(ctx context.Context, in *admin.GetDynamicNodeWorkflowRequest, opts ...grpc.CallOption) (*admin.DynamicNodeWorkflowResponse, error) { + out := new(admin.DynamicNodeWorkflowResponse) + err := c.cc.Invoke(ctx, "/flyteidl.service.AdminService/GetDynamicNodeWorkflow", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *adminServiceClient) ListWorkflowIds(ctx context.Context, in *admin.NamedEntityIdentifierListRequest, opts ...grpc.CallOption) (*admin.NamedEntityIdentifierList, error) { out := new(admin.NamedEntityIdentifierList) err := c.cc.Invoke(ctx, "/flyteidl.service.AdminService/ListWorkflowIds", in, out, opts...) @@ -830,6 +844,8 @@ type AdminServiceServer interface { CreateWorkflow(context.Context, *admin.WorkflowCreateRequest) (*admin.WorkflowCreateResponse, error) // Fetch a :ref:`ref_flyteidl.admin.Workflow` definition. GetWorkflow(context.Context, *admin.ObjectGetRequest) (*admin.Workflow, error) + // Fetches a :ref:`ref_flyteidl.admin.DynamicNodeWorkflowResponse`. + GetDynamicNodeWorkflow(context.Context, *admin.GetDynamicNodeWorkflowRequest) (*admin.DynamicNodeWorkflowResponse, error) // Fetch a list of :ref:`ref_flyteidl.admin.NamedEntityIdentifier` of workflow objects. ListWorkflowIds(context.Context, *admin.NamedEntityIdentifierListRequest) (*admin.NamedEntityIdentifierList, error) // Fetch a list of :ref:`ref_flyteidl.admin.Workflow` definitions. @@ -953,6 +969,9 @@ func (*UnimplementedAdminServiceServer) CreateWorkflow(ctx context.Context, req func (*UnimplementedAdminServiceServer) GetWorkflow(ctx context.Context, req *admin.ObjectGetRequest) (*admin.Workflow, error) { return nil, status.Errorf(codes.Unimplemented, "method GetWorkflow not implemented") } +func (*UnimplementedAdminServiceServer) GetDynamicNodeWorkflow(ctx context.Context, req *admin.GetDynamicNodeWorkflowRequest) (*admin.DynamicNodeWorkflowResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetDynamicNodeWorkflow not implemented") +} func (*UnimplementedAdminServiceServer) ListWorkflowIds(ctx context.Context, req *admin.NamedEntityIdentifierListRequest) (*admin.NamedEntityIdentifierList, error) { return nil, status.Errorf(codes.Unimplemented, "method ListWorkflowIds not implemented") } @@ -1207,6 +1226,24 @@ func _AdminService_GetWorkflow_Handler(srv interface{}, ctx context.Context, dec return interceptor(ctx, in, info, handler) } +func _AdminService_GetDynamicNodeWorkflow_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(admin.GetDynamicNodeWorkflowRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AdminServiceServer).GetDynamicNodeWorkflow(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/flyteidl.service.AdminService/GetDynamicNodeWorkflow", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AdminServiceServer).GetDynamicNodeWorkflow(ctx, req.(*admin.GetDynamicNodeWorkflowRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _AdminService_ListWorkflowIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(admin.NamedEntityIdentifierListRequest) if err := dec(in); err != nil { @@ -2081,6 +2118,10 @@ var _AdminService_serviceDesc = grpc.ServiceDesc{ MethodName: "GetWorkflow", Handler: _AdminService_GetWorkflow_Handler, }, + { + MethodName: "GetDynamicNodeWorkflow", + Handler: _AdminService_GetDynamicNodeWorkflow_Handler, + }, { MethodName: "ListWorkflowIds", Handler: _AdminService_ListWorkflowIds_Handler, diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go index 3bffe4954b7..aaf607348c2 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go @@ -789,6 +789,77 @@ func request_AdminService_GetWorkflow_1(ctx context.Context, marshaler runtime.M } +var ( + filter_AdminService_GetDynamicNodeWorkflow_0 = &utilities.DoubleArray{Encoding: map[string]int{"id": 0, "execution_id": 1, "project": 2, "domain": 3, "name": 4, "node_id": 5}, Base: []int{1, 6, 1, 1, 2, 2, 5, 0, 0, 4, 0, 6, 0}, Check: []int{0, 1, 2, 3, 2, 5, 2, 4, 6, 7, 10, 2, 12}} +) + +func request_AdminService_GetDynamicNodeWorkflow_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq admin.GetDynamicNodeWorkflowRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["id.execution_id.project"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.execution_id.project") + } + + err = runtime.PopulateFieldFromPath(&protoReq, "id.execution_id.project", val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.execution_id.project", err) + } + + val, ok = pathParams["id.execution_id.domain"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.execution_id.domain") + } + + err = runtime.PopulateFieldFromPath(&protoReq, "id.execution_id.domain", val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.execution_id.domain", err) + } + + val, ok = pathParams["id.execution_id.name"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.execution_id.name") + } + + err = runtime.PopulateFieldFromPath(&protoReq, "id.execution_id.name", val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.execution_id.name", err) + } + + val, ok = pathParams["id.node_id"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.node_id") + } + + err = runtime.PopulateFieldFromPath(&protoReq, "id.node_id", val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.node_id", err) + } + + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_AdminService_GetDynamicNodeWorkflow_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.GetDynamicNodeWorkflow(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + var ( filter_AdminService_ListWorkflowIds_0 = &utilities.DoubleArray{Encoding: map[string]int{"project": 0, "domain": 1}, Base: []int{1, 1, 2, 0, 0}, Check: []int{0, 1, 1, 2, 3}} ) @@ -6972,6 +7043,26 @@ func RegisterAdminServiceHandlerClient(ctx context.Context, mux *runtime.ServeMu }) + mux.Handle("GET", pattern_AdminService_GetDynamicNodeWorkflow_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_AdminService_GetDynamicNodeWorkflow_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_AdminService_GetDynamicNodeWorkflow_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + mux.Handle("GET", pattern_AdminService_ListWorkflowIds_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() @@ -8984,6 +9075,8 @@ var ( pattern_AdminService_GetWorkflow_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8}, []string{"api", "v1", "workflows", "org", "id.org", "id.project", "id.domain", "id.name", "id.version"}, "")) + pattern_AdminService_GetDynamicNodeWorkflow_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"api", "v1", "dynamic_node_workflow", "id.execution_id.project", "id.execution_id.domain", "id.execution_id.name", "id.node_id"}, "")) + pattern_AdminService_ListWorkflowIds_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"api", "v1", "workflow_ids", "project", "domain"}, "")) pattern_AdminService_ListWorkflowIds_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"api", "v1", "workflows", "org", "project", "domain"}, "")) @@ -9212,6 +9305,8 @@ var ( forward_AdminService_GetWorkflow_1 = runtime.ForwardResponseMessage + forward_AdminService_GetDynamicNodeWorkflow_0 = runtime.ForwardResponseMessage + forward_AdminService_ListWorkflowIds_0 = runtime.ForwardResponseMessage forward_AdminService_ListWorkflowIds_1 = runtime.ForwardResponseMessage diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json index 12b0ea4a343..5e27d91dc82 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json @@ -1562,6 +1562,13 @@ "in": "path", "required": true, "type": "string" + }, + { + "name": "id.execution_id.org", + "description": "Optional, org key applied to the resource.", + "in": "query", + "required": false, + "type": "string" } ], "tags": [ diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md index 4809e080ecb..8472a6a83ee 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md @@ -45,6 +45,7 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**GetActiveLaunchPlan2**](docs/AdminServiceApi.md#getactivelaunchplan2) | **Get** /api/v1/active_launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name} | Fetch the active version of a :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**GetDescriptionEntity**](docs/AdminServiceApi.md#getdescriptionentity) | **Get** /api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object. *AdminServiceApi* | [**GetDescriptionEntity2**](docs/AdminServiceApi.md#getdescriptionentity2) | **Get** /api/v1/description_entities/org/{id.org}/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object. +*AdminServiceApi* | [**GetDynamicNodeWorkflow**](docs/AdminServiceApi.md#getdynamicnodeworkflow) | **Get** /api/v1/dynamic_node_workflow/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches a :ref:`ref_flyteidl.admin.DynamicNodeWorkflowResponse`. *AdminServiceApi* | [**GetExecution**](docs/AdminServiceApi.md#getexecution) | **Get** /api/v1/executions/{id.project}/{id.domain}/{id.name} | Fetches a :ref:`ref_flyteidl.admin.Execution`. *AdminServiceApi* | [**GetExecution2**](docs/AdminServiceApi.md#getexecution2) | **Get** /api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name} | Fetches a :ref:`ref_flyteidl.admin.Execution`. *AdminServiceApi* | [**GetExecutionData**](docs/AdminServiceApi.md#getexecutiondata) | **Get** /api/v1/data/executions/{id.project}/{id.domain}/{id.name} | Fetches input and output data for a :ref:`ref_flyteidl.admin.Execution`. @@ -150,6 +151,7 @@ Class | Method | HTTP request | Description - [AdminDescriptionEntityList](docs/AdminDescriptionEntityList.md) - [AdminDescriptionFormat](docs/AdminDescriptionFormat.md) - [AdminDomain](docs/AdminDomain.md) + - [AdminDynamicNodeWorkflowResponse](docs/AdminDynamicNodeWorkflowResponse.md) - [AdminEmailNotification](docs/AdminEmailNotification.md) - [AdminEnvs](docs/AdminEnvs.md) - [AdminExecution](docs/AdminExecution.md) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index 00c86ed6de0..7e034d9b732 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -1409,6 +1409,13 @@ paths: required: true type: "string" x-exportParamName: "IdNodeId" + - name: "id.execution_id.org" + in: "query" + description: "Optional, org key applied to the resource." + required: false + type: "string" + x-exportParamName: "IdExecutionIdOrg" + x-optionalDataType: "String" responses: 200: description: "A successful response." @@ -8367,6 +8374,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -8392,12 +8400,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -9523,6 +9533,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -9548,12 +9559,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -10678,6 +10691,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -10703,12 +10717,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -10717,6 +10733,7 @@ definitions: metadata_defaults: interruptible: true id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -12378,6 +12395,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -12403,12 +12421,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -13534,6 +13554,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -13559,12 +13580,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -14689,6 +14712,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -14714,12 +14738,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -14728,6 +14754,7 @@ definitions: metadata_defaults: interruptible: true id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -15021,6 +15048,7 @@ definitions: enabled: true input_path: "input_path" id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -15352,6 +15380,7 @@ definitions: enabled: true input_path: "input_path" id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -17053,6 +17082,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -17078,12 +17108,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -18209,6 +18241,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -18234,12 +18267,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -19364,6 +19399,7 @@ definitions: alias: "alias" task_node: reference_id: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -19389,12 +19425,14 @@ definitions: id: "id" workflow_node: launchplan_ref: + org: "org" domain: "domain" resource_type: {} name: "name" project: "project" version: "version" sub_workflow_ref: + org: "org" domain: "domain" resource_type: {} name: "name" @@ -19403,6 +19441,7 @@ definitions: metadata_defaults: interruptible: true id: + org: "org" domain: "domain" resource_type: {} name: "name" diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go index bbd924fae66..679dfa96185 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go @@ -2250,6 +2250,110 @@ func (a *AdminServiceApiService) GetDescriptionEntity2(ctx context.Context, idOr return localVarReturnValue, localVarHttpResponse, nil } +/* +AdminServiceApiService Fetches a :ref:`ref_flyteidl.admin.DynamicNodeWorkflowResponse`. + * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + * @param idExecutionIdProject Name of the project the resource belongs to. + * @param idExecutionIdDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + * @param idExecutionIdName User or system provided value for the resource. + * @param idNodeId + * @param optional nil or *GetDynamicNodeWorkflowOpts - Optional Parameters: + * @param "IdExecutionIdOrg" (optional.String) - Optional, org key applied to the resource. + +@return AdminDynamicNodeWorkflowResponse +*/ + +type GetDynamicNodeWorkflowOpts struct { + IdExecutionIdOrg optional.String +} + +func (a *AdminServiceApiService) GetDynamicNodeWorkflow(ctx context.Context, idExecutionIdProject string, idExecutionIdDomain string, idExecutionIdName string, idNodeId string, localVarOptionals *GetDynamicNodeWorkflowOpts) (AdminDynamicNodeWorkflowResponse, *http.Response, error) { + var ( + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte + localVarReturnValue AdminDynamicNodeWorkflowResponse + ) + + // create path and map variables + localVarPath := a.client.cfg.BasePath + "/api/v1/dynamic_node_workflow/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}" + localVarPath = strings.Replace(localVarPath, "{"+"id.execution_id.project"+"}", fmt.Sprintf("%v", idExecutionIdProject), -1) + localVarPath = strings.Replace(localVarPath, "{"+"id.execution_id.domain"+"}", fmt.Sprintf("%v", idExecutionIdDomain), -1) + localVarPath = strings.Replace(localVarPath, "{"+"id.execution_id.name"+"}", fmt.Sprintf("%v", idExecutionIdName), -1) + localVarPath = strings.Replace(localVarPath, "{"+"id.node_id"+"}", fmt.Sprintf("%v", idNodeId), -1) + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + + if localVarOptionals != nil && localVarOptionals.IdExecutionIdOrg.IsSet() { + localVarQueryParams.Add("id.execution_id.org", parameterToString(localVarOptionals.IdExecutionIdOrg.Value(), "")) + } + // to determine the Content-Type header + localVarHttpContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHttpContentType := selectHeaderContentType(localVarHttpContentTypes) + if localVarHttpContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHttpContentType + } + + // to determine the Accept header + localVarHttpHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHttpHeaderAccept := selectHeaderAccept(localVarHttpHeaderAccepts) + if localVarHttpHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHttpHeaderAccept + } + r, err := a.client.prepareRequest(ctx, localVarPath, localVarHttpMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, localVarFileName, localVarFileBytes) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHttpResponse, err := a.client.callAPI(r) + if err != nil || localVarHttpResponse == nil { + return localVarReturnValue, localVarHttpResponse, err + } + + localVarBody, err := ioutil.ReadAll(localVarHttpResponse.Body) + localVarHttpResponse.Body.Close() + if err != nil { + return localVarReturnValue, localVarHttpResponse, err + } + + if localVarHttpResponse.StatusCode < 300 { + // If we succeed, return the data, otherwise pass on to decode error. + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { + return localVarReturnValue, localVarHttpResponse, err + } + } + + if localVarHttpResponse.StatusCode >= 300 { + newErr := GenericSwaggerError{ + body: localVarBody, + error: localVarHttpResponse.Status, + } + + if localVarHttpResponse.StatusCode == 200 { + var v AdminDynamicNodeWorkflowResponse + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr + } + + return localVarReturnValue, localVarHttpResponse, newErr + } + + return localVarReturnValue, localVarHttpResponse, nil +} + /* AdminServiceApiService Fetches a :ref:`ref_flyteidl.admin.Execution`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). diff --git a/flyteidl/gen/pb-go/flyteidl/service/openapi.go b/flyteidl/gen/pb-go/flyteidl/service/openapi.go index 3976c38c4a5..6b5ae0adc5e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/openapi.go +++ b/flyteidl/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x73\xe3\x36\xb6\x2f\x0c\xff\x3f\x9f\x02\xd5\xfb\xad\xea\x64\xc6\x76\x67\x2e\x67\xbf\x53\xde\x75\xea\x79\x14\x5b\xdd\xd1\x89\xdb\x76\x7c\x49\x76\xea\x68\x97\x02\x91\x90\x84\x31\x05\x28\x00\x68\xb7\x66\x6a\xbe\xfb\x53\x58\x00\x48\x90\x22\x25\xea\x6a\xca\x8d\x9e\xaa\x89\x2c\x91\xb8\x2c\x00\x0b\xeb\xfa\x5b\xff\xfa\x03\x42\xef\xe4\x0b\x1e\x8f\x89\x78\x77\x8e\xde\xfd\xe5\xec\xbb\x77\x27\xfa\x3b\xca\x46\xfc\xdd\x39\xd2\xbf\x23\xf4\x4e\x51\x95\x10\xfd\xfb\x28\x99\x2b\x42\xe3\xe4\x83\x24\xe2\x99\x46\xe4\x03\x8e\xa7\x94\x9d\xcd\x04\x57\x1c\x5e\x44\xe8\xdd\x33\x11\x92\x72\xa6\x1f\xb7\x1f\x11\xe3\x0a\x49\xa2\xde\xfd\x01\xa1\x7f\x43\xf3\x32\x9a\x90\x29\x91\xef\xce\xd1\xff\x35\x2f\x4d\x94\x9a\xb9\x06\xf4\x67\xa9\x9f\xfd\x1f\x78\x36\xe2\x4c\xa6\x85\x87\xf1\x6c\x96\xd0\x08\x2b\xca\xd9\x87\x7f\x48\xce\xf2\x67\x67\x82\xc7\x69\xd4\xf0\x59\xac\x26\x32\x9f\xe3\x07\x3c\xa3\x1f\x9e\xff\xfc\x01\x47\x8a\x3e\x93\x41\x82\x53\x16\x4d\x06\xb3\x04\x33\xf9\x81\x8b\xf1\x87\x7f\xd1\xf8\x8c\x8b\xf1\xbf\xe1\xc3\x4c\xf0\x7f\x90\x48\x99\x3f\x62\x3e\xc5\x94\x99\xcf\x0c\x4f\xc9\xbf\xb3\x46\x11\x7a\x37\x26\xca\xfb\x53\x4f\x3d\x9d\x4e\xb1\x98\x6b\xf2\x7c\x24\x2a\x9a\x20\x35\x21\xc8\x74\x8a\x1c\xbd\xf8\x08\x61\x74\x2e\xc8\xe8\xfc\x37\x41\x46\x03\x47\xf5\x33\x43\xed\x2b\x18\xda\x6d\x82\xd9\x6f\x67\x96\x66\xd0\x32\x9f\x11\x01\x13\xed\xc5\xba\xf5\x4f\x44\x75\xa0\xd9\xfc\xf9\xbf\xf8\x8f\x0b\x22\x67\x9c\x49\x22\x0b\xe3\x43\xe8\xdd\x5f\xbe\xfb\xae\xf4\x15\x42\xef\x62\x22\x23\x41\x67\xca\xae\x6c\x07\xc9\x34\x8a\x88\x94\xa3\x34\x41\xae\x25\x7f\x34\x66\xae\x7a\x99\xf1\x42\x63\x08\xbd\xfb\xff\x09\x32\xd2\xed\xfc\xc7\x87\x98\x8c\x28\xa3\xba\x5d\x69\x76\x53\x3e\xdc\x77\x85\xb7\xfe\xfd\x87\xaa\xcf\xff\xf6\x66\x34\xc3\x02\x4f\x89\x22\x22\x5f\x7f\xf3\xaf\x34\x17\xbd\x48\xba\x73\xb3\xa2\xe5\x41\x97\x66\x7a\x03\x9f\x70\x72\x82\xb8\x18\xa3\x27\x32\x47\xb0\xa5\x48\x8c\x14\x87\xb5\x13\x44\xf2\x54\x44\x8b\xb3\xa7\xf0\xbe\xde\x66\xe5\x5f\x04\xf9\x3d\xa5\x82\xe8\x65\x52\x22\x25\xa5\x5f\xd5\x7c\x06\xc3\x93\x4a\x50\x36\xf6\x89\xf0\xef\x93\x46\x93\xb2\xbb\x73\xc5\xc4\xae\xf1\x94\xe8\x9d\xa6\xe7\x60\xdf\x28\xcc\x07\x0d\x49\xc2\xd9\x58\x22\xc5\xdb\x33\x35\x73\xd6\xd6\x98\x99\x79\xa1\x76\x62\x7d\xd6\x71\x8f\x44\x98\xa1\x21\x41\x9a\xdd\xd0\x98\x08\x12\x23\x2c\x11\x46\x32\x1d\x4a\xa2\xd0\x0b\x55\x13\xca\xf4\xdf\x33\x12\xd1\x11\x8d\x1c\xcd\xda\x43\x1b\xf8\xb8\x9c\x32\x8f\x92\x08\x3d\xf0\x67\x1a\x93\x18\x3d\xe3\x24\x25\x68\xc4\x45\x71\x1f\xf7\xd9\xc3\x44\xd3\x61\x3a\xa4\x0c\xf8\x89\xa6\xa5\xdb\x21\x7f\x72\xe4\xfa\x13\xd2\xfd\xa1\x94\xd1\xdf\x53\x92\xcc\x11\x8d\x09\x53\x74\x44\x89\x2c\xb7\xf6\x27\x6e\x8f\x10\x3a\x45\x9a\xce\x44\x28\xa0\x37\x67\x8a\x7c\x51\x12\x9d\xa2\x84\x3e\x11\xf4\xfe\x8a\x4a\x85\x3a\xb7\xbd\xf7\x27\xe8\xbd\x61\x02\x08\xd8\xef\xfb\x03\x50\x38\xfb\xfc\x3f\x1e\x3f\x51\x78\x5c\xe6\x24\xef\x3a\x9a\x45\xdd\x9b\xdb\x2f\x6f\xe1\x7f\xfe\xe0\xb7\x63\xd7\x6b\xf5\x95\x62\xee\x93\xfc\x32\xb1\x37\x49\xd3\xfb\x03\x08\x56\xbc\x3a\xa4\x5e\xab\x6d\x6f\x0e\xdd\x6e\xf9\xea\x90\x47\x76\x77\xe8\x39\xec\xfb\xfe\x78\x7b\x97\xc7\x36\x37\x07\x56\x70\xa4\x31\x65\x86\x03\x64\x0c\x41\x48\xcd\x04\xdc\xb0\x5b\x32\xd3\x6d\x2e\x12\x6f\x66\xde\x5d\xe2\xae\x08\x8f\x2a\x2d\x9c\x77\x42\xa7\x74\xd5\xfa\xf6\x58\xac\x45\x66\xcb\xc9\x59\x3a\x1d\x12\xa1\xc9\xe0\x36\x2b\xcc\x76\xa8\x37\xaf\x4a\x05\x23\x71\x83\x69\xfe\x9e\x12\x31\x5f\x32\xcf\x11\x4e\x64\xdd\x44\x29\x53\x44\xeb\x27\xa5\x9f\x47\x5c\x4c\xb1\xb2\x0f\xfc\xe7\xdf\xd6\x25\x84\xe2\x4f\x64\xd5\xfa\xf7\xcc\x6a\x46\x58\xc2\x36\x98\xa6\x89\xa2\xb3\x84\xa0\x19\x1e\x13\x69\x29\x92\x26\x4a\x9e\xc0\x63\x5a\x27\x22\xe2\x34\xbb\x5e\xa1\x07\x27\x56\xa4\xd2\x1c\xfa\x51\x26\xf3\x33\xf2\x45\x41\x4b\x7d\x06\x82\x05\x90\xc8\xbf\x2e\xf7\x40\xca\xcd\xf6\x8c\xe4\x42\x0d\x86\xf3\xb3\x27\xb2\xd0\x6f\xed\xce\xc1\x0c\x61\xa5\x04\x1d\xa6\x8a\xe8\x79\xeb\x36\x1c\xc7\x03\x86\x6f\xa4\x8f\x26\xac\xe1\xf5\x26\x1c\x53\x41\x22\x98\xdb\x3a\x07\x26\x7b\x4b\xcf\x5b\xf3\xfb\xb9\x99\xbd\x66\xff\x5a\xd8\xaa\xa0\x40\xb6\xe4\x7d\xd6\x67\xe8\x14\x5d\x76\xef\x2f\xba\xd7\x97\xbd\xeb\x4f\xe7\xe8\xfb\x39\x8a\xc9\x08\xa7\x89\x3a\x41\x23\x4a\x92\x58\x22\x2c\x08\x34\x49\x62\x2d\x50\xe9\xc1\x10\x16\x53\x36\x46\x5c\xc4\x44\xec\x8f\x8c\xa5\x5f\x09\x4b\xa7\xa5\x9b\x12\xbe\xcf\x47\x5f\x7a\x43\xcb\x4f\xd9\x4f\x85\x5f\xfe\x67\x81\xc0\x30\x63\xdd\xb7\xd7\xda\xab\x4a\x6c\x47\xac\xf7\x1f\x97\xe8\x76\x00\xb5\x3f\x68\xc8\x41\x43\xae\xa6\x4c\xd0\x90\xb7\xa2\xf0\xfe\x55\xa2\x1d\x4b\x03\x87\xbf\x46\x8e\x43\xdd\x3f\xae\x2b\xe3\x10\xda\x7e\xd0\x8d\x83\x6e\x1c\x74\xe3\xa0\x1b\x17\x49\x15\x74\xe3\xa0\x1b\xb7\x4e\x37\x6e\xb0\x8c\x41\x50\xf3\x05\xb5\x68\x42\x93\x58\x10\xf6\x41\x61\xf9\x34\x20\x5f\x48\x94\x1a\x39\x03\xdc\x34\xc5\x2f\x07\x5a\x91\xe0\x31\x29\x7e\x53\xf8\xc3\xf8\x75\xd6\x7e\x2d\x97\x0c\xd7\x7e\x35\xb3\x45\xac\xfd\x26\x58\x2e\x9a\xbd\x07\xdf\xd0\xb8\xf2\x69\xf8\x66\xc5\x1c\xdc\x33\x4b\x06\xeb\x1e\xa9\x1d\x95\x7b\xc0\x0a\xc0\x95\xcf\x08\xa2\xc4\x7c\x80\x95\x22\xd3\x99\x5a\xd3\x2a\x83\x51\xa2\xc5\xec\x65\x62\xf5\x35\x8f\x49\xd7\xf5\xf7\x1b\x32\xd2\x3d\x89\xd1\x70\x6e\x8f\xc5\x88\x08\xc2\x22\x52\xdf\xc2\x03\x96\x4f\x79\x0b\xab\x64\xf3\x42\x7f\xf2\x23\x17\xfa\xf5\xa3\x70\xc7\x15\x46\x7e\x08\x19\x7d\x93\x93\xfa\xc6\x5c\x78\x9b\x72\x9d\x37\x67\x0b\xdb\x90\x87\x06\xcb\xd9\xf6\x94\x6c\x6a\x67\xe3\x02\xc9\xb9\x54\x64\xba\xd2\xe2\x76\x3c\x84\xb0\x97\x64\x5b\x07\x5c\xba\xa7\xbf\x82\x53\x5f\x94\x3a\xc2\xf1\x5e\x83\x64\xbb\xb2\x97\xb7\x7d\x9e\x2e\x64\x79\xf9\x54\xef\xdd\xf2\x79\xee\xba\xa3\x98\x66\x41\x1e\xde\xf5\x20\xf7\x64\x81\xaa\x5d\x2b\x47\xed\x01\x0c\x60\x85\xed\xa1\xe8\x71\xc9\xce\x9f\x7e\xd5\x37\xda\x19\x0b\xad\x9a\x50\xe9\xd9\x2f\x51\xc4\x85\x11\x87\x63\x7b\xde\x8d\xf9\xa1\xf3\xd0\xb9\xef\x3e\x9c\xa3\x0e\x8a\xb1\xc2\xfa\x80\x0b\x32\x13\x44\x12\xa6\xc0\xb4\xa3\xdf\x57\x73\x34\xe5\x31\x49\x8c\x11\xe2\xa3\x96\xfe\xd1\x25\x56\xf8\x02\x2b\x9c\xf0\xf1\x19\xea\xc0\x9f\xfa\x65\x2a\x11\x4e\x24\x47\xd8\x6d\x2b\x12\xbb\x26\x30\x8b\x1d\x6b\xc1\x28\xe2\xd3\x19\x4d\x32\x6f\x53\x66\x6f\xa3\x2c\xa6\xcf\x34\x4e\x71\x82\xf8\x50\x73\x15\x79\xd6\x67\xdd\x67\xc2\x54\x8a\x93\x64\x8e\x70\x92\x20\xdb\xad\x7b\x00\xc9\x09\x4f\x93\x58\xb7\xeb\x46\x29\xe9\x94\x26\x58\x68\x99\xd6\x8c\xf6\xc6\xb6\x85\x1e\x26\x24\x1b\x2b\x8c\x4b\x53\x73\x8a\x9f\x88\x44\x54\xa1\x19\x97\x92\x0e\x93\xfc\xcc\x3f\xf6\x10\x8c\xfb\xe2\xaa\x07\x26\x9e\x48\x21\x6e\x78\xa8\xeb\xdc\x9a\xf4\x5c\x8f\x53\xcc\x18\x81\x8e\xb9\x9a\x10\x61\xbb\xb7\x0f\xbf\xb6\xb5\xe6\xf1\xfa\xfe\xb6\x7b\xd1\xfb\xd8\xeb\x5e\x2e\x9a\x6b\x1e\x3a\xf7\x3f\x2e\x7e\xfb\xcb\xcd\xdd\x8f\x1f\xaf\x6e\x7e\x59\xfc\xe5\xaa\xf3\x78\x7d\xf1\xc3\xe0\xf6\xaa\x73\xbd\xf8\xa3\xdd\x56\x8d\x2d\x3f\xfe\xc8\x76\x76\xb6\x8e\xce\x28\x14\x8c\xfa\x6b\x2c\xfb\xae\x8d\xfa\x27\x6f\xd7\xaa\x3f\xa2\x09\x18\x1d\x1a\x5b\xf4\x33\xab\x91\x7d\x13\xcd\xb0\x94\x46\x0e\x34\x23\x38\xeb\xb3\xcf\x5c\x68\x76\x3d\xe2\x9a\x23\x6a\x59\x51\x89\x34\x52\x94\x8d\xb3\x97\xce\x51\x3f\xfd\xee\xbb\xbf\x46\x57\x94\x3d\xc1\x27\xd2\x46\xe2\x04\x97\x47\x70\x79\xb4\xce\xe5\xf1\x87\x8a\x57\xf7\xef\x1e\x08\x36\xfe\x60\xe3\xdf\x9f\x8d\x3f\x98\xf8\xbd\x31\x04\xfb\xf6\xb6\x84\x08\x06\xb0\x60\xdf\xde\x9e\x10\xc1\xbe\xdd\xd2\x19\x87\xe3\x1d\xec\xdb\xc1\xbe\x1d\xec\xdb\xc1\xbe\x1d\xec\xdb\xc1\xbe\xfd\xd5\xd8\xb7\x5b\x18\xf2\x14\x8c\xfc\xc1\xc8\x1f\x8c\xfc\xc1\xc8\x1f\x8c\xfc\xc1\xc8\x7f\x3c\x46\x7e\x2d\xed\x7e\x28\x87\xfe\xef\x09\xf4\x4f\x0b\x97\x6c\x96\x2a\x10\x25\x79\xaa\xf4\x47\xdd\x3f\xec\x95\x25\x10\x00\xcd\x0c\xca\x9f\x88\xca\x1e\xd4\xa2\xed\x51\xc4\x8a\xff\xc2\xc5\xd3\x28\xe1\x2f\xd9\xc8\x3f\x11\xa5\x07\x7f\x67\x7b\x09\x60\x80\x01\x0c\x10\x05\xa8\x83\x5d\x43\x1d\xb4\xca\x44\x7d\x50\xfe\x7e\xd4\x2c\x3d\x70\xf4\xc0\xfc\x02\xf3\xab\xa3\xcd\x51\x32\xbf\x66\x53\x3b\x3a\xeb\xcd\xfe\x79\x7a\xd1\xde\x95\x0b\xee\x15\x29\xb9\xf5\xd1\x38\xb5\xc1\x36\x35\xb1\x34\x5e\xa8\xcc\x41\xae\x89\x62\x40\xca\x8a\xab\xa2\xf0\xf0\xd1\x68\x00\x85\x51\x1f\xfe\xae\x78\xe3\x79\xa1\x5f\x4b\x58\x4c\x88\x7a\xd9\x90\x50\x6f\xf8\xd2\x3c\x5c\xcc\xca\xe1\x6f\xbb\xaf\xf6\x4e\x0b\x57\x9a\xfd\x17\x18\x7e\x60\xf8\x81\xe1\xbf\x12\xc3\xdf\x80\xee\x41\x85\x5b\xb8\xd4\x2a\x61\x97\x9a\xe2\x2c\xad\x93\x74\xb1\x46\x96\x45\xe3\xb4\x8a\x15\x79\x14\x95\x89\x13\x55\x99\x12\x8b\xa9\x11\x95\xb9\x10\xdb\x25\x3f\x6c\x7a\x57\x37\x4f\x67\xf8\x44\x54\xe1\xe1\xa3\xd1\x3f\x0b\xa3\x3e\xfc\x65\xfd\xea\x61\x3b\xaf\xc5\xa7\xbf\xbe\xd4\x8d\x90\xab\xb1\x47\xd2\xbd\x75\xb1\xa6\xbd\xd9\x18\x5f\x41\xfa\x45\xc8\xb7\x58\x8b\x46\x6f\x2b\xc1\xe2\xad\x66\x54\x1c\x67\x0a\x45\xc8\x99\x08\x39\x13\x3b\x55\x79\x4b\xbf\x7e\x55\x39\x13\xc7\x9c\x24\x71\x78\xf3\x44\x30\x39\xb4\xdf\xe4\x10\x2c\x0e\xf6\x5f\xd0\xbe\xd7\x9e\x79\x10\xed\x83\xf6\xdd\x64\xe6\x41\xfb\x0e\xda\x77\x0b\x8f\x68\xd0\xbe\x83\xf6\x1d\xb4\xef\xa0\x7d\x07\xed\x1b\x05\xed\xdb\x6b\xe8\xb5\x52\x6b\xdb\xe0\xdc\x3c\x2a\x9b\x43\x3e\xf5\x81\x3b\xe0\x8b\xe9\xa8\x05\xb6\xdb\x24\x43\x15\x3e\x39\xa5\x7e\x5d\xc4\xc4\x5a\x2d\xfd\x32\x1f\x6c\x17\x98\xe4\x6f\x96\x55\xac\x50\xd8\x17\xde\x3b\x8a\x18\x81\x85\x51\x87\xb4\xd4\x4d\x45\x9e\x57\x12\x1a\xf6\x44\x81\x23\xb9\xbe\xd6\x5f\xa8\x37\xac\x4b\x06\x1d\x72\xfb\x14\xba\xa3\xd1\x1d\x8f\x47\x67\x3c\xbc\x6c\xf1\x16\xc5\x89\x20\x4d\x78\x63\x08\x17\x6f\xb8\x78\xc3\xc5\x1b\x2e\xde\x70\xf1\x86\x0c\x7c\xfb\xfc\x5e\xe5\x89\x92\x30\xd1\x08\x4a\x6b\xe7\x35\x1c\x2a\x44\x09\xef\x06\x5e\x55\x91\xa1\xfc\x36\x25\xf2\x6f\x47\x29\x53\x1c\xa2\x28\x43\x10\x2a\x8e\x44\xa8\x78\x93\xb6\xa4\x20\x29\x05\x49\xa9\x9a\x32\x8d\x24\xa5\x3e\x7b\x98\x68\x3a\x4c\x87\x94\x65\xde\x3c\xb7\x43\xfe\xe4\xc8\xf5\x27\xa4\xfb\x43\x29\xa3\xbf\xa7\x24\x99\xe7\x3c\x49\x96\x5b\xcb\x90\x3d\xd1\x29\xd2\x74\x26\x42\x01\xbd\x39\x53\xe4\x8b\x92\xe8\x14\x25\xf4\x89\xa0\xf7\x9a\x31\xa3\xce\x6d\xef\xfd\x09\x7a\x7f\x05\x05\x86\xd0\x2c\xc1\x4c\xbe\x6f\x8d\xe3\x26\xc0\x2a\xef\x0b\x56\x39\xa0\x2a\x07\x54\xe5\xa6\x04\x0a\xa8\xca\x01\x55\xf9\x78\x51\x95\x77\xa6\x1f\x6e\x88\xcb\xf9\x2a\x9a\xe2\x71\xfa\xb2\x83\xa6\x88\x82\xa6\x18\x34\xc5\xa0\x29\x06\x4d\xf1\x48\x34\xc5\x76\x50\x38\xa8\x89\x41\x4d\x0c\x6a\xe2\x0e\x89\x13\xd4\xc4\xa0\x26\x06\x35\x71\x41\x4d\x3c\x5e\xcf\xe1\x5f\x83\x3e\x18\xf4\x41\xff\xfb\xe3\xd3\x07\x83\xea\x14\x54\xa7\x6a\xca\x1c\xa7\xea\xd4\x1a\xd9\xe7\x18\x43\x8a\x82\x52\xd8\x9c\x10\x41\x29\x6c\x4c\xaa\xa0\x14\x2e\x21\x4e\x50\x0a\x83\x52\x18\x94\xc2\xc6\x4a\xe1\x31\xb9\x0b\x83\x76\x18\xb4\x43\xff\xfb\xa0\x1d\x06\xed\x30\x68\x87\xc1\xb1\x16\x54\xc3\xa0\x1a\x06\xd5\x30\xa8\x86\xab\x88\x13\x54\xc3\xa0\x1a\x7e\x5d\xaa\x21\x79\x26\x4c\x49\x28\x86\xe8\x2b\x4a\xef\x66\x5c\xd6\x2b\x78\x3e\x77\xa8\x50\xee\xa0\xcd\x62\x51\x42\x40\x6d\xfb\x0d\x4d\xb0\x44\x3c\x8a\x52\x51\x3a\x03\x65\xf5\xee\x42\x10\xac\x08\xb4\xa0\x5f\x3c\x06\xb5\x6e\x71\xba\x87\x02\x20\x1e\xf2\x78\x61\xb7\x9b\x83\x50\xf5\xcb\x72\x31\x6b\x67\x53\xff\x3d\x25\xcd\xb4\xda\x3d\x6e\x6a\x88\x86\x36\x9b\x71\xb1\xda\xd9\x8b\x2d\xaa\xbf\xe3\x5d\xbf\x50\xab\x7f\xa3\x9d\x9f\xb5\xa2\x5f\x3e\x8a\x18\xe8\xea\x79\x1f\xea\x08\x54\x2f\xf2\x1b\x0b\xbb\x7d\xf5\x73\x5e\xb7\xc6\x2d\x3b\xeb\x95\xc5\x0d\xdb\x7d\xc1\x1d\xc5\x11\x7f\xbd\x1b\xae\x76\x5d\xc3\x09\xff\xea\x6e\xf2\x19\x16\x84\xa9\x41\x93\x82\xa6\x0a\xcb\xa7\x1d\x9f\xf9\x42\xa1\x89\x8d\xce\x3c\xb4\x70\x34\x67\x7e\x71\xbe\x87\x3d\xf3\x8d\x57\x3b\x70\x82\xdd\x72\x82\xaa\x85\x6f\x03\x27\x68\xf7\x99\x0e\x47\x1a\xfe\x85\x4d\xbd\xde\xa6\x3e\x1e\x5d\xf4\x18\x36\xf8\xeb\xaa\xa2\xaf\xbe\xc9\xdb\xa9\xa5\x65\x35\xdf\x1a\x6f\xf1\x07\x41\xc7\x63\x22\x8c\xa5\x39\xd2\x5b\xd1\xba\x33\x97\x80\x9e\xe6\x55\xce\x56\x6e\xeb\xec\xd1\x63\xd8\xd2\xd9\x60\xcd\xd8\xbf\x9a\xbd\xbc\x30\xef\x96\x6c\xe2\x22\xd0\x82\x20\x11\x7f\x26\xa2\xf1\xce\xbe\x23\xb0\x9d\x81\x79\xcf\x04\x79\xa6\x3c\x95\xc9\xfc\x54\xa4\x0c\xb9\x9b\x00\x65\x7d\x99\x28\x9b\x17\x9a\x24\x88\xb3\x64\x8e\xa4\xc2\x42\xb9\x9f\xd9\x18\x8d\x04\x9f\xc2\x11\x49\xb0\x54\xe8\x89\xf1\x17\x86\x46\x98\x26\xa9\x20\x68\xc6\x29\x53\x67\x7d\xd6\x63\xe8\xce\x8c\x11\xaa\xa2\x9c\xa0\x54\xea\x83\x15\x61\xc6\xb8\x42\xd1\x04\xb3\x31\x41\x98\xcd\x6d\x79\xc1\x7c\x9b\x20\x2e\x50\x3a\x8b\xb1\x22\xd0\x45\x09\x52\x32\x1b\x23\x84\x1d\x50\x89\xa8\x44\xe4\x8b\x12\x64\x4a\x92\xb9\xee\x43\x1f\x04\xc5\x91\xa5\x8f\x19\xaa\x2d\x56\x46\x84\xe0\x42\x42\x3d\x95\xe1\xfc\x9f\x98\x29\xca\x08\x02\x4f\x88\x34\x21\x05\xa7\xe8\x8a\x4b\xf0\xcb\xfe\xf8\x77\x89\xa2\x24\x95\x8a\x88\x13\x34\x4c\xc7\x12\x51\x86\x66\x09\x56\x23\x2e\xa6\x7a\x84\x94\x49\x85\x87\x34\xa1\x6a\x7e\x82\xa6\x38\x9a\x98\xb6\x80\x06\xf2\xa4\xcf\x62\xfe\xc2\xa4\x12\x04\x67\xbd\xbb\x1f\xd1\x37\xfe\x6f\x66\x37\xc8\x6f\x4f\xa0\xa8\x1a\x9d\xce\x92\xb9\x3f\xfc\x7c\xf9\xcd\x9a\xe8\x46\x48\x8c\x86\x24\xc2\xa9\xb4\x91\x51\x4a\xcc\x11\xf9\x32\xc1\xa9\x84\xb5\xd3\xd3\xb3\x15\x69\x22\x3e\x9d\x25\x44\x11\x44\x47\x48\x09\xad\x79\xe0\x31\xa6\x9a\x74\xf7\x84\x34\xe0\x68\x76\x01\xed\x11\xf8\x0d\xfc\x6b\x53\x2e\x08\x8a\x89\xc2\x34\x59\x1a\x2d\x67\xdf\xcd\xda\x3a\x0a\xd5\xf3\x95\x78\x5e\x50\x27\xf7\xca\xc8\x8b\xdb\xb8\x7d\x9c\x3c\x81\xe0\xa5\x1d\x08\x29\xcc\x46\x55\x45\x38\xd9\x52\x5e\xb9\xb3\x83\x0a\xc7\x37\x1c\xdf\xf2\x48\x0e\x7f\x7c\xcd\x5e\x6c\xe9\xf9\x3d\x58\x62\x73\xb3\x72\xca\x57\x54\xaa\xec\xc9\xe3\xc0\xb2\xca\x86\x7b\x88\xa8\xf4\x37\x79\x58\x43\x10\x77\x08\xe2\xae\xa5\xcc\x71\x06\x71\xb7\x26\x5c\x31\x04\x3c\xef\x29\xe0\x99\xca\x10\xf1\x1c\x22\x9e\x9b\x12\x28\x44\x3c\x87\x88\xe7\xe3\x8d\x78\x5e\x53\x77\xd8\x30\xff\xb5\xce\x35\xb7\x8e\xfe\xf0\x89\xa8\x23\x55\xfa\x83\xe6\x10\x34\x87\xa0\x39\xec\x5c\x73\xe0\xc2\x79\x30\x5a\x50\xb5\x6c\x57\x5c\xda\xbd\xfd\x2e\x26\x09\x51\xa4\xde\xd6\x4a\xc4\x54\x2b\x44\x46\x02\xa1\x4c\x8b\xaa\x63\x41\xa4\xdc\x96\xcd\x66\x0d\x1f\x29\xb3\xcd\xc6\x1f\x8c\xac\x81\xfb\xd6\x4c\x2d\x70\xdf\x37\xc6\x7d\x8f\xca\x6d\xe0\x71\xa8\x43\xf9\x0d\xb2\x5b\x65\x96\xd6\x4b\xea\x8f\x26\xb6\x21\x0f\xb6\x30\x3b\x5c\xab\x5b\x8a\x67\x87\xdb\xee\xf3\x2d\x6f\x19\xd3\xd7\x91\x5e\x31\x66\xf0\xe1\x7e\x09\xf7\x4b\xcd\xd4\xc2\xfd\x12\xee\x97\xd7\xbb\x5f\x1c\x7b\x6a\x95\x53\x9a\x8b\x71\xc1\x64\xb4\xec\x22\x3a\x54\xb0\xeb\x71\xdd\x3a\x87\x0d\x1d\x79\x7b\x57\x4e\x7b\x0e\x68\xdb\xe2\x77\x43\xc8\x6e\x08\xd9\x3d\xaa\x90\xdd\xc0\xb7\x8f\x80\xcb\xb5\x2e\xb8\xf5\x38\xe2\x59\xc3\xde\x3e\x8a\xbd\xdd\xb6\xc8\xcf\x56\x07\x7b\x1e\xd5\x9e\x3e\x50\xac\x67\x30\x7f\x04\xf3\x47\x35\x65\x42\x58\x64\x80\xb7\x5d\x9c\x56\x88\xf6\x0c\xd1\x9e\x21\xda\x73\x97\xc4\x09\xd1\x9e\x21\xda\xf3\xab\x8d\xf6\x6c\x79\x80\xe7\x51\x69\x0c\x41\x5b\x08\xda\x42\x70\x96\xae\x39\xb5\xa3\x93\xd1\x77\xc5\x99\xdd\xdb\x2d\x8a\xf0\x3c\x2a\x6e\xfb\x1a\x01\x9e\x81\xfd\x06\xf6\x5b\x4d\x99\xa3\x64\xbf\xed\x31\xa4\x87\x58\xc8\x85\x58\xc8\xa3\x62\xc6\x07\x0f\x85\x0c\x9c\x38\x70\xe2\x6a\xca\x04\x4e\x7c\xfc\x51\x83\xc6\xab\x3a\x98\x25\x98\x0d\x68\xec\x85\x0e\x7e\xf8\x57\x6e\xac\xd8\x97\x67\x53\x1f\xad\xd8\x54\x21\xcd\xaa\x7e\x8a\xdf\xf4\x2b\x49\xee\xe8\x40\x7c\xa8\x87\xb1\xb2\x1e\xab\xf1\x8d\xdc\x26\x98\xf5\xe2\xe3\x00\xbb\xa9\x9c\xfe\x21\x9c\xa1\x6f\x2f\xd4\x70\x9b\x4b\x0a\x2b\x70\xba\x61\xca\x8c\xd9\x35\xaf\x26\x5b\x30\x2a\xb7\x63\xa2\xdb\x5c\x59\xde\xc4\xbc\x5b\xcb\x5d\x46\x1e\x51\xda\x37\xed\xe0\x8b\x0b\xa5\x26\x83\xb7\xa9\xe1\x84\x83\xb7\xa9\xbd\xde\xa6\x06\xcb\xb8\x17\x17\xf2\x81\x8f\xe7\x41\x65\xd6\xa3\x96\x54\x83\xa0\x8a\x82\x58\x17\xc4\xba\xfa\x59\x07\xb1\x2e\x88\x75\x41\xac\x0b\x62\x5d\x10\xeb\x5e\x5f\xac\x6b\x30\xcd\xaf\x36\xca\x60\x95\xa8\xda\xbc\xf4\x90\xc9\xf1\x81\x54\xc0\x74\x96\x70\x1c\x2f\x8b\xf4\xca\x85\xc9\xdf\x50\x2e\xb8\x2d\x91\x40\x4d\xeb\xf9\x6b\xc7\x20\x80\xe6\xa3\xfd\xca\xf2\x9f\x16\x27\xde\x16\x6f\x41\x11\xbe\xb2\xa5\x7b\xfb\x28\xdc\x00\xaf\xb5\xb9\xdf\x24\xcc\x4d\x38\xb1\x0d\x4f\xec\xe1\xf2\x17\xab\x4f\xf1\x1a\x56\x12\xf9\xb7\xe3\x3a\xc6\xa1\x76\x45\xc0\xa8\xaa\x98\x5a\x88\x36\x09\x49\x9a\x21\x9b\xf1\xcd\x99\xda\x42\x36\x63\xc8\x66\x0c\x86\xc8\xe5\xd3\x0e\x86\xc8\x37\x91\xcd\xb8\xbe\x32\xb1\x61\x72\xe3\x61\xd4\x8a\x23\xb3\x0e\x04\xb5\x22\xa8\x15\x15\x53\x0b\x6a\xc5\x57\xa8\x56\xb4\x83\xc2\x41\xa7\x08\x3a\x45\xd0\x29\x82\x4e\x11\x74\x8a\x9d\x93\x31\xe8\x14\x0d\x74\x0a\xf8\x64\x21\x86\xd7\x56\x30\xd6\x54\x2c\x56\xe0\xa8\x1c\xad\xcf\x31\x68\x14\x41\xa3\x08\x1a\xc5\xc1\x35\x8a\xd6\x4c\xc8\xb2\xcf\x15\x73\xba\x77\x0b\x52\x02\x74\x6f\xdf\x7c\xdc\x88\x06\xd0\xd2\x0a\x61\xa2\xa8\xa0\x65\xbb\x4e\xbf\xea\xeb\x28\x26\x9a\x1c\xc4\xf2\x3c\xd8\x1a\x45\x5c\x18\xa6\x1c\xdb\x5d\x6e\xe4\x89\xce\x43\xe7\xbe\xfb\x70\x8e\x3a\x28\xc6\x0a\xeb\x6d\x2d\xc8\x4c\x10\x49\x98\x02\x59\x8d\x40\x1c\x3d\xc0\xea\x27\x46\xaa\xf8\xa8\xef\x1f\x74\x89\x15\xbe\xc0\x0a\x27\x7c\x7c\x86\x3a\xf0\xa7\x7e\x99\x4a\x84\x13\xc9\x11\x76\xa4\x27\xb1\x6b\x02\xb3\xd8\x1d\x28\x0c\x68\xf1\x34\xc9\x94\xd3\x4c\xbd\xa0\x2c\xa6\xcf\x34\x4e\x71\x92\xa5\x27\xf4\x59\xf7\x99\x30\x95\xe2\x24\x99\x23\x9c\x24\xc8\x76\xeb\x1e\x70\x00\xf4\x43\x92\x8d\x52\xd2\x29\x4d\xb0\xd0\xec\xd8\x8c\xf6\xc6\xb6\x85\xb4\x62\xec\xc6\x0a\xe3\xd2\xd4\x9c\xe2\x27\x22\x11\x55\x68\xc6\xa5\xa4\xc3\x24\x3f\x00\x8f\x3d\x04\xe3\xbe\xb8\xea\x81\xcc\x16\x29\xc4\x0d\xe7\x70\x9d\x5b\x05\xc6\xf5\x38\xc5\x8c\x11\xe8\x98\xab\x09\x11\xb6\x7b\xfb\xf0\x6b\x8b\x5f\x8f\xd7\xf7\xb7\xdd\x8b\xde\xc7\x5e\xf7\x72\x51\xfe\x7a\xe8\xdc\xff\xb8\xf8\xed\x2f\x37\x77\x3f\x7e\xbc\xba\xf9\x65\xf1\x97\xab\xce\xe3\xf5\xc5\x0f\x83\xdb\xab\xce\xf5\xe2\x8f\x76\x5b\x35\x16\xe5\xfc\x91\xed\x43\x96\x73\x6f\x37\xc0\xf4\xb0\x87\x4b\x61\x95\x4a\x53\x53\x46\x90\x31\x95\x0a\xd8\x7f\x13\x29\x6c\x35\x94\xc7\xd1\x4a\x5f\xa1\xb0\x59\x90\xc5\x82\x2c\x16\x64\xb1\x63\x93\xc5\x0e\x67\x12\x38\xa2\x30\xc5\xbf\x1e\xd7\xdd\x13\xca\x2e\x04\xe6\xdc\x7e\xe6\xdc\x3a\xd7\x5b\x6b\x4c\xe7\xc7\x08\xe9\x1a\x9c\x8a\xcd\x09\x11\x9c\x8a\xcd\x69\x15\x9c\x8a\x4b\x88\x13\x9c\x8a\xc1\xa9\xf8\x15\x3b\x15\x8f\x32\x36\x31\xa8\x12\xee\xb9\xa0\x4a\x04\x55\xe2\x8d\xaa\x12\xad\xa1\x70\xd0\x23\x82\x1e\x11\xf4\x88\xa0\x47\x2c\x27\x4e\xd0\x23\x82\x1e\x11\xf4\x88\x63\x8b\x47\x3c\x2e\x4d\x22\x68\x11\x41\x8b\x68\xb7\x16\xd1\x9a\x09\x1d\x8f\xb7\xb8\xd9\x7c\x42\xe4\x5e\x88\xdc\x0b\x91\x7b\xb5\x91\x7b\x6f\x54\x93\xdf\x95\xfc\xe6\xde\x6e\x5b\x40\xe2\x71\x89\x5f\xa1\xba\x58\xf6\x6b\x10\xc6\x82\x30\xf6\x95\x0a\x63\x2d\x02\x51\x6c\x45\x91\xb4\x29\x56\xd1\x04\x0f\x13\x32\xc8\x6c\x59\xb2\xa9\x7a\x7f\x45\xa5\x92\x28\x4a\xa5\xe2\xd3\xfa\xcb\xe5\xb3\xeb\xa1\x93\x75\x70\xc1\xd9\x88\x8e\x53\x73\xb7\xfc\x06\x5b\xdf\x3b\xd1\xb9\x80\x3b\x9f\x91\x55\x7e\xc5\x8a\xd6\x8f\xe2\x5a\xaa\x1e\xfa\xa1\x6e\xa7\x75\xf4\x91\xdc\x76\x69\x95\x09\x2d\x42\x0e\xee\xba\xf7\x37\x8f\x77\x17\xdd\x73\xd4\x01\x11\x0b\xdc\x09\x66\x2b\xd0\x7f\xea\x49\x21\x85\xe5\x53\xbe\x96\xc2\x6c\x73\x09\x72\x36\xf8\x2f\xb4\xc8\x8f\x4e\xd1\xc5\xd5\xe3\xfd\x43\xf7\xae\xa6\x41\xbb\x51\xa0\x54\x2a\x99\xce\x12\xac\x48\x8c\x9e\xd2\x21\x11\x8c\x68\x69\x27\x4a\x52\x2d\xdc\xe4\x5e\x0d\xd3\x68\xf7\xbf\xbb\x17\x8f\x0f\xbd\x9b\xeb\xc1\x4f\x8f\xdd\xc7\xee\x39\x72\x3b\x4e\x37\xab\xc7\xa5\x47\x11\xcf\x19\x9e\x6a\xc5\x4a\x7f\x91\x17\x67\xfd\x3d\x25\x29\x41\x58\x4a\x3a\x66\x53\xc2\x54\xb9\x45\x37\xe0\xab\xce\xf7\xdd\xab\x62\xcb\x13\x82\x7e\xfc\x7b\x3e\xa8\x04\x0f\x49\x62\xdd\x2c\xe0\x39\xd0\x1b\x3d\xef\xc8\xfa\x5f\x52\x43\xd5\x9f\x1e\x3b\x57\xbd\x87\x5f\x07\x37\x1f\x07\xf7\xdd\xbb\x9f\x7b\x17\xdd\x81\x15\x96\x2f\x3a\xba\xdf\x42\x4f\x56\xa6\x46\xbf\xa7\x38\xd1\x4a\x17\x1f\x81\xdf\x82\x46\x04\xbd\x4c\x08\x43\x29\x83\x1d\x67\x34\x39\xad\xde\x65\x9d\xea\x53\x66\x66\x74\x7b\xf5\xf8\xa9\x77\x3d\xb8\xf9\xb9\x7b\x77\xd7\xbb\xec\x9e\xa3\x7b\x92\x80\xae\xe3\x88\x0e\xab\x38\x4b\xd2\x31\x65\x88\x4e\x67\x09\xd1\xd4\x30\xba\xdc\x90\x4c\xf0\x33\xe5\xc2\x1e\xdd\x31\x7d\x26\xcc\xd0\x11\xce\x2c\xb4\xef\x74\x8a\x81\x47\xba\x9b\xeb\x8f\xbd\x4f\xe7\xa8\x13\xc7\xd9\x1c\x24\xb4\x51\xd8\x39\x2f\x5c\x3c\x8d\x12\xfe\x72\x5a\x1c\xb6\x66\x0e\xd0\xbd\xd9\x44\xfc\x99\x08\x41\x63\x52\xda\x47\x9d\xfb\xfb\xde\xa7\xeb\xcf\xdd\xeb\x07\xa0\x98\x12\x3c\x91\x68\xc2\x5f\xc0\x42\x0f\x33\x04\xc3\xfd\x33\xa6\x09\x74\xe6\x16\x8b\x33\xf4\x32\xa1\xe0\xd5\xa1\xd2\x27\x98\x51\x3b\x45\xca\x5e\xdd\xe8\x5c\x38\x78\x8b\xda\x58\xf9\x24\x2d\x3e\x51\x3a\x16\xcb\x1e\x28\xec\xf2\xc5\x07\x57\xed\xd6\xc5\x37\x4a\xdb\xad\x5e\x07\x5d\xd8\x2f\xf5\x33\xcd\xd7\xba\xb1\x0a\x5a\xa4\xe1\x9a\xc2\xc3\xba\x1a\xa8\xf1\x81\xf9\x4a\x28\xb8\xd4\x9c\x98\xef\x78\xe2\x71\x69\xa3\x8d\xc5\x88\xbc\xe0\xea\x91\x0b\x14\xc7\x91\x78\xf7\xba\x12\xc5\x61\x8f\xc6\xa1\xb5\x86\x20\x2f\x05\x79\x29\xc8\x4b\x41\x5e\x0a\xf2\x52\xf6\x6f\xcf\xf2\x04\x51\x82\x46\xf2\x43\xb6\xaf\xf6\x0b\xca\x4a\xa4\xde\xb0\x8a\x4e\x09\xb2\x3d\xdb\x93\x5a\x2b\x84\x64\xa5\xee\x97\x5a\xcc\x3f\x11\x95\x3d\xf8\xd9\x34\x7c\x14\xc2\xc4\x2f\x96\xa3\x64\x83\xff\x44\x94\x1d\x7f\x48\xe8\x0f\x09\xfd\x35\x53\x0b\x5e\x81\xed\xbd\x02\x5c\x20\x39\x97\x8a\x4c\x8f\xc4\x3f\x10\x93\xd9\x62\x87\xa5\x89\xc1\x33\x26\xbe\x6b\x21\x1c\xd9\x78\xce\x6d\xec\x40\x42\x9e\x49\x02\x82\xac\x12\xf8\x99\x08\x69\xc5\xb3\xa1\x20\xf8\x49\xcb\xb4\x31\x7f\xf1\x85\xb3\x98\x28\x4c\x93\x7d\xe8\xcf\x4d\xc2\x95\xff\xfa\x97\x57\xbd\x0f\x8f\xf7\x0a\x0c\x37\x60\x70\x21\x87\xcb\xe2\x2b\xbc\x2c\x8e\x31\x88\x27\xdc\x81\x6d\xb9\x03\x35\xb9\xe3\x81\x0b\xe7\xfb\xf0\xaf\x82\x51\xee\xdf\xfb\xd2\x0f\xef\x20\x3f\x4a\x2e\xbb\x08\x35\x97\x8a\xbb\xb0\x7c\xbf\xd9\x20\xc0\x15\x37\xa2\xf7\xc6\x51\xe8\x83\xde\x78\xdb\xe4\x9a\xbe\xf3\x0d\xfb\xee\x9e\x98\x12\x85\x63\xac\xb0\x3e\x42\x63\xa2\xce\xd0\x0d\x83\xdf\x1e\xb0\x7c\x3a\x41\xee\x5e\xd7\xbc\x33\x0f\xc5\xf0\x53\x74\xf6\xc4\x2a\x1b\xda\xac\x5e\x3b\x78\xb3\x8d\x1c\x3d\x68\xe9\xbb\x9c\x5a\x10\xbc\x42\x3a\x76\x9b\x71\xf3\xdc\xdb\x8d\xa2\x9d\x77\x77\x2b\x9b\x16\x8f\xf8\x62\x3e\x6c\x7c\xf3\x4e\xaf\xe9\x14\x86\x1e\xee\x60\xf3\x2f\xdc\xc1\xe1\x0e\x0e\x77\xf0\x32\xca\x84\x3b\xf8\x88\x03\xe0\x2b\xae\xac\x57\x8d\x80\x6f\x62\x56\x30\x36\x85\xdc\xa0\xb0\x26\x50\x6f\x6e\x43\x58\x09\xaf\x55\x21\xb5\xac\xc4\xd6\xca\xdf\xa1\x47\x12\xac\xe6\xcd\xf2\x10\xf8\x5a\x3b\x15\x56\x0c\xc2\x4b\xb0\x2a\xec\x51\xa2\x79\x7b\xe2\xcc\x36\xb2\x0c\x56\x70\xc9\x60\xca\xcc\x9d\x94\x67\x7b\xcb\x03\xec\xb0\x35\x27\xba\x8d\x64\xe3\x4d\xcc\x13\x6e\x9c\xcc\xe2\x11\xa5\x25\x8b\xba\x17\x18\xae\xd7\xb1\xe3\xbf\x3e\xf4\x16\x79\xbb\xc8\x5b\x01\x5c\x6a\xad\x43\x12\xc0\xa5\x0e\x01\x2e\xd5\x60\x19\xf7\x82\x18\x77\xe0\xe3\xf9\x9a\xaa\xc3\xf1\x38\x21\x8f\x4c\x67\x38\x2a\x7d\x21\xf8\x20\xf7\x6f\xff\x0c\xa6\xc2\x60\x2a\xac\xa6\x4c\x30\x15\x7e\x5d\xe1\x5a\xbb\xba\xef\xdd\xdb\xaf\xed\x85\x3c\xb2\x9b\x39\x38\x21\xc3\x25\x1c\x2e\xe1\x70\x09\x87\x4b\x78\x57\x14\x0e\xfe\xba\x35\x95\xee\xa3\xf0\xd2\x1d\xd9\xb5\x1e\x9c\x74\xe1\xc6\x77\x2f\x07\x97\xd6\xaa\x79\x06\x97\x56\x70\x69\x05\x97\x56\x70\x69\x05\x97\x56\xf6\x7d\x70\x69\x1d\x74\xb7\x7e\xb5\x66\xbb\x6a\x8d\x81\xc7\x64\x50\x81\x24\x93\x7d\x35\xf0\xd3\x06\x0b\xdf\x16\xdc\x77\x85\x5f\x7c\x5f\x5e\xe1\x87\xbc\x5c\x0e\xf4\x4b\xe3\xb5\xf3\xf0\x97\x99\x13\x79\x4c\x1a\xe7\xdd\x17\x1e\x6e\x7b\x5c\xa0\x9b\xa8\x51\x3d\xfc\x91\x1f\x20\xcf\xbe\xbc\x13\xde\x58\xf4\x59\xcd\xae\x7e\x8b\x96\xba\x8a\x33\x1a\xcc\x76\x2b\x09\xf5\x86\x01\x07\x2c\x13\x3e\xc0\x78\x0e\x7f\x87\x39\xe0\xbf\x41\xc5\x4d\x56\xfd\x5b\x7e\x9f\x55\xff\x9e\xdd\x6a\xd5\x3f\xef\xa7\xa4\x74\xf3\x4b\x0d\xec\x68\xfe\xd3\x47\x12\xee\xee\x0f\xf9\x10\xb6\xb4\xda\x8d\xf1\xc6\x2e\xb6\xa5\x9b\xfc\xcd\x5d\x6f\xcb\x8e\x6c\xb8\xe4\x1a\x92\xeb\xad\x5e\x75\xa1\x26\xf4\x32\x2b\x5e\x28\xba\xdc\x42\x2b\x45\x30\x22\x06\x23\xe2\x31\x1a\x11\x4d\xf0\xc1\x60\x86\x05\x61\xaa\x42\xb7\x28\x5f\x27\xf0\xb8\x5f\xa4\xd3\x49\x1d\xd0\x00\xd2\xa2\x3d\xb2\x17\x72\x76\x55\xbd\xb1\x40\xf9\x92\xf6\xf2\x86\xed\x6c\x2d\xd7\x47\xda\x63\x66\x7b\xab\x52\x7a\x30\x42\x05\x23\x54\x79\x9e\x87\x33\x42\x6d\x40\xf7\xe0\x2c\x5a\x7a\x55\x7d\x25\x86\xb4\x96\xdf\x5b\x6d\xb2\xa3\xbd\xd5\x9b\x2b\xd8\x97\x76\x40\xae\xb7\x7a\x8b\xbd\x96\x49\xf9\xf0\x5a\x7a\xb0\xa4\x05\x4b\x5a\xb0\xa4\x05\x4b\x5a\xb0\xa4\xf9\xdf\x07\x4b\xda\x32\xba\x1f\x4c\x3d\xb1\x22\x90\x5f\x66\xf5\x5f\xf9\xe7\x4c\x2d\xf1\x55\x8b\x65\x19\xac\x17\x82\xc0\xa9\xe0\xc2\xe6\x3f\xee\xa2\xfc\x2a\x56\x05\xa1\x17\x2a\x1a\x2c\xd1\x45\x4c\x56\xd1\xad\x79\xfa\xb8\xca\xb8\x2f\x0c\xfa\xb0\xf9\xaf\x8b\x0b\xdf\xec\x00\xb9\x95\xa1\xa6\xc4\xa6\x57\xc7\x51\xcb\xdd\x7c\x94\x5f\x0c\x12\xbd\xd0\x24\xd1\x92\x8c\x95\xda\x5a\x22\x8d\xbe\x7a\x56\x5c\xed\xca\xbf\x6a\x6e\x5c\x15\x77\xa8\x62\x09\x4d\xac\xe3\xbb\x2a\xc3\xec\x36\x1b\x94\x90\x05\xbd\x6f\x85\x39\xfd\x6d\x70\x82\x4f\x44\x1d\x8a\x0d\x6c\x7a\xf6\x97\x9e\x7b\x41\x46\x44\x10\x16\x91\x16\x66\x64\xad\x93\x2a\xf8\x8b\x99\xa4\xcd\x13\xcc\xea\x94\xfb\x53\x55\xdc\xea\x69\x05\x51\x37\x54\x6f\x0e\xd5\x9b\x43\xf5\xe6\xf2\x51\x0f\xd5\x9b\xdf\x46\xf5\xe6\x06\x5c\x76\x07\xb6\xbd\xe5\x06\xdb\x96\xea\x5d\xee\xed\x77\x31\x49\x88\x22\xb5\x82\xd2\x25\xfc\xfc\x5a\x82\x92\xe9\xfd\x6d\xc8\x4a\x66\x2e\x41\x5c\xfa\x6a\x94\x25\xb7\xe0\xad\x50\x96\xcc\x59\xf3\x75\x26\x48\xae\xf0\x94\x6b\x93\x51\xf1\x36\xcd\x2c\x47\x91\x40\xd1\x1e\x3b\xcb\xde\x2f\xc5\x43\x33\x87\x60\x43\x5a\x1c\x49\xb0\x21\x6d\xc7\x16\x0b\x5f\x56\xa0\x30\x1d\x9c\x55\x6e\x22\x60\x15\xf8\xe5\x25\x3c\x7e\x9c\x5c\xb3\x3c\xf6\x63\xe6\x9d\x5e\x6b\xed\x60\x22\x5f\x2f\xfb\x5c\x38\xe2\xcd\x26\x6e\x43\x7f\x8e\x77\xde\x6d\xb9\x36\xea\x8e\x75\x9b\x2f\x8f\x62\x1d\xad\xe3\xf5\x48\x1c\x13\xfb\x7f\x15\x97\xc4\x9b\x13\x93\xbf\x3a\xa3\x41\xf0\xb1\x04\x1f\x4b\xf0\xb1\x04\x1f\x4b\xf0\xb1\xa0\x4d\x7d\x2c\xbb\x92\xb4\x8e\xda\x21\x71\x9c\xa2\xd2\x61\x3d\x12\x41\x5a\x3a\x76\x69\xa9\x2d\x4a\xe1\x71\xb9\x58\xb6\x2c\xab\xdc\x16\xbd\xf0\x2d\x19\x07\x8f\x4b\x47\x6c\x9d\x39\xf0\xab\x63\x7c\x9b\x99\xfe\x8e\x76\xba\x41\x2b\x0e\x5a\x71\xd0\x8a\x83\x56\x1c\xb4\x62\x14\xb4\xe2\xb5\xb5\xe2\xb7\x24\x28\x1e\x9d\x86\x1c\x64\xc5\xd7\x9e\xf0\x57\x26\x2b\xb6\xc5\x26\x50\x77\x72\x5b\x6a\x19\xf8\x3a\x03\x8a\x8e\xf8\x26\x08\x39\xaf\xc8\x5b\xba\x10\x70\xf3\xb5\xf0\xd1\x96\x07\xdc\xbc\x3d\xbb\xea\x11\xf3\xc8\x90\x0d\x1c\xc4\xca\x1d\x4d\x37\x98\x20\x83\x09\x32\x98\x20\x83\x09\x32\x98\x20\x51\xbb\x93\x9f\x57\x1a\x9c\x42\xfe\xf3\xbe\x0c\xab\x47\x2c\x29\x86\x5c\xe8\x20\x2c\xee\x6e\xba\x6d\xd5\x9d\xdb\x64\x83\x94\xeb\xd7\x8d\x58\x89\xc4\x6d\xa7\xfd\xdb\x12\x06\x76\x45\xa5\x53\x74\x8f\x89\x5f\xc9\x7d\xb3\xa4\x6d\xe0\x77\xdd\x8a\xbe\x59\xf4\xdd\x2d\xaa\xd1\x03\xef\x7a\xa3\xe5\xe8\x03\x38\xf0\x12\xe2\x04\x70\xe0\xb5\xb8\x49\x00\x07\x6e\x09\x38\xf0\xba\x2a\x98\x39\x95\xbe\x16\x06\x87\xdc\x49\xad\xce\x2c\x75\xa4\xca\xd8\x8c\xcb\x7a\xc9\xe4\x8e\x8c\xa9\x04\x96\xb4\xa4\xa6\x95\x93\x49\xa0\xb0\x02\x6c\xf5\x8f\xfa\x01\x14\x93\x59\xc2\xe7\x60\xff\x5a\x22\xae\xb8\x2e\x6e\x17\x34\x86\xb6\x4b\x2c\x6e\xe4\x87\xd2\xa9\xda\x22\x73\xe7\xf3\x6e\x85\x94\x9d\x87\xfc\xbf\xbe\xbc\x7d\x4c\x81\x57\x7b\x17\xb8\x0f\xcb\x67\x8f\xa9\x2e\x6e\x50\x27\x82\x3a\xd1\x64\xd7\x04\x75\x62\x15\x81\x82\x3a\x11\xd4\x89\x7d\xaa\x13\x07\x96\x60\x3e\xfc\xab\x54\x6e\x76\x59\x00\xe2\xa3\x8d\x3a\x04\xe7\x2c\x95\x70\xe4\x57\x0a\x32\x7d\x56\xfd\x83\x73\x52\x0e\x89\xe3\x31\xc3\x54\x79\x65\xd7\xa4\xbe\xb4\x66\x44\xa8\xb9\xf7\x24\x99\xce\xd4\xfc\xbf\xfa\x8c\xaa\x2c\xc4\x8b\x8e\x19\x17\x66\xc7\xe8\x97\x27\x98\xc5\x89\xbe\xd4\x65\xd6\x4e\x84\x19\xe3\x0a\x58\x39\x4c\x20\x46\xcf\x14\x1b\xc6\xdf\xb9\xed\x35\x0e\x74\x3c\x26\x51\xeb\xb0\x91\x8c\xfb\xaf\x9d\x76\xf8\xca\xa2\x2b\x26\xf4\x29\xe1\x43\x9c\x24\x73\x94\x16\x3d\x4a\xba\x81\x96\xcc\xa1\x2d\xda\x5b\x3b\xd4\x35\x07\x2b\x50\x56\xdb\x5a\x66\x8d\x38\x26\x26\x73\x68\x73\x84\xb7\x84\x6f\x8c\xdd\xb4\xe5\xa8\xb6\xcd\xd0\x12\x84\x93\xa6\xc2\xc9\x11\xb1\x8d\xc3\xca\x26\xe1\x26\x3f\xfe\x9b\x5c\x61\xf9\xe4\x57\x32\x87\x0b\xdd\x15\xa3\x2f\x54\xf1\x2d\x97\xf4\xfd\x77\x93\xe7\xf2\xf4\x82\xd5\xcf\x66\xd5\xd0\x57\x3f\x0a\x95\xd1\x6b\x1e\xb4\x65\xf4\xcd\xcf\x30\xbd\xf2\x38\xdc\x97\x7e\x87\xee\xbb\xbc\x65\xf7\xcd\x33\x11\x92\x72\xfb\x98\x20\x4a\xcc\x07\x58\x29\xcd\x90\x36\xb0\x51\xd7\x72\xcd\x07\x2c\x9f\x9a\x55\x65\xff\x44\x54\xe1\xe1\xb6\x8b\x35\x6e\xa2\x30\xcf\xc2\xc8\xf7\xcf\x9f\x1a\x6c\xe3\x37\x26\xee\x34\x3e\x92\x2b\xe6\x7d\x7c\x85\xe9\x9b\x32\x98\x35\x26\xfe\xb5\x14\xa9\x6f\xc6\x70\x57\xc5\x43\x1e\x63\xc1\xfa\x65\x37\x48\x6b\x46\x58\xba\xc4\xde\xe2\xc9\x2d\x5e\xc9\xe1\x88\x2e\xa3\x51\xd3\xb3\x78\x34\x27\xb0\x24\x69\xad\x98\xdb\xbd\x5b\x20\xfb\xb8\xdb\x09\xed\x9b\x57\x41\x58\xdc\xf5\xa8\xf6\xe3\x00\xf6\x56\x63\x9d\x14\xc2\x9e\x2b\xb6\x6e\xdc\x59\xd9\x19\x72\x49\x85\xd9\xd1\x54\x13\x28\x48\x45\xa5\x5f\x9f\x3d\xe2\xc2\x48\x9b\xb1\x3d\xb3\xc6\xa1\xd5\x79\xe8\xdc\x77\x1f\xce\x51\x07\xc5\x58\x61\x7d\x48\x05\x99\x09\x22\x09\x53\xc6\x14\xc1\x14\x55\x73\x34\xe5\x31\x49\x8c\x1d\xc0\x18\x07\x2f\xb1\xc2\x17\x58\xe1\x84\x8f\xcf\x50\x07\xfe\xd4\x2f\x53\x89\x70\x22\x39\xc2\x6e\xe3\x90\xd8\x35\x81\x59\xec\xd8\x03\x46\x11\x9f\xce\x68\x62\xf2\xda\x7c\xff\x36\x65\x31\x7d\xa6\x71\x8a\x13\xc4\x87\x60\x43\x39\xeb\xb3\xee\x33\x61\x2a\x05\x1d\x17\x27\x09\xb2\xdd\xba\x07\x3c\x03\x86\x1b\xa5\xa4\x53\x9a\x60\xa1\xa5\x47\x33\xda\x1b\xdb\x16\x7a\x98\x90\x6c\xac\x30\x2e\x4d\xcd\x29\x7e\x22\x12\x51\x85\x66\x5c\x4a\x3a\x4c\xf2\x63\xfc\xd8\x43\x30\xee\x8b\xab\x1e\x38\x0d\x23\x85\xb8\xe1\x83\xae\x73\xeb\x41\x77\x3d\x4e\x31\x63\x04\x3a\xe6\x6a\x42\x84\xed\xde\x3e\xfc\xda\xfe\xbf\xc7\x6b\x9b\x2e\xd6\xbd\x5c\x74\x00\x3e\x74\xee\x7f\x5c\xfc\xd6\xe5\x87\x2d\xfe\x72\xd5\x79\xbc\xbe\xf8\x61\x70\x7b\xd5\xa9\xc8\x3b\xb3\xdb\xaa\xb1\x2f\xd1\x1f\xd9\xe6\x87\x69\xff\x8a\x46\x4b\x43\x13\x9b\x1b\x1d\x1a\x59\x1c\x1a\x9b\x1b\x9a\xda\x1a\x9a\x19\x1a\xea\xad\x0c\x7b\x08\x53\x6b\x6e\x0a\xb8\xa2\xb2\x68\x0b\x38\x8e\x98\xb5\xc2\x90\xf5\x1c\xf6\x6d\x08\xf8\xea\xac\x00\x5f\xa9\x09\x20\xe8\xff\x7b\xa1\xdb\x5b\x55\xfe\x5b\xae\xf9\x6f\x13\x94\x9a\xe1\x5f\x84\xa8\xd4\xc5\xa8\x54\x12\x82\x52\x43\x50\x6a\x53\x02\x85\xa0\xd4\x10\x94\x7a\xb4\x41\xa9\x65\x45\x2b\x78\x6c\xdb\xe0\xb1\x6d\xb9\x8e\xd6\x66\x87\xed\x5b\xd5\x5c\x82\xf3\x32\x38\x2f\x83\xf3\xf2\x48\x4f\x6e\x70\x5e\x36\xa7\x51\x70\x5e\x06\xe7\x65\x70\x5e\x06\xe7\x65\x70\x5e\x06\xe7\xe5\x6b\x9a\x46\xda\x10\x1b\x7a\xcc\x2e\xdb\xe0\x89\x5d\xe1\x89\x6d\xb9\x92\xdf\x4a\x47\xec\x5b\xd5\x11\x82\x6a\x1f\xfc\x92\x5b\x4d\xbb\x55\x4a\xfd\x5b\xbb\x37\x83\x2b\xb6\x39\x21\x82\x2b\xb6\x31\xa9\x82\x2b\x76\x09\x71\x82\x2b\x36\xb8\x62\xbf\x42\x57\x2c\x8d\xb7\x2e\xb9\xd5\x44\x6f\xd1\xb2\x62\xdc\x05\xf3\x50\x66\xdc\x12\xbf\x81\xf4\x88\xe5\x53\x66\x01\x6a\xa0\xcf\xf4\xe2\xa3\x50\x64\x2a\x27\x7c\x08\x85\x66\x1b\x8d\x05\x2b\xcd\xc1\x15\x40\x15\xe8\x5f\x72\xa3\x62\x0b\x6b\x04\x6c\xa3\xa3\x78\x13\xf3\xd4\x14\xa7\x7d\x78\x44\x69\xdf\xb4\x83\xe0\x17\x04\xbf\x20\xdb\x34\x9c\x70\x90\x6d\xda\x2b\xdb\xbc\x96\xc2\xd2\xbe\xe3\x79\x74\xf6\x89\xbd\x8b\xa5\xb2\x31\x68\x9b\x29\x93\x0d\xae\xbb\x74\x96\x70\x1c\xaf\x0a\x90\xfb\x0d\xe5\xb2\xda\x12\x71\xd3\xb4\xab\x5f\x68\xb9\xb4\xb9\x10\x1b\x67\x46\xfe\x35\xa0\xc6\xd7\x4e\xfd\x55\xf1\xcc\x60\xff\x66\xa8\x45\x6b\x21\x10\xee\x7f\x33\xb7\x3d\x1b\xef\x95\x77\xf3\x9b\x4c\xbd\x0b\x47\x74\xf5\x11\x85\x0f\x85\x00\xef\x7d\x59\x42\xca\xc7\xb6\x91\xd1\x43\xfe\xad\xe5\xe7\x36\x5b\xdf\x43\x98\x38\xde\xe4\x29\x7d\xc3\xce\xe6\xe0\x50\x5e\x1e\xf5\xb3\xa3\x00\xd4\x3e\x7b\x98\x68\x3a\x4c\x87\x94\x65\xf1\x76\x6e\x87\xfc\xc9\x91\xeb\x4f\x80\x75\x69\xf1\x2f\x93\x79\x6e\x0a\x93\xe5\xd6\x32\x45\x09\x9d\x6a\x2d\x35\x22\x42\x01\xbd\x39\x53\xe4\x8b\x92\xe8\x14\x25\xf4\x89\xa0\xf7\xfa\xc8\xa3\xce\x6d\xef\xfd\x09\x7a\x7f\x85\x53\x16\x4d\xd0\x2c\xc1\x4c\xbe\x6f\x8d\x82\x15\x6c\x66\xa1\x9a\x4a\xf0\x96\xee\x92\x38\xc1\xa2\x18\x2c\x8a\xad\xb3\x28\xb6\x45\x67\x30\x49\xa5\x78\x4a\xda\xa2\x3d\xb4\x5d\xeb\x0f\xda\x43\xd0\x1e\x82\xf6\x10\xb4\x87\x82\xf6\xd0\x0e\x0a\x07\xd5\x21\xa8\x0e\x41\x75\x08\xaa\x43\x50\x1d\x76\x4e\xc6\xa0\x3a\x2c\x53\x1d\xe0\x93\xc3\x8d\x59\x57\x8f\x68\xac\x3f\x34\x00\x89\x39\x1a\xe5\x21\x28\x0e\x41\x71\x08\x8a\xc3\xc1\x15\x87\xd6\x4c\xe8\xed\xe1\x5d\x04\xc4\x88\x80\x18\x11\x10\x23\x6a\x10\x23\x0e\x25\xb2\x19\x79\xed\xc8\x52\x64\x8e\x42\x68\x7b\xb5\x1c\x99\xb7\x27\xc6\x85\xac\x9f\x90\xf5\x13\xcc\x90\x21\xeb\x27\x18\xda\x82\xa1\xad\xd5\x86\xb6\xd7\xb2\x9e\x1f\xf8\x78\x1e\x40\x38\x6d\x79\xc4\xf2\x5f\x8f\x41\x02\x3d\x60\xcc\x41\xb0\xb2\x05\x2b\x5b\x35\x65\x8e\xd3\x3d\xdf\x9a\x5b\x3f\x00\x3c\x05\x89\x3f\x04\x1e\x84\xc0\x83\x95\xc4\x09\xfa\x50\xd0\x87\x5a\xa7\x0f\xbd\xa2\xa2\xd0\xba\x30\xe5\xa0\x31\x04\x8d\x21\x68\x0c\x6f\x56\x63\x68\x0d\x85\x83\xba\x10\xd4\x85\xa0\x2e\x04\x75\x61\x39\x71\x82\xba\x10\xd4\x85\xa0\x2e\xb4\x3a\x34\xf9\x58\x14\x86\xa0\x2c\x04\x65\xa1\xdd\xca\x42\x6b\x26\x14\x82\x78\x43\x10\x6f\x08\xe2\xfd\x6a\x82\x78\xdf\xa8\xc2\xbe\x57\x31\xcd\xb1\xc8\x65\x82\xd7\xa2\xbc\xf4\xf3\x02\x63\x6d\xad\xc8\x94\x8f\x76\x53\xdc\xc7\x5d\x91\xfa\x85\x8b\xa7\x51\xc2\x5f\x06\x99\x56\x67\x83\xc2\xf3\xbf\x6d\x3e\x9f\xf7\x45\x2e\x3c\x7b\x5f\x66\x42\xb4\xf7\x9d\x6b\xbd\x08\x10\x9a\xae\xc2\x07\x95\x88\x0b\x94\xce\x62\xf8\x18\xa5\x52\xf1\x69\xbd\x54\xfd\x19\xab\x68\x82\x87\x09\xe9\x64\xfd\x5e\x70\x36\xa2\xe3\xd4\xec\x8f\xdf\x80\x15\x62\x27\xd9\x9c\x38\xc9\x48\x33\x45\x37\xbe\x65\x92\xf8\x23\x8c\xe3\x17\xfb\x64\xde\xc9\x51\x04\xa0\x2f\x0e\xdb\x4c\xe7\x50\x70\xa3\xc5\x5d\xb4\x2d\x8b\xf3\x5a\x6b\x87\xf8\xb3\x78\x26\x56\x89\xaa\x60\x85\xce\x34\x13\x1a\xc3\xe6\x7c\x99\x50\xb0\xac\x81\x25\x0e\xac\x4f\x79\xc3\xe8\x85\x26\x09\x48\x1c\x86\x16\xed\x9b\x79\x23\xed\xc5\x4e\xdc\x9e\xbd\x37\x31\x6f\xc7\x3c\x56\xcc\xdc\x1d\x41\xe3\x86\x38\xd2\x69\xbf\x26\xc2\xee\x0a\x46\xf6\xaa\x38\xbb\xb5\xd7\x67\x4d\x4e\xd5\x87\x7f\x55\x5e\x89\x4d\x6a\xa7\xbe\xf6\x3d\xf8\x89\xa8\x37\x73\x09\x7e\x22\xea\x50\x37\xe0\x5b\xbc\xf6\x36\xbd\xeb\x96\x32\x3e\x41\x46\x44\x10\x16\x91\x63\xcd\xc9\x5a\xb8\xe2\x8e\x76\xba\x1b\xdd\x6c\x47\x3b\xdb\x75\x0c\x58\xbf\x98\x49\x5a\x73\xd5\xd4\xb1\x5c\x7f\xaa\x8a\x5b\xf7\x72\xc1\x05\x66\x8d\x55\x0f\x9d\xfb\x1f\x07\x77\xdd\xfb\x9b\xc7\xbb\x8b\xee\x39\xea\xc0\x41\x87\x77\x0c\x7b\xa7\xff\x84\xe6\x20\x1f\x36\x33\x86\x09\x73\xc7\x49\x60\xd5\xe0\x06\xd7\x54\x44\xa7\xe8\xe2\xea\xf1\xfe\xa1\x7b\x57\xd3\xa0\x65\xfe\x94\x8d\x91\x22\xd3\x59\x82\x15\x89\xd1\x53\x3a\x24\x82\x11\x50\xac\x92\x54\x2a\x22\x72\xe7\xb8\x69\xb4\xfb\xdf\xdd\x8b\xc7\x87\xde\xcd\xf5\xe0\xa7\xc7\xee\x63\xf7\x1c\xb9\x5b\x44\x37\xab\xc7\xa5\x47\x11\xcf\x19\x9e\xd2\xc8\x7c\x91\x95\xa2\x45\xbf\xa7\x24\x25\x08\x4b\x49\xc7\x6c\x4a\x98\x2a\xb7\xe8\x06\x7c\xd5\xf9\xbe\x7b\x55\x6c\x79\x42\xd0\x8f\x7f\xcf\x07\x95\xe0\x21\x49\xac\xb7\x1e\x1c\xd0\xfa\xf2\xca\x3b\xb2\x6e\xfc\xd4\x50\xf5\xa7\xc7\xce\x55\xef\xe1\xd7\xc1\xcd\xc7\xc1\x7d\xf7\xee\xe7\xde\x45\x77\x60\x8d\x31\x17\x1d\xdd\x6f\xa1\x27\x6b\xb3\x41\xbf\xa7\x38\xa1\x6a\xae\xd7\x51\x9a\x4b\x1f\xbd\x4c\x08\x43\x29\x83\x0b\xc4\x58\x0a\x31\xf3\x3a\x95\x33\x12\x99\x19\xdd\x5e\x3d\x7e\xea\x5d\x0f\x6e\x7e\xee\xde\xdd\xf5\x2e\xbb\xe7\xe8\x9e\x24\x60\x4b\x73\x44\x87\x55\x9c\x25\xe9\x58\x73\x82\xe9\x2c\x21\x9a\x1a\xc6\x56\x38\x24\x13\xfc\x4c\xb9\xb0\xd7\xf1\x98\x3e\x13\x66\xe8\xa8\xb7\x95\x69\xdf\xd9\xac\x06\x1e\xe9\x6e\xae\x3f\xf6\x3e\x9d\xa3\x4e\x1c\x67\x73\x90\xd0\x46\x61\xe7\xb8\xa3\x7b\x5a\x1c\x36\x1d\xd1\x08\xba\x37\x9b\x88\x3f\x13\x21\x68\x4c\x4a\xfb\xa8\x73\x7f\xdf\xfb\x74\xfd\xb9\x7b\xfd\x00\x14\x53\x82\x27\x12\x4d\xf8\x0b\x38\x7a\x61\x86\xe0\xff\x7d\xc6\x34\x81\xce\xdc\x62\x71\xe6\x9f\x7e\xaf\x67\x63\xd6\x14\x29\x7b\x75\xdf\x65\xe1\xe0\x2d\x5a\xfb\xca\x27\x69\xf1\x89\xd2\xb1\x58\xf6\x40\x61\x97\x2f\x3e\xb8\x6a\xb7\x2e\xbe\x51\xda\x6e\xf5\x36\xce\x85\xfd\x52\x3f\xd3\x7c\xad\x1b\x9b\x38\x8b\x34\xdc\x87\x8c\xed\xde\x7e\x17\x93\x84\x28\x52\x2b\x13\x5f\xc2\xcf\xaf\x2f\x13\x9b\x71\xbc\x19\xb1\xd8\x4c\x27\x48\xc6\x41\x32\x6e\x3c\xe1\x20\x19\x57\x4d\xf8\x8d\x48\xc6\x2d\xb4\xfa\x38\x16\xd5\x3a\xab\x4f\xf0\x8f\x94\x56\xea\x38\xaf\xc0\x57\x73\x8f\x04\xff\xc1\x7a\x57\xc8\xf1\xcf\x3b\xf8\x0f\x82\xff\xa0\xf2\x26\x79\xf3\x5e\x83\xe3\xbc\x1a\x0e\xe8\x34\x08\x6a\xc4\x92\xf9\x06\x35\xe2\xc8\x66\x1b\x0c\xec\xc1\xc0\x1e\x0c\xec\xc1\xc0\x1e\x0c\xec\x68\x53\x03\x7b\x03\x2e\x7b\x08\x73\x6a\x4b\x83\x88\xdf\x8a\xdb\xe0\x38\xe5\xe2\xc3\x7a\x0d\x82\x68\xbc\x64\xbe\x41\x34\x3e\xb2\xd9\xb6\xd0\x2e\xd2\x2e\x0b\x3b\x8d\xab\x0c\x22\x07\x84\xa6\x77\x23\x69\x0a\x4f\xef\x08\xda\x8b\x8f\x82\x9d\xbf\x1a\x42\x7d\xc0\x73\x0f\x78\xee\x01\xae\x25\xe0\xb9\xa3\x00\x48\x12\x00\x49\xda\x0c\x48\xd2\x60\x19\xdf\x02\x9e\xfb\x61\x2c\x0c\x6f\x28\x49\xd9\x09\x86\xb2\x10\xbb\xc1\xe5\xaa\xe0\x0d\xb0\x12\xa4\xb3\x84\xe3\x78\x19\x58\x8c\x93\x23\x7d\xc0\x98\x25\xa2\xa7\x69\xfb\x97\x45\xe5\xa9\xb5\x92\xa7\x1b\xab\x19\xf9\xa1\xcc\x07\xad\x51\xb8\xdc\xb4\x5b\xa1\x66\x15\x6b\xb7\xb6\x70\x43\x1f\x55\x40\xed\x61\x77\xf4\x9b\x2c\xda\x1a\x8e\xe9\xea\x63\x7a\xb8\xfa\x28\x55\x47\xb7\xb1\x21\x44\xfe\xed\x98\xce\xee\x81\x90\x8f\xdf\xde\x89\x0d\x08\x6d\x01\xa1\xad\x96\x32\xc7\x09\xe7\xdc\x1a\xc5\x2b\xd8\xd2\x02\xf4\x71\x80\x3e\xde\x25\x71\x82\xa5\x31\x58\x1a\x5b\x67\x69\x6c\x93\x0e\xb1\xc7\xd2\x29\xdb\x69\x13\x47\x65\x09\x08\xda\x44\xd0\x26\x2a\xa6\x16\xb4\x89\xaf\x50\x9b\x68\x07\x85\x83\x2a\x11\x54\x89\xa0\x4a\x04\x55\x22\xa8\x12\x3b\x27\x63\x50\x25\x5e\xa7\xac\x4a\x95\x3e\xd1\x30\x25\xf5\xa8\x94\x89\xa0\x48\x04\x45\x22\x28\x12\xa1\x70\xcc\xf2\x39\x85\xc2\x31\xa1\x70\x4c\x28\x1c\xf3\x06\x0a\xc7\x1c\x52\x84\xab\x41\x2b\x3f\x8e\x34\x9b\xa3\x10\xe2\x5e\x2d\xcf\xe6\xed\x89\x74\x21\x73\x28\x64\x0e\x05\x13\x65\xc8\x1c\x0a\x46\xb8\x60\x84\x6b\xb5\x11\xee\xb5\x2c\xeb\x07\x3e\x9e\x07\x12\x54\x8f\x24\xda\xf9\xaf\xc7\x20\x8d\x1e\x38\x3e\x21\x58\xe0\x82\x05\xae\x9a\x32\xc7\xe9\xca\x6f\x8d\x14\x70\x8c\x95\x63\x83\x06\xd0\x9c\x10\x21\x48\xa1\x39\xad\x42\x90\xc2\x12\xe2\x04\xfd\x28\xe8\x47\xad\xd3\x8f\x5e\x59\x71\x68\x6d\x88\x73\xd0\x20\xcc\x73\x41\x83\x08\x1a\xc4\x1b\xd5\x20\x5a\x43\xe1\xa0\x3e\x04\xf5\x21\xa8\x0f\x41\x7d\x58\x4e\x9c\xa0\x3e\x04\xf5\x21\xa8\x0f\x47\x13\xd6\x7c\x4c\x0a\x44\x50\x1e\x82\xf2\xd0\x6e\xe5\xa1\x35\x13\x0a\x01\xc0\x21\x00\x38\x04\x00\x7f\x35\x01\xc0\x6f\x54\x81\xdf\xad\xd8\xf6\x07\x4b\xa8\x77\x9e\x80\x91\x49\x22\xef\xbe\x4f\xf8\xf0\x61\x3e\x23\xfa\xbf\x97\x74\x4a\x98\x04\x4a\x50\x35\xf7\xc5\xb4\x9a\x0d\xb5\xb8\x95\xde\xdd\xf7\xae\x3f\x5d\xf9\xe5\x81\xde\x7d\x7e\xbc\x7a\xe8\xdd\x76\xee\xb2\xe5\xce\x66\xe5\x2f\xb1\x7d\xaf\x20\x69\xda\x93\x7c\x47\xb4\x4a\x0d\xcc\xe0\x5e\x61\x95\xca\xcd\x46\x76\xd7\xbd\xef\xde\xfd\x0c\xe5\x8d\x06\x97\xbd\xfb\xce\xf7\x57\x85\x7d\x5e\xf8\xbd\x73\xf1\xd3\x63\xef\xae\xfe\xf7\xee\x7f\xf7\xee\x1f\xee\xeb\x7e\xbd\xeb\x5e\x75\x3b\xf7\xf5\x6f\x7f\xec\xf4\xae\x1e\xef\xba\x4b\xe9\xb1\x74\xb4\xcb\x75\x2b\x09\x44\x82\x12\x1f\x28\xb2\xcc\x50\xe4\x34\x44\x99\x54\xec\xb8\x7c\x55\x5f\xe7\xe8\xd1\x9a\x2a\xa8\x6d\xdc\xdc\x1b\x5e\x43\x46\xc7\x8a\xa9\xc4\xc3\x84\xc4\x0b\x2d\x39\x1a\xd6\xb5\x84\x0b\x83\x7a\xc1\xd2\x93\xa4\x35\x2b\x8f\xcc\xf1\x41\x50\x74\x4d\x11\x16\x57\xf4\x61\xd6\xa1\xb6\x07\xa6\x59\x32\x7d\x26\x85\x9e\xa2\x54\x08\xc2\x54\x32\x47\xe4\x0b\x95\x4a\x2e\x34\xea\x96\xaf\xae\x59\xcb\x10\xb2\x06\x27\x58\xa2\x21\x21\xac\x38\x7e\x41\x12\x82\x65\xc5\x98\xed\xea\x37\x23\x4b\xb6\x56\xd6\xc8\x64\xee\xd8\x11\xa6\x49\x2a\x48\xe9\xb4\xf0\xe9\x0c\x0b\x2a\x39\xeb\x7e\xd1\x57\xb4\x3e\xc8\x37\xf0\x3a\x17\x9b\x9d\x98\xee\x4f\xfe\x0e\xbe\x2e\xfe\xf9\xe9\xa1\xf8\x57\xe1\xcc\x5f\x3d\x14\xff\x5a\xbe\xd7\xbd\x86\xcb\x3b\xfb\x14\x7d\x7a\x38\x47\x9f\x00\x62\x54\xa0\x87\x09\x36\x3b\xf6\xea\xe1\x1c\x5d\x11\x29\xe1\x9b\xfc\x65\x45\x55\x02\x73\xfb\x9e\x32\x2c\xe6\xc8\x4d\xdf\x54\xee\xc3\xd1\x04\x91\x8c\x34\x65\xe2\xb1\x7f\xa4\x0c\x2c\x12\x39\xf5\xae\xf8\x98\x46\x38\xd9\x8e\x88\x9d\xeb\x02\x1f\xb8\xb9\x5b\x4a\x0a\xff\xe9\x45\x5a\x74\xae\x2f\xa1\x2a\x9e\x1b\x6a\xc5\xcc\xaf\x89\xd4\x9b\x24\xe2\x2c\xb6\x3e\x35\x2d\xd4\xcc\x3d\x5d\xe5\x1f\x1c\x2a\x0b\xa6\x92\xb2\xb1\x6e\x11\x7d\x40\x37\x77\x7d\x76\x23\x62\x63\xdf\x25\x5a\xc8\x37\x7b\x8e\x4a\xc4\xb8\x42\x74\x3a\xe3\x42\x61\xa6\xb4\x7e\x03\xd2\x8d\xa5\x88\xe1\x00\x17\x7c\x3a\x4d\x15\xd6\x07\x6d\x81\xa8\xcc\x58\x79\xee\x89\xea\xc5\xe0\x08\xab\xa0\xa1\x11\x7f\xf2\xb9\xcc\x84\x6e\x5f\x8b\x5e\x45\xd3\x00\x8d\x17\x34\x74\xd7\x04\x16\x02\x17\x2f\xe0\x77\x54\x91\x69\xf9\xf9\x86\xd7\xee\xbf\x2b\xed\x1e\x17\x26\x2b\x82\x88\x8e\x88\x26\x54\x91\x48\xe9\x23\xb8\xd1\x9e\x78\xbc\xfe\xf1\xfa\xe6\x17\x5f\x30\x7a\xd7\xf9\x7c\xf9\x9f\x05\x18\xd8\xce\xdd\xe7\x85\x2f\x06\x3f\xff\xe7\xc2\x37\xff\xff\xa5\xfb\xa9\xdc\xd3\x82\xf9\xc2\x9b\xcb\x29\x68\x0a\x60\xea\x76\x53\x45\x74\x8a\xc7\x04\xc9\x74\xa6\x77\x80\x3c\x2b\xae\xaf\x96\x94\xaf\x38\x8e\x29\x1b\x9b\xe2\x6f\x57\x54\x11\x81\x93\xcf\x78\xf6\xd1\x99\xe5\x37\xa0\xce\xff\xb9\x2f\x14\x20\x7c\xf7\x6b\xe7\xb3\x5f\xc2\xf0\xdd\xed\xdd\xcd\xc3\xcd\xd2\x59\x17\x5a\x58\x3c\x46\xfa\xe7\x73\xf8\x7f\xf4\x01\xe9\xd6\x33\x81\x7e\x4a\x14\xd6\x8a\x0e\xfa\xc6\xd4\xcb\xca\x32\x61\x28\x4b\xe0\xd4\xcc\x04\x9d\x52\xb8\x52\x8c\x61\xf2\x5b\xa3\x33\x64\x4a\x51\x76\x6e\xcc\x0b\x60\x04\x70\x97\x32\x8b\xb1\x88\xd1\x3f\x64\xb9\x1e\x26\xd8\xc3\xcd\x17\x24\x46\xa7\x68\xa2\xd4\x4c\x9e\x7f\xf8\xf0\xf2\xf2\x72\xa6\x9f\xd6\x02\xec\x07\xfd\xe1\x94\xb0\xb3\x89\x9a\x26\xa6\xfe\xa7\xa6\xc2\x39\xba\x15\x5c\x5f\x21\x60\x77\x20\x82\xe2\x84\xfe\x93\xc4\x68\x68\xf8\x1f\x1f\xa1\xdf\x22\x2e\xc8\x59\xbe\x30\xd6\x56\x66\xef\x11\x6b\x4f\xfb\xa0\x1f\xaa\x60\x26\xe5\xf5\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x06\x55\xe3\x82\xd1\xed\xb9\x22\x63\x5a\x51\x9b\xa5\x2a\x27\xa7\xa7\x83\xe1\x98\x78\xe5\x3b\xad\x7c\x9d\x6d\x38\xad\xcf\xf5\x8c\x36\x9e\x4a\x22\xe0\x6e\xc5\x70\xab\xba\x47\x67\x7a\xc2\x11\x4f\xd0\x30\x1d\x8d\x88\xf0\xc3\x07\x4e\xb4\x92\x46\x25\x12\x24\xe2\xd3\x29\x48\x0c\xfa\xad\x54\x9a\x5d\x0d\x14\xb3\xa3\x3d\xeb\x33\x58\x7f\xad\xbd\xc1\x0e\x88\x39\xb0\x3a\x46\x48\x8c\x30\x9b\x9b\x6e\x86\xe9\xc8\x6f\xdf\xd4\xd5\xc5\x31\xa2\xaa\xcf\x3a\x49\x82\x04\x99\x72\x45\xbc\xf2\x69\xe0\xea\x2c\x12\x1c\x58\xa4\x20\xb3\x04\x47\x24\x36\xfb\x21\xe1\x11\x4e\xd0\x88\x26\x44\xce\xa5\x22\x53\xbf\x81\x6f\xc0\x04\xa5\x69\x46\x25\x8a\xf9\x0b\x4b\x38\xb6\xf3\x28\xbf\xf6\x6d\xf1\x34\x76\x5d\xcd\xd3\xae\x10\x5c\xc0\xff\xfd\x48\x59\xbc\x33\x0e\xf5\x78\xdf\xbd\xf3\xff\xbe\xff\xf5\xfe\xa1\xfb\x79\x3d\xee\x93\xed\x2c\x18\x1e\x98\x26\xce\xd1\xbd\x21\x02\x17\x5a\x22\x12\x35\x93\xfa\x6c\xb7\x52\xfe\x05\x8f\x37\xe4\xbe\x9f\x3b\xd7\x8f\x9d\x02\x47\xb9\xbf\xf8\xa1\x7b\xf9\x58\xd2\x07\xec\xfc\x0a\x32\xbc\xd1\x6a\xfd\xef\x2e\x7e\xe8\x5d\x5d\x0e\x2a\xf4\xe0\x77\x77\xdd\x8b\x9b\x9f\xbb\x77\xb9\xca\x5a\x49\xa2\xd2\x60\xca\xcc\xea\xc1\x30\xa5\x09\x8f\xd1\x70\x5e\x5d\xe1\x56\x4b\xce\x09\x78\xce\xf3\x1a\xcf\xa6\xd5\x73\xe0\x4d\xae\xd8\x70\xfe\xc6\x94\xc7\xe4\xc4\x3e\x03\xa5\x81\x8d\xcd\xc8\x48\xcc\xd5\x0d\xeb\xde\x31\xf3\xec\x2f\xa6\x6a\x6f\x46\xb8\x73\xd4\x41\x52\x3f\x98\xea\x43\x2d\xe8\x78\x0c\xf6\xd0\xd2\x50\x4d\x6b\xf6\x55\x20\x2f\xbc\x67\xd6\x7f\x26\x38\x9c\x73\xdd\xad\x35\xa4\x67\xc6\x16\xf3\x22\x94\x91\x2e\xb6\x28\x30\xd8\x51\x2a\x86\xe6\x16\x4b\x13\xa1\x96\x5e\xe6\x3c\x1a\x33\x98\x3e\x5c\xc0\xb6\xa4\x31\xe3\xce\x04\x79\xa6\x3c\xf5\x5e\xb5\x95\x8a\x0b\x2b\x5e\xd9\x7c\x4e\x00\x20\x9b\xb1\xf5\x94\x9a\xc9\xb6\x47\x65\x0b\x9a\x85\x3d\x43\x0b\x23\xc1\xa7\x15\x6d\x14\x8f\x49\xef\xe6\x5e\x09\xac\xc8\x78\x7e\x69\x59\xc6\xe6\xc7\xe3\xf2\xe6\x97\xeb\xab\x9b\xce\xe5\xa0\xdb\xf9\x54\x3c\xf1\xd9\x2f\xf7\x0f\x77\xdd\xce\xe7\xe2\x4f\x83\xeb\x9b\x87\x81\x7b\x62\xe9\x96\xaf\xe9\x60\xf1\x9e\x2e\x3e\x78\x8e\x34\xcb\x05\xd6\xf8\x42\x93\x44\x5f\x26\x1e\x7f\x1c\x92\x11\x17\x86\xcf\x4f\x5d\xa0\x89\x15\x61\x1c\x6d\xad\x2e\x56\x9a\xc5\x39\x18\xfc\xaa\x9a\x34\xc6\x7c\x25\x08\x9e\xc2\x3d\x81\x19\xea\xb2\xf8\xf4\x66\x74\x7a\x6f\xbe\x9c\x62\xf1\x44\x44\xf6\xea\x8b\xa0\x4a\x11\x56\x50\xe9\xb0\x1b\x72\xa6\x24\xe6\x1d\x9c\xa1\x3b\xcd\xf7\xf5\xf3\xd9\xa5\xa6\x37\x7b\x4c\x14\xa6\x89\xb4\x83\x2d\xd0\xf5\x1c\x5d\x61\x31\xce\xcd\x8b\xdf\xf0\xd1\xc8\x34\xf6\xad\x19\x86\xbe\xc3\x0a\xb3\xa8\xe0\xbd\x7a\x6b\xb8\x7b\x11\xfa\xb3\x0f\x67\xf2\xf0\xe2\xae\x7a\x9c\x6d\xb7\xa7\x1e\x6f\x81\xe2\x46\x63\x2f\xe8\x86\xf6\x97\x8a\xbd\x06\x13\x37\x3f\x2f\xbf\x64\xaa\xdb\x5e\xdc\x4e\xc5\x07\x2b\xb6\x93\xa9\xd0\xa2\x57\x7e\xa4\xb5\xcd\x8a\xbd\x44\xbe\x50\x6b\x30\xf0\xc7\x5d\xda\x42\x79\x33\x60\x35\xc6\xb3\x19\xc1\x42\x56\xad\x76\x51\x0c\xac\x59\x7b\xd3\x93\xdf\x87\x5d\x64\xd7\xcf\x09\xe2\x0c\x0c\x0e\x99\x10\x51\xda\x91\x0d\xf6\x80\x69\x6b\x61\x07\xdc\x42\xf9\xf8\x1b\x5b\xaa\xfd\x33\x95\x5a\x69\x34\x5f\x7e\x6f\x6b\xc8\x6f\xb6\x21\x3e\x76\x7a\x57\x25\xe1\x62\x70\xd9\xfd\xd8\x79\xbc\x5a\x6e\x26\x2c\xbc\x57\x5e\x62\x74\x8a\xf4\xef\xc5\x70\x00\x3a\x32\x77\x86\xab\x84\x6f\x54\x5a\xc2\xc0\x68\x65\xab\x54\x1b\x33\x7c\x4c\x66\x09\x9f\x4f\x09\x03\x13\x4f\xe1\x26\xd4\xf4\x1c\x61\x6a\xaf\x16\x6f\xb0\x60\xc5\xb1\x66\x37\xb8\xc6\x4e\x5d\xf9\x7d\x12\x67\x37\x6f\xb1\xfa\x7e\x89\x75\xdf\x1a\xa7\xa0\xfd\xcf\xbd\xc2\x6a\xc3\x33\xd6\xb9\x78\xe8\xfd\xdc\x2d\xea\x87\x17\x3f\xf4\x7e\xae\x92\x6a\x06\x9f\xba\xd7\xdd\xbb\xce\xc3\x0a\xe1\xa4\xd4\x64\x95\x70\x22\xf5\x80\xcb\x4e\x61\x2a\xb3\x40\xa7\xc8\xd4\xf0\x47\x54\x49\xf4\x4c\x25\x1d\xd2\x84\xaa\x39\xb2\x0e\xd6\xc7\x1e\x70\xd6\x67\x9c\xd0\x98\xaa\xb9\x13\x5f\x4c\xbf\xc5\x75\xd4\x9c\xd4\xb6\x6f\xcc\x0e\xbe\xdb\x15\xac\x7c\x66\x71\xdc\xa4\xcf\x11\xe8\xb6\xcf\xa0\xb4\x79\xaf\x31\x2d\x48\xb3\x31\x11\x66\x38\xe0\x54\xf2\xc7\xe2\xfd\xae\x47\xe5\x0b\x2b\x39\xd5\x32\xa1\x75\x4c\x18\xd1\x2c\xd2\xeb\xc4\x08\x52\x82\xb0\xf7\x5a\xe6\x9a\x25\x34\xa2\x2a\x99\xa3\x08\x6c\x58\x60\xce\x9c\x62\x86\xc7\x56\x38\x00\x35\xa7\xb4\x25\x7e\x4a\xc1\x00\x7f\x33\xb2\xa6\xfd\x07\x4a\x36\x3c\x66\x8f\xd7\x97\xdd\x8f\xbd\xeb\xe2\x16\xf8\xa1\xf7\xa9\x20\xc2\x7e\xee\x5e\xf6\x1e\x0b\xb7\xb9\x96\x64\x97\xcb\xf5\xe5\x66\x2b\x8e\x62\xf6\xd0\x39\xba\x34\xaf\x9e\x6b\xe2\xfe\x6e\x26\xa7\xb7\x8c\x34\xd3\xcb\x95\xdf\x12\x1d\xee\x5c\xa4\xa1\xfb\xd0\x65\x4a\x54\xfa\x25\x9a\x9a\x90\xac\x57\xa8\x60\x43\xaa\x8e\xc0\x58\xe8\xfb\xba\xec\x2b\x2f\x4f\xd9\x3d\x08\x21\xb2\x67\xb9\x65\xc9\x0f\xcd\x00\xa3\x41\x9d\x11\xab\xc2\x5b\x97\x33\xec\x9f\xc1\xf3\x3e\x4d\xa5\x32\x1e\x52\xd8\x9c\xe8\xe9\xef\x52\x13\x14\x3c\xa8\x67\xe8\x9e\x90\x3e\x73\xd6\x83\x31\x55\x93\x74\x78\x16\xf1\xe9\x87\xa7\x74\x48\x04\x23\x8a\xc8\x0f\x78\x46\xa7\x58\x4b\xd2\x44\xcc\x3f\x0c\x13\x3e\xfc\x30\xc5\x52\x11\xf1\x61\xf6\x34\x86\xc0\x1e\xe7\xe9\xfa\x90\x35\x3b\xe6\xff\x71\xf5\xd7\xef\x4e\xaf\xfe\xfe\xdd\xbb\x45\x0b\x59\xdd\xfa\x77\x59\x84\x67\x32\x4d\x6c\x20\xa0\xf0\x69\xe3\x8e\x7c\x4a\x56\xad\xf7\x75\x71\xb9\xb6\xd3\x5f\x2f\x6e\x1f\x0b\x16\xeb\xe2\x9f\x9f\xbb\x9f\x6f\xee\x7e\x2d\x70\xca\x87\x9b\xbb\xce\xa7\x02\x43\xed\xde\xfe\xd0\xfd\xdc\xbd\xeb\x5c\x0d\xdc\x8f\xdb\xd8\xde\x7e\x64\xfc\x85\x15\x49\x23\x1d\x07\x5c\xe8\xe9\x1c\x7d\xe4\x02\xfd\x98\xad\xe4\xe9\x10\x4b\xb8\x62\xdc\x9d\x25\x4f\xd0\x8c\xc7\xc0\x78\x11\x99\x4d\xc8\x94\x08\x9c\x58\x9b\x81\x54\x5c\xe0\xb1\xb9\xe9\x65\x24\xb0\x8a\x26\x48\xce\x70\x44\x4e\x50\x04\xbb\x61\x7c\x02\x8b\x02\xaa\x16\x1f\x97\xed\x7c\x77\x29\x53\x74\x4a\x9c\x0a\x6e\xff\x7c\x30\x8b\xb1\xc1\xe2\xdc\x3c\xfc\x50\x14\xf6\x3e\x5e\xfd\xfa\xd0\x1d\xdc\x5f\xfe\xb8\x94\x9e\xe6\xb5\xc2\xc8\xee\x21\xae\xea\x82\x27\xe9\x94\xf9\x9f\x37\x1f\x5b\xef\xfa\xa1\xfb\xa9\x3c\xba\x9b\xce\x43\x71\x67\xdc\x15\xe3\xf6\xde\x7d\x7f\x73\x73\xd5\x2d\x78\xba\xdf\x5d\x76\x1e\xba\x0f\xbd\xcf\x85\xfd\x73\xf9\x78\x07\x3e\xa0\xa5\xd3\x74\x23\xa8\x98\xa8\x9e\x96\x3f\xcd\x5d\xb3\xc2\x46\x9c\xa8\x63\xc3\xff\xcd\x59\x3e\xf5\xf0\x72\x4c\x94\x1b\x58\x75\x4e\x33\x93\x6a\x64\x46\x5a\xc9\x0e\x55\x71\x99\x50\x3d\x3b\x5e\xba\xd0\xcb\xb8\xf2\x43\x36\x04\x18\xd7\x99\x51\xb6\x71\x92\xf0\x17\x13\xa1\x3c\xa5\xfa\x56\x96\x04\x02\x95\xf5\x23\x32\xf7\x10\x9e\x55\x70\xbc\xe2\xb2\x90\x48\x10\xf5\x99\xa7\x4c\x6d\xbe\xe5\x3a\xd7\x05\xbe\xd3\xbd\xfe\x79\xf0\x73\xa7\xb8\x03\x7b\x57\xcb\x59\x8d\xdf\x44\xc5\x55\xdc\xb9\xfe\x35\xbb\x84\x21\x8e\xfd\x24\xd3\x50\x8d\xec\x1a\x25\x54\x8b\xbd\x11\xd6\xda\x6b\x02\x12\x0d\x22\x14\x4c\x0e\x53\x3d\x39\x88\x9b\x9d\x19\x7f\x92\xe1\x4f\x66\x90\xe7\xee\x43\xa9\x3d\x09\x74\x01\x6b\xaa\x4b\x13\x80\x76\xac\x56\xcd\x10\x61\xcf\x54\x70\x06\xc2\xf6\x33\x16\x54\x4b\xe3\xa6\x65\x3d\xd7\x73\xf8\xff\xf5\xda\x04\xc3\x68\x89\x71\xdd\x73\xa1\x2e\xb3\xf8\xe4\xcd\xac\x21\x55\x71\xba\x8b\x11\xba\xd5\x86\x8e\xc5\x77\x2b\x16\x67\xcb\x38\xe6\xe2\x84\x7f\x4f\x2e\x29\x4e\x34\x03\xd8\x9d\xbc\xd8\xb9\xbe\xef\x15\xe5\xc7\xa2\x9a\xe1\xf1\xe5\x8d\xe5\x45\x30\x54\x9a\x91\x3b\x65\xe2\xfe\xa7\x2b\xa3\x5d\xe8\x4d\x62\xcf\xad\xa7\x58\x80\x00\xe4\x6a\xab\xce\xb0\x90\xa5\x37\x24\x02\x24\xb3\x3c\x8e\x4c\xdf\x59\x10\xa5\xf5\xcc\x69\xdc\x67\xe4\xcb\x8c\x30\x09\xc1\x01\xe6\x3e\xcb\x7d\xed\xf2\x0c\xf5\x46\xc0\x12\xf4\xe3\x0c\xa5\xcc\x3a\xc0\xf4\x85\x6b\x06\x79\xa2\x45\x59\x3b\x84\x4c\x43\x04\xc3\x0b\x23\x2e\x06\x2c\x1f\x7c\x9f\xfd\x92\x39\xd1\xe0\xa7\x11\xd7\x0c\x48\xaf\xa2\x6d\xef\x1c\x61\x26\xe9\x09\xd2\x0a\x4b\x79\x4d\x21\x23\x42\x2b\x94\x36\x32\x4d\x73\x1a\xfb\xf1\xf0\xd7\xc0\x42\xf8\xb3\x7f\x19\x54\xdf\x05\xa5\xab\xa0\x46\x34\x4e\x8c\xc7\x64\xd0\xfc\x4e\x88\xb8\x20\xd6\xcf\xb2\xf6\x35\xb0\x8a\xb1\x3f\x60\xf9\xb4\xe0\x7b\xe8\x31\xa9\x30\x8b\xc8\x45\x82\xe5\x86\x41\x48\xce\xc6\x71\x52\x94\x38\xee\xee\x1e\x6f\x1f\x7a\xdf\xaf\xe0\xf2\xe5\x97\x17\xc3\x80\xa2\x24\x75\xee\xb9\xa1\xe0\x38\x46\x9a\x7d\x8e\xb9\x71\x05\x5a\xc1\xdf\x9c\x20\xb3\x26\x54\x7a\x71\xa2\x58\x3e\x15\x8c\xd4\x36\xcb\xc2\xda\x39\x7c\x57\x02\xb5\x84\x40\x91\xa6\x04\xf2\x4c\x1e\x6e\xa9\xc1\xb3\x68\xa2\xe8\xac\x75\x6b\x96\x60\x35\xe2\x62\x6a\xb8\x7c\x61\xd2\xa6\xf1\xe5\x8d\x52\xa6\x88\x10\xe9\x4c\x81\xca\xae\xc7\x5a\x96\x52\xf5\x92\x5d\xf1\xf1\x67\x22\x25\x1e\x93\x6d\x1c\xd0\x55\xca\xc3\xfd\xcf\xfe\x9f\xe0\x60\x6e\x22\xfb\x17\x46\xe8\x02\xfa\xdd\x7e\xba\x61\x1f\x4d\x20\xcf\x2d\x4f\x68\xb4\x61\xc0\xdd\xc7\x4e\xef\x6a\xd0\xfb\xac\x95\xf8\xce\x43\xf7\xaa\x20\x4a\xc0\x6f\x9d\x8f\x0f\xdd\xbb\x41\xf7\xbf\xbb\x17\x8f\x0f\x9d\xef\xaf\xba\x83\xeb\x9b\xcb\xee\xfd\xe0\xe2\xe6\xf3\xed\x55\x77\x45\x64\x4e\x6d\xe3\x8b\xd6\xd5\xf2\xa3\xe7\x0b\xdf\xc0\x0a\x6b\x5e\xe6\xdb\xcb\x20\x19\x0e\xd3\x04\x9c\xe0\xdc\x38\xc3\x31\x62\x3c\x26\xf0\xb5\x74\xd6\x19\x97\x6d\x72\x86\x7a\xea\x7d\x92\x20\x9c\x2a\x3e\xc5\xe0\xb5\x49\xe6\x7d\x86\x87\x9a\xb5\xe2\x24\xf1\xc2\xbb\x44\xca\x98\x66\xb1\xba\x31\x69\xe2\x8b\x13\xa2\xd9\xf9\xcc\xcb\x61\xb4\x7e\x83\x11\x65\x10\x40\x3c\xc5\xe2\xc9\xb8\x99\xf2\x2e\xf3\x43\x21\x11\x96\x7d\xa6\xc7\x45\xac\x61\xa8\x09\x85\xcf\x1b\x3d\x55\x4b\x9d\x29\x7e\x22\x9a\x2a\xd3\x34\x9a\xa0\x99\xe0\x63\x41\xa4\xb4\xb6\xe5\x08\x33\x13\x80\x60\x1f\xd7\xd7\x50\x9f\x31\xae\x49\xe1\x4c\xd8\x31\x99\x11\x16\x13\x16\x51\x93\xad\x08\xbe\xfb\xcc\xb4\x39\x16\x78\x36\x41\x92\x83\xd3\x1b\xc8\x0e\xf6\x2b\xf3\x92\xbb\xc9\xcc\x8c\xcd\xcf\xbe\x05\x5a\xa4\x9a\x4f\xdc\x80\x9c\x68\xa8\x0c\x2f\xbb\xcb\xd0\xb9\x5d\x8c\x1d\x70\x3a\x4b\x08\x74\x69\x49\x0e\x8b\xa1\x69\x5d\x58\x0f\xbd\x4c\x55\x8b\xa0\x2f\x6c\x37\x66\x2c\xed\x88\xce\x2a\x2c\xdb\xf6\x48\xa1\x1f\x30\x8b\x13\xdd\x8a\xf3\x61\x14\xcf\x22\x64\xd8\x74\xf4\xae\x71\xa7\x71\x9b\x5b\x34\xc2\xa9\xdc\xe6\x1a\x2d\xa5\x98\x1a\xab\xe0\x69\x1e\x14\x02\xdb\xdb\xe6\x97\x02\x75\x67\x9a\x45\xe2\x84\x5b\x2a\x99\xc7\x53\x1b\xb4\x0c\xa3\xa9\xb9\x66\x67\x82\xb2\x88\xce\x70\xb2\x91\xee\x57\xca\x31\xb0\xa1\xfb\xdf\xd0\x91\xde\x3e\xdf\x2e\xb8\x6d\x15\x11\x53\x48\x27\xb7\xc3\xcc\x96\x70\x0d\x4b\x92\x4d\xd6\x20\x32\x8f\x26\xc1\x82\xa7\xc6\x1f\x07\x74\x21\x71\xc5\x51\x3d\xab\x5a\x6e\x7d\x32\x70\x31\x00\x7a\x83\xc5\x36\x91\x3f\x75\xf4\x2b\xb5\x62\x7b\x37\xc1\x78\x38\xb9\xad\x6e\xb3\x6a\x05\xbc\x1f\xff\xbd\x6c\xef\x7c\xc6\x33\xbd\x67\xa2\x54\x2a\xf0\x14\x67\x73\xb4\x4a\x52\x29\x94\xdd\xf3\x9d\x67\x41\xed\xcd\x57\x23\x27\xa1\x0d\x80\x5a\xec\xa4\x10\x43\xe0\x21\x02\xd8\x3d\x3e\x4a\xb5\x2c\x8b\x30\x44\x21\xa0\x6f\xc8\xd9\xf8\x0c\xdd\xfc\xdc\xbd\xbb\xeb\x5d\x76\x4f\x50\xe7\xf6\xb6\x7b\x7d\x79\x82\x88\x8a\xbe\x75\x31\x8b\x36\x60\xa9\xcf\x14\xb7\xd2\xca\x1c\x4d\xf8\x0b\xf0\x46\x22\xc6\xa4\x30\x67\x17\xdd\x04\xa1\xca\x63\x2a\x95\x0d\x9f\xd5\x7c\x25\x1f\x96\x96\xf7\x2b\x77\x48\xaa\x26\xdb\x6c\x0d\x2c\x65\x3a\xd5\xba\xec\x80\xe2\xe9\x40\xf0\x64\x1b\xa6\x70\x09\x53\x01\x75\x39\x03\x53\xa0\x78\x8a\x74\xb3\x36\x14\x24\x73\x39\x66\x22\x9d\x16\x8c\x34\x5f\xd6\xf7\xa6\x77\x6f\x39\xef\x83\x8d\x47\xa3\x2e\x04\x02\xc0\x16\x6a\x58\x45\x6e\x36\x1e\x58\x4b\xfd\x00\x47\x91\x56\xb9\x77\x3c\xa9\xbc\xa3\xcc\x25\x60\x3b\xda\xdb\x34\x57\xed\x73\x37\xcc\x99\xe6\x60\x10\x0c\xac\xaf\x5c\xc9\x23\x9a\xb7\x5f\xd1\xef\x70\xbe\xd0\x2b\x6c\xd9\xb3\x3e\x7b\x94\x99\x49\xc5\x5c\xc2\x92\xc0\x4a\x4a\xf4\x32\x21\x70\x34\xe6\x68\x82\x9f\x49\xa1\x4b\x97\x43\xa2\x1b\x9e\xf3\x54\x54\x31\xba\x3e\xbb\x24\x33\x41\xb4\xa4\x5f\x76\xa0\x64\x7b\xfa\xae\xb8\x13\xc3\xbe\x0e\xfb\xfa\xe8\xf7\xf5\x45\x92\x4a\x45\x44\x47\x4a\x3a\x06\x43\xe2\x56\x02\x9c\x69\x6c\x30\xe3\x3c\x19\x34\xb0\x89\x34\xa7\x78\xc1\x13\x56\x08\xf8\x90\x06\xe9\x80\xa7\x20\x1f\x15\xae\x4d\xae\xef\x3a\x2f\x73\xd8\x0e\x6f\x09\x19\x9c\xcb\xac\xe3\x00\x25\xb6\x12\x71\x70\x55\x2b\xcb\x5a\x42\x7b\x17\x73\x2e\x8c\x7c\x93\xb9\xcb\xf2\x21\x96\x0e\x93\x13\x45\x28\x73\x64\xcb\x5f\x82\xfd\xac\x09\x6c\xe4\x8e\xdf\x53\xae\xb0\xfc\xf6\xac\xcf\xb4\x10\xf5\x44\xe6\xc6\xdc\xaa\xc5\x94\x3f\x6a\x59\xfc\x54\x12\x26\x21\xdc\xfb\x8f\xc6\x3d\xa7\xb7\xb8\x33\x57\x1b\xd5\x94\x4c\x67\x09\x56\x10\x74\x9d\xf5\x02\x21\xba\xb6\x51\x2b\x25\xe5\x01\xd0\x20\xe7\x9b\xb9\xd8\xdf\xcc\xf0\xc7\x44\x41\xe6\xb8\xa2\x0a\x74\xa6\x38\xd5\xe4\x59\x1c\xfa\x4a\xd3\x95\xd9\x15\x82\x83\x9f\x24\x4e\xb7\x63\xfc\x72\xb1\x8d\x95\x9c\x31\xd3\x16\xee\x6d\xcc\xfb\x07\x67\x37\x8a\x04\x67\xa5\x68\x18\xad\xcc\x99\x95\x1e\x1a\x76\xe0\xfc\xd7\x84\x9d\xbd\xd0\x27\x3a\x23\x31\xc5\x10\x01\xaf\xff\xfa\xa0\xe7\xf5\x1f\x17\x77\x37\xd7\x83\x3c\x93\xe7\xbf\xfa\xac\x93\x48\x9e\x65\x29\x20\xc6\x59\x16\x6e\x3f\x13\xc4\x89\x84\x76\x2e\x60\x75\xcd\xcd\x88\x7d\x56\x37\x82\x98\x47\xf2\x0c\xbf\xc8\x33\x3c\xc5\xff\xe4\x0c\x5c\xe9\x1d\xf8\x78\x91\xf0\x34\xfe\x05\xab\x68\xf2\x01\xce\xb5\xfa\x40\x9e\x09\x53\xc6\x4d\xa5\xc9\x15\x43\x4e\xb2\x84\x68\xfd\xff\xd0\x63\xce\x93\x8a\xa4\xd6\x64\x23\x32\x53\xe8\xff\x15\x64\xc8\xb9\xaa\xbe\xa4\xf8\x68\x24\xc9\x5a\x17\x52\xae\xa4\xdd\xdf\xa0\xbf\xff\xe7\x77\x7f\xd6\x5b\x68\x13\x1a\xf7\xee\x6f\x06\xfa\xfd\xff\xb8\xb4\xef\xcb\x35\xd8\x9d\x49\xa5\x95\xd6\xd5\x6c\xa8\x61\x02\xe7\x53\x06\xb7\x9f\x00\xe7\x05\xb0\x37\xd8\x0e\xf9\x3a\x56\x71\xb7\xcb\x42\xeb\xdb\xa9\x6c\x1b\x11\x13\x54\x6c\x6f\x8e\xe8\x14\x31\x8e\xa6\x26\xd6\x14\x33\xf4\xb7\x1f\xbf\xaf\x5e\xc0\x54\xd0\x8d\x3a\xa4\x16\x85\xc2\xeb\x52\xd2\x7f\x12\x89\xf4\xae\xd1\xbb\x98\x4f\x75\xd7\x82\xc8\x09\x4f\x62\xf4\x42\x40\x4d\xb2\x71\xa0\x99\x56\x2e\x48\x9f\xf9\x4d\x40\xc8\x21\xc2\x89\xe2\x63\x02\x77\xb5\x53\xd4\x14\x11\x5a\x54\x31\x59\x1a\x8a\x0b\x72\x62\x80\xd9\xee\xff\xea\x62\xab\x61\x9a\xf0\x93\x4b\x6a\xb1\x26\xb9\x78\x58\x3d\xf3\x51\xd9\xf4\x8a\xea\x6d\xf8\xe5\x45\xb6\x66\xdb\x6a\xd2\xd8\x24\x14\x6b\xc3\x2a\xaf\x4c\xf5\x60\x68\xc4\xd9\x20\xa1\xec\x69\xa3\xc5\x70\x89\xe1\x48\xb7\x60\x69\xa6\x5b\xcc\xec\xdc\xc6\x02\xb2\xc6\xf9\xf8\x98\x26\x89\x49\x6d\xf1\x97\x07\xe4\x2e\x43\x37\x10\x06\x66\x26\x07\x94\xc4\xd6\xef\x65\x35\x61\x41\x18\x04\xbc\xf5\xd9\x70\x6e\x7d\xb6\xf2\x04\xc9\x34\x9a\xb8\xcc\xbc\x88\x33\xa9\xc5\x68\x2e\x50\xc4\xa7\x53\xad\xf5\xc2\x92\x29\xce\x13\x69\xa3\xdd\xd9\xa9\xc2\x91\xea\xb3\xbc\xbf\x15\x27\xcf\x14\x65\xda\x2e\x75\xaf\xb9\x4b\x27\x2f\xfe\xb4\x54\xe0\xa6\xb1\x0f\x45\x01\x46\x30\xe3\x89\xf2\x40\x2d\xf8\xe2\x59\x32\x0b\x56\xa3\x19\xc8\x09\x17\x6a\x10\x57\xf2\x9c\x95\x9b\xa6\xcc\x08\x19\x39\x4d\x20\x68\x98\x3f\x6b\xe1\x9f\xbc\x64\xc6\xd7\x65\x43\xd0\xbb\x7a\xd9\x08\x9a\x1d\xa3\xa5\x23\x5b\x77\x0b\xd6\xd0\xca\x00\x93\x44\xc5\x98\xf0\x55\x63\xbc\x87\xb7\x2e\xf4\x4b\x4b\x89\x57\x3e\x77\x4e\x08\xe2\x71\x8e\xa1\x67\xee\x75\x9b\x11\xb2\x8c\xa6\x16\x3a\x61\x7f\x99\xa3\xcb\xa6\xf2\x58\xb4\xe4\xea\xb1\x80\xc9\x5e\x12\x90\x35\xb1\x18\x52\x25\xb0\x28\x00\xa0\x64\xfa\xa0\x24\x58\x40\x7c\x56\x9f\x19\x38\x3c\xa3\x29\xc4\x28\xa6\x12\x12\x44\xe0\x2e\xf5\x9c\x61\xa8\x99\x12\x58\x3a\xda\x79\x9e\xa3\x89\x3f\x87\xc0\xb2\x7c\x6b\x38\x66\xa7\x3b\xca\x60\xbf\xb4\x7e\xc6\xa3\x34\x17\xe4\x22\x90\x70\x2d\x54\x10\xa2\x4c\xd2\xf1\x44\x21\xca\xac\xdd\x11\x27\x63\x2e\xa8\x9a\x4c\xe5\x09\x1a\xa6\x52\x6b\xa1\x26\x58\xcd\xc4\xa3\x10\x15\x35\xe2\x42\xdb\x26\x11\xc7\xa5\x06\x17\x55\x94\x0d\xb6\x46\xb3\x43\xd9\x2d\xdd\x15\x2b\x36\x4e\x27\x83\x4f\x2c\xb7\x41\x89\xcc\x50\x37\x91\x89\x03\xe4\x0e\xb0\xea\xf7\x94\x48\x55\x77\x0e\x00\xec\x72\x67\x5e\x8a\x43\x54\xd2\x42\x26\x19\x54\x10\x17\xbb\x0d\x92\x57\x11\x70\xd3\x80\x52\x65\x4e\xa7\xe9\x4c\x55\x06\x6e\x2d\xba\x8a\xee\x3c\x28\xa3\x66\xc4\x86\x64\x2c\xd8\xcd\x00\x40\xd7\x67\xf7\x84\xd4\xe3\xd3\x2d\xac\xfd\x6f\x70\x94\x60\x0a\x36\xd1\x63\xf9\x96\xdf\xc6\x89\x7d\xd9\xbd\xbf\xb8\xeb\xdd\x1a\xc8\x89\x9b\xbb\xcf\x9d\x87\x41\x85\x5f\xbb\xe2\xa9\xcf\x9d\xbb\x1f\x2f\x57\x3f\xf6\xc3\x43\x31\x2b\xbb\xe2\x91\xbb\xfb\xe5\xc9\x1c\x0d\x86\x58\x91\x14\x56\xd9\xcf\x39\x9a\xcd\xd5\x84\xb3\x2c\x44\x21\x2e\xf0\xa6\x53\x64\x32\x82\x15\x84\x10\x09\xa9\x2a\x1c\x87\x0f\x10\x97\xb3\x5a\xc2\x2c\x2e\x96\x41\x97\xdb\xa9\x68\xb4\xc6\x89\xfc\x94\xf0\x21\xf8\xad\xad\xec\x63\x81\xe9\x96\x44\xa0\x6f\x19\xef\x73\x49\xe5\x2c\xc1\xf3\x85\x1e\x56\x5d\x39\xd7\x78\x4a\x20\xe2\x38\x87\xc5\x73\xc9\x22\x7a\x65\x20\x81\x29\xbb\xd7\xe9\x08\x32\x99\x14\xc5\x8a\xa0\x21\x51\x2f\x90\x37\xe7\xbe\xcd\x6c\xa9\x2e\x60\x44\x9e\xf5\x19\x98\x73\xfa\x9a\xc8\x71\x0a\xd1\x7e\xfd\x77\x27\xa8\xff\x2e\x26\xcf\x24\xe1\x33\xbd\xf2\xfa\x8b\x9a\x4b\xa6\x3b\xc5\x34\xb9\xe6\x2a\xb3\xcc\x6d\xb3\x9e\x82\x44\x74\x06\x92\xf9\x80\xe8\x76\x0f\x27\x78\x14\x76\xb2\x63\x67\x30\x06\x84\xe3\x58\x2b\xd9\xc0\xca\xdc\xf0\xf2\x10\x20\xe6\x4d\xbd\x50\xec\x72\x1d\x91\x22\x33\x7f\x9b\x1e\xfd\x36\x8b\x66\xcf\xca\x15\x60\xcf\x7b\x74\xc9\x6e\x7b\x91\x6b\xad\xe4\x47\x32\x87\x14\x8c\x5b\x4c\xc5\x86\xae\xd9\xaa\x98\xd7\xbd\x38\x69\xbb\x15\x1d\xb5\xc8\x5d\x5b\x4d\x87\xed\x1c\xb7\x59\xac\xde\xa1\xb4\x54\x17\xcb\x95\x75\xdc\x50\x6d\x7d\xac\x53\x52\x6b\x43\x18\x50\x59\xf1\x9a\x91\x68\x0d\x8d\x2b\x1b\xe0\xbd\x7e\x6f\xa5\xa6\x92\x89\x6b\x2e\xfe\x2e\x5f\x05\x9b\x1c\x5f\xce\xc7\x27\x2b\x47\x1c\x25\x5c\x16\xb1\x72\x1a\x0f\xfa\xc2\xbe\xba\x6c\xdc\x5d\x7f\xfb\x6a\xb9\x70\xad\x80\x86\x0a\xc2\x97\x30\x2e\xcd\x3d\xa3\xac\x87\xcc\x3e\x7d\x82\x28\x44\x5b\x82\x42\x96\xe4\xc8\x01\x2c\x46\xb9\x1b\xa4\xcf\xf2\x98\x15\x89\x5e\x48\x02\x61\x6e\x11\x9f\xce\xc0\xc4\x6f\x87\x6b\x5b\x22\xb1\x89\x18\x3e\x41\x3c\x55\xba\x31\x93\x93\xe3\x8c\xb8\x36\xe1\x27\x77\x7b\x18\xdf\x9b\x0d\x7e\xcf\xf0\xb2\xcd\x5e\x37\x77\x29\x65\xe8\x13\x51\xd0\x0a\x94\x59\xf0\x27\x08\x7a\x42\x39\x84\xb2\x9a\xf6\x5b\x9c\x28\x3b\x93\x35\x56\x3e\x07\x4e\xf9\x3e\xe1\xc3\xe5\x46\x02\x68\x1c\x3d\xde\xf5\x9c\x45\x32\x8f\x9f\xf2\x40\x99\x0b\x1e\xc5\xee\xed\x5d\xf7\xa2\xf3\xd0\xbd\x3c\x43\x8f\x92\x68\xf2\x64\xd3\x85\xfc\xea\x4c\x25\x31\x23\xb7\x48\x2c\x4c\x2a\x82\xeb\x0c\x21\x44\x88\x42\x16\xf4\x0a\xc6\x51\x84\x69\x59\xbe\xb1\x01\x24\x85\x5a\x43\x1d\x00\x0b\x95\xe7\x69\x23\xf3\x56\x9d\x40\x88\x93\x1a\x1c\x4f\x94\x9a\x19\xef\x74\x31\x32\x6f\xd5\xf6\x29\x46\xf4\xed\x7b\x32\x70\xb4\xd4\x84\x50\x81\x1a\x4d\xcb\x6c\xaa\x41\xf3\x39\x79\x21\xee\x9f\xf1\x6c\x79\xfa\x29\x7e\x29\x6c\x5a\x23\x0a\x7b\xbe\xfb\x7d\x9f\x03\xc7\xd6\x06\x86\x15\x6e\x3f\xc1\xdc\xa1\x65\x78\x6b\xc6\x37\x4d\xc6\x87\x74\x46\x32\x7f\x62\xa5\x41\xd8\x38\x56\x89\xe0\xec\xc0\x37\x94\xa1\xc2\x95\x78\x82\x46\xf4\x8b\x6d\x34\x8f\x6f\x77\x8f\x7a\x01\x0f\x35\xf1\x94\x13\xbc\x78\xa6\xd6\x10\x1b\x6e\xe1\xfd\xa5\x42\x24\x97\x5a\x24\x8a\xb4\xb8\x24\x48\xc4\x85\xbe\x29\xa0\xdb\xdc\x0b\xb1\x4a\x64\x50\x58\x68\xa2\x2c\x7a\x65\x96\x9d\xfe\xbc\xb4\x4a\x8c\x15\x39\xd5\xa2\xd7\x8a\x04\x68\x9b\x23\x03\xd9\x34\x58\x79\x70\x60\xf9\xcd\x33\x24\x63\xcc\x5c\x68\x76\xcd\x70\xdd\x95\xb7\x05\xab\xd2\x2a\x10\x86\xf4\x30\x90\xaf\x20\xf5\xa7\x30\x0e\x39\x03\x7a\x2e\x1d\x87\x8d\x7e\x69\x03\xd9\x5e\x70\x16\x8c\x53\x33\xd8\x74\x16\xb7\x69\xb0\x09\x96\x0a\xd9\x31\xd5\x99\x22\x3c\x15\x71\xbf\x46\xd8\x82\x6e\xdf\x54\x79\xd3\x5b\xa8\xa8\xc5\x12\xf0\x8c\x48\x87\x9b\x62\x50\x62\xb4\x4e\xe3\x04\xe1\x0b\x58\xa1\xec\x6c\xdf\x19\x29\xcb\xdd\x12\x3e\x33\x81\x20\xfd\xc5\xa6\xcf\x50\x87\x2d\xe0\x65\xb9\xb8\xac\x02\xbd\xcc\x9d\x84\x93\x17\x3c\x97\x68\x26\x0c\xb4\x8c\x89\xdc\x77\x93\x07\x0d\xac\xf8\x52\x16\x0a\xa1\x5c\xea\x04\x02\x5b\xcc\xea\xa0\x39\x27\xf7\x0e\xf6\xe0\xca\x2b\x45\x95\x67\x02\x79\xde\x5c\x6e\xab\x68\xc0\xea\x14\x19\x44\x13\xcc\xc6\x64\xe0\x8c\xac\x9b\x68\x4b\xba\x9d\x0b\x68\xe6\xd2\xb6\x52\x7d\x39\xdd\x1a\x85\xc9\x96\xb5\x31\x8f\x66\x06\x44\x7d\x08\xa4\xc2\x63\x82\xcc\x88\x1a\x99\xa5\x0b\x11\x63\x16\x6c\x18\xf4\x04\xdb\x6a\xb7\x18\x45\x5f\x27\xbc\x43\xe8\xd3\x15\x1e\x92\xe4\x75\x22\x27\xa0\x6b\x6b\x9c\x07\x6f\x9d\xc9\x06\x20\xe8\x05\xec\xf9\x25\x96\x61\xad\xf7\x22\xad\xca\x0d\x58\x36\x4f\x38\x72\xf6\xa4\x6d\x33\x51\x57\x02\x65\x93\xa9\xd6\x15\x46\xf1\xaf\x3d\xaf\x80\x48\x95\x81\xcd\xbf\xfe\xca\x36\xe5\xcd\x06\xe2\xd5\x31\xa9\x19\xc7\xd6\x85\x4c\x56\x4e\x65\x63\x90\x81\x86\x35\x0b\x7b\x23\xc4\x38\x23\x88\xca\xfc\x61\x55\x4c\x87\xca\x20\x7a\xb4\x88\x6f\x8c\x2f\x59\xf1\xb1\xac\xa6\xd4\xbe\x2d\x2d\x39\x78\x42\x66\x1b\x70\xf9\xdd\x8c\x68\x45\x15\x8b\x39\x40\x7c\x1a\x3e\x5c\x94\xe9\x56\x8e\x73\xe7\x02\xf7\x83\x43\x70\xf5\x22\x75\x15\x47\x20\x46\x96\x06\x87\x0c\x0e\xaa\x7d\xc8\xbe\x64\x61\x6a\xfa\x2c\xb3\x6c\xc0\x46\xa4\x12\x4d\xf1\x0c\x7c\x7a\x8c\xab\xfc\x2d\x03\xbb\xa4\xb2\x25\x3c\x71\x82\xb8\x34\xa5\xc1\x56\x53\x80\x8b\xf1\x36\xa1\x1a\xcd\xcb\x3f\x34\x37\x2c\xb9\xcb\x3f\x5f\xd5\x22\xb8\xa6\x03\x06\x1e\xd3\x67\xc2\xdc\x89\x3a\x71\x27\x52\x93\xc4\x4d\x39\x99\x9f\x62\x08\x72\x26\xb1\xef\x77\x59\xce\x0f\x8d\x39\xa8\x0d\xd6\xd0\xe6\x24\x7b\xa8\x0c\xe2\x31\x10\x6d\x05\x6c\x7d\x17\x96\xee\x9f\x11\x8b\x1a\x6c\xf2\xd0\xb1\x44\x7f\x64\x5c\xfd\xd1\xc3\x55\x76\xa6\x13\x78\xd5\x19\xc0\x4e\x16\xea\xe0\x00\xcb\xb0\xdb\x16\x61\x0f\xdf\x6b\x25\xe5\xb7\x8d\x4c\xc8\xc3\xee\xf7\x2a\x0b\x77\x17\x73\xf0\xea\x0a\x89\x85\x78\x01\x54\xbe\x94\xca\xe6\x56\x53\xab\x30\x3f\xe9\x05\x33\xab\x5c\x15\x20\x90\xad\x45\xa3\xc0\x80\x05\x3c\x82\x6d\x76\xdb\xb4\x71\xdc\xd6\x0a\x08\xe6\x6a\xab\xc8\x26\x59\xa6\x75\x5a\x81\x28\x06\xce\xd9\x22\x1c\x35\x18\xc3\x67\x7d\xf6\x91\x0b\x2b\x00\x48\x5b\xe5\x60\x88\xa3\xa7\x53\xc2\x62\x84\x53\x35\x31\x58\xbf\xd6\xab\x31\xb7\xbb\x41\xcb\x39\xb0\x6d\x32\x20\x0f\x2a\x23\x2c\x62\x57\x6f\xe3\x99\xbb\x51\xf4\x99\xd7\x08\xd4\x51\x80\xea\x59\x50\xd6\xb8\x4e\xd1\x25\x52\x6b\x77\x75\xb4\xa8\xaa\x6c\xbb\x50\xd7\x76\xf9\x39\x2b\x54\xea\x85\x0a\x10\x10\x5e\xc5\x47\x8b\xd4\xe9\x39\x5b\xa7\xd3\x2e\xf5\x7e\x5e\xf4\x81\x9c\x58\x7d\xc6\x18\xc4\xec\x0c\xb4\x9c\xf5\x9d\xe3\xb5\x05\xcc\xe2\x51\x2a\x20\x58\xb8\xaa\xcd\x6f\xa2\x09\x4d\x72\xcf\xc9\xb7\x27\xd9\x30\x75\x93\x09\x79\x26\x89\x41\xcc\x8f\x04\xe4\x05\x18\x9b\xe5\x77\xe8\x7f\x9b\x6a\xaf\xe8\xcf\x7d\xf6\x09\xd8\x70\x92\xcc\x01\xcf\x33\x6b\x19\xab\x52\x33\x4f\x95\x03\x50\x36\x11\x09\x15\x07\x62\xd6\x7a\x82\x9f\x49\x9f\xb9\x66\xfe\x37\x7a\x42\x7f\x42\x7f\xae\x53\x2e\x5d\x78\xff\x9e\xad\x2c\x1f\xbd\xe0\x79\xef\x96\xb3\x8c\xd2\xf2\x1b\x67\x84\x29\x98\x40\x2b\x70\x3d\x32\x58\x6e\xca\x9e\x79\xb4\x90\x43\xe2\x9f\x5a\x2c\x08\x53\x03\xc6\x63\x32\x20\x15\x0e\xd5\x25\x4c\x42\x0b\x01\xd7\x3c\x26\x2b\xdd\xa1\x19\x33\xfd\x05\x0c\x47\x32\x1d\x66\xcb\x01\xf0\x02\x59\x2e\x79\x66\xfb\x28\xee\xb4\xea\x91\x67\xd8\xb7\x9b\x8c\x7b\x53\x57\x6e\x2e\x36\xe2\x1c\x7c\xb7\xda\x9d\x98\x60\xe5\xa4\xc9\xf2\x71\x2c\xbb\x21\xf4\xc3\x7a\xe6\xf6\xb2\xf2\x50\x7d\xa1\xf2\x8a\xa0\x63\xaa\xb5\x87\xe6\xee\x62\xe0\x84\x9b\xf8\x52\x0c\xc4\x69\x23\x67\x4a\x4e\x0a\x07\xf3\x72\x9a\xed\xbf\xdc\x05\x3a\xe4\x69\x59\x7d\xb0\x04\xa0\xd2\x0f\x36\xb0\x9a\xc2\x5c\xf3\xe1\xb1\xc9\x3f\x24\x13\x6a\x32\xfe\x3b\x17\x57\x48\x9f\x0e\x3e\x35\xb0\x58\x40\xb4\x54\x4d\xb8\xa0\xff\x5c\xb6\xb7\xb1\x50\x74\x84\x23\x35\xd8\x49\x15\x99\xfa\xcd\xd4\xb1\xfd\xf4\xea\x2b\xd5\x2d\x20\x1c\xe0\x67\xe2\x05\x20\x42\x78\xa1\x6d\x45\x66\x8e\xdc\x32\xbf\xe5\x02\x31\xfe\x92\xc3\x62\xb9\xf7\x01\x09\xda\x4b\xdc\xc0\x5a\xe5\x9a\x41\x04\xb1\xa4\xb0\x3f\x01\xa4\xea\xbd\x32\x49\x99\x00\x70\x6e\xe0\xa5\xf4\xf6\x9c\x60\x16\x27\xee\x0a\x41\xdc\x44\xf4\xcc\x5f\xf0\x7c\x2d\x9f\xba\x1f\x57\x99\x67\xe9\x99\xe5\x2f\x2a\x41\xc0\x03\x8c\xa4\xa6\x0a\xaa\x66\x95\x22\x8c\x86\x29\x00\xeb\x6a\x9a\x8c\xd2\xc4\x54\xe3\x88\xb8\x88\xcf\xfa\xcc\x06\x54\x7b\xbd\x69\x11\xd0\x69\x4d\x58\x65\x0d\x52\x8b\x3f\x6a\xeb\x7d\x18\xb3\xdc\x52\xb9\xfe\xa7\x94\xa4\x3b\x4a\xab\x7c\xd5\x40\xf4\x07\x3c\x96\x79\x64\xb9\xa1\x8d\xbe\xf2\x72\xfa\xfe\xae\x67\x2a\xbd\x44\x64\x67\x2e\xce\x70\xbd\x8c\x9d\xc5\x14\xb1\x5d\xcb\x4c\x77\x67\xea\x19\xec\xc0\x4e\x77\x88\x20\x9d\x45\xd1\xb3\x82\xab\xdb\xed\xf7\x9c\xa5\xe5\xa2\xc3\x18\xbf\x5c\x61\x88\x92\x50\xb7\x47\x3b\xd8\x06\x77\xc7\xa2\xae\xb2\x34\xd4\x3d\xb7\x8a\x65\xb7\x45\x45\x86\xbc\xe2\x90\x4b\xf3\x22\x28\xc0\xfe\xcd\xf3\x87\xb3\x7a\xcd\xee\x16\xf6\x79\x8c\x16\xfe\x8c\xb6\x00\xc1\x3a\x8e\x84\xf3\xea\xab\x73\x0d\xbb\x8e\x6d\xa8\xd8\xf5\x62\x30\x46\xdd\x89\x30\x2c\xa9\xad\x47\x62\x11\xf3\x67\xe5\x61\xc8\xca\xbb\xbc\x8e\x55\x38\x93\x18\x0f\x77\x32\xb2\xed\x38\x88\x70\x34\xa9\x9d\xd4\x90\xf3\x84\x60\x56\xa7\x14\x54\xfe\x5c\x3e\x22\x06\xb1\x16\x58\x77\x92\x00\x6c\xb3\x23\x81\x2d\xf5\x99\x6b\x45\x2c\x06\xb8\x7d\xc3\xc3\x4d\xc0\xa7\x1b\xa8\x22\xcc\x19\xd4\x28\x1b\x27\xa4\x4c\x2b\x5b\x17\xe1\xc4\x76\x92\x44\x69\xe2\xd5\xfa\x9c\x11\xa1\x47\xad\x49\xfc\x4c\x98\x56\xc5\xec\x38\x9c\x87\xea\xc5\x65\xb9\x67\x15\xbe\x4e\xb2\xae\x9d\x93\x14\x52\x49\xe3\x3e\x83\x83\xcb\x8b\x87\x55\xef\x55\xa9\xb5\x37\xdf\xdc\xb7\xf1\xe9\xf4\x84\x88\xb5\x8f\xe7\x7d\xd1\xf6\xbf\xf6\x99\x34\x7d\x0f\x20\x70\x64\x6b\x7f\xa9\xe7\x53\xcb\xf1\x37\xcc\xc2\x3a\x8c\xb5\x03\x79\x06\x20\x14\xa7\x18\x4b\xec\x45\xe2\xd4\x61\x7c\xed\xf5\x2e\xc9\x6b\x9a\xb8\xdb\xa0\xe1\x50\x96\xc6\x1f\x34\x8c\x26\x00\xa3\xef\xb2\x73\x7b\x65\xa5\xfa\xa2\x1f\x3e\x4b\xda\xca\x63\x57\x6d\xd5\x5e\x25\x30\x40\x4e\x00\x50\xc0\x2f\xc6\x70\x41\xa5\x11\xee\x5d\xed\x92\xe9\x4c\xcd\x6d\xa9\x3b\xb8\x17\x0b\xf2\x3e\xc0\xf8\x55\xf9\xfc\xcb\x77\x64\x5c\xf0\xfa\x57\x75\x06\x1d\x59\x6b\x4d\x65\x93\x8e\xd0\x3e\x2c\x4c\x09\x86\xa3\x2e\xc4\xc7\x54\x0d\x1e\xe0\xa4\xd6\x44\xb8\x03\xa6\x09\xca\x51\x0e\xbd\x61\x11\x7d\x95\x48\x89\xe6\x5d\x38\x49\x4a\xf3\xc2\x90\xe3\xae\xb2\xca\x81\xc3\xbc\xbc\x71\xf3\x08\x84\x04\x0f\xc9\x5a\x31\x07\x57\xe6\x85\xa5\xbb\x08\x1e\x81\x70\xfd\xd9\x2c\x99\x37\x4b\x13\xf0\xb5\xdf\x4a\xe4\xbb\x55\x03\xf3\xf1\xf2\x96\xde\x4d\x45\xcc\xb9\xcd\x86\x28\x49\x94\x0a\xaa\xe6\x03\x6b\x4b\x6d\xce\xb4\xee\xed\x9b\x17\xf6\xc5\x26\x86\x8a\x73\xe4\xfa\x73\xb6\x5b\xb8\xa7\x04\x35\x65\x91\xec\x14\x9a\x2c\x37\x4e\xd5\xa4\x12\x11\x6b\x19\x61\x1d\x24\x57\xb3\xa1\xea\x2e\x36\x1d\x9e\x2d\xb7\x32\xe0\x23\x07\x76\xd5\x9c\xb0\xe5\x3a\x34\x6b\x18\xa1\x1d\xa6\xf6\x4c\x50\x2e\x6c\xb9\x97\x26\x91\x8a\x53\xfc\x65\x30\xc3\x02\x27\x09\x49\xa8\x9c\x6e\x6e\x32\xff\xeb\x5f\x96\x8e\xf6\xc2\x94\x25\x32\x83\x9d\xe2\x2f\x74\x9a\x4e\x11\x4b\xa7\x43\x2b\xe5\x62\xf9\xe4\x23\x9a\x3a\xfc\x05\x03\xcc\xe5\x06\x58\x40\x81\x10\x1e\x46\x6d\x9f\x79\x68\xe5\xd6\x54\x81\xa3\x09\x25\xcf\x80\xa5\x2a\x18\x91\xf2\x0c\x5d\x73\x45\xce\xd1\x67\x3c\x7b\x00\x41\xcd\xd4\x09\x1d\x1b\xa7\x03\x96\x48\x4b\xad\x29\xa3\xea\xa4\xcf\x2c\xc4\xb9\xa3\xca\x87\x88\x33\x03\x73\x1b\x01\x61\xb3\x26\xc0\x8a\xee\xf0\x5e\x95\xcb\x56\xa5\xb2\x86\xd8\x02\xbf\x0c\xbc\x90\xe4\x81\x49\xf9\x58\x63\x1f\xdf\xe1\x17\x13\x84\x7f\x89\x15\x36\x25\x80\x97\x49\xee\x36\xca\xcd\x96\x85\x32\xe8\xce\x2e\x1a\x88\x5b\x88\x91\xac\xa0\x9d\x09\x39\xfe\x86\x9e\x91\x33\xf4\x7d\xc2\x87\xf2\x24\x37\x55\x99\x1f\x25\x51\xf2\xc4\xf8\xfd\xe0\x6f\x93\xdf\xf7\xad\xa3\x7e\xce\xf7\xa1\x96\xe3\x88\x7e\x31\xc8\x26\xf2\xaf\xe7\x1f\x3e\x4c\xe7\xa7\xc3\x34\x7a\x22\x4a\x7f\x02\x99\xa2\x92\x42\x0e\x16\x0c\x57\x81\x8c\xad\xa2\xce\x22\x40\x59\xa3\x1d\x69\x73\xa5\x24\x01\x30\x7c\x7d\xa5\x67\xd5\x72\x1d\x9e\x15\x67\xd5\xa5\x40\xed\x94\x45\x5a\x77\xbc\x0a\x28\xda\x87\xd1\x56\x4c\x35\x60\x1f\xbc\x7b\x94\xe0\x71\x49\x65\x59\x43\x49\xb9\x99\x52\xbb\x8b\xf4\xdc\x21\x88\x46\x9f\xb2\x62\xe8\xe0\x7b\xe7\xe5\x05\x6f\xad\xf5\x62\x9d\xf5\x59\x47\xa2\x17\x62\x8a\xfc\x42\xa2\x29\x38\x7d\x52\x2a\x27\x59\x9a\x29\x98\xa1\xa1\x51\x83\x71\x6c\xa0\x30\xac\xe2\xe8\x34\x2b\xe7\x16\xb3\x1a\x28\x4e\x24\x39\xd1\x0d\x83\x49\xd5\x45\x87\xa2\x17\x81\x67\x33\x22\xfa\xcc\xe2\xd5\x02\x2a\x3b\xe7\x36\xf2\xa7\x2e\x45\x20\x68\x94\x87\xd5\x28\x3d\xda\x93\x62\x16\xea\xaa\xf3\x0d\x49\xab\xcb\x28\x5c\x95\x87\xe9\xc8\xa7\x65\xd1\xa6\xe1\xfb\xaf\x6f\x36\x6e\x38\xe6\x55\xda\x79\xa7\x94\x7b\x01\x35\xc4\xa7\xa0\x40\xca\xbc\x54\xaa\xb3\xf5\x65\xea\x7b\x41\xcc\x01\xb8\x73\x78\x39\xe6\x44\x7a\x46\x7c\x94\xd9\xe2\x12\x3a\x22\x5a\xfa\xe8\x33\xbd\x8d\x7d\x87\x83\x41\x4d\x77\x20\xea\xba\xd3\x48\x70\x29\x6d\x3a\x85\x69\x67\x79\x52\xdc\x16\x05\x1a\x0d\xf4\x7b\xef\xe6\x7a\xb0\x58\xaa\xd1\xfb\xcd\x15\x6d\xb4\x3f\x56\x22\x27\xd4\x36\xb5\xb2\x44\x63\x4e\x8b\x35\x8a\x34\x7e\xb8\xb8\xea\x65\x95\xc9\x4a\x5d\x2f\x56\x69\xf4\xe1\xf2\xeb\xeb\x34\x2e\xce\xd8\xab\xd8\x58\x6a\x62\x49\xcd\xc6\xd5\x8b\x55\x0c\xe2\xde\x06\x0b\xb1\xb4\xf4\x2b\xf9\x43\x71\xcf\xac\xca\x35\xd8\xd1\x32\xd5\x5c\x2b\x11\x08\x8c\xfb\x0e\x5c\x00\xc1\x4b\x3f\x25\x15\x9e\xce\xfc\x3c\x5a\x07\x06\x6b\xa7\x69\x8e\x5a\xdd\x25\x78\x50\x90\xfa\x08\x9b\x20\xa1\xf2\xe0\x16\x96\x62\x3d\x8f\xd7\x83\xc5\xbe\xdf\x45\x6c\xfa\xe1\x12\xd3\x93\x79\x1e\x0c\x29\xad\xec\xe6\xea\xaa\xd7\xd8\xfd\x87\x24\xc3\xf9\xaf\x5d\xd0\x6d\x33\x4f\x33\x3c\x30\x41\xb0\xb4\xee\x6f\x48\xd0\x2c\x25\x6f\xad\x61\x1e\xce\xc6\x6c\x52\xbc\x4f\xb3\xca\x1a\xde\x55\x63\x8b\xc5\x45\xee\x20\x52\x21\xc8\x33\x11\xb0\x77\x6c\x28\x15\x2b\x1e\x55\x9c\x08\x82\xe3\xb9\x47\x91\x2c\x8e\xc3\xf4\x0c\xe6\x31\x49\xa7\x5a\x81\x07\xd5\x84\xf1\x53\x3e\x73\x3a\x4b\xe1\x29\x28\x8b\x42\x47\xfa\xc6\xf2\xa2\x40\xf4\x1b\xec\x94\x7c\xa1\x52\x69\xb9\xa2\x22\x04\xd6\x35\x02\x12\x0f\x14\x4b\x9b\x10\x7b\xc3\xf5\xdf\x75\xbe\xbf\xb9\x7b\xe8\x5e\xf6\xdf\xe5\x29\x17\x2e\xa7\x30\x83\xf9\x72\x55\x1b\x38\xeb\xb3\x2c\x4e\x39\x43\xb5\x86\xb5\x44\x38\x8e\xf3\xf8\x68\xab\x44\x1a\x99\x6d\x29\x47\xf6\x4e\xc5\xca\x08\xe5\x25\xcd\x3c\x42\x62\x59\x5b\x4f\xd6\x12\xd7\x59\xe1\xe4\x98\xf4\xb8\x25\x79\x4c\x3b\xba\x6c\x7c\x40\x5e\x65\x74\x6d\xa2\x1c\x62\x24\x23\x2f\x4e\x57\x82\xdb\xf9\x03\x36\x97\xf0\x7a\xdc\xce\x2d\xc8\x06\x8b\xfa\x91\x7e\x21\xf1\x5d\x8d\x54\xb5\x93\x34\xa5\x46\x01\x96\x95\xab\x90\x32\xba\x8e\xc6\x9f\x4d\xe5\x51\xbf\xd7\x9c\x2d\xdd\xe4\x38\x7b\x39\x66\x2e\x00\xe6\x2a\x84\x51\x44\x84\xc2\x94\xa1\x11\x1c\x6c\x16\xcd\x11\xa0\xb0\x10\xf0\x61\xff\x05\x4d\x29\x03\x38\x88\x65\xa4\x7d\x2c\xce\x63\x0d\xa1\xf5\x73\xef\xfa\xf1\xa1\x20\xaa\xfe\x70\xf3\x58\xac\xd4\xdf\xf9\x75\xa9\xac\x5a\x6a\x61\x59\xb0\x90\x37\xc5\x3c\xb5\xd4\x42\x07\x67\x94\xa9\x9c\x68\x32\x57\xe4\xf1\xee\x6a\x2b\xf9\xae\xda\x59\x56\x0b\xfc\xee\x4b\x57\xd5\x30\x17\x4d\x5e\x8d\x49\xb4\x0a\x9a\xb6\xf9\x3e\x32\x51\x50\x9a\x0e\xd6\x9a\x68\x61\xeb\xb0\x44\x33\x2c\xac\x1f\x2a\x36\x01\x50\xc5\x72\x6f\x46\xf3\x5a\x06\x0b\xf2\x89\xa8\x9f\xf5\xd5\xc7\xd9\x2e\x92\x4b\xac\x28\x0b\xfe\x51\x32\x78\x36\x0d\xaf\x71\xd2\xec\x50\x96\xe4\x2f\x39\x61\x19\x7a\x40\xb6\x07\x1f\x4c\xe3\xcc\x94\xfd\xef\xe8\xe6\x80\x22\x2e\x4c\x53\xab\xa4\x9c\xe9\x1d\x69\x30\x72\x1d\xb0\xae\xd7\x1c\x1f\x99\x97\x1b\xc2\x0c\x7a\xc9\x02\xba\xad\x9c\x94\xa8\x73\xdb\xab\xa0\xf5\x55\xd9\x85\xf4\xb6\x6a\x14\x25\x99\x37\x6b\xd7\xc8\x57\x5e\xce\x69\x2b\xa0\xae\xec\x4c\xb7\xc3\xb6\x32\x4e\xff\xdb\x62\x24\x41\x1b\x20\x98\xab\x54\x86\x42\x2e\xf9\x0a\xb4\xe5\xf5\xd2\x2b\x73\x32\xac\x89\x64\xe5\x0f\xc8\x66\xd7\xf8\xe8\x4d\x8b\xa1\xdb\x27\x3e\x9a\x13\x37\x55\x90\x6d\x6c\xc1\xce\x10\xae\xf2\xd9\x34\x81\xb8\xfa\xd9\xec\xe8\x0c\x01\x05\x30\x5d\x5c\x95\x4d\x17\x72\x6d\x01\x09\xfc\xe9\xfa\xbb\x6d\x3d\x54\xac\x7c\x7c\xce\xfc\x6d\x01\xc6\xf1\x0c\x5b\xbb\x03\x28\x51\xae\xfc\x45\x55\xb5\xc4\xb3\x3e\xf3\x02\x56\xa4\x51\x7b\xf4\x19\x71\x15\x67\xa0\x8c\x31\x03\xb4\x72\xc8\x7d\xca\x84\x9f\xc2\x0a\x94\x71\x0f\xd4\xa4\x58\x33\x66\xa1\x1f\x7b\x3a\xe5\x04\xbb\xec\x52\x67\x41\xb1\x71\x80\xbe\x7d\x09\xda\xf3\xaa\x44\xd8\x8e\xc1\x1c\x0d\x46\x0b\xec\xd5\x20\xf4\x10\x09\x62\x4e\x24\x7b\xaf\xb2\xfc\x5d\x9a\xcc\x5d\x48\x75\xc9\x3d\xa0\xa5\x3a\x4c\x6d\xcb\xcb\x0f\xf8\x0e\x20\xb7\xd6\x55\x1c\xbc\x63\xb5\xd2\x4c\xe5\x7c\xbc\xb0\x13\xfc\x58\x24\xe8\xb4\xce\xaa\xfe\x65\x46\xa2\x4d\x70\x81\x6e\xb1\xc0\x53\xa2\x88\x58\x16\x8e\x54\xac\x10\x0e\x22\x8e\x5b\x41\xdb\xaf\x59\x45\x53\x3e\xa5\x5c\x67\x27\xd3\x6e\xaf\x56\xe1\xfc\x64\xb3\x58\x0b\xd2\x4c\x4f\xe3\x67\x6b\xf9\x5f\x73\x16\xb6\x9f\x7c\x1a\x36\xda\xca\x83\x75\xda\x76\x4e\x87\xc1\xb7\x79\x58\x40\x8a\x29\x84\x0b\xb5\x04\xd8\x66\xf5\x28\xeb\x10\x6d\x56\xf1\xd2\x9d\xf0\x6e\x97\xe1\xe0\x32\x93\x4b\x87\xaa\x90\x3b\x01\xbb\x04\x54\x2a\x03\xee\x52\x8d\x4a\x03\x42\x4b\x55\x84\xa4\xe7\xf6\xb3\x98\x85\xb9\x41\xd7\x4a\x56\xe5\x8a\x61\x25\x72\xad\xe0\x71\xbb\x42\xec\x08\x12\xcd\xae\x25\x9a\x55\x5b\xb9\x10\x5d\xab\x77\x27\x11\x25\xf0\x20\x5b\xc9\xdb\xa2\x3e\x14\x27\x08\x29\x5d\xf6\x8a\xb4\xe5\x80\xe1\xea\xa7\x2c\xfb\xab\xc8\xc1\xdd\xa6\xf6\xb7\x6a\x55\xae\xea\x99\xe7\x82\x02\x0f\x54\xe2\x4b\x03\x36\xae\x06\x46\x6b\xc2\x20\x8d\x95\xbf\x77\x6d\x1c\x58\x90\x33\x3e\xe7\x29\x7a\xa1\x72\x82\x14\xef\x33\x88\x13\xcc\xbc\x01\x8a\x23\xf3\xe0\x09\x3c\x05\xd8\x16\x32\x1d\x4e\xa9\x42\xd8\x9b\x61\xc1\x24\x79\x62\xcf\xb3\x7e\x01\x66\x5c\x09\x5f\x50\x85\xbb\xb4\xe2\xd0\x6c\x60\x5f\xcb\x1b\xd9\x16\xa1\xc0\x8b\x69\xde\x2f\x46\x81\xa7\xf1\xf8\x1a\x66\xe5\x99\x0b\x20\x05\xa8\xda\xda\x60\x91\x60\x01\xae\x97\x4a\x55\xba\x5b\xac\xa1\x67\x05\x40\x41\xbe\x10\x8d\x10\x0a\xf2\xc7\x77\x01\x51\x50\x57\x7b\x6e\x59\xca\xaa\x7b\xa5\xc6\xfe\xed\x52\xa1\x15\x77\x81\xf3\xbe\xa4\x74\x5b\x2b\x29\xb5\x0d\xaa\x2e\x4f\x08\xd8\x3c\xbc\xbc\x2e\x7a\x19\xce\x78\xc4\x59\x4c\xd7\x88\x17\x86\xfa\x62\xc3\x74\xd4\x61\xf3\xd5\xc8\x47\x53\x3f\x50\xdf\xda\x4b\x3c\x49\xa4\x1a\x73\x73\xa5\xca\x9a\xb7\xef\xef\x74\x2f\x25\xb4\x08\x46\x44\xca\xb7\x13\xe3\x0a\xf2\x7e\x22\x95\xcc\x2b\x72\x51\xfb\xac\x5a\x4a\x5a\xce\xb7\xb7\x4d\x23\xd9\x29\xec\x9e\xc7\x23\xdc\x2c\xac\xd5\xed\x97\x2c\x10\xcf\x28\xf4\xc4\x82\x6c\x94\xc4\xe0\xdc\x0d\x59\x17\x40\xa5\x85\xa3\x4d\x72\xcd\x2b\x38\x47\xf5\xd0\x17\x92\x3c\x56\x9e\x5d\x2b\x18\xec\x50\xfd\x5c\xb8\x41\x1a\xe7\xc4\x64\x72\xbc\xbd\x31\x6c\x50\x77\x9c\xd9\x1a\x4a\xee\xe4\x4d\xca\x1b\x03\x9c\xed\xce\x40\x78\xcb\xc8\x14\xba\xf1\x13\x70\x41\xdb\xb1\x63\x13\x8e\x93\x41\xc3\x97\xd6\xa4\x30\x63\x13\x52\xb9\x97\x59\xaf\x5b\x93\xda\xf3\x89\x0a\x1b\x93\x4c\x7d\xeb\x06\x14\xa3\xb6\xa1\x9c\xa5\xdb\x22\x13\x40\x53\x16\x13\xc1\x08\x56\x93\xc3\x65\x82\x5c\x6c\x6b\x42\xf7\xc6\xb7\xdf\xac\x10\x3b\x52\x5c\x4c\x0e\xd9\x66\xb8\xc5\xe2\xfc\x2b\xc7\xa9\x1f\x6f\x62\xcd\xb2\x01\x12\x59\x79\xea\x05\xf5\xb6\xc2\xb4\xe9\xe1\x0f\xad\xb3\x4b\xb7\x4a\x16\xa9\x56\x39\xf7\x93\x36\x53\x61\x9b\x5a\x48\x98\xd1\xa7\xdd\x2f\xea\xbd\x82\x24\x6f\x22\x3f\x65\xff\x29\x13\xcb\xca\x87\xa7\x5e\x16\x05\xd4\x70\x57\x98\x32\xcb\xbd\x96\x25\x4e\x68\xb9\x77\x8a\xab\x72\x25\x5a\x9f\x85\xf3\xe6\x93\x70\x42\x4a\x46\x48\xc9\xa8\x58\xa3\x90\x92\x81\x50\xdb\x52\x32\x56\xa9\xa0\xcb\x8c\xb4\x99\xdf\x10\xca\xbc\x16\x6a\x2b\x99\xf5\x5d\xa1\x47\x6e\x9e\x76\xe0\xec\x9c\x7e\xcc\x96\xfd\xc6\x7e\x51\x19\xb6\xb5\xf0\x5a\x79\xb6\xbe\xcd\x95\xcd\xcb\xae\x0b\x2c\xe2\xc4\x42\x10\xda\xa0\xea\xa2\x8d\x6c\x99\x39\xb7\xcf\x7e\xe0\x2f\xe4\x99\x88\x13\x84\x15\x9a\x72\xc0\xb5\xca\x63\x78\xe0\x20\x14\xb0\xf4\x4d\xac\x06\x46\xd7\x78\x4a\x62\x53\x6a\xd3\x0b\xbd\xb4\x46\x65\xeb\x0e\xae\x42\xda\x05\xd0\x58\xb3\x0c\x2e\xb6\xa3\xcf\x4c\x38\xa4\x09\xc1\x03\x59\x81\xba\x89\xc1\x86\xf9\x63\xe6\xac\xfe\xe3\x19\x7a\xd0\xf7\x13\x95\xc5\xf1\x7a\xc0\x7b\x75\x63\xeb\xb3\xb1\xe0\xe9\x2c\xb3\xf3\xf1\xa1\xa9\xb9\x6c\x22\xb4\x16\x9d\xd5\x30\x18\xe7\xa9\x8e\x70\xac\x75\xf1\xe5\x1b\xe7\x55\x22\x65\x37\x82\x59\xf2\x37\x90\x3e\x86\x59\xf8\x9f\x0d\xc7\x37\x3e\x66\x0f\x5c\x66\x59\x05\x80\x3d\x39\xc0\x2f\x89\x04\xab\x50\xe6\x19\x28\xe4\xba\x17\xf1\x14\x2a\xc7\xb9\xcc\x6e\x9b\xf9\x56\x9c\xff\xa1\x1a\xaa\x21\xef\xdc\xc6\xa5\x99\x44\x5a\x7b\x4f\xec\xcd\xa2\xdb\x38\xc2\xb7\x8e\x5f\xdc\xa6\x62\xc6\x41\x12\x4b\xe6\x0e\x5a\xc2\x82\xfc\xcd\xf8\x2c\x35\xb1\x77\xd4\x0f\xc5\xaa\xdc\xd9\x54\xaa\xcf\x58\x45\x13\xcd\xb9\x73\x54\xb6\x1d\xc5\x24\xe6\x5c\x79\xbf\x56\xde\x8a\x19\x5c\xf8\xbd\xd7\xb8\x3d\x96\xed\x1e\x2f\xc6\x30\x0b\xe4\xcc\x24\x89\xa9\xee\xcf\xb8\x06\x6d\x25\x75\xcf\x2e\xea\x5e\xb1\xbf\xe8\x89\xae\xda\x45\xab\xc6\xdf\x6c\x6f\x15\x4b\xbd\xed\x3c\xda\x71\x0b\x98\x9b\x4b\x0b\x2a\x96\x3f\x68\x4b\x03\xd7\x84\x28\x08\xba\x59\xa6\x92\x2d\xcf\xf0\xac\xc5\x91\xcc\xe2\x3a\xc5\x33\xad\x44\x28\xae\x6f\x49\x31\x36\x72\xac\x89\xe5\x45\x18\xa5\x82\xba\xb3\x5f\xca\x5b\xaf\xdf\x1d\x60\xa1\xfc\xe0\x97\xf2\x8a\xb0\x57\xe5\xd0\x04\x25\xe0\x48\xa5\x38\x0b\x9e\x84\x3d\xe1\xaa\xef\x9b\x1c\x7d\xe7\xfc\x17\x4e\xbc\xab\x58\xd3\x95\x1b\x7b\x8b\x55\xc6\x55\x18\x8c\x8d\x4e\x1a\x65\x63\x0f\xc0\xb1\xda\x4a\xdc\xa4\xe8\x46\xe5\x9b\xcd\x0a\x87\x54\xbe\xea\x64\x9f\x4d\xde\x5d\x02\x30\xd5\x28\x64\xbd\x8d\x15\x13\xbc\x4c\x00\x1b\x2a\x6c\x65\x37\x1f\xd8\xd3\x76\x04\xb0\xc7\x14\x42\x19\xb0\x93\xe5\xbe\xf1\xcb\x26\xe8\xa1\x7d\xfb\x5f\xf9\x8f\xa0\xbf\xdb\xe2\x2c\x15\x0f\xf6\x19\x17\xf6\xd1\x93\xec\x39\xfd\x58\x8e\x4f\xac\xa5\xc4\xc5\x37\x73\xf4\x51\x51\xc4\x29\x04\xb4\x16\x8b\x33\x67\xe0\xa9\xb3\xb2\x16\x7a\xf0\x4f\xe9\x90\x08\x46\xf4\x9c\x1c\xae\x43\xc6\x83\xa7\x98\xe1\x31\x80\x61\x9f\x40\xd0\x21\x48\xd9\xb9\x06\x65\x4e\xa2\xa9\x0f\x0a\x4c\x56\xf3\x78\x9b\xca\x9c\xd7\xc9\x86\x3e\x8d\x04\x6e\xb1\x78\xf3\xc8\x95\xea\x43\x7b\x67\xfb\xdf\x4c\xd1\x78\xe8\xdc\xff\x38\xb8\xeb\xde\xdf\x3c\xde\x5d\x14\xb4\x8d\x8b\xab\xc7\xfb\x87\xee\x5d\xe5\x6f\x79\x1a\xf0\x4f\x8f\xdd\xc7\x9a\x9f\x5c\x03\x57\x9d\xef\xbb\x85\xa2\xf3\x3f\x3d\x76\xae\x7a\x0f\xbf\x0e\x6e\x3e\x0e\xee\xbb\x77\x3f\xf7\x2e\xba\x83\xfb\xdb\xee\x45\xef\x63\xef\xa2\xa3\xdf\xf4\x9f\xbd\xbd\x7a\xfc\xd4\xbb\x1e\xb8\x88\x6e\xff\xa7\x5f\x6e\xee\x7e\xfc\x78\x75\xf3\xcb\xc0\xeb\xf2\xe6\xfa\x63\xef\x53\xd5\x2c\x3a\xf7\xf7\xbd\x4f\xd7\x9f\xbb\xd7\xcb\x8b\xdb\x57\x53\xa3\xb6\x6e\xb6\x77\xff\x7a\xb6\x2e\x4f\xba\x1b\xce\xed\x99\xa0\xff\x04\x97\xcb\xad\xd9\xa2\xa7\x27\xee\x93\x29\x45\x7f\xaa\x39\xb7\x73\xe7\xe5\x4c\xaf\xcf\x32\x9f\x70\x26\x0b\x28\x3c\x96\x2e\xab\xbb\x30\xda\x73\xd4\x81\x43\x06\x7a\x4e\xa1\x53\x48\x1a\xc9\x46\xea\xa2\x08\x60\x1f\x26\x74\x4a\x21\xa0\x00\x9d\xa2\xf2\x82\x17\x1b\xb4\x73\x82\x21\x58\x77\x63\xbc\xec\x34\xc8\x72\xc2\x38\xec\x94\x73\xe4\x2e\x16\x62\xac\x20\x06\xd6\x77\xce\xf0\x94\x46\xe5\xec\x16\x40\xb6\x45\x39\x8a\x4b\xb9\xc5\xc2\x06\x2b\xb6\x3c\x21\xe8\xc7\xbf\xe7\x83\x02\xc7\x8b\x35\x18\xa4\x0b\x15\x28\xed\x0f\x22\x35\x54\x5d\xb5\x3d\x0b\x3d\xb9\x63\x6e\x2d\xe2\x70\x6e\x6d\xa5\x7b\xf0\x92\xa5\xcc\x43\x72\x2b\xb8\xcc\xf4\xf1\x36\x33\x2a\xed\xf1\x73\x74\x0f\x28\x32\x32\xb7\x38\xe8\x55\x9c\x25\xe9\x98\x32\x44\xa7\xb3\x04\x78\x8c\x31\x43\x0c\xc9\x04\x3f\x53\xee\x0a\xae\x98\xba\x34\x40\x47\x2b\x11\xa2\x53\x54\x7b\x50\xce\x51\x27\x8e\x65\x91\xc1\x15\x76\x8e\xe3\xa2\xa7\xc5\x61\xfb\xe0\x6b\x9a\xb1\x5a\xb6\x59\xda\x47\xf9\x91\x03\x8a\xed\x1e\x27\x67\x91\x1d\x16\x45\x86\x2d\xa4\x16\x4d\xc1\x81\xdb\xca\x83\x8d\x64\x98\x07\x2c\x9f\x1c\x6b\x5e\x25\xc7\x38\xc4\xa2\xed\x7a\xb4\xd0\x45\x4d\x3b\xcd\x28\x3b\x80\x83\xb6\x59\x9f\xb5\x80\xdb\x2b\xba\x74\x33\x4e\x4a\xa5\xee\x1a\xf7\x57\x28\x95\x57\xd9\xd9\x4e\x9d\x54\xd5\x42\x24\x1c\xc9\x41\xb6\xff\xd7\x98\xc7\x2d\xbc\x7a\x93\xbd\xb9\x54\xd2\x1c\x78\x74\x5b\xd7\x75\xb5\x90\xff\x6c\xdd\x57\x4b\xf7\xe1\x8e\x90\xb3\x9a\x4b\x91\x50\x2a\x84\x46\xe0\xa5\xc4\x94\xd9\x02\x52\x24\x73\xa3\xb9\x82\xed\xfa\x1c\x67\x25\x15\xf1\x90\x3f\x17\x74\xe2\x29\x91\x12\xd7\x60\xc1\x78\x96\xbc\x6d\x18\x43\x76\x42\xed\x8b\x0d\xf7\x93\x3b\x93\x0f\xfa\xad\x65\x32\xfa\x9d\xaf\xd0\xbb\x89\x6a\x19\x36\x76\x41\xcc\xe8\xc6\xa4\x32\x6a\xfe\x72\x92\xc7\x00\x71\xe1\x85\x46\xd5\x79\xad\x1a\x5a\x03\xcb\x04\xab\xac\x0b\xe6\x7b\x1e\xd7\x0f\x1d\xf2\x5a\xdf\x18\x6c\xdc\xba\x83\x70\x91\x3e\x6b\xec\xba\x82\x9b\xd6\xaf\xd8\x1e\xf1\xe9\xd4\xc8\x05\x05\x13\xf0\x09\xc2\x26\x83\x34\x97\xa6\x64\x1a\x4d\x8c\x73\x4c\x5f\x19\x27\x7d\xf6\xe2\x2d\x48\x21\xc6\xba\xe3\xb7\x04\x40\xad\x5f\xf4\x71\xa3\xcf\x85\xc8\x75\x10\x19\x29\x84\x51\x7b\x1b\xc1\xf8\x31\xf3\x82\x67\x2b\x36\xb8\xb7\x5e\x5b\x6c\xf5\x0d\x6a\x6b\x96\xe8\x5b\x57\x61\x33\x9b\x9b\x57\xd8\x72\x0b\x05\xbf\xe9\x10\xbc\xda\x9a\x55\x23\xd8\x41\x69\xcd\x83\x22\xa7\x67\x99\xb0\x26\x71\x7a\x3a\xb4\xf0\x1f\x7a\xba\x8e\xda\x7f\x72\x33\xfa\x93\x51\x84\xd3\x1a\xbc\x18\xaf\xb5\x0c\x3c\x1d\x9d\x6a\x99\xd5\xe1\x18\xd8\xf8\x11\x89\x4e\x0d\x20\xe3\x7b\x08\x62\xed\xdc\xf6\xde\x9f\xa0\xf7\x7e\x22\xdf\xfb\xa3\x31\x5d\xe4\xc7\xdf\x52\xcd\x16\xf7\x04\x5d\xae\x90\x4b\x52\x3c\xf4\xb0\x53\x4a\x7c\xc0\xee\x18\xcb\x06\x50\x1d\x17\xd0\x6f\x16\xde\x01\x8f\x3e\x94\x8b\x34\x4e\xef\x2c\x92\xdd\xfa\xcd\x8c\x84\x4d\x65\xc5\xca\xc5\x7d\x36\x9c\x97\x3d\x63\x27\x99\x6b\xac\x31\x8f\xd8\xba\x04\xa2\x6e\x6f\x31\xef\x7c\xc7\x11\xd6\xcb\x6f\xa3\x15\x99\xec\x9d\xac\x4e\x4f\xce\x43\xeb\x42\x3b\x42\x6a\x42\xd5\xac\x0a\x66\x3e\x47\xcc\xca\x45\x59\x25\x7d\x1d\xdb\x76\x6b\x10\xcf\xdf\xa9\xa2\x88\x4d\xe5\xa8\x11\xed\xc3\x2e\xdb\xef\x2e\xdb\x45\x2a\x4b\x71\x70\xeb\x5f\xdf\x17\x46\x8a\xf4\x9a\x71\xe6\x5e\xad\xca\x64\x0c\xbe\x50\x27\x73\x75\x79\xeb\x35\x1d\xe5\x1e\x4d\x56\x7b\xca\xef\x4d\xb4\x85\xf1\x55\x2f\x8e\xb5\x3c\xd4\x8e\xb2\xd5\xa5\x38\x35\x69\xab\x8a\x4e\xc9\x89\x29\x67\x96\x47\x88\xd8\xf3\x0a\xdb\xcd\x04\x76\x4d\x08\x15\xae\x13\x0b\x1e\xb9\x16\xce\xc1\x9a\xba\x40\xdd\x1e\xd9\x22\x3c\xe7\xba\xf3\xb9\x7b\x39\xe8\x5e\x3f\xf4\x1e\x7e\xad\x00\x06\x2d\xfe\xec\xb0\x41\xbd\x07\xee\x7f\xbd\x7f\xe8\x7e\x1e\x7c\xea\x5e\x77\xef\x3a\x0f\x2b\x70\x43\x97\x75\x56\x87\x49\x99\xca\x2a\xe5\x71\x1d\x5c\x4a\x67\x64\xae\xe8\x7d\x11\x3d\xd4\xeb\x84\x92\x1a\x04\x51\x83\xe9\xc0\x62\x22\x50\x4c\x9e\x49\xc2\x67\xb9\x51\xb7\x92\x60\x1e\xb4\x68\x45\xfb\xcb\xe0\x45\xa1\xcd\x32\x8d\xcf\x91\xa9\x8d\xe8\x95\x87\xce\x1a\x04\x91\x0f\x0b\xc2\xde\x2b\x44\xbe\xcc\x12\x1a\x51\xe5\xe5\x7c\x72\x61\x9d\x3b\xc6\xe7\x0a\x21\xbd\x2b\x36\xd7\xce\x42\x78\x76\x6e\x71\xf0\xc3\x0f\x16\x6d\x0d\xd9\x89\xca\xa0\xee\x56\x56\x86\xda\x81\x59\xa1\xc6\xd3\xbe\x80\xc4\xb7\xc1\xe8\xf6\x61\x9c\x58\x4c\x6c\xb2\x79\x9b\x35\x28\x7d\xd5\x83\x5c\x7d\x1b\x2e\x0b\x2e\x2a\x9c\xeb\xe5\xd1\x45\xcd\x76\xea\x2b\xc7\x08\x15\x0a\xd1\xee\x00\x52\xc5\x06\xfc\xaf\x19\xe5\xb1\x50\x08\x88\x99\x40\x5d\x8c\x04\x99\x72\xa5\x15\x30\x13\x46\x71\xa2\x85\x2a\x8a\x13\xfa\x4f\x00\x1f\x13\xe4\xcc\x0b\x3b\x71\x90\x6d\xb9\xf3\xc2\x02\x83\x9c\xf5\xd9\x65\xf7\xf6\xae\x7b\xa1\x19\xd2\x19\x7a\x94\x80\x2b\x56\x98\xfa\xa5\xdd\xde\x46\x1c\xf3\xc3\x3f\x28\x93\x8a\xe0\xba\x08\x3a\x22\x04\x17\xcd\xf9\x43\xd6\x5f\x17\xde\xab\xde\xde\xf0\x5b\xc1\x32\xe6\xcc\x0f\xd7\xb5\x55\xc4\xbd\x44\x8b\x9d\x27\xb2\xdd\xe1\x97\x02\x45\x7c\x5c\x15\x90\x44\x8a\x54\xdf\x23\xb5\x01\x99\xb5\xf9\xfc\x0a\x7d\xde\xc2\xbb\xcb\xe6\xf9\x00\x71\x89\x52\xe5\x30\xaf\x06\x09\x36\x2b\x67\x54\x9a\x67\xad\xa8\x28\x5e\x03\x83\xa5\xb4\xf5\x87\x64\x8c\x19\x12\x29\x63\x25\xdc\x5f\xdf\xce\xb7\x18\x69\xb4\xee\x51\xd5\x34\xc3\x53\x9e\x32\x53\x8f\x57\x8f\xaa\x62\x30\x72\x46\x98\x5a\x31\x98\xd7\x42\xd8\x29\x0d\xb5\xbd\x20\x3b\x15\x03\xad\xc3\xd9\xa9\xf2\x66\x41\xa9\xf2\xf5\xae\x65\x17\xc9\x58\x70\x69\xe9\x43\x95\xdd\xcf\xd5\x5a\x36\x96\x4f\x5b\x77\xf7\x80\xe5\xd3\xea\xae\x62\x12\x3d\xad\x7b\xd9\x94\xd3\x59\x13\x5b\xe9\x7d\xc1\xd8\x37\xd7\xbf\xda\x9a\x3b\x50\xe0\x3f\x7a\x42\x3f\x3c\x7c\xbe\x42\x23\xaa\xe5\x5e\x7d\xad\x5c\x63\x2d\x63\x3f\x8a\xc4\x59\xa5\xad\x65\x37\x15\x49\x76\xf7\xc2\xc2\x3b\x51\xca\x93\x12\xf4\x8d\x86\xc7\xc4\x99\x9a\x85\x85\x51\x2c\xd5\xdc\x11\x98\xc5\x7c\x6a\xe6\xf1\x41\xa6\xa3\x11\xfd\x72\xa6\xb0\xf8\xb6\x86\x1e\x26\xa6\x63\xf0\x0f\x3e\x1c\xe8\x11\x6d\x79\x11\x57\x35\x87\x6c\x01\xf2\x8c\x6c\x76\x66\x97\xe6\xd9\xff\xc3\x87\x00\x11\x00\x28\x07\xce\x37\x68\xe3\x24\xec\x23\x6e\x27\xe5\x15\xb9\x0b\xe8\x35\x11\x17\x82\x58\x64\x01\x53\x34\x76\x86\x85\xa2\x60\xad\x75\xe8\x37\x85\xb2\x07\xf9\x12\xf9\x25\xf2\x27\x38\x87\x18\x1f\x12\x02\xee\xa5\x19\x4d\xd6\x53\x7a\x2f\x0a\x9e\xd1\xd2\x09\xb4\xe1\xba\x16\x10\x15\x0c\x32\x2b\x45\xac\xee\x33\x61\x6a\x27\xfa\x09\x34\x51\x81\x75\xd0\xcc\xc7\x61\x6a\xb7\xf6\x2e\xf3\xcb\xcd\xc5\x41\xfb\x31\x55\x4a\x60\xb8\xe7\x6d\x76\x99\x75\xe8\xd7\x85\x19\x3c\x37\xf6\x5c\xc3\xa3\x8b\x74\x59\x91\x4f\x60\xa9\x9d\x97\xc6\xcf\x63\x81\x5d\xcd\x86\x0d\x11\x9a\x24\x31\x56\x0c\x0f\x19\xc4\x2a\xa7\xe5\x35\x37\x7d\xea\xbd\x55\xea\x72\xe5\x92\x6f\x00\x47\x54\x68\xe6\x13\x81\x3c\xd8\x5d\x44\xef\xaf\x03\x78\x00\x03\x79\x14\x09\xc4\x9d\x2f\xb5\x62\x99\xfa\xf1\x9a\xf3\x65\x92\x1d\x6e\x20\xa3\x9b\xc1\x68\xa1\x91\xcc\x04\x89\xf4\x55\x76\x8e\x6e\x13\xa2\x25\xaf\x54\x4b\x5f\x69\x92\x38\xe8\xb6\xe5\xd2\xe1\x5a\x70\x83\x7b\x9f\x97\xa7\x7b\x2c\x99\x98\x83\x2e\x5c\x3e\x33\x8f\x06\xbb\x87\xa9\xf0\xe8\x0b\x26\x64\x30\x24\x16\xb5\x48\xe0\xf0\x73\x13\xb5\x0b\xa6\x24\x5c\xb8\xc8\xe8\x3f\x35\xfb\x15\x44\x4e\x78\x6d\x66\xa8\x3f\xdb\xfd\xcc\xc1\x91\x72\x8f\x93\x70\xf7\x61\x5d\x30\x7a\x03\xb9\xa6\x74\x07\x16\x44\x9c\x26\xbe\xd8\x3c\xf6\xc4\x02\xe9\xda\xbb\xd5\x0e\x0d\x6e\xc9\xdc\xd4\xe6\x83\xda\xe5\xae\x8b\x5c\x99\x99\x1b\xdf\x6b\xf6\x7a\x6e\x40\xce\xf3\x28\xa8\x92\x79\x39\x41\xa4\xef\xda\xba\x25\xd6\xf3\x1c\xa4\x62\x2d\x1c\x8f\x1c\x8e\x7e\x1d\xce\x6d\x33\x78\xf2\x61\x69\x22\x54\xb3\x4b\x5b\x25\x04\xc4\x68\x1b\xe8\x24\x0b\x10\x7f\x76\xdb\x18\x32\x56\xaa\x78\xf5\x4c\x79\x5b\xb7\x1a\x48\xc9\xb9\x28\xb3\x2f\xef\x5a\x61\x07\x16\x26\x10\x40\xe3\xd6\x07\x8d\xb3\x25\x63\xb2\xbd\x07\x10\x8f\x4a\x00\x5a\x42\xee\x40\x2b\x0b\x0e\xd6\xe8\xbd\x2a\x5d\xac\xb0\x3a\x8d\x72\xc3\x0a\x6f\x68\x5e\x72\xb9\xa5\x07\x4e\x4f\x66\x3e\x80\x6c\xdb\x6d\x62\x80\x0a\xf3\x37\xde\x03\x68\x93\xc4\xc8\x40\x3e\x18\x48\x6b\x4b\xbb\xcc\x73\x32\xc3\x82\x30\xd5\x67\x77\x7a\x14\xe6\x8d\x3c\x12\xc3\x45\x01\xb9\x32\x03\x50\x8c\x78\x84\xb0\x7d\x0b\x88\x5e\x17\x86\x27\x07\xe6\x21\x50\x4d\xf7\x88\x4c\xf0\xbd\x79\xc6\x00\x45\x58\xa0\x24\x3d\x55\x3a\xca\xd5\x78\x2d\x40\x46\x13\x0a\x38\x0d\x31\x91\xf6\x42\xa2\xca\x02\x71\x64\xe2\x77\x4a\x1c\xb0\x36\xbc\x96\xf1\xaf\x2a\x86\xed\x0c\x05\xcc\x19\xe8\x64\x9f\x79\x7d\x2c\xc1\x61\x35\xca\xfa\x86\xaa\x04\xac\x33\x8d\x33\xc7\x17\xfc\x69\x56\x88\x0b\x3a\xa6\xcc\xab\x86\x65\xa7\x37\xc5\x33\x30\xef\x9a\x33\xc8\x47\xd9\x9d\xf6\x60\x73\x1c\xce\x60\xc4\xff\xf7\xbf\xff\xe7\x8c\xd6\x79\x3f\xe4\xc0\x52\xa0\x0d\x2b\xb9\xde\xb2\xf8\x2b\xef\x41\xaf\xd4\x40\x7a\x78\x3a\xad\x2c\xe4\x6d\xe4\xdf\xda\xcb\x4d\x6f\x1a\xae\x26\xc6\xdd\x5b\xdc\xee\xe0\x1b\x11\xe9\x92\xb3\x61\xae\x98\xd7\xa5\x25\x95\x90\x9b\xa0\x47\x62\x4e\x72\x66\x20\xf0\x2b\xcd\x2f\x98\x69\xfa\x2c\x7f\x45\x1a\x10\x19\x83\xdb\x6b\xbe\xc8\xa9\xd3\x90\x30\xcb\x78\x7f\x1e\x29\x91\xbb\xc3\xbd\x58\x68\x57\x17\xc5\xc4\xb0\xea\xf6\x4b\x37\x6d\x89\x73\x7b\x00\x96\xdb\xc4\x8c\x4e\xb0\xdc\x5f\x68\x4e\x65\x3d\x2f\x63\x4d\xf7\x85\x87\x55\x41\x3a\x66\x90\x26\x45\x56\x2f\x48\x2a\x89\x30\x9c\x2e\xc3\x10\xb3\x3b\xc1\x87\xe7\x84\x08\xd1\x15\xbe\x46\x32\xc5\x74\xad\x6c\x06\xfd\x7c\x35\x78\x68\xc1\xd9\x80\xc7\x44\x0c\xe2\x54\x2d\x1c\x8b\x65\x19\x06\xfa\xa5\xcb\x54\xcd\x57\xb7\x2f\x13\xbc\x58\xcf\x68\x19\x60\xab\x7e\xbe\xa6\xd9\xd5\x12\xb3\x17\xe2\x53\x94\x9a\x6b\xe0\x50\x49\x09\x0e\xd5\x46\xbc\x16\x4c\x24\x70\x03\x33\x05\x38\x84\xb9\x26\x65\xaf\x68\x03\xda\x0e\x23\x47\xc3\x34\x37\x29\x65\x65\x30\xe2\xb3\x3e\xfb\x68\xea\xc8\x80\x96\x67\x06\x10\x41\xba\x11\xf9\x32\xe3\x92\x14\xf2\xdf\x2a\x4a\x5b\xd8\xc4\x57\x3b\x8c\x6a\x61\x3d\x7f\x69\x7b\x59\xfd\xd5\x81\x6d\x17\x17\x7c\x71\xca\xd5\x3b\x70\x2b\x71\x30\xa2\x33\xaa\xf7\xce\xa0\xf2\xa4\xed\xaf\xbc\x72\x1e\xd3\x05\xe0\x61\x2a\x99\x9f\xa0\x6c\x7a\xa5\x0d\x91\x90\x67\x02\xe6\x74\x18\xa3\x5f\xc0\xa4\x68\xd7\xab\x61\x27\xab\x0e\x50\x9e\x7c\x0a\x6c\x01\xc5\xe5\x11\x14\x53\xf4\xaa\xf6\x62\x31\xf9\x68\xeb\x3c\xb9\xaa\xc0\x94\x35\xc4\xf3\x8e\x5f\xc8\x65\x4e\x14\x22\x5f\x14\xb1\xa5\x5e\x1f\x5c\x26\xe3\x62\xf2\x03\xaa\x4e\xc6\xaa\x97\x1d\xf7\x5e\x74\xbb\xe3\x12\xdf\x5d\xaa\x66\xec\xae\x7c\x9b\xba\x38\xc1\x2c\xb6\xf9\xb8\x56\xc9\xd0\xc2\x16\xcc\xce\x18\xdd\xb2\x4c\x05\x9b\x55\xea\x21\xe0\x9b\x36\x0d\x54\x3f\x5c\x64\x4e\x61\xd4\x2a\x0b\x84\x57\x70\xa1\x25\xf7\x94\x29\x9a\xe8\xcd\x61\xc7\x20\xd1\x08\x22\xe3\x2c\xba\x23\x44\xb6\xd7\x01\x08\x52\x29\x29\x1b\x0f\x2c\x25\x5d\x6a\x69\xb3\x8b\xa1\xb8\xa7\x3e\x9b\xa6\xcc\x97\xdf\xbb\x86\x96\x1b\xd5\xcd\xb6\x06\x70\x37\x97\xd4\x0a\x1a\x07\xe3\x6e\x32\x16\x95\xcf\xe5\xc2\x0e\x68\x6c\x48\x41\x4d\x45\x71\x98\xe8\x3a\x76\x77\x90\xe9\x16\xc1\x2f\xf2\x2b\x44\xda\x44\x55\x93\x7e\x06\x91\xfa\xaa\x26\x13\x57\xd6\x66\xe0\xf6\x58\x26\xa2\xd9\x7a\x66\x19\xce\x40\x29\x99\x17\xbb\xee\x6c\x3a\x02\x4e\x92\x21\x8e\x9e\x32\x2d\x2c\xb3\x45\x70\xe1\xea\x41\x68\xb9\x12\x0a\xde\x99\xcd\xa5\x07\x1a\x81\x74\xe3\x7b\x0b\x0d\xfc\x91\x1d\x76\xde\xb9\xa1\x9a\xc5\x95\x33\x78\x57\x66\xf4\x26\xb7\x21\x26\xb3\x84\xcf\xa7\x35\xf7\x59\x39\x81\x71\x9b\x48\x9d\xba\xfc\xc9\x9d\x5e\x65\x25\xa6\xb7\xf6\x65\xb6\x90\x0d\xb5\x03\x30\xae\x35\xb8\xe4\xa7\x84\x0f\xc1\xa4\x6a\xcd\x0f\x2e\xc3\xc7\x4b\xf5\x28\x9f\xe7\x75\xf3\x8e\xca\x27\x92\xca\x59\xa2\x95\x99\xfa\x1e\x4c\xce\xc9\x7e\xd7\xcd\x20\x24\xac\xb6\x0e\x36\x8f\xd6\xae\x7c\x7d\x1f\xb0\xcf\x57\x4e\x12\x30\xcf\x1a\xfe\x55\xb2\xb2\x99\x54\xc3\x33\xe3\xa4\x56\xbc\xcf\x14\x1e\xbb\xc5\xb5\xc2\x25\x7f\x61\x44\xc8\x09\x9d\x15\x0a\x61\x6e\x1d\x1e\x6e\x77\xb4\xfd\x8f\x09\x86\xae\x6c\xb3\x85\xa9\x5b\x0f\x7c\x76\x6a\xd0\x59\xf4\xee\x94\x33\x1c\xe5\x36\xd9\x28\xc1\x52\xd2\xd1\xdc\x03\x55\xc9\xe2\x7c\x21\x75\xad\x68\xc4\xf0\x2a\xdf\x55\xb1\x39\x43\x9d\xdd\xa0\x0a\x6c\x9f\x51\xf9\x58\x3c\xfc\x34\xf6\x41\xf7\xf4\x6d\xb6\x08\xbd\xe3\xe4\x04\x4b\xf5\x5a\xf0\x60\x03\x9f\xb0\x19\x0a\x40\x53\xbc\xa6\x3d\xef\xa4\x8a\x34\xcc\x85\x8d\x94\xa3\x85\x65\x72\xb4\xa5\x99\xd5\xe1\x32\xa4\x15\x1f\xbe\x48\x15\x72\x58\x61\xe7\x69\x9d\xd1\x99\xc4\xf5\xb9\xcc\x50\x5a\x00\xcc\x22\x7f\xf9\x04\xc9\xad\x40\xd9\x9a\x6c\xca\x4b\x92\x90\x9d\x04\x9b\x6f\xb0\x43\xcb\x91\x1c\xde\xde\x5c\xba\x2f\xf3\xb2\x14\xab\xed\x2a\x1b\xc4\xc0\xd7\x60\x24\x55\x0f\xfd\x17\x33\x50\x1b\x06\x5f\xb5\x8a\x60\x13\x05\x2a\xaf\x1e\x6d\x9b\x76\xb9\x17\x5a\x62\x86\x6f\xf7\x7b\x3e\xc7\xc2\xa6\xce\x67\x9c\xc9\x89\x6d\xdc\xe7\xaf\x1c\xaa\xbe\x30\xae\x4f\xa4\x49\x58\xcd\xca\xd3\xb7\x11\xef\x5d\xbc\xa1\x9a\xed\x0b\xeb\xb8\x56\x1c\x8d\x09\x20\xf1\x50\x16\xd3\x67\x1a\xa7\x38\x39\xaa\x3d\xb1\xb3\x44\x9b\x1d\x51\xbf\x9a\xc3\x34\xb2\xf4\xe4\xf1\xa0\x44\x49\x77\x1f\x2d\x60\x7e\xda\xc5\x69\xe1\x12\xb4\xe3\x58\x1a\x85\xe1\xcd\x4b\x6c\x5b\x43\x63\xd8\x91\x59\x80\x88\x20\x4a\x16\x2e\xd9\x7c\xec\xbb\x97\x26\x0d\x8d\x63\xfb\x46\x06\x07\x51\x80\x61\xc3\x05\x34\x4b\xb3\x46\xaf\xcf\x75\xcb\x47\xeb\xad\xcb\x9d\xeb\x9f\xb1\xf2\xa8\xf2\xd3\x15\x84\xe1\x36\x9c\xd3\xe6\xf2\xb0\x03\xa0\x6d\xa1\xf0\x53\x77\x0c\xdb\x79\xff\xb6\x40\x38\x5e\x10\x09\x76\x27\x22\x1f\xd1\x36\x69\x85\xa4\xbc\xb0\x14\x87\x92\x97\x4f\x1d\xb6\x57\x8e\x94\xd5\xde\x25\x6a\xc7\x49\xbe\xb3\xee\xc7\xfd\x5d\xf0\xab\xf7\xcb\x4e\xf6\x07\xc0\xdc\x62\xc8\xc7\x4f\x6d\xb9\x1f\x38\xbc\x5e\x0c\xe7\x82\xcf\x6b\x45\x74\xac\x1d\x5e\xa3\xb8\xd8\x05\x72\xee\x63\x79\x6d\xf2\x65\xe3\xc5\xdd\xe7\x56\x5b\x77\x2c\xbb\xd0\xd1\xf6\xec\x3d\xb4\xbb\xd1\x7b\x21\x04\xa9\x37\xbb\x45\x2b\x20\x9d\xdc\x92\xed\xf2\x90\x55\xd5\x68\xdc\x1e\x3e\xc2\xe5\x96\x0e\x66\x82\x8c\xe8\x97\x8d\x54\x81\x5b\x78\xd5\xaa\xd7\x9a\xcc\xa5\xaa\x8f\xe0\x16\x84\x2a\x91\x5e\x20\xad\xa5\xb4\xad\x0c\xd7\x67\x79\x46\xae\x4d\xc7\xd5\xc2\x30\x17\x85\xaf\x36\x85\x3e\xdd\x7d\x85\x4a\xb3\xae\x13\xa5\x66\xf2\xfc\xc3\x87\x31\x55\x93\x74\x78\x16\xf1\xa9\xc9\xff\xe0\x62\x6c\x3e\x7c\xa0\x52\xa6\x44\x7e\xf8\xcb\x9f\xff\x9c\x2f\xf1\x10\x47\x4f\x63\x03\xe7\xb4\xe8\xef\x2c\x2e\x39\xc1\x72\xbb\x88\x32\x97\x3a\xb9\xe7\x14\x7a\xaf\x1b\x97\xb4\xac\xdf\x91\x0a\x4f\x67\x7e\x08\xb2\xa9\xf1\x28\x15\xce\x2b\xcb\x40\x3e\xac\x9e\x26\x9a\xe0\xd9\x8c\xb0\x7a\xb3\x8b\x49\x70\xde\x82\xf5\xb8\x14\x69\x3b\x42\xf2\x65\x96\x60\x56\x84\xfd\x80\x32\x69\x82\x44\x84\x29\x0b\x49\x91\xd7\xa6\x87\xdd\x68\xa0\xa7\x0c\xff\x5f\x2f\x05\x16\xe6\x48\x65\x5e\xff\xd0\x0d\xc7\xd6\x22\x76\x15\x6a\xb1\x47\xba\x72\xfd\xe7\x9c\x76\xc4\x51\x6d\x59\x72\xec\xbd\xad\xf5\xb6\xcd\x0e\x8a\x04\x67\x03\xf2\x45\x33\x39\xb9\x29\x50\xdc\xa3\x24\x12\x75\x7e\xb9\x47\x72\xce\x14\xfe\x72\x8e\x3e\x53\x06\x02\xec\x0f\x3c\x15\x12\x5d\xe2\xf9\x29\x1f\x9d\x4e\x39\x53\x13\xf4\x19\xfe\xdf\x7e\xf5\x42\xc8\x13\xfa\x95\x60\x61\xf9\x83\xad\x1f\xe9\x4a\xd8\xc1\x16\x12\x29\x93\x88\x3c\xeb\x13\xfa\xe7\xff\x85\xa6\xa6\xe5\x73\xf4\xdd\x87\x3f\xff\x2f\xf4\x47\xf8\xdf\xff\x83\xfe\x58\x63\x69\x58\x0f\x6a\x0e\xca\x8c\xdf\xd5\x86\x11\x00\xa5\xe4\x22\xc9\x57\x35\x7b\x21\x78\xbe\x52\x95\x2d\x3f\xd1\xe8\x89\x8f\x46\x03\xbd\x31\x4c\x02\xe9\x00\x6f\x65\x76\xf0\x51\x83\xa9\x2d\x14\x6f\xca\x4e\xe6\x05\x9f\x6c\xa7\x06\x69\xc4\xb1\x6b\x99\xe6\xe6\x09\x08\x5e\x2b\x94\x1e\xa7\x12\xde\x22\xb1\xe6\xaa\xeb\x9c\x0e\x67\x5d\x74\xa0\x03\xce\x82\xe4\x23\xf3\x38\x81\xb8\x10\x70\xea\x47\x4f\x9b\x00\x33\x4b\xc8\xca\xe3\xb0\x10\xd6\xfd\x66\x62\x75\x61\x6a\xaf\x15\xa7\x2b\x17\x3a\x5f\x1d\xa2\x7b\xcf\xc5\x56\xfa\xd6\x13\xa9\x4d\xa1\x59\x51\xdc\xcc\x15\xdc\xc6\xbe\x51\x43\x71\x24\xb9\xc8\xd0\xbb\x8d\x5d\xc4\x96\x40\x5d\x6d\x45\xa5\xc2\x04\x35\x36\x3b\xf4\x7a\xea\x97\xd9\x2b\xab\x86\x09\x11\x8e\xee\xe9\xbc\xb8\x23\x8c\x56\x8b\x48\x9a\x25\x56\x8c\xb8\x02\x64\x73\xd5\x82\xde\x67\xb8\x2a\xd0\x38\x84\xdb\x42\xde\x10\x73\x92\xad\x05\xae\xa8\x5e\xcf\x54\x44\xe4\x82\x6f\x17\x6e\x9d\x50\xb6\x90\xa7\x51\x1b\xdc\x56\x2f\x93\x5f\xd9\x0a\x71\x0e\x87\x9a\xc7\xb9\xb2\x60\xdc\x12\xb6\xf6\x8a\x07\x80\x5b\x9c\x0d\x00\x29\xee\x02\x63\x75\xa1\x22\xc8\x16\x5c\xdb\x18\xae\x73\x86\xe7\x0a\xca\x94\xea\xc8\x08\xac\x79\xe1\x92\x98\x49\x08\x27\xdb\x7a\x1c\x5e\x6d\xa4\x3c\x46\xad\x50\xa5\x18\x46\x02\xf9\x96\x1b\x62\xe4\x9a\x32\x65\x27\x48\x60\x08\x06\x56\x13\xdd\x9e\x24\xe2\x74\x84\x23\xca\xc6\x27\x1e\x3c\x2a\x40\x95\xf8\xd7\x41\xd5\x26\x7d\xc0\xf2\x69\xb7\x01\xae\x5b\x57\x9b\xa5\x71\x5e\xf1\xd0\x02\x1a\x19\xc7\x0a\x5d\xc0\x86\x54\x58\x3e\xd5\x21\x7a\x2d\xc0\x09\x2e\x19\x5d\x46\x0a\x07\x42\xb8\x6c\x7c\x0e\xfa\x80\xf8\xfa\x14\x54\x2a\x71\xf5\xcf\x2d\xb8\xa8\xcb\x34\xc5\x19\xfa\x4f\x19\x55\x77\xc9\xf8\xe5\x84\x0b\x35\xd8\x10\x8f\xb8\xec\x52\x61\xe4\x34\x01\x20\x21\xfe\x4c\xc4\x33\x25\x2f\x45\x58\xdf\x75\xf6\xa2\x31\x9a\x79\xf1\x94\x80\xfb\x3a\x9d\x71\x48\xdd\x1a\xa1\x29\x66\x73\xc3\x28\x35\x73\xc1\xf2\x49\x66\x55\x97\x91\x9c\xe2\x24\x39\x41\x82\xa4\xd2\x54\x23\x97\x24\x19\x9d\xba\x02\x30\x31\x4a\xf8\x98\x46\x38\x41\xc3\x84\x47\x4f\xd2\x64\x56\xb2\xb1\x61\x52\x33\xc1\x23\x22\xa5\x27\x59\xe5\x28\x0a\x36\xb7\x15\x4a\x2e\x2b\x22\xa6\x94\x51\xa9\x68\xe4\x44\xa6\x1c\x0c\xc5\x14\xfe\x8f\x30\x98\x84\x21\x53\x18\x86\xab\x25\x3d\x62\x40\x61\x53\x66\x4b\x85\xc1\x75\x6d\xb1\x1e\x5d\x72\x42\xdd\x01\xda\x01\x74\xa5\xdb\x21\x03\x55\x3c\x90\x2b\x8e\xd4\x85\x7d\x0d\x8e\xf1\xb2\x2d\x70\x57\x3c\x51\xd9\x86\xcc\x4e\x5a\x01\x4e\x0b\x72\x19\xb2\xd4\x8b\x82\xe4\x92\x65\x24\xb4\x0c\x49\x0f\x86\x5c\x83\x9f\xb7\x6a\x4f\x6b\x2a\x82\xc8\x03\xd5\xe9\xca\x5e\x7b\xca\xa2\x24\x8d\xb3\xb2\xaa\x5a\x04\x78\xd6\x9b\xc4\x91\x47\xd3\x5e\x0b\x0a\x27\x08\x4b\xf4\x42\x92\x44\xff\xd7\x64\x5e\x9c\x66\xe5\x42\x34\x4b\x36\x25\x5d\xa0\x13\xc7\xa5\xeb\x76\x54\xeb\x50\x51\x6f\xb1\x9a\x18\xac\x89\x29\x57\xa6\xa2\xad\x41\x45\x75\xf6\x2d\x03\xa3\x39\x4c\xf8\x10\x4e\x3a\x00\xa6\xba\xfc\x6a\x2f\x9d\x33\x8d\x22\x42\x62\x12\x9b\xfa\x9c\x19\x98\xa7\x3d\xa2\xdf\x56\xc3\x77\x16\x28\xd2\x02\xb0\xd4\xb2\x61\xad\x16\x32\xb5\x58\xdd\xf0\x0c\xdd\x96\x00\x81\x3c\xca\x8c\x70\x19\x1e\xee\x64\x61\x09\x5f\x07\x60\xb5\x34\x89\xfd\xad\xd0\x9a\x00\xab\x85\x3e\x77\x00\xb0\x5a\x9a\x67\x4d\xce\x08\x1f\xef\x35\xd7\x5d\x4f\xea\x8a\x37\x4f\x40\x34\xc0\x74\xe6\xee\x2c\x6c\x41\x77\x20\xe7\x55\x1b\xb1\x5d\xe0\xb1\xa5\x1a\xa0\xaf\x0b\x1e\x5b\x1a\x4c\x9b\xc1\x63\x4b\x43\x6d\x2f\x78\x6c\xc5\x40\x1b\x80\xc7\x1a\xe7\xfe\x40\x6f\xea\x66\x4c\x01\x12\xaa\x86\xe9\xe8\x1e\x20\x06\x96\x8e\xf1\xc2\x04\x0e\x98\x6b\xcc\xdd\xd1\x36\xbe\x08\x46\x6b\x73\x6f\xeb\xc2\xb1\x4a\x4e\x88\x75\xf7\x5e\xe6\x7d\x33\xa0\x23\xeb\x9a\xdd\x4f\x7c\x6b\x37\xd8\x21\x23\x3c\xb3\x58\x06\x75\x25\x8e\xda\x93\xb5\xbd\x19\x2e\x2f\x60\x5f\x16\x58\x7e\x23\xe4\xba\xcf\xa5\x6a\x21\x13\xfe\x62\x2b\x76\xc1\x36\x34\x9b\xb2\x76\x0b\x42\xa7\x03\xab\xb4\xd5\x51\x8e\x32\x45\xc6\x65\x9d\x36\x3f\x34\x94\xa9\xbf\xfe\x65\x25\x27\x32\xd0\x9e\x4e\x3d\xf4\x6a\x76\x64\xce\x0e\xfb\x1b\x89\x51\x34\xd1\x5a\x91\xd4\xea\x8b\x9e\x8e\xb9\x59\x25\x9a\x62\xea\x14\xa9\x54\x1a\xd7\x12\x95\x7d\x56\xc0\xc2\x3d\x43\x1f\xa1\x0c\x32\x9e\xce\xb4\xfe\x95\xcd\x8f\xea\x9d\xd4\x4f\xbf\xfb\xee\xaf\x04\x7d\x87\xa6\x04\xb3\x82\x0e\x0b\x6a\x93\xbe\xfa\x00\x3b\x52\x4d\x48\x9f\x55\x2e\x05\xea\x7e\x31\xb5\xcd\x5c\xbc\x61\x8f\x8d\xb8\xd3\x89\xa1\xbc\x27\x8e\x26\x48\xa6\x43\x53\x9f\xda\xb3\x61\x38\x41\xfa\x8a\x8f\xc1\x51\x0d\x37\xb2\x1b\xf4\xb2\x53\xb8\xdf\x18\x00\xeb\x6e\x6c\x7a\x1b\x77\xe0\x1e\x39\x95\xa4\x80\x29\x56\xe1\x34\x33\x9c\xcf\x3f\xf8\xd2\xe0\x0d\x9d\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x89\xc1\x4b\x96\x26\x58\xd8\xa3\xdf\x67\x5a\xd1\x10\xe4\x99\xf2\x54\x26\x73\x14\x73\x46\x4e\x60\x27\xa4\xd1\xc4\x38\x56\xb5\xce\x82\x6d\xa1\x94\x67\x2a\x53\xad\xd0\x42\x5b\xae\x2e\x8b\x54\xd8\x60\xa1\x4d\x28\xf4\xa3\xd5\x6f\x02\x6f\x29\x2f\x3f\x12\x35\xd3\xa2\x7c\xb8\xe2\x12\xcf\x6f\x08\x57\x5c\xd8\x55\x01\xae\x38\x83\x2b\x5e\xa4\x4b\x1b\xe1\x8a\x4b\x6b\xde\x0c\xae\xb8\x6a\xc9\x37\x80\x2b\x2e\x34\xf3\x66\xe0\x8a\x4b\x14\x7d\x33\x70\xc5\xa5\x79\x05\xb8\xe2\xb7\x07\x57\xbc\x25\x20\x6f\x35\x2f\x36\xb8\x5e\x8a\xb2\xf9\xda\x9b\xec\xbd\x44\xbd\x1b\xbd\xc1\xa2\xa7\x62\x50\x5b\x76\x5d\x6d\x0f\x02\x5c\xcd\x84\xd6\x03\x01\xae\x54\xd5\xeb\x59\xdd\xb6\xc0\x62\xa0\x18\x1c\x18\x04\xb8\x30\x81\x10\x5f\xb9\x7e\x7c\x65\xe5\xe6\xb3\x7d\xeb\xe1\xb9\xa0\xcb\xf2\x85\xdc\x10\x06\xb8\xb0\x3e\x8d\x22\x31\x41\x74\xdf\xc1\x4e\xdc\xaf\x34\xff\x50\x38\xe4\x2b\x65\x79\x9f\x8a\xd2\x02\x92\x6b\x09\xcf\xa1\x14\x1a\x25\xdc\xf7\xff\x87\x9d\xbb\x41\x64\x70\x89\xbc\x99\x5f\xc5\xec\xc5\x06\x5b\xb5\xf1\x0e\x75\x5a\xe9\x6e\x12\x85\x5d\xf2\xe6\x9a\x2e\x66\x37\x88\xfb\x19\x89\x6a\x6c\xcc\x74\x4a\x77\xd5\xec\xaa\x8b\x2c\xc3\x60\x03\x85\x7c\x21\x2f\x55\x5f\x4f\x66\x38\x46\xc6\x2f\xa5\x03\x03\x4a\x8a\x79\x73\x4c\xa5\x12\xb5\xb1\x4d\x0b\x23\xdc\xc6\x55\x3a\x4b\x1b\x07\xc4\x78\x54\x1d\x6f\xf6\xda\x94\x4c\xb9\x58\x15\x58\x55\xf9\xa6\x2d\xb1\xb4\xc9\xab\x64\x36\x21\x53\x2d\xc9\x0c\xd6\x6d\xa4\xe9\x7a\x67\x49\xcb\x36\x77\xcd\x04\x3a\x16\x36\x81\xe7\x08\xd5\xcf\xc6\x06\x09\xb5\xf1\x72\x6f\xbb\xcc\x16\xab\x75\x4d\x87\x90\x03\xf1\x5e\x6e\x70\xb3\x0f\x15\xdc\xdd\xb0\xbf\x2b\x63\x3a\xb2\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x9d\xe5\x6f\xd9\x02\xe4\x6b\xb8\xf2\x8b\xde\x79\xcd\x09\xfd\xea\xd3\xeb\x07\x78\xd4\xa0\xf5\x2e\x92\x07\x22\x73\x24\x11\xa7\xbe\x66\x50\x18\xcc\x22\xbd\x0a\xbb\xc4\x69\x94\x5b\x6c\x92\x54\xd4\x46\x99\x36\x31\x68\x47\x2a\xc5\x09\x68\x12\x7e\xd5\xd4\xf2\xa2\x0e\xe7\x15\x69\x8f\xcd\x3c\x26\x94\xa9\xff\xfc\xdb\x5a\xab\xa9\x55\x2b\x4b\x37\xa8\xf4\x86\xa3\x88\x48\x63\x63\xb7\x51\xc8\x78\xc8\x9f\xa1\xc8\xdb\x36\xab\xaa\x8f\xb2\x9e\xb7\x66\xf0\x19\x04\x76\x9c\x6f\x75\x23\x2e\x4c\x04\x4f\xc7\x13\x67\x43\xd2\x67\x46\x4f\xad\x6a\x2d\x7f\x5e\xb0\x91\xaf\xbd\x96\xdf\xa7\x34\xd9\xcc\x42\x77\x5f\x28\x7f\xf7\xa9\xf7\x80\xe4\x24\x3b\xad\x43\x68\xb6\x72\x61\x17\x07\xdd\xbc\x4f\xfb\x6e\xe6\xaf\x81\x6e\x4e\x1c\xec\xeb\x88\x27\x09\x78\x1a\x24\x99\x3e\x13\x51\xdd\x3d\x4c\xf8\x81\xae\x87\xd8\x98\x0d\x00\xde\xce\x13\x23\x1a\xc9\x5f\xb7\x46\x34\x94\xc8\x8d\xbe\x1c\xb4\x60\x42\xd5\x38\x23\xac\xca\xc6\xf6\xcb\x62\xe5\xa1\x23\x0b\x18\x74\xd1\x63\x3b\x0b\x1a\x74\x24\x39\x70\xe0\xe0\x8a\x79\xb4\x35\x78\xb0\xc4\xec\xb2\x58\xbe\xfc\x9a\x71\x81\x43\x46\xf1\xe9\x68\x12\xf7\x59\xa7\x90\x4f\xe1\x2a\xb4\x0f\xe7\x79\x40\xb6\xd1\x21\x7c\x66\x06\xf5\x5d\xac\x61\x05\xdc\x68\xfa\x13\x68\x3a\x06\x34\xd9\x84\x14\xba\xb0\x41\x88\x26\x27\xf1\x29\x8e\xe6\x51\x42\x23\x4f\x67\x1e\x0b\x3c\x9b\x54\x71\x3c\xb7\xf2\x01\x75\xe8\xb5\x50\x87\xea\x0a\xa1\xad\x13\xb7\xed\xf6\x15\xc3\x53\x12\xd0\x90\xda\x88\x86\x74\x92\xe1\x6d\xb0\xbc\xa4\xdc\x2b\xc2\x38\x2c\x9e\xfb\x00\x89\xf4\x0a\x90\x48\x9b\x1c\xfe\x1c\xef\xa8\x70\xec\x03\x4c\x53\x13\xe2\xbd\x3e\x4c\x53\x26\x04\xb4\x0a\x79\xa7\x9e\x1f\xbc\x32\xa2\xcb\xe2\xc0\x5e\x13\x96\xa9\x42\x5c\x5a\x47\x6e\x5c\x86\xcb\xb4\x6c\x5f\x34\xa2\xcb\xeb\xa2\x24\xad\x47\x99\xb5\x00\x90\x2a\xef\xce\x96\xc0\x21\xd5\x2f\x43\x4b\xce\xcd\x2e\xb3\x7a\xd6\xab\xd9\xeb\x67\xf6\xac\xa3\x60\xae\x97\xe4\x93\xed\x87\xe3\x4a\xf4\xc9\x8b\x1b\x6e\x96\xec\xd3\x71\x3e\x78\x22\xd0\x84\x27\xb1\x03\xe1\xc8\xa8\x95\x75\x90\x65\x42\x64\x04\x72\x8b\x71\x3f\x23\x91\xd1\x36\xf3\x42\x7c\xcb\x52\x7a\xb2\x45\x84\xe1\xee\x80\xd1\xec\xc2\x8a\x92\x71\x92\x4d\xec\x27\x2b\xa5\x0b\x59\x34\xff\x2f\x19\x63\x81\x42\xe0\x35\xa8\x1e\xe6\x4a\xbb\xf7\x8a\xc1\x2d\x13\x3d\x3c\xe3\xa8\xa8\x2a\xb1\x6b\xf6\x19\xfc\xfa\x4c\x9d\x21\x06\xfb\x3d\x2e\xf5\x52\xba\xd9\x35\xf2\x54\x96\x37\xcb\x06\xc1\x70\x0b\x15\x13\xb7\x07\x47\x9a\xe2\x2f\x83\x19\x16\x38\x49\x48\x42\xe5\x74\x6f\xc1\xd0\x17\x45\x77\xb5\x3e\xab\x82\x1b\x13\x19\x4b\xa7\x43\xb3\x15\xdd\x40\x6c\x91\x4d\xc5\x91\x48\x99\x0f\xed\x96\x2d\x4c\x56\xc4\x33\x85\x7b\x01\xac\x6a\xd1\x04\xaa\x25\x8f\x30\x15\x8c\xc8\xda\xda\xb4\x24\x4a\x05\x55\xf3\x81\x2d\xf5\xdb\xfc\xc0\xdd\xdb\x37\x2f\xec\x8b\xcb\x3d\xfc\x0e\xd5\xc0\xf5\x97\x95\x16\x9e\x11\x01\xe5\xb9\x5c\xa1\x29\xaf\x9c\xb1\x45\xad\x20\x59\x8d\x2f\x08\xff\x5e\xb8\xb6\xeb\x02\xa7\xf1\xcb\xc0\xcb\x28\x1b\x44\xe5\xcd\xb1\xea\xb0\x56\xe1\x6e\x2d\x9b\xe4\x9e\x91\xa7\x6a\xbc\xe8\x7b\xa8\xee\x63\xd3\x46\x4c\xd3\x7a\xc0\x9e\x2b\x1c\xec\xb5\xf9\xc2\x78\x29\xff\x15\xc5\x6e\xbc\x71\x5a\xac\xa3\xaa\xe0\xab\x25\x83\xed\x78\x6f\x35\x18\xb1\xd7\xc9\x8e\x86\xad\x0f\xba\x10\xe9\x4c\xd1\xe1\x22\xb4\x8f\xe3\x06\x3b\x28\xdd\xdb\x49\x20\xcd\xdc\xb9\x59\x0a\xdd\x9a\x7a\xbe\x05\x4e\x6c\x67\xa7\xe5\x7f\x8b\xa3\xe6\x10\x92\x0c\xc2\x94\x9f\xc7\x78\x33\xa5\x4a\xb9\x44\x09\x63\x80\xd7\xbb\xb3\x68\x9b\x7e\xef\xc2\x5d\x30\x54\x58\x36\x26\xaa\xb3\x3e\xeb\x48\xf4\x42\x10\x23\x16\x42\xa3\xa2\x76\x72\x66\xd5\x87\x9a\x6b\x43\xa2\x7b\xca\x62\x73\xb4\xf0\x40\x95\xcc\xca\xfe\x99\x3e\x46\x38\x91\xe4\x44\x37\x0c\xd5\x82\x15\x87\xe0\x57\x8c\x5e\x04\x9e\xcd\x88\xe8\x33\x9b\xc5\x02\x0e\x27\xce\x13\xd3\x7e\x5d\x88\xaf\xa5\x01\x19\x44\x38\x9a\x1c\x68\x8d\x30\x24\x23\x45\x13\x12\xbb\x7c\xe9\xe2\xf2\xb8\x79\x1b\x83\xfd\x1a\x8b\xd5\x1b\xb9\xb2\x75\x27\xb6\x93\x24\xd2\x1c\x25\x2b\xef\x3e\x23\x42\x8f\x5a\xef\xe1\x67\xc2\x10\x1d\xb9\x71\xd8\xd8\x25\xf4\x02\x9e\x39\xbd\xf5\x9f\x31\x4d\x0c\x00\x81\xeb\xda\x09\x81\xc6\xfd\xd0\x67\xc6\xdd\xcf\xa2\x42\x86\x2e\x65\x54\x4e\x34\xa7\x4e\xc1\x27\x0b\x6a\x46\x5d\xe2\x10\x7b\x5e\xe7\x34\x77\xf5\xe3\xcb\x39\xe8\x33\x15\x9c\x4d\x21\x49\xc8\xe2\x52\x39\xf2\x49\xa2\xb2\xe3\x51\x99\xe2\xb9\x52\x22\x8e\x63\x59\x34\xbe\x1a\xb5\x92\xfe\xb3\x60\x76\x39\x2d\x64\x45\x46\x1e\xac\x12\x04\xb1\xba\x8a\x7e\xcb\xe4\xdf\x90\xda\xb1\x98\xda\x51\x4d\x9b\x36\xa6\x77\x64\x87\x78\xdd\x14\x8f\xba\xe5\xdf\x85\x64\xbb\xc3\x54\x8f\x57\xce\x89\xd8\x4f\x3a\xc4\xeb\xe6\xaf\xec\x23\x75\x25\x24\x78\xbc\x62\x82\x47\x63\x4b\x6d\x31\x36\xbd\xfe\xd8\xae\x95\x1c\xb1\x02\xcc\xaa\xaa\x97\xcf\x44\x09\x1a\xc9\x5d\xf0\x07\x39\xc3\x0d\xa3\xfa\x40\x0b\x9c\xad\x90\x9a\xf4\x03\x99\x13\x14\xe2\xe4\xb2\x0a\x97\x43\x41\xf0\x53\xcc\x5f\x16\x6c\x75\xd2\x47\x13\xf9\xcc\xb5\xd8\x23\x48\x44\x25\x29\x44\xf2\x50\x89\x18\x91\xd6\xd8\x89\xfb\x6c\x42\x89\xc0\x22\x9a\x40\x76\x67\xbe\x30\x26\x4b\xd8\x00\x3a\x99\x58\x0e\xdf\xdb\xb5\xc6\xa2\x37\xa0\x7b\xd9\xc2\x94\xe1\xf3\xd9\x35\xd7\x23\x99\x9a\x57\x32\x61\xc6\x4a\x19\xbe\x49\xae\xd1\xf2\x6f\x9b\x88\x90\x11\x7b\xaf\xc9\x08\x59\x30\x95\xf7\x46\xc3\x84\x84\x7c\x37\x84\xa4\x84\x3d\x25\x25\x54\x90\x78\xbd\xc4\x84\x8d\x4c\x7e\x87\x8f\x99\x76\x3d\x1f\x22\x6e\x7a\x55\xd0\x5a\x3a\x1c\xec\xfd\xe8\x55\xce\xb9\xe9\x09\xfc\x25\xdb\x14\x46\x22\x16\x7a\x9f\x0d\x49\x1c\x03\xa7\x55\xdc\x56\x68\xcf\xf7\x8e\x33\x0f\xe8\xbb\x17\x4b\xbd\xd9\x71\xc2\xd9\x58\xd2\xd8\x80\xcd\xcc\x30\xd4\x2a\xf6\x8d\x17\x00\xae\x00\xeb\x9b\x24\x44\x38\xaf\x84\x40\xdf\x48\xca\x2c\x9a\x64\xf6\x5d\xcc\x89\x64\xef\x95\x31\x16\x60\x36\x47\x4f\x8c\xbf\x24\x24\x1e\xc3\x0a\x95\x07\x73\x8a\x28\x39\x41\x54\x65\xaf\x09\x40\x63\xe0\xa9\xea\xeb\xb1\x43\xac\x9d\xd1\x00\x88\x7d\x57\xd8\xea\x15\x1e\x07\x96\xdf\x9e\x21\xd4\x63\x68\x84\x23\x75\x82\x64\x3a\xcc\xdb\x8f\xb9\x29\x2e\xaf\xb5\x6f\x6f\xe2\x79\x23\x21\x66\xbe\xa2\xf3\xea\xb3\xe1\xb8\x83\xde\xae\x9d\x84\xe2\xad\x62\x0b\x9f\xf1\x36\x10\xab\x9f\x53\x69\x83\x30\x10\x67\xd9\xd1\xb7\xf0\x52\x19\x46\x36\xe0\x9d\x1a\xbc\x69\xc6\xe3\x5a\x5b\x67\x69\x2a\xeb\x8e\x25\x0f\x04\xb5\x82\x92\x75\x54\x41\xbb\x86\xdc\x5a\x6a\x92\x4a\x10\x3c\xb5\xce\x01\x7d\xd5\x80\x58\x63\xc2\x40\xf5\xe8\xa9\x30\x12\xe6\x3a\x4b\x7c\x45\xd9\x93\x5e\xdd\x1c\x15\x9c\x03\x5e\xb2\xee\xb9\x6a\xd1\x66\xfa\xc6\x23\x17\x9c\x19\x07\xe1\x56\x72\x27\x1d\x33\x9c\xac\x69\xe3\x58\xa0\xdc\xa2\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xd2\x7c\x7d\x79\x0f\xa3\x98\xcc\x08\x8b\x09\x8b\xe6\xb0\x45\x18\x20\x07\x09\x86\x13\x84\xe1\x3d\x9c\x9c\xa1\x4b\x93\x5f\x94\x49\x78\xf6\x5a\x87\x0b\x7d\x8a\x19\x1d\x69\x3d\x01\x8c\xb0\x76\x94\x7d\x66\x86\xe9\x7c\x20\x24\xb7\xae\x66\x14\xab\x5a\x19\x7d\x83\x5c\x6f\x89\xca\xcc\x8a\xef\xa3\xe5\x17\x0e\xf4\xb6\x6c\x75\x74\x73\xae\x06\x83\x4c\x87\xa7\xf0\x77\x21\xe1\xce\x01\x15\xe5\x28\x3a\x24\x21\x60\x0e\xb4\x1e\x2f\xb8\x18\xeb\x80\xf5\x76\xe1\xb7\x5b\x91\xc7\xe2\xf5\x51\x50\x6a\xa6\x94\xd1\x69\x3a\xf5\x9c\x77\xa6\x62\x43\x64\xed\x97\x26\x13\x65\xa6\xf5\x80\xc8\x81\xb7\x23\x7d\xb9\xb2\x39\x1a\xd3\x67\xc2\xfa\x6c\xc6\x29\x53\x67\xe8\x9a\x2b\xe2\x95\xc8\x30\xd0\x59\x7c\xa6\xe8\xd4\xa0\xbd\x0a\xa2\xcf\x81\x01\x05\x07\xa0\xcd\x09\x56\x27\x28\x4e\xe1\xa8\x32\xa2\x34\xeb\xd0\x37\xae\x82\x95\x81\xf8\x70\xd1\x67\xe6\xa6\x1b\x61\x9a\xa4\x82\x58\x99\x15\x9b\xbc\xa0\x7c\xc8\xf9\xc8\x2c\x12\x9c\x37\x89\x29\x1d\x4f\x94\x5e\x22\x2d\xe3\x59\x7f\xe3\x44\x73\x23\xde\x67\x43\x82\x30\x9a\x71\x49\x15\x7d\xce\xfc\x97\x74\x84\xb0\x94\x60\x41\x39\x43\x97\x05\xfb\x3f\x95\xa0\x7a\xd7\xc5\x15\x53\x36\xb0\xb6\xe7\xfa\x7c\xa4\xad\x17\xb2\xd0\x8b\xa5\x32\x1e\x4a\x9e\xa4\xca\x77\xc1\x56\xaf\x6d\x6e\x1a\x77\x85\x0b\xc0\x40\xcc\x47\x7d\xe6\xf6\xb5\x3c\x43\x1d\x89\x24\xd7\xab\x24\xcd\x52\x46\x82\x2a\x22\xa8\x41\xb1\x22\xca\x2c\x42\x76\x4e\xb3\x33\x30\xc5\xe2\x49\x8b\x50\xbe\x05\xde\x60\xaa\x16\xac\x1d\x43\x23\x21\x01\xac\x97\xbf\x1c\x60\xfa\x47\x8c\xb3\x53\x46\xc6\x78\xd5\x8a\xf4\x59\x61\x49\xd0\x37\x74\x94\x2b\xa4\x75\x3e\x47\x8f\x76\x03\x88\x7c\xaa\x5b\x25\xd3\x71\xdd\x22\x8d\x12\x8e\x57\xb8\x8d\x47\xf9\xa1\x47\xff\xe0\x43\x33\x46\xad\xf7\x73\x05\x52\xa0\x56\xaf\x46\x5c\x90\x09\x66\xf1\x89\x5b\xac\xe2\xd8\xe0\x66\xb4\xa6\x36\xa7\x8c\x81\x24\xe8\x40\x94\x89\xc1\xa2\xc2\xcc\x5b\x0b\xab\xb8\xd9\xa5\xc8\xd7\x61\xad\xbb\x22\x6b\x0d\x6a\xbf\x18\x03\x84\x61\x79\xf3\x99\x3d\xe2\x92\x4e\x67\x49\x9e\xd3\xe5\xd9\x46\x47\x5a\xc4\x72\x3c\x92\x3f\x83\xe9\xca\x69\x6d\x70\xab\xdb\x95\xd3\xfb\xac\x62\xe4\x19\x23\x85\x5b\xc3\xd9\xbc\x4c\x19\x50\x8f\x85\x7d\x23\x89\xfe\x53\x91\x5c\xed\x33\xc2\x7a\x9f\x39\x11\xe4\x5b\xe0\x32\xb6\x59\xcf\x78\xa6\x45\x68\x03\x73\x6b\xe9\x87\x22\xe3\xe4\x2e\x9c\x13\x7b\x18\xdc\xa3\x95\x17\x95\xa2\x5a\xcc\xfe\x9e\x02\x42\xd7\xe5\x96\xb0\xfb\x94\xc5\xa4\xb6\x98\x55\x23\xae\x51\x77\xb7\x18\x86\x3a\xd8\xb4\xfe\xc4\xc3\x84\x48\x82\xd4\x4b\x06\x14\xa7\xf5\x2a\x30\x59\x0a\x92\x90\x67\x9c\xdf\x71\x59\x5f\x96\x5d\x46\x58\xd6\x94\x87\x01\xb4\x35\x3d\xfe\xcd\x13\xa7\xb3\xf1\xdd\xe8\xa1\x3c\xe3\xc4\x26\xae\x58\x5f\xb9\xac\x5f\xb0\xde\xe5\x56\x31\xa4\xb6\x95\x2a\x7a\xd6\x8b\x18\xae\xef\x1f\xc9\xbc\x9a\x22\x2b\x40\x0c\x97\x65\xa3\x67\x64\x5f\xc3\x56\x7d\x9b\xbf\xb3\x48\xe3\x5a\xca\xfd\x58\x98\xf2\x2b\x24\x51\xdd\x2e\x54\xe0\x86\x8f\x32\x1d\x8d\xe8\x17\xd0\x6a\xdd\x4d\xe2\x34\x8f\x48\x70\xa9\xb9\x18\xc8\x2a\xc8\x2d\x9e\x71\x24\x6f\x93\x50\x55\xf9\xa6\xd6\xb2\xd6\xde\xd1\xb5\xd4\xfe\x29\x25\x62\x2b\x7a\x67\x5b\x75\x9d\x70\x44\xef\x94\x54\xeb\x88\xae\x51\x85\x1b\xc6\x24\xf9\xad\x3e\xe0\x1a\xd2\xad\x86\x3f\xaf\x7c\x6d\x68\x98\xef\xfa\x03\xf1\xb9\xf6\x52\x9b\x5a\x1e\x9f\x96\xc5\x26\xbb\xa2\x44\x9a\xbf\x9d\x58\x80\x75\x6c\x03\xa7\xb2\x54\x67\xec\x62\x46\x8c\x63\xc4\xd4\xac\x52\xb6\xd2\x82\xa7\xa9\xdb\xc6\x28\x1b\xf7\x99\xa3\xad\x3c\x41\x26\x4c\xbc\xc4\x50\x0b\xd8\xf6\xd8\x7b\x35\xdb\xd8\xcd\x4c\xaa\xc6\xaf\xce\x88\x94\xfa\x62\x94\x4a\x60\xca\xac\x0f\xc7\xd1\x47\xf6\x19\x3a\x2d\xc7\xa9\x9f\x80\x1d\xe1\xc4\x65\xbb\x9e\xe4\x03\x94\x7d\x66\x32\x4e\xd0\x5f\xd0\x37\x0a\x8f\xcd\x2d\x01\xe8\x95\x38\x01\xdc\x4b\xd0\x12\xac\x56\xee\x25\x07\x64\x27\x92\xc6\xdf\x9e\x2f\xeb\xd3\xd8\x10\xbe\x81\x66\xe0\x90\x6b\x1a\xe6\x04\xa2\xa3\xfc\x0f\x12\x7f\xbb\xac\xa5\xfc\xa5\x27\x32\x3f\x29\x13\xb9\xfe\xde\x78\xc0\x5b\x45\x68\xee\xeb\xe2\x80\x41\x37\x77\x52\xe2\x21\x49\x7e\xce\x27\x8a\x96\xb2\xa2\xef\x29\xc3\xdb\xf1\xa0\xca\xe1\x35\x8b\x40\x1f\xce\xeb\xea\xd6\x55\xb0\x9e\x8d\x11\x57\x3a\x46\x96\x25\x48\x77\x67\x25\x76\x57\xd5\x10\x43\xd4\xe3\x84\x24\x33\x14\xd3\x11\xb8\xde\x14\xec\x97\x0c\x3c\xd6\xd4\xfb\xd1\x0a\xcd\x34\x65\x06\x08\xd8\x44\x7d\xbc\xd8\x93\x6e\x59\x46\xde\xf8\x59\x9f\xf5\xd4\x7b\x89\xa4\x12\x9c\x8d\xb5\x32\x1d\x3f\x53\x99\x17\xb2\xd3\x07\x32\x9d\x12\x61\xbb\xa0\xd2\x48\xdd\xb6\x08\x14\x76\x17\x9b\x1e\x9b\xbe\xfa\x40\xf0\x71\xc5\x16\xf5\x97\x46\xaf\xd0\xa3\x94\x2e\x6a\xaa\x22\xec\xdd\x2e\x6e\x89\x77\x1e\xd8\x74\xf9\xb3\x6f\x9d\x44\xd3\xdc\x90\xe9\xf8\xe5\x87\xb2\x19\xd3\x52\x7d\x89\x09\x73\xed\x0b\xa1\xe9\x45\xe0\xaa\x26\xa4\x26\xcd\x49\xf7\xe3\x1c\x5b\x66\x70\x6b\xa9\x58\xa5\x09\xda\x51\x1b\xed\xc9\x37\x61\x12\x0a\xf6\x0f\xa9\xb0\xa2\x91\xbd\x05\xb8\xb0\x56\x5c\xab\x57\xd7\x2f\xed\xb6\x3a\x89\x8c\x70\xb2\xb8\xc2\x4b\x7c\xea\xe6\xf9\xe5\x86\x4e\x7b\xdc\x4c\xdb\x4b\x81\x5d\x22\x9e\x24\xeb\x94\xa9\x2b\xcd\xfc\x22\x7f\x7d\xf9\x88\xf2\x7e\xf4\x02\xb8\xb5\x80\x53\x63\x0c\x14\x38\xb1\xee\x22\xa9\xec\x2a\xf9\x0f\x99\x4b\x6d\x6e\xd5\xc7\x3e\xe3\x23\x28\x64\x98\xd4\x45\xae\xcf\xfe\x3f\xf6\xde\xb5\xb9\x71\x23\x49\x17\xfe\xbe\xbf\xa2\xd6\xfb\x46\x74\xf7\x59\x8a\x72\xdb\x67\x26\xbc\xda\x70\xc4\x4b\xab\xd5\x36\xc7\x6a\x49\xa3\x8b\x3d\x7b\x86\x13\xec\x22\x50\x24\x31\x02\xab\x60\x14\x20\x35\x67\x77\xfe\xfb\x89\xca\xcc\xba\xe0\x46\x02\xa2\xd4\xf6\xee\x99\x0f\x33\x6e\x11\x40\xdd\x2b\x2b\x2b\xf3\xc9\x27\x73\xb5\x49\x86\x64\xd2\x40\x30\xf7\xb5\xf5\xfd\xef\xf1\xa4\x58\x84\x00\x98\xdf\x70\x79\x51\x8d\xc0\xc9\xc0\xc9\xa4\xb6\x63\x0f\x6d\x78\xf6\xa4\x01\xdf\x87\x7c\x99\xb0\x0d\xc2\x8e\x68\xf4\x80\x53\x5b\x40\x70\x2a\x0c\xf2\x23\xdf\x7a\xfa\x9b\xae\x1c\x09\x72\xd0\x72\xb8\x33\xaf\x4f\xe5\x52\x0d\xd8\x9c\x9e\xae\x86\x76\x1f\xb7\x6b\x36\xd8\x7f\x0e\x89\x81\xb3\x8f\x63\xda\x67\x3f\x9e\xb6\x2d\xea\xc1\x3b\xd3\x8e\xe0\x4b\xfa\x61\x43\x21\x12\x7c\xf3\xf7\x21\x67\x6b\x75\x6b\x05\x25\x32\x68\xce\xee\xa1\xfa\x50\x59\x87\xcf\x3e\x46\xb5\x72\xe0\x99\x0f\x18\xbb\x6a\x2f\xf5\x33\x8c\x19\x6d\x92\x5e\x83\x75\x20\x3f\xd7\xb0\x5c\x0f\xb6\x46\x97\xd9\xe1\xe0\x9b\xdc\xbe\xc1\x00\x69\xa6\xe9\xd6\xe0\xa3\x4f\x88\x06\x60\x99\xa4\x42\x8f\xd9\xb4\xc5\x89\x6b\x83\xf0\x1d\x68\x1c\xc3\x01\xad\xf6\x54\xe6\x49\x90\xfc\xdd\xea\x48\x2c\x81\x24\x74\x21\x90\x25\x70\x5a\x80\xfb\x74\xad\x1e\x31\x02\x2f\x4f\x8c\xcc\x42\x65\xb5\x00\x97\x96\x91\x05\x09\x79\x84\xd0\xa1\xe6\x3e\x50\x18\x17\x61\xae\x39\xce\x19\x16\x5a\x20\xea\x53\xfa\x1c\x69\x3c\xfb\x73\x1c\xd8\x5a\x6f\xcd\x17\x7d\x2e\x05\xf6\xdd\x03\x5a\xe7\xb4\xfc\xe1\xf6\xc8\xf7\xf0\xa9\x35\xec\x72\xb6\xcc\x05\xdc\xb2\x37\x8e\x37\x0d\x13\x27\x28\x05\xe7\xdd\xcd\xbb\x1f\x8f\xef\xa6\x4c\x14\x11\x4b\x93\x7b\x31\x93\x91\x7e\x80\x4b\xdf\x2f\xa5\x28\xcc\xcf\x1d\x46\xa0\x64\x23\xa4\x06\x49\x90\x14\x3d\xef\x6b\x76\x60\xcc\x7f\xdf\x55\xbf\xef\x73\x2b\x77\x5c\x9f\x66\xed\xda\x9c\x86\xb0\x4c\x21\x6d\x1b\x0e\x6d\x8b\x5d\xf3\x3b\xf4\xb7\x9e\xb5\x65\x3c\x7f\x42\x48\xb4\xfc\x6b\x29\x07\x2a\x5d\xa7\xfe\xa3\xa0\x15\x1d\x3a\xdd\x26\xe3\x90\xcf\x64\x58\xac\x35\x7e\xd3\x5a\xfa\x3e\x21\xe2\xa9\x6f\xac\xff\xdc\x27\x87\x67\x45\x2e\x04\x88\x10\xb7\x9e\xe8\xac\x27\xb6\x35\xd7\xb1\xe0\xa3\xf1\x4c\x7e\xb0\xa8\x3a\xff\xab\xf6\xbe\x86\xcd\x22\x48\xf3\x52\x2d\x05\x8a\x8d\x13\xed\x7e\x80\xa4\x7d\xba\x4c\x0b\xcc\x5a\xbc\x4c\x24\x4f\x5d\x43\xf1\x49\x9b\x94\xc8\xb9\x8c\xd6\x87\xba\xc9\x93\xe5\x5c\xa4\x43\x34\xd1\xe9\xf2\x2c\xd5\x66\x7d\x47\xf7\x1d\xbb\xf3\x29\x79\xb9\x7d\x67\xd0\xe3\x44\xb9\x3d\x99\x77\xb3\xf3\x14\xb3\x06\x0b\x06\x38\xac\x7a\x84\x3c\x92\x80\x99\x59\x24\x4d\x1d\x61\x58\x18\x9a\xea\xc2\xce\xa0\x16\xc6\x8b\x99\xcc\x4b\x09\x09\xc5\x1c\x2a\x93\x33\x9f\x13\x26\xb2\x18\x09\x42\xac\xac\x8c\x98\xc0\x94\x2b\xf8\xb2\xb9\x9f\xa9\x52\x83\x3f\x6a\x23\x0a\x73\x40\xbd\x86\x5c\xff\x08\x8b\x1e\xb1\x2c\x4f\x36\xe0\x52\xd6\x6f\x5a\xa6\xee\x94\x17\x3c\x55\xab\xe7\xb6\x2a\x3d\x31\xc4\xc6\x36\x83\x4d\xdf\x99\xc1\x5f\x09\x29\x72\xe8\x28\xd8\xb2\x5b\xb7\x70\x0f\x2b\x77\x87\xe4\x06\x4f\x22\x39\x7f\xb5\xb3\x58\xf0\xb2\x50\x1b\x73\xbf\xe5\x69\xba\x1d\xa1\xd7\x59\xb0\x35\xd7\x6b\x3b\xd1\xe8\x30\xec\x73\x36\xd1\xe0\x9e\xf2\x68\x2d\x6e\x0a\x5e\x94\xad\xc8\xac\x5a\x2b\xbf\x10\xb2\xdc\x7c\x71\xc2\xfe\xec\xfb\x78\x3a\x39\xfd\xe1\x6c\xfe\x6e\x7a\x33\xf9\xee\xfc\xec\x5d\xd0\x1f\x7a\xf2\x61\x7a\x73\xd3\xfc\xf5\x87\xe9\x6d\xf3\xc7\xab\xcb\xab\xbb\xf3\xc9\x6d\x5b\x29\xe7\x97\x97\x3f\xde\x5d\xcd\xdf\x4f\xa6\xe7\x77\xd7\x67\x2d\x9f\xde\xdd\x76\x3f\xbc\xf9\x71\x7a\x75\xd5\x56\xea\xd9\x4f\xd3\x53\x53\x1d\xfd\xfe\x97\x60\xdb\x81\xeb\xdc\x8c\x40\x47\xff\xea\x3b\xf3\x88\x55\x5f\x3c\x61\x77\xf5\xbc\x57\x14\x88\x85\x24\x62\x8f\x5c\x1b\xe1\x06\x71\x80\x60\x82\xf5\xa3\xd5\xf5\x29\x62\x95\xa3\xb5\x60\xa9\x52\xf7\x65\x46\x32\x0f\xad\xed\x52\xa1\x45\x48\xe8\xa0\xb4\x1f\xa6\xb7\x27\xcd\xfc\x5b\xae\xb0\x80\x2e\xd5\x19\x97\x1f\x39\x52\x07\x80\x9c\x05\x23\x8b\xcd\xcb\xe4\x5d\xd7\x41\x0d\x6e\xca\x76\xd5\x83\xa5\x71\x59\xd4\xaa\x89\x63\x4f\xb2\x04\x1d\x0b\x0a\xae\x4e\xf8\xae\xd1\x74\xc3\x81\x89\x47\xd9\x42\x44\xbc\x44\x44\xb7\x39\xc0\xf2\x5c\xe5\x61\x83\xfd\x42\x79\xbe\x42\x69\x81\xb5\x16\x58\x9b\x33\xd3\x71\x7d\x9f\x64\x59\x65\xda\x69\x21\xee\x9f\x79\x48\xf5\xf6\x90\x44\x85\x88\xbf\x68\xea\x45\x3e\x06\x1f\xf5\x66\xb3\xab\x4d\x93\x83\xbd\x9e\xc8\x15\xda\x12\x6c\xd2\xbd\xf5\xd6\xa1\x90\x00\xf4\xea\x61\xc0\x90\x04\xc4\x9c\x35\x2e\x29\x5a\x02\xb0\x22\x5e\xb0\x47\x01\x74\x34\x25\x65\x1d\xc5\x3b\xbd\x91\x19\x50\x1d\xe2\x01\x6c\x0e\xe1\x0a\x4d\x4d\xa7\x90\x7f\x0e\x45\xde\x7c\xaf\xc5\x30\x27\xde\x5e\x4e\x91\x77\x58\x28\x48\x7d\x1b\x2f\x00\x2d\x7e\x4e\xa7\x5f\xcb\x49\xb7\xe7\x10\x32\xc7\x41\x9f\xf6\x58\x1e\xb7\x4a\x72\x94\xfe\x0d\xab\x24\xd0\xd8\x3b\x56\xb7\x2a\xe6\x5b\xb3\x38\x00\xf4\xa0\xcb\x2c\x53\x79\xc1\x3a\xca\x40\x08\x24\xb6\x0f\xce\x32\xea\x87\x13\x91\x50\x88\xd1\x5c\x74\x4b\x1e\xb6\x7e\xd4\x52\x34\xae\x81\xef\x2c\x08\x2e\x82\x0b\xa6\xcb\x99\xb9\xa9\x5c\xd5\x2b\x2b\xb4\x4d\xa9\x3e\x24\x3a\x33\x33\x8a\x43\xdf\x14\xce\x6d\xb5\x5f\xda\x12\x5a\xa7\x3c\x15\xcb\x62\x3e\xd0\xd9\x05\x25\xca\x2e\x36\xc0\x64\xb5\x7e\x86\x12\xfb\xdf\x3e\xbe\x22\x50\xb4\xb9\x72\x04\x96\x87\x5c\xa9\x02\xf5\x5e\x7f\x37\x62\x76\x34\xc1\x6c\x41\x95\x52\x1c\xbd\x53\x2e\xcd\x5d\x02\xb1\x64\x2e\xe4\x7c\x3c\x93\x67\x00\x3e\xf5\x17\x1c\x1b\x5e\x0f\xb7\x8b\xbd\xf7\x8a\x4a\xc2\xfa\xcf\x1a\xe9\xd2\x9d\x1d\xc0\xaf\x7b\x84\x2c\x8a\x74\xeb\x38\xa2\x62\x56\xf9\xae\xcf\xee\x41\x6b\xba\x55\x2d\xb1\xc3\xb8\x75\x74\x21\x32\xb2\xf8\x63\x3f\x3d\x4a\x1a\xbc\xcd\xa6\xaa\x31\xfb\xd9\x5a\x94\x20\x68\xc8\x05\xd1\x58\xdc\x6b\xca\xb7\x96\x50\xbc\x6d\x60\x9f\x83\xa3\xfb\xb9\xc3\x88\x76\x0f\xb0\x23\xe3\x6c\x19\xe5\xca\xc5\x5e\x4a\xb4\xf4\x0e\x80\x21\x9d\xba\x8f\x6e\xc4\x6e\x44\xe5\x7b\x48\xe1\x4e\xa8\x74\xd0\x59\x64\xba\xfd\x67\x9c\x2c\x64\xf1\xb0\x20\x0d\x4a\xa9\x4d\x9e\x59\xb3\x7f\xc0\xb3\x88\x24\x1f\x6c\x99\xa4\x29\xe8\x01\x63\x36\x91\x5b\x4b\x82\x61\x8e\x42\x0b\x4e\x4d\x56\x52\xed\x8b\xcf\xef\x58\x4c\x51\xb0\x98\x6e\xba\x17\x13\xe2\x3f\x3c\x07\xd2\xf3\xac\xa8\x67\xe0\xc3\x33\xb2\x85\x37\xb3\xa9\xf4\x67\xc1\x1b\x60\x14\x08\x4f\xf3\xcf\x15\x59\xd6\x68\x6e\xf0\xe1\xdf\xdb\x9b\xfe\x7d\xc9\x73\x2e\x0b\x88\x97\x22\xa5\x35\x17\x41\xd8\xb6\xf8\x04\xd8\x56\x89\x06\x66\xf8\x29\x9c\x5c\x0b\x25\x40\xf8\x59\x12\x8f\x58\x32\x16\x63\xc8\xec\x9b\x1b\x5d\x62\xe1\xdf\x5c\x1b\xcd\x61\x26\x1b\x71\x20\x63\x36\x49\xb5\xa2\x2f\x84\x8c\x52\xa5\x01\xda\xbb\x08\x49\xd7\x61\xe5\x93\xbb\x6a\xb1\x85\xfb\x0d\x4c\xa5\x2f\x5e\xd1\x83\xe0\x43\x48\x50\x0b\xbe\xf6\x14\x76\xba\xff\xfd\x5f\x15\xd1\xc7\x76\xe1\x2f\x5e\x30\x15\x58\xe3\x18\x7a\xb1\x49\xc2\x34\xd3\xbb\x26\x08\xde\x80\x89\xf1\xf1\x39\x01\x7b\x1d\x7b\xcd\x0b\x96\x0a\xae\x0b\xf6\xf6\xcd\x20\xcc\x89\xed\xa0\x97\xae\xb4\x7d\x7d\x90\xbd\x0d\xd3\x0c\x95\x3b\x57\x31\xe4\x1d\xe6\x79\xc1\x38\x93\xe2\x31\x8c\xca\x51\x10\x48\x65\x93\x09\x8b\x80\x17\x04\xb1\xf8\xc8\x6a\x04\x91\xae\x78\x65\xea\x90\x23\x36\x55\x06\xb9\x65\xa9\x59\x2d\x2b\x6b\xe4\x50\x6d\x00\x63\x37\x2f\xf9\x80\xc9\x35\x2f\x66\x92\x24\xab\x85\xa3\x04\x21\xf2\x93\x34\xad\x06\x29\x72\x88\xc3\x95\xa6\xc3\xa6\xf5\xf1\xd8\x0d\xd0\x05\x5c\xbf\x5c\xa4\x58\xc5\xfe\xe7\x37\x0b\xc6\x32\x38\xae\xc8\xb0\xec\x56\x6d\xa7\xcd\x6e\xfd\x19\x95\xe0\x96\xea\xcf\xd5\x2a\x89\x78\xda\x43\x19\x16\x6d\x4d\xde\xb3\xb1\x9a\xbe\x82\x1d\xba\xf1\x73\x57\xd0\x5f\x55\x6e\xb7\xbb\xc3\x31\xfb\xa8\x5a\xcc\xf8\x1d\x93\x1b\xe8\x16\x87\x5c\xc0\x5d\xc8\xe2\xe7\xf2\x24\x57\x9a\x3e\x8d\x81\x30\x61\xbf\x14\xf4\x04\x04\x56\x74\x60\xdc\x5a\x1c\xc4\x43\x07\xe1\x97\x04\x22\x45\xc1\x47\x6f\x76\x78\x74\xb3\xff\xde\xdd\x1f\xf9\xfe\xdb\xae\x38\x70\x5d\xb3\xe3\xdd\xca\xde\x24\xfe\x2b\x8f\x20\x4a\x12\x6a\xb2\xf1\x99\x4d\x32\x4b\x9b\x02\x85\x83\x93\xa0\x55\x3d\xcc\x72\x15\x09\xad\xc7\xec\x0c\x0e\x1a\xfa\x93\xf1\xa5\x75\x74\x04\x2f\xcf\xa4\xb9\x99\x58\xee\xbb\xa0\xfc\xea\x12\x6f\xdb\x01\x48\xa4\x7b\x90\x8f\x68\xb3\x3f\xbf\x5d\xd7\x6d\xc2\xf2\xf8\x42\x19\x90\x12\x8b\x9d\xad\x4e\x58\xac\xa2\x7b\x91\x1f\xe7\x22\x4e\xf4\x09\xf8\xec\x8b\x4e\x67\xe1\xc6\xdc\xb6\x0f\xd6\x34\xba\x00\x08\x7b\x08\x05\x4e\xb1\x7e\x0a\x29\xb0\xa1\x49\x23\x96\x2c\xe1\x3a\x61\xe3\x59\x31\x80\xcb\x52\x05\x0a\x59\xe4\x5b\x44\x3b\x5b\x53\x56\x6d\x20\xec\x4d\xc3\x28\x6d\x5d\x91\xd8\xf9\x73\x60\x7b\x9e\xd8\x6d\x8c\xf8\x21\x20\x03\x76\xaa\x50\x14\x07\x86\xe2\x22\xe3\xc5\x5a\x03\xed\x47\x75\x0c\xe8\xd2\x05\x9f\x9a\x11\xe2\x19\xe0\x20\xd0\x4a\xe1\x3f\x72\xe4\x14\xba\x48\xd2\x74\x26\x31\x70\x03\x18\x3a\x5e\xb5\xb2\x0b\x99\x4f\x47\x8c\xc7\x31\xfb\xff\x5e\xbf\x3f\xff\x8f\xdb\xb3\xf9\xf4\x02\x6c\xde\xd3\xf3\xb3\x37\x23\xf7\xe3\xe5\xdd\xad\xfb\x15\x2d\x2c\x0f\x22\x67\x1b\x7e\x0f\x57\x3c\xa9\x05\x05\x9e\x8a\x99\x0c\x5b\x6a\x79\x97\xcc\x13\x2d\x2c\x82\x96\xd4\x14\x47\x3f\x4d\x73\xd8\x45\xda\x4a\x74\x9c\x03\x2e\xbf\xd7\xee\x93\xdd\x6b\xd0\x2e\x1e\x57\x85\x55\x03\x21\xbe\x98\xeb\x80\x88\x87\xee\xbe\x7e\xc1\x09\xb9\x4a\x64\x17\xce\x4f\xc8\x87\x97\x54\xe2\x7f\x14\x5b\x00\x9a\x5f\xf1\x24\xef\xbd\xf6\xda\x99\x14\xed\x8e\x31\xf7\x74\xae\xeb\x9b\x4a\xa3\x2e\x8c\x91\xca\x9d\x58\xd2\x36\x12\xdd\x5f\xbd\xbb\x44\xcd\x29\x3e\x15\xb9\x65\xf8\x72\xb1\xb0\x96\x06\xd3\x1d\x34\x7e\x0d\xce\xe4\xed\xe5\xbb\xcb\x13\x26\x52\xbe\x50\x10\x06\x49\x50\x23\x5b\x04\x0d\x58\xa4\x36\x41\x41\x15\x76\xb7\x11\xcb\x3c\xbb\x5b\x68\x44\x1b\x63\x19\x7b\x58\xde\x32\x95\x37\xb9\xd1\x9e\xf7\x0a\x48\x9d\xbd\x52\x79\x9f\xe3\xdf\xbc\x86\x71\x21\x99\xb9\xc8\xd5\x24\x2f\x9d\xcd\x4b\xc1\x81\xf9\x83\xdc\x42\x64\xcb\x27\x60\x6c\x9a\x56\x72\x71\x9b\x8d\xa3\xc7\xe4\xda\xf7\x6f\x2a\xc9\x7e\xfc\x46\xb3\x45\x59\xcc\x64\xb5\x0c\x25\xd9\xe4\xe7\x1b\xf6\x1d\x2f\xa2\xf5\x9b\x99\x84\xb8\xc4\x1f\xbf\xe9\xa0\xa1\x1c\xcc\xec\x6c\xc6\xe4\x1d\x2f\xf8\xb9\xe2\x71\x22\x57\x6d\xb4\xce\x3e\xf7\xe0\xd9\xed\xe4\x84\xd9\x14\x30\x3e\x8a\xb6\xb0\x74\x2a\x41\x41\x20\x90\xa1\x23\x56\x8a\x80\x28\x97\x55\xea\x5b\xbc\x99\xc1\x81\x35\x93\xb7\xc8\x67\x6d\xa4\x6a\x52\xb0\x4c\x51\xfe\x4b\x73\x2b\x43\xa6\x6f\x6e\xa3\xcb\x45\xba\x65\x66\x74\x60\x19\xbb\xc9\x20\x7d\x0c\xf4\x99\xa6\xb0\x9f\x49\xb8\xa0\xbb\xb8\xde\x54\x45\x3c\x05\xac\xdf\x51\x60\xd3\x33\xd7\x76\x55\x02\xb7\x0e\x80\x6c\xe4\xb6\x0a\xc9\x75\x74\x4f\x4e\x29\x0b\x27\x0a\x0c\x00\x30\x8f\xe4\x87\xdc\x28\x23\x71\x90\xc7\x16\x8c\x6f\x29\x8e\x8e\xf9\xd0\xf1\xda\xe2\xb0\x98\xa7\x2e\xe4\x5d\x95\xd2\xf2\xb8\x45\x60\xbe\x97\x5b\x80\x85\x43\xc2\x3a\x05\x90\x12\x2f\x9d\x69\x51\x36\x66\xd1\x9d\x89\xc1\x67\x33\x89\x08\xc4\xca\xbc\x84\xcc\x87\x41\xed\x4a\x02\x40\xb2\x19\x67\x5f\x66\x04\x98\x24\x5d\x3f\xcb\xc5\x91\x8b\x1e\x8f\x2b\x63\x6a\x4e\xd8\x31\xbb\x0e\xaf\xd7\xb1\x8a\xca\x8d\xcd\x4a\x01\x91\xe7\x84\xac\xa3\x43\xd4\xad\x10\x3c\xd8\xf7\xad\x78\x60\xb8\x2b\x04\x50\xef\xf4\xbe\x1f\xe3\x82\x99\x84\x9f\x36\x35\xf5\x6e\xc5\x17\x64\xc7\x61\x68\x38\x2c\x68\x9e\x55\x4b\xaa\x94\x76\x30\xa7\xc3\x85\x67\xce\x57\x39\x28\x5b\xe2\x53\xa6\xc0\xc8\x8d\x81\xd5\x2a\x7e\xa5\xd9\xf4\xca\x68\x40\xe6\xc6\xeb\xf6\x60\xa9\x0b\x04\xad\x61\xfc\x33\x7c\x8d\x61\x08\x23\xf6\x25\x9b\x95\x5f\x7e\xf9\x75\xc4\x3e\xd9\x7f\xfc\xfe\x77\xbf\xfb\xfa\xf7\x43\xc2\x54\xec\x85\x1c\xca\xf5\x63\xe4\x52\x91\x56\x55\xa2\x70\x06\x9a\x92\xea\x80\x59\xa0\x0d\xd8\x35\xfc\x4f\x61\xc8\x0e\x30\x49\x7c\x45\x3b\x5c\x87\x3b\x93\x55\xb6\xa6\x47\x12\x68\x51\x8c\xaa\x12\xc2\x29\xbb\xa4\xd1\xff\xf3\x0e\xa2\xd7\xb9\xd9\x2a\x4f\xc3\x4e\x25\xa9\x53\xaf\x4d\x21\xec\x35\xd9\xff\x0a\x70\x20\xbe\xb1\x07\x9c\x4a\x63\x91\x63\x9b\x9c\xc9\xce\x19\x12\x41\x38\x88\x4f\x59\xaa\x62\x4b\x2d\xef\x79\x14\x12\x50\x10\xce\x3e\x71\x23\xb9\x47\x44\x41\x4a\x71\xab\xe0\x79\x59\xf2\x48\x50\x8c\xf5\xeb\x4f\x27\xe6\xb7\x11\xdb\x9e\x00\x38\x75\xc4\xfe\x76\x42\x4c\x83\x3c\x2f\xe6\xe6\xa7\x37\x56\xd7\xa6\x22\xa0\xd1\x89\x66\xaf\x8e\x1f\x78\x7e\x0c\xe2\xf9\x18\x5b\xf4\x8a\x24\xab\xcb\xa9\x1c\xea\xe6\xa9\x52\xf7\x04\xdc\x6d\x7c\x78\x6c\x49\x6b\x61\x79\x3b\xbf\x09\x4e\xbd\x23\x35\x2a\xd8\x11\xbc\x20\xd8\x38\x5b\xb0\xf1\x5f\xb5\x92\x6c\xbc\xe5\x9b\x94\x7e\xb5\x4f\x09\x57\xcc\x35\xc5\xda\xc5\x0e\x23\x94\x6e\xd1\x52\xfa\x5d\xaa\x16\xd0\xab\x0f\xb6\xa7\x88\xcc\x85\x86\xfa\xd3\xc7\x1f\x58\xd4\x11\x4b\xe2\x01\xdc\x8b\x1b\x55\xe0\x2b\x14\x36\xdb\xec\xd5\x27\xd7\xa4\x3f\xa1\x5f\x18\x06\xc5\x06\x07\xa2\x71\xd8\xa1\xe2\x4c\xa1\x9f\xd8\x6b\x12\x41\x6f\xcc\x19\x43\x30\x68\x1c\x86\xb6\x0a\xb6\xae\x82\xff\x08\x2a\x48\x24\xc3\x70\xcf\x1d\x5f\xfe\xed\x78\x3c\x1e\xbb\xaf\x81\xf1\xe7\xff\xb0\xa4\xd0\x22\x5d\x62\x49\xf6\x04\xdb\xce\xe4\x07\x9b\xb4\xca\x1a\xaf\x3d\x1d\x76\x96\xab\x42\x45\x2a\x65\x47\xde\xa0\x1b\xab\x48\xb3\x7f\x31\x6a\x6d\x30\x94\xf0\xa3\xb9\xc7\x75\x50\xe8\x63\x96\x8c\xcf\xb4\xa9\xc8\x20\x5e\xdf\x56\x21\x03\xae\xbb\xd8\x72\x1d\x06\x39\xc3\x5a\x30\x2b\xe7\x98\x58\x72\xf3\xdc\xbc\x2c\x3e\x15\xf0\xa8\x83\x84\xb8\x15\x22\xdf\x7e\x52\x36\xc4\xad\xe7\x22\xc6\x65\xdd\x31\x00\xc4\x15\x4a\x92\x01\xfb\x39\x0a\xdd\x27\xe6\x70\x91\x61\x1a\x25\x5d\x6e\x36\x3c\xdf\x1e\xfb\xdd\xd6\x5c\x9c\x9e\xa5\x16\x64\x4c\x6a\x07\x00\x5c\xb8\x29\x6d\x2d\x42\x31\x90\x7a\x69\x4f\x34\xb7\x77\x23\xc8\x83\x1d\xb0\x3d\x09\x19\xa9\x98\xd6\xb5\x8f\x6a\xad\x6a\x2c\xee\x9d\xa6\xae\x62\x11\x31\xda\x1b\xe3\x64\x81\xf4\x67\xf4\x86\xfd\xb8\x43\x7c\xab\xb9\x2e\x8c\xa0\x5c\x0d\x70\x8f\x4e\x2f\x6f\xec\x37\xfd\x0f\x5d\x18\x87\xaa\xca\xce\xd3\x90\x5b\x58\xae\x58\xce\x1f\xfd\xf1\x0b\xd8\x0e\xb4\xce\x94\x2e\xe6\x17\xff\x3e\x55\x57\x49\x6a\x4e\x2d\x58\xe3\xe3\x99\xac\xfc\x3c\x62\x22\x4d\x36\x89\x74\xd8\x3a\x14\xee\x6a\x89\xda\xf3\x7d\x52\x98\x29\xd3\xf1\xbd\x91\x60\x96\x13\x33\xb8\x52\x4d\xe4\xd6\x2e\x1d\xe7\x98\x22\x0b\x44\xa9\x4d\xbb\xfc\x1d\x1d\xd8\x00\x92\x58\x1c\x91\x42\x9a\x04\x0b\x0f\xf6\xef\x4c\x9a\xd2\xec\x5e\xf2\x30\xe4\xa0\xbc\xa0\xb8\x23\x9b\x4c\x28\x90\x00\x50\x47\x05\x4b\xec\xf4\xdf\x16\x05\xe5\x4c\x96\x9b\x43\x83\x58\x08\x96\xfc\x6b\x99\xe9\xae\x72\x61\x4f\x2a\x0a\x88\x12\xb2\xdc\xd8\x0d\x35\x60\xc5\x9d\x91\xfa\x13\x8b\x28\xe5\xc8\xf2\x67\x0a\x02\xe4\xe3\x08\x1d\xa4\x59\x50\x17\x1e\x2f\x58\x0d\xe6\x27\x4c\x85\x7c\x8d\x7f\xbf\x61\x74\x36\x7c\x39\xa2\xf3\x3c\xd7\x8e\x3d\x0d\xe7\x1c\xf2\x7b\x8b\x18\x6d\xe8\x90\xd1\x61\xc5\xf3\x18\xad\xe5\xe1\xad\x02\x23\x83\x8d\xfe\xb5\x55\x25\x7b\x4c\xf4\x7a\x26\x6f\x95\x35\x38\x32\xa9\x5c\x4e\x8c\x11\x5c\x46\x1b\xf5\x71\x0d\x42\x00\x5a\xdd\xb6\x02\x8c\x10\x3e\x28\x86\x09\x40\xb4\x73\xa9\x62\x71\x18\xf9\xe3\xad\xf7\x55\x58\xff\x75\x2e\x30\xce\x0c\x4e\x8a\xae\x30\x5d\xa1\xf5\x40\xdb\x7c\x7d\xe2\xe1\x1c\xa2\x72\x4c\xad\xea\x71\x50\x66\x92\x90\x57\xd5\x9d\x6a\x50\x8a\xbd\x71\x06\x51\xc6\x95\xb1\x77\x99\x26\x0e\x9d\x84\xa8\x85\xe9\xb1\xd7\xd9\x8f\x7d\x8f\x60\xd8\x1d\xc0\x98\xb3\x55\xae\xca\xcc\x85\xe2\xdb\x30\x42\x9c\x06\xd2\x69\xa6\x72\xa9\x4e\xe8\x4e\x75\x9e\xc8\x7b\x5c\xf1\x2f\x35\x47\x98\x4c\x44\xc4\x15\x0a\x5c\x9b\xe1\x1f\xfa\x70\xc4\x12\x19\xa5\x25\x1c\x7c\xba\xe0\xd1\x3d\x26\x44\xe9\x32\xfa\x9a\x6f\xe6\xfb\x83\x34\x3b\x34\xa6\x32\x4d\xa9\x5a\x7f\x80\x02\xc9\x1c\x98\x80\x1e\x12\xce\x38\xbb\xbb\x9e\xb6\xd7\x7d\x9f\x34\x9d\x39\xed\xa7\x67\x75\x81\xc0\xff\xfd\x98\x0c\xc2\x5d\xd6\x28\x85\x45\x65\xa9\x3b\xe3\x52\x17\x61\x3d\x2e\xd2\xc2\x5c\x20\xe2\xeb\x16\xd3\xfe\xe0\x75\xba\xca\xca\xb9\x19\xa8\x74\x08\x40\xc0\xb4\xe2\xfb\xab\xbb\x49\xf0\xdd\xae\xa5\xf2\xfd\xd5\x1d\x0b\xea\x40\xb2\xe8\x54\x44\x85\x43\x1a\x8f\xd9\xa9\xcf\xe1\x50\xd7\xcc\x63\xf1\x90\x44\x18\x3a\x3b\x32\x5a\xd1\x4c\x02\x35\xba\xb9\xeb\x1c\x59\x3e\x4d\xf6\xfd\xd5\x1d\xb1\x70\x7a\xde\x1c\x4c\x47\x01\xd4\x18\xc3\x8e\x9d\x1a\x29\xb9\x54\xf2\x08\x29\x83\xf2\xd8\x7b\x3b\x46\x70\xb9\x8e\x78\x56\x94\xa4\x60\x3c\xbc\x1d\xdb\x39\xb9\xf6\x9e\x10\xd3\x2c\x35\x93\x46\x57\xc2\x18\x03\xc8\x9c\x66\x3a\xdd\x9c\xda\xda\xa0\x1e\x02\x0e\x80\x41\x3b\x48\xf8\x27\x2e\x72\x90\xcb\x2d\xe3\xf9\x22\x29\x72\x73\x0d\xc3\x8f\x47\xc8\x70\xb6\xb6\xd9\xb1\x70\xde\xbc\x66\x44\xc9\xee\x60\x82\x13\x59\xe8\x99\x0c\x02\x60\x5c\xb4\x31\x06\x2f\x24\x92\x01\x95\x30\x60\x6f\x2c\xb5\x69\x94\xaa\x32\xb6\xc7\x6a\xee\x92\xe7\x6d\x33\x54\xa2\x66\x12\x18\x4f\xcc\xd9\xaa\x8c\x1a\xea\xcf\xfe\x13\xf6\x51\x3e\x24\x71\xc2\x8f\x0a\xa1\x53\x7e\x54\xfc\xef\x8f\xa3\xda\x4f\xfc\xed\x97\x5f\x7e\xc4\x3c\x80\x5d\x74\x0e\x01\x6b\xd3\x81\x06\x9e\x76\x3f\x85\xe3\x3f\x34\xab\xf4\x80\x79\x3a\x4f\xee\x05\xfb\x88\xd3\xfd\x91\xc8\x8f\x9f\x36\x6d\x33\xd9\x36\x6f\xec\x29\xd3\x06\x54\xf4\xed\xf3\xc6\x76\x4c\xdb\xdb\xd5\xf8\x77\xab\x85\x99\xad\xaf\x56\xe3\xb7\x5f\xc2\x3f\x6b\x73\xb4\x6f\xf3\xba\xe8\x99\xb6\x66\xb7\x08\xa2\x96\x6d\xe9\x64\xd1\x4c\xee\x17\x46\x6c\x98\x2c\x82\x55\xdb\xb6\xf1\x79\x21\x0e\x8d\x9a\x45\x4e\xec\x01\xe8\xeb\x06\xd9\xf8\x4e\x8f\xe0\x81\x4c\xdd\x9e\x65\x1b\xe0\x9e\xdd\x94\xe1\x21\x00\x17\x1e\x0e\xe0\xf9\x81\xf7\xfb\xf5\xa7\xf6\xee\x9e\xee\xec\x6e\x66\x2a\xc4\x00\x66\x9a\x1b\xf3\x7a\xcf\x46\x56\x5e\xdd\xd5\xc6\x47\x8e\xd9\x08\x9b\x49\x70\x62\xba\xad\x0f\xd9\x45\x76\x39\xa2\xc9\x44\xbb\xb0\x41\xd7\x12\x0b\xad\x74\xf7\x6b\x5b\xef\x8a\xf6\x52\x98\xec\xd0\x79\xdd\x5a\x16\x7e\x60\x8a\x38\x10\x0a\x67\xae\xd4\xf3\x4d\x6f\x82\x75\x5f\xf1\x3b\xfa\xf8\x43\x83\x6e\xdd\xa9\x97\x1f\x20\xe2\xdb\x91\x6c\x6d\xb8\x34\xda\x9a\xad\xb5\xc3\xb1\x84\xb7\xfc\x27\x35\xe9\x2e\x7b\x52\x83\xb0\xc6\x7e\xc1\x5a\xb6\x2a\x5b\xca\x23\xfa\x56\x79\x8a\xbe\x83\x62\x0d\x66\x65\x9f\x3f\xd7\x8a\x39\x6f\x5e\xc6\x5c\xbb\x29\xcf\x57\x68\xf4\xd2\xa2\xd0\x6f\x5a\x66\xd8\xc7\xb1\x1d\x30\xc3\x56\xed\x9a\x0f\xe3\x0f\xb1\xfa\x18\x98\x54\x76\xed\x34\xd7\xca\x6a\xb2\x0d\x77\xd3\xb2\xf5\x87\x4c\xf2\x3e\xb8\x2e\x52\x39\x66\xa6\x02\x9e\xd7\x6e\x7e\xad\x03\x69\x66\x2f\xf8\xc6\xb1\xc7\x50\x69\x36\xe4\x17\x1b\xb7\x10\x90\x27\xa6\xbb\x0d\xbd\x38\x64\xfb\x36\x81\x98\x6e\xbb\x5a\x30\x93\x13\xfb\x8a\x67\xbb\xd6\x09\x5a\x59\x30\x1c\xb1\x5c\x60\x84\x0b\xd8\xcc\xb8\x1f\x75\xea\x5c\x47\x27\x86\x06\xfa\xd7\xba\x70\xa7\x45\xee\x4f\x23\xcf\x86\x1a\xf6\xa3\xa3\xe6\x7e\x6c\xc8\x3b\x25\xba\xed\x22\x15\x65\xc7\x72\x4f\xc5\x2a\xdf\xc7\x2c\xb9\xab\x52\x8b\xb8\x30\xbb\x78\x05\xbc\x66\x41\x1a\xe7\xae\xda\xfb\x5f\x93\xa8\x1b\x44\xc3\x8d\x18\x0a\x88\x4a\x48\xb7\x7e\x93\x78\xca\xf6\x5a\x65\x4d\x59\x51\x1c\x74\x16\x24\x7c\x33\xcf\x55\x77\x72\xe9\x1e\xe3\x65\x8b\xa8\x78\x0c\xd6\x98\x6c\x72\xcb\x7e\x29\x79\x8a\x47\xab\xa4\xcd\x60\x9b\x0d\xc6\x97\xaf\x7e\xcf\x26\x70\xf6\xb1\x0f\x20\x95\x01\x32\x06\xa5\x15\x8a\x25\x9b\x4c\xe4\x5a\x49\xde\x99\x65\xfd\xfe\x1b\x3d\xa7\x4c\xb1\xe6\x62\xae\xca\x66\x56\xd8\x01\x3d\x69\x29\x2d\xec\x14\x67\xf7\xe5\x42\xe4\x52\x60\x26\x79\x78\x8f\xd9\xf7\x7a\x35\x57\xf1\xb2\x58\x7f\x35\x8f\xd2\xa4\x77\xfa\x5a\x88\x57\x9d\x98\xcf\x4e\xf1\xab\x5d\x1d\xa8\x94\x5f\x69\xba\x64\xf8\x8c\xe1\xb3\x31\xfb\x8e\x47\xf7\x42\xc6\x2c\x4b\xcb\x55\x42\xb4\x37\x78\xd9\x48\xaa\x66\x85\x6a\xc7\x50\xb3\xc1\xf2\xcd\x21\x38\x93\x1b\x7e\x8f\x29\x65\x48\x85\x35\xf7\x96\x2e\xd2\x44\x67\xa8\x99\x27\xcd\xb5\xbb\x77\xb6\xdc\x69\xdc\x2c\xa6\xbe\xf6\x74\x89\xd1\x7a\x8f\x6b\x45\x18\xa7\x8a\x9d\x68\xc0\xc6\x75\xab\xb5\xc1\x4e\x66\x19\x64\xb4\x88\xca\xdc\xbc\x41\x8d\xc1\xdd\x0b\x0e\x44\x48\x8b\x54\x4a\xc6\x81\xe0\xec\x95\x66\x65\x66\x85\x08\x78\xb6\x52\xc0\x19\xe1\x14\x98\x07\x59\x12\xdd\x23\xb2\x15\x62\x37\x98\xeb\x5e\x23\xf5\x34\x13\x1e\x62\xd9\x26\x1a\x96\x48\xef\x73\x18\x6a\xa6\x91\x55\x69\xcf\x3a\xed\x19\x97\x52\xac\x85\x9c\x3f\x21\xb9\x4f\xff\x49\xab\xc4\xa0\x90\x12\xee\x3c\x84\x6e\x08\x4b\x99\x10\x99\xb7\xbf\xe1\xbb\xcc\x15\xc9\xb2\xa6\xc4\x27\x9a\x69\x5e\x24\xda\xc8\xb2\xd6\x11\xf7\xa4\x4a\x87\x8c\x3a\x1f\xc6\xe4\xd4\xc2\xe2\x54\x1b\x0b\x17\xe7\x36\x66\xef\xc1\xaf\x12\xdc\x4b\x94\xe3\x44\xea\x12\x58\xc5\x5a\x74\x92\x03\x3f\x07\x40\xd4\xf6\x20\x78\x7f\xa7\xbb\xcc\xc5\x34\x8e\xd9\xc4\xfb\xb3\x91\x15\x0a\x3d\xd5\x7b\x7a\x24\x52\x2d\x9e\xb2\xf8\x7a\xb9\x7e\x00\xf3\x05\x0b\x88\x81\x1e\xa7\xcd\xef\x9e\x25\xde\x35\xf3\x11\x68\x03\xf8\xbd\x90\xbb\xec\xfb\xfd\x5b\x88\x0e\x98\x9d\x06\x09\xe7\xd9\x51\xe8\xdc\x79\x4a\x03\xfb\x6f\x3b\x4f\xc4\x95\x2c\x8f\xcd\x90\x9b\x4b\x50\x74\x4f\xc1\x8a\xe8\xdf\x23\x2a\xaf\xc7\xb5\xd2\xe1\x3e\xb3\xf3\x87\xf7\xe8\xbc\x74\x39\xbb\x20\xd8\xd3\x0d\x30\xa2\x3c\xa5\x0a\x99\xbe\xa0\xd5\x6e\x93\xa2\x51\xc9\xcd\x37\xb3\x22\x14\x86\x01\x70\x11\xb6\xa8\x96\xdd\x2c\xb3\xf2\xb9\x72\xc2\xec\xa7\xd7\x6e\x8e\x70\xa3\x41\x3f\x7e\xa3\x2f\xa1\xbe\xe7\x20\xa3\x41\x2b\xe3\xf3\x07\x82\x3d\xd1\x05\xee\x20\xce\xd6\xfa\xa9\x20\x48\x84\x0e\xca\x4c\xc5\xcc\xaf\xf7\xae\x48\x1b\x29\x15\x42\x5c\x7f\x83\xdd\x0a\x1a\xd7\xbb\x6f\xfb\xb6\xda\x87\x00\x27\xc7\x16\x65\x92\xc6\xc8\x52\x18\x68\xa8\xca\xaa\x40\x90\x1e\x09\xf4\x91\x44\xbb\x03\xae\x65\xd1\xff\xf8\x8d\xbe\x52\xf1\x21\x0b\x6b\x38\x13\x6d\x73\x5d\xf7\x08\xa3\xd1\x21\x96\x69\xb3\x7f\x24\x32\xd5\x1d\x00\x11\xcf\x75\x35\x1f\xf0\x8e\x06\x03\xe2\x6d\x51\x2e\x6f\x20\xf9\x68\x17\x29\x53\x90\x97\xcf\x46\x59\x9b\x79\x36\xd5\xb8\x98\xbf\xae\x49\x21\x00\x95\xd7\x47\x38\xfb\xc3\xcd\xe5\xc5\xd1\x86\xe7\x7a\xcd\x81\xf4\xc2\x96\x35\xb2\xf9\xdc\xd1\x5a\x60\x81\x1d\x89\x9c\xc9\x23\xb6\x52\x23\x84\x11\x9d\xb0\x75\x51\x64\xfa\xe4\xf8\x78\x95\x14\xeb\x72\x31\x8e\xd4\xe6\xd8\x0f\xcd\x31\xcf\x92\xe3\x45\xaa\x16\xc7\xb9\x80\x40\x92\xa3\xb7\xe3\xaf\xde\xc2\xcc\x1c\x3f\xbc\x3d\x06\xf0\xc8\x78\xa5\xfe\xe5\xfc\xab\x7f\xfb\xfa\xf7\xa6\xe0\x6c\x5b\xac\x95\x3c\x21\x8c\xd2\xce\xb2\x8f\xf0\x9a\x70\x8c\x9f\xd4\x6a\xf9\xb7\xf1\x97\x61\x33\xe8\xd5\x8d\x8a\x45\xaa\x8f\x1f\xde\xce\xed\xc4\x8c\xb3\x8e\x8c\x19\xff\x08\xbd\xf8\x0c\xa1\x17\xf7\x49\xf1\x8f\xd0\x8b\x5f\x35\xf4\xa2\xbf\xca\xe5\x64\x0c\x70\x64\x7b\xf9\x68\x7e\x77\x32\xd2\x7a\x22\xf6\xc9\xa1\x96\xc3\x21\x0c\x8c\x3b\xe0\x88\x18\x98\xc0\xae\xd6\x5d\x77\x97\xe9\xb0\x38\x0e\xcd\x53\xd3\x79\xbb\x18\xc4\x03\x02\x40\xc7\x24\x02\x5b\x21\x5a\x48\x33\x9e\xb4\x05\x54\x04\x79\x7b\x0e\x18\x42\xcc\x23\xd2\x4e\x7a\xd6\x27\xdd\x16\x65\x9c\x12\xf1\xfc\x59\x12\x6f\xb5\xd6\x81\x98\xd0\xc1\xe5\x37\xf4\xee\x1e\xaa\x31\xa1\xa4\x0f\x1a\xd1\x17\x4c\x91\xf2\xdc\xb9\x51\xa8\xbb\x4f\xcc\x8b\x92\xe2\xd7\x16\xd3\xad\x1e\x6d\x3e\x94\xe7\xc8\x22\xe2\xf1\xea\xfd\x32\x88\xe0\x22\x85\xb6\xd8\x76\x75\x34\x63\xcd\xf5\xd3\x82\x03\x26\x48\x41\xec\x7c\xc1\x88\xac\x4e\xb4\xad\xd0\x9e\xc6\x96\x7d\xc9\x1c\xee\x96\xe4\x31\x2b\xf3\x4c\x69\xa1\xc7\xec\xbd\xca\x91\xd6\x8b\x38\x77\x7c\xc0\xc3\xf5\xfb\x53\xf6\xf6\x9b\x7f\xfb\x7a\x26\x5f\xb7\x28\x43\x70\x88\xaa\x7c\x45\xf1\x17\xa0\x02\x6d\xb8\x2e\x44\x7e\x9c\x2f\xa3\x63\x3c\x3a\x8e\xcd\xf7\x47\x54\xe9\x91\x5a\x1e\xb9\x14\x09\x47\xc4\x16\x3f\xde\xc4\x6f\xba\x90\x89\xed\x0a\xf7\xaf\x76\xe9\x99\x74\x28\xe6\x6d\xf3\xbb\x5f\xb0\x56\xb6\x10\x2a\x22\xa4\x85\x68\xd0\x58\x90\x8a\x51\x2d\x5d\x52\x1f\x8c\xf3\xc5\xfc\x5f\x6a\xd9\xf2\x8f\xef\x52\xb5\xd0\x6f\x1c\x01\x2c\xd7\xb6\x0e\xcf\xc8\xd8\x26\xb7\x1b\x7b\xee\x90\xdb\x37\x0d\xc5\x4b\x9a\xd5\xac\x4c\x0c\xa7\x6d\xc8\xc0\xb7\x0b\x0d\xaf\x0b\x22\x1f\x15\xcf\x55\x29\x6d\xd6\x0c\x25\x85\x5a\x02\xcc\x09\xae\x49\x16\xa5\x09\x9e\x05\xc0\xfe\x39\xee\xa9\x5c\x64\xa8\x7d\x80\x0f\xac\x7b\xb8\x0f\xcc\x1c\xb3\x6f\x9c\x5f\x22\x73\xcc\xa1\xe3\x4e\x82\xf1\x57\x1a\xf0\x43\x43\x29\x70\x2b\x0d\x41\x20\x99\xf7\xf7\xa2\x0d\x9c\x1c\xf0\x99\xab\x7d\x92\x86\x8c\xe7\xa0\xc1\x8b\xa3\x42\x1d\x01\x69\x1f\x50\xc1\x61\x2e\xa7\x2e\x08\x12\xa0\x34\x86\x1c\xf7\xe6\xfd\x1e\xed\xc4\x5b\xdb\xa7\xa0\xa1\xa4\xb0\x6a\x64\x40\x27\x48\x7a\x22\xa5\xc8\xc9\x03\xbc\x57\x33\x18\x88\xe1\x08\xa7\x72\x37\x22\xdd\x9b\x29\xc2\x3c\x3b\x2e\x1e\x91\x07\x42\x60\xcc\xe0\x6a\xb2\x56\x1b\x65\x74\x5d\x55\xea\xe0\x21\x5e\x6d\x41\x99\xe8\x54\xcc\x37\x3c\x43\x7d\xf5\xd7\xeb\x8d\xd9\x5a\xe6\x11\x9a\xa0\xc3\x97\x06\xa5\x2e\x5b\x54\x93\x35\xed\x69\xbf\xcb\xb2\xb3\x7b\xdd\x00\x42\x68\x03\x2e\xbf\x35\x7f\x10\x36\x77\x46\xf2\x37\x73\xe9\x35\x4b\xca\x5d\x23\x9d\x06\x82\x80\x36\xe4\xa2\x0e\xe1\x9b\xf6\xd4\xed\x64\x8b\x29\x37\x03\xe7\xc0\x05\x59\xf5\x99\x00\x2e\x31\xec\xc8\xc6\x1b\x1d\xb5\x06\x1c\x75\xed\x4b\xb0\xab\x95\xe6\x66\x62\xf9\xd2\x87\x35\xf5\xc6\x15\x40\xd4\xe8\xcd\x76\x7b\xba\x49\x88\x4e\xc3\x31\x46\x81\x60\x75\x8b\x2e\x90\xf3\xf0\xcd\x08\x89\xeb\x86\x8c\x1d\x54\x82\x8b\xb3\x31\x82\xc1\x5e\xe8\x1a\xc0\x61\xf6\xd7\x5d\xe6\xcc\x36\x7c\x3b\x32\xf4\xfa\xe8\x65\xd3\xca\x86\x65\xc1\x7d\xf8\xe0\x93\x23\x03\xfc\x77\x51\xc2\xf3\x8b\xcb\xdb\x10\xd9\x94\x60\x6f\x8f\xa2\xb5\x88\xee\xc1\x9a\x86\x47\x1e\x6e\x06\x0a\xc6\x07\xb8\xb5\x4f\xa9\x5a\x28\x0b\x94\xd9\xba\x2c\x33\x2e\xd3\x92\xca\x59\x9c\xe8\x2c\xe5\x5b\x80\x24\x48\x8c\x53\xf4\x70\x06\x17\xe0\x6b\x44\xc1\x3e\x67\x42\xff\x99\x36\xb3\x32\xf1\xdf\x0d\x1d\x4b\x0f\x3c\xf7\x83\xd9\x94\x07\x4c\x8b\x0d\x97\x45\x12\xcd\xe4\x46\x70\x19\x22\x58\x09\x92\x61\x06\x39\x56\x82\xf2\x25\x2c\x97\x22\x2a\x3c\xe1\x32\x5c\x42\xdc\x48\xed\xdb\x83\xc3\xfa\xee\x76\xde\xce\xae\xff\x60\xd3\x3e\x27\x1b\xc0\x47\xd3\x1a\xa2\xa3\xf1\x89\xae\x46\x48\xc1\x4b\x47\xae\xbd\xd4\xc2\x5f\x76\x4d\xb1\x85\x28\x1e\x05\xf0\x09\x11\x01\x42\x9b\x8e\x7f\x70\x1a\xa6\x43\x82\x07\x27\x8e\x7f\x90\xe8\xe5\x1b\x04\xc2\xb4\xc1\x42\xe0\xa5\x23\x3e\x94\x35\x06\xc3\x57\x44\xc9\x00\xa6\xc0\x57\x64\xd4\x7c\x05\xc7\xb4\xb9\x05\xe7\x0f\x22\x9e\xc9\x2a\xad\x24\xe9\x8c\x7e\xc3\x31\x9f\x60\xf4\x79\xa4\x8d\x1d\xe3\x5e\x8e\x9e\x33\xa0\xd2\xf2\x24\xda\x8e\x74\x60\x47\xc2\x53\xec\xf4\x4b\xde\xaa\x6c\xae\xe5\xbe\x97\x61\x9f\x83\x94\x12\x08\x52\xbe\xe1\x0a\xfa\xc7\x2d\x4a\x47\x9a\x87\x8c\xba\x0e\x2c\x4e\x46\xeb\x86\x19\xbc\xad\x8c\x99\xb4\x6c\x32\xcb\x32\x45\x96\xf4\xae\x98\x1d\xe2\xd0\xb4\x91\xaf\xbf\x5e\x04\xb4\x33\xba\xb2\x20\x67\xab\x03\xe9\x04\xc0\x7d\x94\x75\x76\xd5\x0b\xa9\x4b\x50\x29\x6c\xba\x46\xf0\x4a\xac\x44\x01\xa7\x79\x5c\xa6\x08\xd8\x04\x77\x0a\xf0\x71\xf2\x34\x65\x49\xa1\x67\xd2\xd1\x87\x62\x60\x0e\x48\x58\xeb\x6f\x89\xe9\xca\x05\x55\x40\xb1\xf0\x98\x4b\xd0\xc3\x92\x28\x29\x1a\xe1\x0e\xdb\x30\xc5\x59\x96\x09\x8e\xb1\xfc\x38\x6d\x33\x19\xde\xb9\xea\x93\x40\x81\xef\x90\x15\xff\x39\x62\xd0\x77\x18\x6e\x4d\x15\x4f\x42\xd9\x60\xef\xcc\x85\xcb\x66\x2f\xc7\xd6\x12\x7f\x10\xa1\x92\xcd\xad\xa6\xd0\xd6\x81\xe2\xef\xad\x10\xd3\x13\x95\x29\xcf\x31\x98\x69\x59\xa6\x2c\x59\x06\x89\xd8\x61\x0e\x90\x3c\xd2\x4c\x57\xa4\xe0\xac\xb6\x2e\x14\xcd\x37\x22\xe0\xad\x21\xf3\x4e\x1a\x20\x7e\x30\x23\x06\x42\x49\x4c\x59\x6f\xc6\xec\x9d\xa7\xc7\xc5\x19\x86\x3d\x11\x90\x4e\x27\x1a\xc5\x9f\x6b\x6f\x40\xb9\x00\xbd\x33\x4d\x54\xd2\xec\x48\xb7\xeb\x3a\x66\x10\x92\xd7\x0c\x83\x13\xd9\xd4\x45\xbb\x11\xf6\xad\x94\x2b\xe6\xd3\x1a\xc8\xc8\x6d\x88\x8e\x06\xda\x53\x61\x60\x23\x43\xc2\xee\x27\x34\xd4\x11\xa2\xb7\x34\x76\xb3\x23\xef\x3b\xcc\xe3\xc0\xa6\x06\x59\x14\x87\x37\x34\x58\x39\x21\x78\xac\xcf\xc8\xae\x78\x31\x14\x49\xe6\x02\xd7\x86\x37\xb4\x15\xb5\xd7\xa7\x99\x20\x3d\x06\xb6\x73\x62\xbe\x79\x62\x43\x75\xb9\x38\x42\x01\xed\xf2\x21\x81\xa8\x10\x3c\x5a\x57\x39\x24\x2c\xd3\xb3\xeb\x01\xc4\x10\xc2\x7e\x1c\x4e\x7f\x31\xf1\x6b\x0e\x12\x49\x32\xd3\xfc\x31\xbb\x94\x02\x71\x9e\x6a\x19\x1c\x2a\xd4\x00\xca\x38\x09\xc9\x76\x9c\x94\x5b\x98\x86\xc9\x7b\x4b\xad\x65\xb6\xdc\x88\x71\x5f\x3a\x48\x3d\x5c\x36\x28\x45\x3a\x74\xc9\xb6\xd4\x54\x07\xa8\x97\xfd\x08\x2a\xda\xef\xfc\x01\x5c\x7a\xb8\x04\x68\xeb\x47\xff\x69\xd9\x19\xf7\xe0\x6e\x71\x36\xd8\xa1\xba\x6e\x18\x82\x9f\xf7\x8d\xef\xd5\xba\x8a\x99\x1d\x90\x20\xf2\xee\xe2\xdd\xd9\xfb\xe9\x45\x35\xff\xe2\x1f\xef\xce\xee\xaa\xbf\x5c\xdf\x5d\x5c\x4c\x2f\xbe\x0f\x7f\xba\xb9\x3b\x3d\x3d\x3b\x7b\x57\x7d\xef\xfd\x64\x7a\x5e\x7b\xcf\xfc\x54\x7d\x69\xf2\xdd\xe5\x75\x2d\x8f\x64\x4b\x12\xc8\xdb\xe9\x87\xb3\x77\xf3\xcb\xbb\x4a\x2a\xca\x77\xff\x71\x31\xf9\x30\x3d\x9d\xb7\xb4\xe7\xfa\xec\xf4\xf2\xa7\xb3\xeb\x3d\x09\x23\x7d\x7f\x5b\x87\xf4\x39\xb0\x85\x4f\xce\x2b\x3a\x61\xcb\x3c\x11\x32\x4e\xb7\x18\x29\x62\x6f\xb6\x35\xe8\x77\x78\xf6\x26\x1b\xa1\xca\x43\x02\x3e\x6e\xd7\x82\xa9\x07\x91\x03\x0b\x18\x96\x46\x94\x21\x9e\x71\xa0\x5e\x6b\x2e\x8a\xbc\xe9\x15\xd8\x19\x55\x57\xe4\x5b\x17\xb7\xb9\xab\x39\x9e\x41\x92\x2a\x61\x99\xc8\x77\xb5\x05\x34\xa3\xbc\xcc\x8a\x64\xd1\x1d\xc2\x33\x38\xf0\xbe\xef\xdd\x1b\xf9\x8e\xdb\xc9\xe1\x2e\xda\x05\x63\x25\x92\xe5\x10\x98\x3c\x94\xf0\xd4\x74\xb9\xee\x6b\x0b\x2d\xce\xca\x45\x9a\x44\x2c\x89\xeb\xf6\x14\xe2\xc3\x00\x93\x71\x9d\x16\x3d\x13\x39\xa8\xaa\xe6\x06\x90\xe5\xe2\x88\x97\xc5\x1a\x29\x3c\x29\x70\x86\x92\xd8\xcc\xa4\x16\x51\x2e\xd0\x17\x20\x34\x18\x69\x31\x1d\x6a\x50\x13\x34\x86\x18\x6c\x62\x20\xcb\x1b\x07\x29\x6a\x3a\x7c\x04\xf8\x25\x96\x3e\xc0\x48\x8a\xef\xef\x1c\x1a\x6a\x71\x82\x09\x57\x03\x58\x18\x9c\xf0\xf8\xd0\x26\x55\x35\xfd\x36\x92\xda\x25\x15\xc5\x49\xb6\x91\x46\xed\xdd\xd8\xb7\xc6\xc2\x85\x52\x0d\xbd\xa1\xd2\xe9\xd1\x69\x2e\xe0\x10\x21\x48\x83\xb5\x5f\x00\xae\x89\x22\x93\x20\x20\xc9\x5c\xd5\x16\x62\xcd\xd3\x25\x6a\x1c\x66\x6a\xda\x59\x45\xb0\xfc\x5b\x75\x2f\xe4\x35\x4e\xd8\xaf\x22\x0e\x25\xde\x7c\x3c\xa7\x91\xb3\x08\x79\x13\xa6\x69\xa3\x5d\x55\x36\x2e\x14\x94\xa9\x02\xef\x09\xc1\x63\x0c\x40\xf2\x19\x0b\x6c\x48\xe9\x72\x99\x7c\x32\x05\xce\xa4\x68\xe5\x6c\x07\x30\x99\x65\x97\x74\x72\x19\x80\x73\x48\xd1\x77\x2f\x24\xe4\x53\x05\x72\xc0\xfd\x6b\x76\x98\xfd\xbc\x39\x17\x3b\x0c\xfa\x60\xf3\x4b\x2a\x69\x66\x43\x2f\x8f\x1d\xa7\x02\x23\xc2\x1c\x07\x07\xac\x9b\xd3\xf3\xe9\xd9\xc5\xed\xfc\xf4\xfa\xec\xdd\xd9\xc5\xed\x74\x72\x7e\xd3\x77\xfb\x3d\x47\x14\x5f\x6d\xf7\xd5\x83\xd9\x9c\x84\x38\xa6\x9d\xe7\x43\xd9\x5d\xa7\xfc\xb6\x83\x29\xd9\xdf\xfa\x24\xce\xe6\x71\xa2\x23\x73\xfc\x6d\xe7\x42\xc6\x90\xec\xe2\x49\x4b\xb5\xbd\xa8\x7a\x2f\xdc\x1b\xcc\xbd\x61\x25\x08\x9e\x76\x0f\x76\x45\xbb\xe7\x00\xc9\x04\x33\x64\x2e\xcc\xe6\x8f\x2b\x1c\x23\xe3\xfd\x19\xce\x4c\x71\x87\xf5\xad\x5a\x44\xbd\x4f\xd8\xde\x44\xeb\x12\xa8\x4c\xec\x6b\x80\x47\xed\x18\x15\x62\x20\x0e\x33\x6e\x24\x41\x16\x7a\x96\xe8\x99\xdc\x70\x19\xf3\x42\xe5\xdb\x8e\x2e\xf6\x13\x9e\xe1\xb6\xa9\x8a\xd0\xf0\xc8\x96\x42\xc4\x76\x16\xf0\x55\x2e\xeb\x4b\x09\xf3\x72\xdc\x5e\xfe\x78\x76\x71\x33\x3f\xbb\xf8\x69\x7e\x75\x7d\xf6\x7e\xfa\x27\x07\x93\xcd\xb8\x6e\x4b\x2e\x9d\xe5\xc2\x48\x17\x4b\x73\xd6\x2a\x5f\x30\x65\xb3\x2d\x87\xd2\x74\x26\xcb\x99\xb4\x92\x25\xf7\xc5\xaf\x73\x55\xae\xd6\xed\x05\xd5\x5b\x79\x35\xb9\xfd\xe1\x49\xcd\x04\x12\x4a\xcc\xeb\x8a\xbb\xad\x09\x17\x4e\x96\x24\xf7\x10\x63\x5c\x6b\x1e\x50\xa9\xc2\xab\x6d\x5e\x86\x0e\x89\xf6\xa4\xdb\x4b\x53\x68\xed\x54\xfe\x5b\x5e\xef\x5a\x40\xb7\x81\xdc\xac\x1c\x23\x00\x5f\xc7\xe4\xe0\x8d\xd2\x4e\x5a\x7e\xab\x9c\x60\x5f\x1d\xa5\x62\xb5\x12\x31\x2e\xaf\x7a\xc1\x64\x83\x23\x11\x18\xf9\x73\xbd\x6d\x14\x29\x81\xef\x01\x07\xb3\xc3\x7b\xf5\x17\xe0\x57\xee\x93\x76\x59\x71\x4a\x44\x52\xe0\xdf\x2c\xb8\xec\x70\x24\xef\x8f\x07\x6b\x2f\xfe\x32\x67\x2e\x54\x8f\x0c\x26\xd6\x65\xe0\xf7\x41\x17\xe0\xe5\x70\x7c\xab\x6b\xc7\xb5\xc8\x52\x1e\x09\x17\xe0\x82\x0c\xc0\x70\xaf\x7f\x8a\x03\x8f\xd2\x24\x4b\xb2\xb7\x04\xe9\x93\x7d\x66\xb8\xb6\x25\x00\x96\xdb\x6b\x2b\x8f\x5f\xde\xb4\xb2\xf3\xe2\x46\xbc\x9f\x60\x68\xc6\x3c\x95\x14\x17\x81\xb6\x28\x48\xfe\xda\x89\x59\x1f\xb4\x1c\x6a\x35\xff\x44\x13\x8f\x77\xe6\xaa\xa1\x9b\x5b\x66\x5d\xb7\x3c\x9c\xea\xb8\xcb\x5e\x58\x14\xf9\x4e\x32\xee\xe7\x70\x47\x5c\xe5\x6a\x93\x68\x31\x29\x8a\x3c\x59\x94\x61\x36\xe2\x81\x80\xb9\xca\xe5\xc4\x77\x38\xcb\x55\x5c\x46\x96\x3e\x0b\x7a\xeb\x61\x3f\x64\xe5\xb3\x5a\x47\xcc\x8e\xcc\xea\xa3\x9b\x9b\x88\x8f\x20\xda\x03\xf9\xdd\xda\x7c\x6c\x56\x30\x76\xd8\xfe\xae\xec\x51\xfe\xcc\x31\xa3\xdd\x83\x69\xd7\x40\xbf\x30\x70\x66\x5f\x07\x0d\xb8\x03\x35\x45\xcb\x65\xc1\xd1\x81\x5e\xd5\x51\xba\xd8\x72\xdc\x51\x33\x0c\xdc\xd5\x0f\x1b\x53\x0d\xa7\x42\xbd\x61\xcd\x35\xaa\xf3\x45\xb4\xae\x36\x1c\x7a\x53\x65\x0d\xae\x37\xd7\xa9\xc7\x87\x99\x4d\x7a\xb9\xd1\x46\x68\x68\x48\xc8\xb0\x5d\xc9\x00\xeb\xd2\x59\x77\xda\xef\x31\xe4\x62\xfe\x4b\x29\x86\x64\x75\xb6\xa1\x1a\x7f\x84\xcf\xf6\x02\x52\x12\xc4\x6e\x39\xdb\x6b\x91\x6c\x8c\x06\xc4\xf3\x68\xcd\x16\x5c\x13\x1d\x61\xc8\x96\x80\xe9\xe7\x59\x62\xbe\xe2\x51\x41\xe9\x78\x6d\xb5\x36\x25\xef\xad\x85\x42\x1a\xb5\xd6\x5b\x3d\xda\x96\xdb\xbe\x01\x18\x62\xbd\xb6\xcd\x98\xbe\x1b\xe4\x43\x08\xf5\x70\x77\x4f\xc6\x23\x16\x4e\xa7\x94\x97\x32\x5a\xb3\x2c\xe5\x48\x28\xb1\xe6\x1a\x05\x85\x45\xe8\xf0\x45\x92\x26\x05\xf0\x84\xa1\xe3\xb8\xb6\x6e\xcd\xe5\x99\xe7\xf7\x36\xdd\x02\xf7\xa4\x70\xbb\x44\xc9\x81\x48\x68\xd7\xab\xcf\x8a\x85\xf6\x82\x30\x14\xee\xfd\x36\x3b\xe1\xa0\xfd\x74\x98\xe3\x0d\x36\xbb\xef\xcb\x30\xef\x10\x95\x78\x55\xff\xbc\x36\xde\x48\x40\x79\x10\x49\xf0\xce\xb8\xac\x17\x01\x9d\xfb\xa8\xb2\xdd\xc7\x68\xb3\xc3\x2d\x4a\xf0\x70\xe0\x13\x25\x4e\x1a\xa0\xc4\xd4\xd3\x2a\xb5\xee\xfb\x65\xaa\x78\xb1\x3b\xca\x0d\xb3\x24\x75\x95\x1d\xab\x72\xd1\x95\x97\x03\x5b\xf5\xf4\x18\x3a\x2b\xfe\x9f\xcb\xe6\x1e\x9e\xa3\xbc\x10\x46\xfa\x3e\x6d\x40\xcd\xd7\x47\xf0\x79\x7b\xe1\x14\xc5\x3c\x98\x91\xc2\x2d\x03\x9f\xab\xcf\xe9\xfe\x00\x49\x6d\xd9\x4e\x75\x25\xef\xa0\x98\xc7\xc3\xe6\x2b\x91\x7b\x96\xd2\xfe\xf4\x5f\x5f\x7f\xd5\x27\x1a\xf1\x8f\x25\x37\x07\xc0\xe5\xf2\x06\x09\xc2\x0e\xe9\x74\x91\x34\xb7\x55\xbb\x18\xa8\xd7\x7a\x5b\xf5\xd2\x86\x0b\xbf\x37\xdb\x41\x5b\x6f\x6e\xcc\xd7\xfd\xc5\xee\xb4\x62\x8d\xcd\xf2\x44\x01\x51\x96\x5a\x56\x74\x8d\x16\x49\xdc\x5a\xef\x01\x23\xf9\x4b\x29\x4a\x61\x16\xd0\xa2\x8c\x57\x4d\x67\xc9\x80\x0b\x97\xef\xd2\x5a\x3d\xb2\x4d\x19\xad\x99\x2d\x9c\xc5\x22\xe5\xdb\xaa\x1a\x65\xee\x1a\x85\x02\x0a\xe5\x41\x7c\x81\x01\xf1\x7d\x54\xea\x42\x6d\x00\xa7\xee\xcb\xcd\x4b\x09\xbb\x9c\x71\xbb\xbb\xda\x0e\xb4\x0a\xa1\xe7\x13\x3d\xe4\x37\x57\x67\xa7\xd3\xf7\xd3\x9a\x7b\x7a\x72\xf3\x63\xf8\xf7\xcf\x97\xd7\x3f\xbe\x3f\xbf\xfc\x39\xfc\xed\x7c\x72\x77\x71\xfa\xc3\xfc\xea\x7c\x72\x51\x71\x62\x4f\x6e\x27\x37\x67\xb7\x7b\xfc\xd4\xcd\x5a\xbb\x27\x82\x07\x7c\xa3\x16\x39\x6f\x93\xe9\x58\x73\x15\xd5\x7a\xc2\x26\x96\x7d\xb5\xc2\x0f\x6c\xb1\x06\x00\x4e\x4a\x11\x63\x89\x90\x84\x77\xbc\xe0\xa7\xbc\xe0\xa9\x5a\x8d\xd9\x84\x51\x5c\x01\xc6\x8b\x68\xa3\x12\x12\x35\xa5\x99\x1d\x2c\xc2\xe8\x85\x91\x37\x05\xf9\x6c\xe1\x6a\x49\xa4\xb0\xa9\x08\xf3\x4a\xd9\x20\xcf\x99\x3c\x7b\x10\xb2\x28\x41\xd1\xe6\x69\xca\xa8\x5a\xfb\x42\xc0\x0a\x62\x5b\xa9\x93\x4d\x92\xf2\xdc\x27\x76\xbe\xa4\xb2\xe0\xb2\x6b\xdb\xea\x58\xe9\x9a\x94\x13\xd6\x1e\x70\x37\x65\xd0\xee\xd3\xf3\x29\x28\xba\x51\x61\xb3\x16\xda\xca\x67\x12\x49\x47\xa9\xc6\x0d\x87\x18\xa6\x42\x91\x81\x1e\xab\xa7\x97\xbb\x17\xe2\x41\x8a\x95\x75\x65\xbd\x94\x61\xc2\x35\xd2\xfe\xe3\x4c\x16\xf9\xb6\xb7\xf6\x7a\x0b\x8c\x0e\x1a\xee\x75\x04\x89\xac\x26\x7b\x46\xfb\x29\xb3\xa5\x5f\x80\x4a\x6b\xf1\xba\xe4\xde\x73\x5e\x3c\x84\x47\x75\x5c\x89\x52\x73\xf2\xfe\x56\xc7\x21\x64\x01\x83\x51\x58\xa8\x52\xc6\x9a\xc0\x9b\x9b\x44\x1e\x6f\xf8\xa7\x37\xb6\xa7\x48\x62\xe3\x52\xae\x01\x63\xa2\x48\xcd\x7d\x70\x6b\x84\xdc\xee\xe1\x9a\xc9\x1d\xe3\xb5\xff\x4e\x60\x25\x2b\x98\x0c\xbc\x7d\x07\x61\xa8\x0f\x62\xdb\x36\x7f\x8d\xb4\x99\x2c\xcc\xfd\x00\x85\x64\xb9\x30\x2f\x3a\x8c\x6b\x8a\xd0\x65\xf7\x37\xc4\xb2\x54\x52\x7b\xb7\xcb\xee\x10\x36\x72\xd0\xb6\x69\x05\xac\xf4\x57\x7c\x7a\xe7\x3d\xa5\x9a\xcc\x9c\x21\x7c\xc5\x7a\x4e\x28\x76\x87\xfc\xf2\x66\xb2\xfe\xaa\x16\x6c\x09\x81\x6c\x64\x27\xc8\x05\x78\xca\x60\x2a\x6c\xa2\x1e\xe0\xd5\x6b\x60\x62\xec\x12\x48\x85\x06\xff\x91\x34\x97\x6a\xf1\x4b\x49\x10\x80\xb7\x5f\x0e\x3b\x67\x0b\xcc\xf6\x80\xf4\xde\xf5\x3c\x08\xee\x2c\x87\x76\x95\x32\x69\x23\xdb\xbc\x2e\xa5\x39\x8a\x9f\x03\x3d\xd5\xdf\x3d\x5e\xab\x94\xfe\xdc\x1b\x6b\x66\x3d\x3b\x39\xbe\xff\x62\xcc\xcd\x3f\xd5\x08\x9b\xa9\x3a\x88\x6c\xa0\xd2\xc3\x03\x6d\xc1\xa3\xfb\x47\x9e\xc7\x68\xfe\x07\x38\xd3\x98\xfd\xa0\x1e\xc5\x83\xc8\x47\x2c\x12\x79\xc1\x89\xaf\x50\x03\x9e\x03\x36\x14\x95\x33\x93\x10\xe8\x83\xe4\x8f\x52\x97\xb9\x60\x45\xb2\x5a\x17\x22\x0f\xd1\x38\x2a\x37\xe2\xa8\x40\xaa\xda\x4c\x44\x44\xc8\xd6\x31\x00\xcb\x94\x3f\x34\x09\x18\x9f\xc2\x24\xc3\xa6\x2e\x5a\xd9\xba\xbb\x6d\xf2\xb3\x5d\xf8\x29\x1a\x30\x12\x9a\x48\xa1\x35\x62\x2b\x95\x72\xb9\x1a\x8f\xc7\x90\xe8\xe3\xcd\xa0\x85\x4e\x05\x86\x0e\x74\x87\xd2\x4f\x95\xd2\x22\xdd\x3a\x12\x31\x17\x47\x05\xc0\xdd\x4f\x85\x90\x3a\x41\xc3\x56\xcb\xf2\xbf\xa9\x3b\x97\x3e\xaf\x2f\xae\xfd\x7a\x3e\x38\x4a\xb7\xa3\x1c\xc8\xa5\x3a\xa0\x24\x7c\xbf\xfd\xe6\xf5\xa4\xa8\xf3\xf6\xb2\xa4\x92\x43\x43\xa9\x7f\x52\x49\x07\x14\xe4\x49\x64\xa3\xad\x25\x11\x11\xd2\x93\xc2\x4f\xdb\xc7\xac\x11\x11\x7c\x40\x30\xf0\x8e\xb8\xde\x81\x21\xbd\x7d\x0c\x01\x37\xf5\xe9\x1e\xbc\x2d\xf6\xa7\x77\x6b\xed\xd0\xc0\x90\x69\xcf\x6d\x30\x44\x75\xc2\xa8\xcb\x74\x0b\x37\x2e\x17\x40\x0d\xee\x81\x38\xf0\x2a\x55\x9c\x66\x10\xca\xe7\xbd\x6e\x8e\xa0\x2e\x70\xb2\xe9\x42\xe5\x7c\x25\xd8\x46\xc4\x49\xb9\x69\x15\x36\xae\xb9\x87\xc0\x47\x55\x5a\x6e\xba\xa9\x42\x0f\x55\xa0\x7d\x23\xf1\x5f\xa7\x50\x5d\x7f\x0e\x1d\x17\x19\x61\xb3\x6c\x52\x7b\xd1\x85\x44\x63\x6d\x4e\xca\x3c\xd1\xc0\xb2\xfb\x94\xc8\x59\x57\x0c\x16\x0d\x0e\xf8\x6d\x86\x46\xf6\xca\xec\x1e\x59\xcf\x28\x7d\xa2\x71\x56\xc1\x6b\xdf\x7d\x28\xd4\x41\xa9\xc3\x73\xed\xe5\xaa\x6c\x70\x4f\xf5\x02\x4a\x80\xda\x18\x64\xde\x20\xd4\x1c\x14\x48\xd0\x9e\x42\xb1\xa5\x8d\xc5\xbc\x17\x01\xf5\x61\x0c\x39\x39\x1e\x91\xf2\xe9\xc7\x6f\xb4\x05\x01\x11\x4e\xcb\x6b\x2c\x85\xaf\x04\x3d\x40\x0f\x6f\x2d\x3c\x0f\x7b\x88\x45\x00\x41\x61\xcc\x65\xd1\x5a\x80\x47\xaf\x42\x59\xf8\xc9\x4f\xbc\x4c\xdb\x5f\xa7\xf2\xe1\x55\xcc\xd9\x3a\xf9\xf9\x86\xe1\x50\x53\xfe\x84\x7c\x57\x43\x83\x42\xf6\x03\x04\x61\xb8\xe6\x4f\xd0\x04\x2b\xf3\x80\x83\x6e\xd3\x77\x98\x61\x17\x45\xb4\xf6\x9a\x07\x10\x34\x3a\x62\x49\x4a\xc8\x4d\xfd\xdc\xf8\x8c\x10\x88\xbd\x0e\x41\xac\xc9\x4a\xaa\x30\x95\x92\x92\x02\x5c\x71\x46\x00\xa9\xb0\x58\x96\x14\xfb\x91\x82\x03\x59\x09\xf7\x2d\xb5\x42\x21\x02\x8c\xfa\x59\xf1\x53\xc3\x95\x22\x41\xba\x2a\x0b\xb3\xc6\x3b\x11\xe5\x77\xae\x67\x0a\xa8\x12\x80\xcc\x64\xb5\xaa\xc6\x20\x59\x28\x5f\x92\x0b\x24\xf8\xd6\x46\x7b\x2b\x92\x07\xb3\x51\x9b\xcb\xda\x2d\x50\x90\x00\xcd\xb5\x47\x6e\x5b\x16\xb0\x84\xdf\x8b\xad\x0e\x93\x49\xd3\x8a\x62\x5d\x0b\x32\x31\xfd\xa1\xf9\xda\x3f\x15\x30\x70\xf3\xdc\xa7\x84\xec\x77\x96\x61\xa5\x1f\xcc\xc7\x3b\x30\xc2\x8d\xc2\xcd\x1a\xf4\xc1\xae\xde\xa6\x48\x62\xc2\x8f\x33\xcd\xa1\x87\x01\x02\xc8\x33\x84\x71\x86\x91\x4b\x70\xf1\x35\xf7\xdb\x99\xa4\x44\x02\xc1\x21\x67\x04\x4e\x73\xda\x28\x02\x1f\xe9\xcb\xb7\x15\xf6\x20\xa0\x56\xb5\x34\xb3\xd5\x2a\xad\x77\x19\xf2\xf2\xc1\xf2\x80\xaa\x31\x46\xd9\xda\xf0\x5a\x2b\x7c\x22\xb6\x94\x26\xb7\x13\x4f\x1a\x04\x02\xe2\x9b\xc4\x2e\x8a\x59\xc9\xf1\xf6\x13\x09\x33\x7c\x13\xd9\x0a\xe5\xb4\x40\xce\x9b\xb3\xd3\xeb\xb3\xdb\xcf\x86\x37\xb5\x60\xcf\xc1\x80\x53\xdb\xce\x77\x67\xef\x27\x77\xe7\xb7\xf3\x77\xd3\xeb\x97\x40\x9c\xd2\xa3\x27\x40\x4e\x6f\x28\x3f\xc9\xa9\x92\x85\xf8\x74\xd0\x99\x9c\x97\x72\xce\x07\x84\x3e\xb9\x0c\x45\xbb\xd4\x1d\x2c\xb4\x99\x5f\xc5\x25\x3f\x21\x6e\x5b\x42\x9d\xd8\x74\x2a\x4b\x6f\x34\x5c\x26\x69\x0a\x91\xe0\xce\xbc\x4e\x51\x86\x66\x50\x41\xfe\x58\x3a\x5f\x92\xa9\x33\xb9\xa8\xa4\xbf\x01\x93\xdf\xda\x5c\x82\x31\x06\x3c\x33\x03\x90\x27\x10\x61\xbb\x2b\x05\xcb\x2a\x91\xc2\x37\x03\x66\xcd\xb4\xaf\x93\xa6\x9e\x26\xf1\x25\x91\x75\xa4\x78\xf5\xd5\x35\xed\x8a\xab\xac\x4f\xab\x7e\xda\x87\xae\x87\xb8\x89\x13\x89\x8a\x69\x65\x37\xdf\xb4\x2f\xdd\x63\xbf\x05\x60\xdc\xcd\x4c\x72\xf0\x41\xe8\x82\xe7\x85\x9f\x48\x9a\x08\x4c\x0c\xe7\x9d\x13\xf7\x09\x22\xd0\xd4\xb2\x36\xce\x46\x14\x9a\xb1\x4e\xc0\x53\xc1\x89\xdc\x26\x4a\x4b\x5d\x88\x9c\xcc\x26\x93\x9f\x6f\x66\xf2\x3b\x73\x7c\xbd\xa1\x53\x88\xd2\x77\x61\x15\x88\xd4\x51\x95\xfa\xad\x86\x12\x4a\xb0\xd7\x68\xa3\xde\x08\x2e\x35\x83\xad\x91\xa6\x22\xf7\x2b\x03\xdb\x23\x44\x4c\x49\xb4\x81\xea\xd9\x7f\xff\x86\x11\xb8\xd5\x0c\x85\x69\xaf\x4b\x23\xb6\x51\x45\x73\x3d\x75\x11\x0d\x00\xe2\xfc\x25\x57\x4e\x4b\xe0\x53\xdf\x55\x44\x60\xfd\xd6\x45\x54\x0d\x43\xea\xb5\x96\x6e\xb1\xb8\x7f\x2c\xa5\x67\x5c\x4a\x3d\xce\xf5\xf0\x94\x60\x6b\x65\x04\xa8\xcb\x6d\xe5\xdd\xcc\x8e\xe8\x24\x05\x94\x9b\x19\xc6\xd6\x53\xa7\x96\x5d\xf6\x10\xec\x07\x14\x75\x18\x42\x7b\xd2\xc2\xa8\xe4\xd3\x18\x5a\xdf\xce\xce\xc4\xb5\x2f\xc3\x5c\x38\xb1\x58\x55\xa9\x0a\xcb\x41\xe2\xe0\xa1\x84\x75\x35\x2f\x38\xf2\x9b\x9d\x6d\x24\x42\x19\xab\xa5\xcc\x0f\x4c\xfe\x78\x1b\x62\x6a\x2b\x51\xd9\xd8\x8a\x90\xcf\xc1\x72\x38\x38\x0e\x98\x21\x8b\xef\xe9\xe9\x85\xab\x6b\xce\xf1\x89\x3e\x09\xec\x70\x71\x79\x71\x16\x42\x15\xa6\x17\xb7\x67\xdf\x9f\x5d\x57\xe2\xf9\xcf\x2f\x27\x95\x98\xfc\x9b\xdb\xeb\x5a\x28\xfe\x77\x97\x97\xe7\x67\x0d\xcc\xc3\xd9\xed\xf4\x43\xa5\xf0\x77\x77\xd7\x93\xdb\xe9\x65\xe5\xbd\xef\xa6\x17\x93\xeb\xff\x08\x7f\x39\xbb\xbe\xbe\xbc\xae\xd5\x77\x77\xba\x1b\x3d\x51\xe9\x46\xbb\xf9\xc7\x3b\x67\x03\x6a\xd5\xd6\x6d\x5c\x4d\xbf\x7c\xc0\x2e\xee\x89\x3c\xdb\xb7\x1c\x6d\xb8\x7e\x1c\xa6\xe3\xc0\x8d\x61\x9a\x3a\x68\xd5\x3d\x7f\xbe\xe8\xca\xd0\x65\xfc\x30\xb1\x67\x4e\xb5\xf9\x73\x20\x01\x77\x2a\x80\xae\x96\x9a\xe1\x96\xd2\xb3\xe3\xd0\x66\xe0\xc1\x5a\xf1\xce\x7c\x65\x32\x7e\xf1\x96\xda\x3a\xf6\xb5\xd3\x53\x79\xed\x61\x44\x7a\x2e\x36\x94\x5d\x8d\x0e\x2a\xb3\x64\x03\x49\x6c\x15\x05\xfb\x30\x84\xdd\x9b\x6e\x98\x95\x13\x2c\xc7\xae\xc4\xbe\xed\x61\x4b\xbb\xd9\xf7\x86\xb6\x9f\x2a\x69\xb6\xbd\x46\xd5\x32\xa0\xdd\x40\x99\x35\xa4\xdd\xb7\x5c\xdf\x0f\x6d\x37\x55\xd2\x6c\x37\xa8\x7d\x4f\x6a\x37\x18\xbc\x8b\x76\x1a\x9d\x01\x42\x2c\x2c\xa6\xda\x3c\x17\xe3\xef\x5e\x09\xf2\x67\xf7\x6b\xa3\xd9\x00\x2f\x7b\xbd\xcc\x78\x7f\x47\x06\xb4\xc6\x6d\x57\x5e\x63\x95\xbf\x81\xa7\xd0\xc3\x45\x2e\xf8\x7d\xac\x1e\x69\x3e\xea\xc8\x50\xd6\x4b\x9a\x57\x07\xc8\xc8\x70\x7b\x44\x14\x39\x79\xa0\x10\xa5\xe6\x8b\x07\x98\x5c\x42\xbc\xe8\xa8\x83\x05\xa9\x97\xeb\x44\x44\x40\xfd\x24\xfd\xec\xcc\x24\x6a\xf3\x6d\xe9\x9b\xcd\xac\x9a\x16\x11\x75\x08\x74\xd5\xe9\xd0\xe8\x5c\xd7\xc1\xc4\x52\x1c\x50\x99\x03\x98\x6e\x91\xc3\x9d\x09\x06\x24\x91\x60\x4c\xce\xcd\x85\x27\x17\x51\xa2\x45\x90\x31\xae\xf5\xc4\xfe\xe5\xb0\x54\x28\x05\x2f\x5a\xcd\xae\xbd\xed\xe1\x3c\x2a\x4a\x9e\x32\x08\x57\x22\x06\x46\xb4\x55\xe2\x2f\x11\x97\x18\x1a\x53\x88\x4d\x06\x51\xfd\x61\x4c\xc7\x4c\xfe\x0c\x40\x09\x9c\x82\x57\x9a\x7d\x0f\x90\x07\xfb\x32\x1d\xc2\x1b\x5e\xc0\x59\xfc\x47\xac\xc3\x3d\x1b\xcf\x64\x25\x03\x53\xf0\x55\x25\x19\xd3\x78\x26\x6d\xb6\x8e\x58\x45\x7a\x0c\x37\xbe\xb1\xca\x57\xc7\x94\x4b\xdd\x2c\x76\x75\xbf\x50\xea\xfe\x58\xc8\x63\xb0\x49\x15\xc7\xbc\x2c\xd4\x31\xc0\xa5\x70\xfe\xf5\xb1\x4d\x7a\x6c\xb3\x46\xeb\xe3\x75\xf2\x20\xe0\xff\xc6\xeb\x62\x93\xfe\x8b\xce\xd6\x9f\x8e\x56\x69\x7e\x64\xbe\x3d\x0a\xbf\x3d\xb2\xdf\x1e\xd9\x6f\x8f\xcc\x67\xf8\x7f\xd9\x16\xdd\x3b\xe2\x13\x37\x67\xd9\x68\x26\x13\xa9\x45\x5e\x80\xf6\xf3\x98\x27\x85\x4f\x75\xb5\x65\xaf\xfe\xf3\x3f\xd9\x38\xe7\x8f\x18\x11\xfb\x8e\x17\xfc\x0a\xed\x8b\x7f\xff\xfb\x2b\x70\xa8\x62\x14\x53\xc6\xf3\x5f\x4a\x51\xcc\xa4\x16\x66\x13\xb2\xff\x35\x93\xe0\x81\xdd\x6c\xe7\x05\xda\x5d\xd1\x06\x19\x6b\xf6\x2d\x96\x39\x45\x36\xd2\x58\x9b\x92\x3a\xc2\x09\x12\x9e\xb6\x64\xe9\xef\x30\xd1\xff\x92\xbe\xa3\xf7\x07\x6c\xeb\x5f\xd2\xea\xae\xb6\xc9\x96\xf4\x2f\x29\x1c\xa0\xa9\xe2\x16\xac\xc5\xdc\xe2\x85\x7b\x32\x35\xae\x6d\x8f\x34\xa0\x01\x2f\xea\xa6\x6f\xdf\x2b\x37\xc8\x88\x6e\x2d\xf7\x0d\x31\x02\xbe\x02\xef\x87\x00\xef\x79\x62\x76\xc8\x0d\x5a\x42\x41\x73\xc3\x9e\x83\x4e\x4a\xae\x73\x57\x1e\x1a\x2e\xf4\xd7\x27\xc7\xc7\x23\xb6\xd2\xf0\x9f\xc5\x2f\xf0\x1f\x40\x0f\x3d\x17\xa9\x6f\x63\x30\x1d\x10\xae\x39\xcb\xfb\x67\xe2\x39\x50\x74\x9f\x83\x47\xbe\xb6\x4c\xbf\x2b\x65\x9c\x0a\x1f\xda\x58\x71\x89\xa4\xca\xcc\xa4\x9d\xa8\x66\xe6\x21\x98\xe3\x85\x88\xb8\x11\x7c\x8d\xba\x11\x5c\xaa\x96\x85\x90\x68\x0d\xcb\x7d\xb6\x47\x8e\x96\x2b\x50\x8b\x01\x0a\xc9\x0b\x82\x9c\x0b\xf8\x11\x2a\x01\x62\xf6\x51\xfd\x11\xdb\xaa\x92\x38\xc6\x81\x39\x37\x16\x51\x0a\x89\x1c\x2c\x7b\x10\xcb\x45\x51\xe6\x92\x71\x96\x71\x19\x73\x0d\x2b\x70\x99\x83\xb7\x33\x67\xbc\xd9\xd0\x11\xc2\x71\x55\x59\x00\x27\x16\x22\x0b\xc2\x91\x40\x12\xf8\xa0\xcd\xa3\xa0\x11\x78\x26\x00\x17\x75\xe3\xc3\xf1\x4c\xda\x7c\x84\x84\x85\x43\x4b\x59\xa4\xb2\x2d\x31\x1e\xd5\x07\x3d\xb1\x96\x33\x1a\xee\x91\xc7\x9b\xd4\xdf\x1d\xb1\xa4\xea\x5a\x03\xbe\xf9\x22\x48\xf1\x6e\x93\xe4\xbf\x16\x32\x52\xb1\xc8\xf5\x1b\xb3\x0d\x13\x77\xef\x40\xfd\x21\xd1\x7e\x32\x40\x4a\x99\xc3\x8d\xac\x85\xa6\x78\x97\x60\xca\x8c\x4e\x85\xa1\xbc\x4d\xcf\xd9\xbf\x55\x7e\xeb\x28\x98\xb6\xf6\xd2\x3f\x3f\x2b\x22\x26\xc4\x75\xda\x3b\xe7\xd3\x4d\x10\xb8\x65\x43\x89\x8b\x85\xa2\x8e\x43\xca\x89\xcd\xa7\x9d\x14\x90\x21\x33\x17\xba\x98\x49\x3a\x81\x47\x6c\x29\xb8\xd1\xf3\x46\x2c\xd2\x0f\x28\x8c\xf1\xb8\x2f\x1e\x95\xc7\xe0\xd8\xf4\x36\x00\x86\xad\x14\xee\x8d\xc4\xf8\x1a\xa7\x08\x6c\x04\x18\x74\xdd\xd0\x9d\xaa\x02\x83\xd5\x2a\x10\x9f\x30\x0e\x36\x5b\x4a\x3d\xc3\x5a\x98\xac\x07\x46\x62\x8b\x8e\x62\x56\x6f\x07\x3e\x30\x82\x07\x7b\x87\x30\x90\x40\x38\x82\xc6\x4d\x58\x5a\xdc\x67\xde\x87\x1b\x52\xd6\x83\x6d\xa6\x6b\x53\xed\x18\x08\x68\xc0\xd3\xec\x16\xe6\xd3\xbd\x06\x2b\x2d\x72\x9b\xca\x05\xfb\x8a\x04\x93\xeb\x24\x8f\x8f\x32\x9e\x17\x5b\xbb\x7c\xd3\x64\x01\x19\x20\xd2\xe4\x5e\xb0\x49\x9e\xab\xc7\xe7\x1e\x85\x4e\xd1\xd2\x75\xc3\x3e\x04\xc9\x3e\xf4\x96\xdf\x4a\x2f\x5b\x37\x77\x3c\x8d\xca\xb6\xcb\xf0\xd1\x5a\x4f\x2e\x8a\x7c\x3b\x37\x0b\x71\x93\x75\x4a\x8a\x5e\x41\x13\xfd\x95\xdc\x61\x2c\xb9\x35\x13\x46\x27\x4b\x6e\x65\x56\x7f\x3b\x2c\xb9\x2d\x04\xb8\x4d\x96\xdc\xe9\xc5\xf4\x76\x3a\x39\x9f\xfe\x9f\x5a\x89\x3f\x4f\xa6\xb7\xd3\x8b\xef\xe7\xef\x2f\xaf\xe7\xd7\x67\x37\x97\x77\xd7\xa7\x67\xbb\x69\xaf\x9a\xad\xf7\x2a\xf8\x11\x0b\xeb\x39\x61\xb7\x01\x50\x03\x83\x0d\x48\xff\xa6\xfc\xb8\xb0\xaa\xcc\x66\x4e\xe4\x6a\x04\x1b\xf5\x84\x9d\xe5\xf9\x74\xc3\x57\xe2\xaa\x4c\x53\x80\x53\x61\x64\xcf\x69\x2e\xe0\xe2\x39\x62\x57\x2a\x9e\x06\xdf\x41\x38\x62\x6b\x37\xa0\x7e\x1e\xc7\xb9\xd0\x1a\xab\x1f\x51\xfd\x01\x78\xc8\x85\x3a\x12\x78\x8e\x3f\xf0\x24\x35\xf7\xb7\x13\xf6\x1d\x8f\xee\xd5\x72\x89\xe1\x33\x23\x17\x38\xc5\x7e\x29\x55\xc1\x99\xf8\x14\x01\xd5\x5b\xfb\x3a\x39\x57\xab\x5f\x01\xaa\xdc\xc3\x3d\xd5\x71\x49\x81\x54\x77\xf3\xf6\xe3\xbc\x5d\x10\x50\x2f\x3f\xe0\xa7\xef\xf1\xcb\x76\x03\x65\x91\x3e\x43\x78\xfc\xb9\x5a\xb5\x27\x1e\x02\xed\x9a\xb2\x25\x91\x23\x21\x22\x76\x11\xb5\x62\x3a\x91\xf7\x33\xf9\xf3\x5a\x48\xa6\xca\x1c\x7f\x82\x6b\xbe\x51\x33\xd3\x52\xaf\x05\xa4\xa9\x1e\xb1\x47\xc1\x36\x7c\x8b\x6a\x33\xdc\x09\x5c\xb6\x14\x58\x32\x70\x8a\x98\xaf\xd3\x44\x1a\x69\x91\x25\x36\x2e\xa1\x3e\xf5\xcf\x71\xe3\xb2\x44\x87\xfc\x70\x1e\xe2\x5d\xe7\x69\x05\x9f\x07\xa6\x32\x8f\x9b\xb4\x00\x21\x92\xdc\x90\x54\x56\xa9\xfb\x32\xf3\x94\xa8\xaf\xac\x73\x12\x86\xfb\x41\x25\x31\x8b\xcb\x2c\x4d\x22\x27\x77\x1f\x55\xde\xc9\xfb\x8c\x01\x34\xfd\x4f\x9d\x7a\x58\xd8\xae\x8e\xb5\x44\xe7\x04\x48\xba\x1d\x0c\xd0\x2f\xcc\x81\xcd\x12\x19\xa5\x25\xa4\x99\x2b\xb5\xc8\x8f\x5c\xea\x68\x17\xeb\xf7\xdb\x27\xc9\xf6\x24\x9c\x87\x87\xb5\x85\x41\xe7\xa9\x5a\x25\x11\x4f\x43\x70\xb3\x47\x45\x38\x16\x5e\xbb\xed\x29\x99\x30\xc4\x41\xd8\x06\x75\x12\x69\x65\xb9\x00\x22\xe8\x39\x88\xf2\x39\x89\xbb\x43\xda\xbd\x64\xe6\x82\x8e\xed\x0a\x39\x72\xad\x7b\xc1\x9e\x70\xbe\x6e\x9b\x89\x0d\x54\x4c\x4c\xe1\xcf\xd4\xa3\x14\x39\x68\xb0\x00\xfb\x30\x3d\x95\x0a\x74\x13\x97\x9d\xcd\xe1\x93\x6d\x76\xc2\xa5\x03\x62\x63\xe4\xec\x2a\x79\x10\xf2\xf3\x93\x9a\x07\x15\x44\x3c\x5a\x8b\xb9\xd5\xcb\x9f\x5b\x64\xb9\x03\x60\xa0\xb0\xb2\x69\x52\x42\x51\xea\xdc\x9b\x70\x75\xc2\x16\x37\x65\x17\x3a\x12\x77\x44\x64\x99\x46\xcc\x63\x11\xdd\x7f\x76\xd1\xec\x41\x56\xb6\x21\x8c\xb3\x77\x22\xba\x67\x77\xd7\x53\x8c\x06\x4e\x0a\x66\x44\x81\x5e\xfb\xb4\x4f\x9d\x77\xb7\x82\xaf\x5e\x80\xc2\xaa\x6f\xde\x2a\x9f\xaa\xc0\x65\xeb\x33\x0d\x22\x40\x14\xc4\x4b\x1a\x21\x49\xb1\x34\x00\x04\xe3\x85\xcd\x66\x04\x86\x78\xa6\x37\x90\xbc\xa8\x2c\x82\x8c\x7f\x29\x5f\x88\xb4\x83\xb8\x33\x53\xf1\xdc\xfa\x49\x0e\x05\xf3\x34\xca\xb2\x76\x0c\xf2\x3a\xda\x38\x06\x6e\x34\xd6\x5b\x7a\x91\xdd\x7f\xa3\x03\x7a\x0d\x15\xf2\x87\xc3\xbd\x9e\x6b\x08\xef\x5e\x26\x2b\xeb\x6d\x4b\x96\x94\x62\x09\x03\xfa\x8d\x1e\x0c\xf2\xd2\x94\x74\xa5\x62\x82\xe9\x39\x2e\x3c\xa3\x05\x09\xb2\x9e\x78\x5c\x45\xd8\x04\x8b\x03\x84\x7a\xcd\x8e\x10\x3c\x66\x6a\x49\xd6\xc4\x2c\x4b\x13\x60\x86\x8e\x91\x84\x1e\xd8\x33\x74\x15\x1d\x1f\x96\x66\x1b\x1b\x90\x7c\x5c\x59\x20\x5e\x57\x32\x5e\x10\x18\x18\xc1\x30\x07\x36\xb8\xf9\x03\xef\x26\x53\x7b\xf1\x8c\x69\x1d\xed\x71\xde\xe4\x2a\x25\x6c\x85\xb4\x8f\x6c\x05\x78\xac\xdb\x80\xfc\x88\xa7\x51\x49\x7e\x32\x48\x97\x6f\xb3\xe0\xef\x46\x10\x7a\xaf\x9f\x99\xe8\xaa\xd5\xbf\xae\x64\x1e\x9a\x5d\xd1\x05\x68\x3d\xd5\xa6\xb0\xdb\xbc\xb8\x4a\xd5\x02\x56\x4e\x37\x4a\x70\xc7\x89\x65\xc4\x75\x9e\xc4\x43\xf4\x1d\x3b\x26\x97\xee\xd3\x5d\x0d\xbc\xb4\xa6\x1f\x57\x93\x5d\xf7\x8c\x12\x19\xd4\x98\x1b\x87\x51\x20\x2c\x29\xab\x6a\xf5\x7a\x52\x50\x1a\x0f\x58\x56\xee\x7c\xea\xb0\x33\x54\xfb\x72\xd0\x44\x37\x99\x62\xf6\x8c\xa5\x27\x97\xd9\x3d\xc9\x07\xd0\x7d\xa0\x28\x73\x9c\x1f\xdd\x96\x45\x19\x8b\x78\xfe\x84\x3e\x9c\xd1\xb7\xfd\xfa\xe2\x46\x1a\x9b\x07\x36\x40\x79\x64\x54\x85\x98\xe7\xb1\xef\xc7\x08\xf6\x7b\xc4\x33\x30\xc3\x83\x5b\xe3\xe1\xed\xd8\xd6\x71\xed\xa3\x8b\x8c\xbc\xc4\x98\x7f\xc4\x6f\xab\x96\x1c\x38\xfb\xd6\x91\x5b\xa4\x08\xef\x36\x2b\xc7\x2f\xd7\x4a\xdc\x4d\xaf\xb5\x5b\x5f\x61\x56\x80\x1f\xb2\xb8\x5e\x42\x76\x94\x85\xf2\xde\x1e\xe8\xcf\x14\x68\x87\xc3\x88\x3e\x10\x90\xd3\xb8\x03\x29\x62\xd5\x6f\x2b\x84\x06\xe0\x8f\x07\x21\xa0\xb3\x5c\x58\xbf\xe1\x56\x14\x8e\xd7\x21\xb5\x79\x05\xc1\x2d\xe6\x7a\x5d\x25\xb6\xb1\xdc\x15\x8e\x8c\x0c\x9c\x58\xa4\xea\x47\x6a\x93\x29\x09\xb0\x24\x8c\x52\x9b\x49\x2a\xdc\x66\x87\x77\x9e\xb5\x4a\xa8\xe3\x88\x0c\x9a\x18\x38\x23\xb4\x4a\x1f\xc8\x85\x1a\x24\x31\x81\xbc\x92\xa6\x81\xa7\xe6\x6e\xa8\x72\x24\xd8\xb2\x27\x3b\x44\x02\xd4\x52\xa4\xe7\x62\x95\xe8\x42\x84\xd1\xa1\xe1\xf7\xcf\x96\xcd\xb6\x62\x3c\xd9\x35\xf4\x9d\xd9\x6c\xf7\xdd\x82\x8c\x7c\x1a\xd0\x9e\x6d\x26\xe2\xa9\xfb\x6e\xf7\x62\xa8\x05\xf0\x7b\x71\x58\x39\xef\x70\x0d\xe0\xed\x4f\x23\xd5\x97\x76\xe9\x47\xdc\x24\x11\x09\x13\xf7\x80\x46\x33\x45\xab\x92\xe7\x5c\x16\x42\xe8\x99\x24\xc7\x33\x52\xd6\x85\xac\x2c\x35\x20\xa4\xbb\xdb\x44\x4a\x17\xc8\x00\x05\x9f\x2c\x79\x92\x96\x79\xa7\xb9\x01\x57\xe5\x93\x68\x27\x76\x8d\xd2\x29\x14\xcb\xda\x26\xcd\x05\x30\x07\xbb\xc8\xb1\xa6\xd4\xdd\xc6\xd5\xf8\xde\x8e\x2e\xd8\xc3\xa5\xff\x7c\x3b\x5b\x73\x47\x4c\xf3\x37\x7a\x9e\xa9\x01\x12\xef\xc7\x6f\xf4\x95\xea\x88\x06\xd7\xbf\x34\x6c\xa2\x3b\xe0\x13\xbf\x74\x25\x64\xe1\xfa\x1e\x3c\x8f\xfb\x4c\x31\xbd\xd8\x38\xf7\xfa\x27\x3b\x65\x17\xac\xda\x35\x97\x71\x6a\x54\x5e\x5e\xd4\x79\xaf\x1d\xce\xdb\x5c\x89\x0a\x2b\x1c\xbb\x83\xfa\x20\x46\x66\x1e\x35\x02\x2c\xf7\x8d\x53\x2d\x32\x73\x27\x96\xb2\x56\x4b\x35\x5e\xb2\x2d\x4e\xc7\xeb\x30\x94\x06\xd9\x6d\xd8\x5f\x5d\x7f\x39\x0b\xdb\xfe\x99\xd4\x97\xea\x5e\x5b\x26\xab\xdf\x80\x21\xe1\x43\xf3\x48\x88\x48\xe6\xd0\x41\xed\xa2\x1b\x0e\x94\x3a\x10\x48\x66\xa4\x76\xc8\x38\x3e\x93\x94\x0e\x1e\xd1\x05\xe0\x56\x46\xbe\x35\xcd\xde\xba\xe8\xe2\xb7\xbf\xb3\x6c\x5b\x5b\xb6\x84\x45\x05\x94\x76\x2a\x8a\xca\x1c\x5c\xff\x64\x9e\x64\x02\x0f\x61\x3d\x88\x48\x06\x54\x0f\x07\xd8\x42\x3d\xb1\x4d\x4d\x72\xf6\xe8\x4a\xa7\x6e\xc1\x0c\x89\x89\xed\xdd\xa1\x4f\xf9\xca\x72\x5d\x30\x5d\x88\xac\x55\xfc\x56\xb4\xcb\x6d\x26\x26\x52\xaa\xa2\x1e\x9f\x32\x58\xbf\xe4\xae\x94\x9e\x5b\x67\xc0\x61\x34\x09\x4c\x46\x7f\xb8\xb9\xbc\x60\x19\xdf\x02\xf6\xb1\x50\x0c\x5f\x05\xc2\xd1\xba\xa0\xda\x37\x03\xd5\xce\x57\xa5\x0a\x8e\xa9\x05\x51\xb7\xfb\x27\xa8\xc6\xa6\xb2\x08\x6b\x86\x96\xa4\x91\x59\xb9\x4a\x8f\xb2\x94\xcb\x00\xde\xae\xc7\xac\x56\x7d\x88\x67\x70\x9e\x4d\x42\x8c\x41\x03\xc0\x5e\x41\x6b\x21\x2f\x5b\x01\xd0\xc0\xbb\x63\x17\xd4\x61\x10\x86\x4e\x19\xb1\x13\xd8\xf9\x01\xb3\xc0\x60\x4e\x04\x64\xcf\xb0\xb0\x0c\x87\xec\xe1\x1a\x40\xb7\x9d\x0c\xe0\x3c\x4a\xb9\xd6\x3b\x51\x3a\x2f\x42\x25\x1f\x44\x2d\xee\x17\x5f\xd5\x76\x22\x8c\x10\xb8\x4d\xf0\x5e\xea\x1e\x03\x5b\x82\x15\x5d\x3e\xe9\x5b\xa0\xef\x07\xd9\x20\x08\xfa\x40\x7c\x51\xf0\x3d\x32\x41\xde\x8b\xad\xb5\x70\x91\xa8\xe2\x1b\x31\x72\xc6\x56\x67\x4d\x0c\x40\x7f\xcd\x82\x67\x12\x50\xb1\xef\xc3\xe6\xb1\xf7\x4a\x8d\x10\x9f\x49\x95\x73\x2c\x96\x87\x08\xa7\x99\x7c\xaf\xd4\x98\xbb\x4b\x2c\xb5\x9f\xc4\x4d\xbd\x42\x42\x45\x01\xe6\xb0\x36\x9d\xfd\xf7\xe6\x0f\x89\xc4\xf4\x84\xc9\xc6\x5c\xa0\x68\x9c\x60\x45\x41\x83\x6c\x36\x7c\xf5\xa8\x59\x8c\x94\x32\x65\xa2\xd7\xe0\x76\x41\x3f\x27\xd4\x4f\x47\x0a\x02\xb2\x72\x2e\xb5\xd9\xc3\xe0\xaa\x11\x0f\x82\xec\xb5\x15\x8c\xc1\xf4\xdd\xb9\x83\x2d\xe1\xbe\xa4\xd4\x1d\x1d\xbb\x2d\xb8\x74\x1c\x72\x39\x07\xb8\xf9\x00\x42\x3b\x32\x70\x7e\xe0\xd9\xae\x60\xd8\x83\x4b\xdc\x37\x4b\x8e\x50\xab\x7e\xa3\x82\x4c\xe6\x90\xc3\xb0\x12\x11\x1b\x8e\xde\x9d\x3c\xf0\xc4\x69\xe5\xb4\xdf\x9f\x72\xa7\xb7\x81\x61\xa0\xa8\xd8\x7f\xdc\x04\xdc\x96\x0e\x32\xe8\xee\x82\x46\xb0\x43\x86\x38\x20\xe5\xc3\x2d\x3d\x66\x37\x42\xb0\x8f\x30\x52\xa6\xb2\x8f\x94\x81\x14\x50\xd0\x05\x4f\x5a\x13\xc4\xc1\xdb\x53\xb9\x54\x87\xc9\xff\x7c\xd5\x40\xd9\x1e\x34\x2a\xed\xed\x3c\x14\xc7\x0b\x96\x7e\xf9\xb2\xb4\x22\xbd\x0e\x86\xda\x5c\x5f\x79\x7b\x13\x05\x1b\xdb\x96\x1a\x95\x0c\xa6\xf8\x29\xc4\x75\xb5\x45\x62\x7a\x39\x42\x32\xf6\x7b\xa9\x1e\x25\xca\x63\xaa\x89\xbd\x36\xfb\x0f\x74\x16\xf4\x0b\xa1\x26\x58\xa2\x34\x7c\x03\xec\xf0\x13\xf7\x37\xbb\x41\x17\x38\xb6\x19\x52\x87\x69\xd0\x77\x29\xe9\x17\x1c\xe0\xaf\x27\x23\xf6\xdd\x88\x9d\x8e\xd8\x78\x3c\x7e\x33\x62\x82\x47\x6b\xdb\x22\xfc\x04\x45\x7f\xc1\x57\xa6\x6c\x4a\xfb\xb3\x0c\x2a\x80\xf4\x80\x46\x3f\xb1\x24\x88\xdc\xbf\x15\x58\xd5\x6c\x17\x30\x34\x9b\xe2\xc8\x08\x2e\x14\xad\x55\xe2\x1b\x05\xc8\x73\x11\xa9\xdc\x62\xd7\x75\xa1\x72\x8b\xc3\x7d\xe0\x39\x4f\x24\x30\x56\xf0\x66\x14\x02\xd5\x1c\x70\xd6\x8b\x4f\x7c\x03\xfd\x4f\xa4\xa3\xed\x35\xc3\x74\xeb\xda\x5f\x6c\x33\xf2\xb3\x3d\xe6\x49\x51\x18\x85\x4c\xcf\xe4\x0d\x3b\xf9\x96\x4d\xb2\x2c\x15\x6c\xc2\xfe\x8b\x7d\xc7\x25\x97\x9c\x7d\xc7\xfe\x8b\x9d\x72\x59\xf0\x54\x95\x99\x60\xa7\xec\xbf\xcc\xb0\x99\xf2\x2e\x94\xd1\x80\xb6\x23\xc6\x99\x2c\x53\x54\xf4\x5e\x5b\x8c\xeb\x1b\xd7\x2f\xee\x67\x67\x21\x8a\x47\x21\x24\xd3\x6a\x43\x47\xe1\x9f\xdc\xe9\xaf\x13\xb9\x4a\x45\x41\xeb\xa1\x8a\x46\xc6\x0a\x8e\xa0\xa7\x27\x33\xe9\xec\xd4\x7f\x32\x2d\xfe\x13\xfb\x2f\x76\x51\xa6\xa9\x69\x92\x11\x34\x66\x21\x9d\x30\x1b\x1d\x26\xe4\xf8\x31\xb9\x4f\x32\x11\x27\x1c\xe2\xc3\xcc\x5f\xc7\xb7\x30\xdb\xf3\xd2\x53\x81\x86\x7b\xda\xa5\x63\x3b\x44\xf4\xbc\x08\xd7\x84\x4b\x16\x18\x6a\x2b\x9d\x20\x94\xf0\xd3\xe1\x4a\xb0\x27\x40\xa6\xfd\x40\x77\x14\x4c\xa5\x17\x3a\x28\xdb\xeb\x77\x59\xbf\x32\xf3\xaf\x56\xfa\x8f\x5e\xd9\xbf\x76\x8d\x87\x6f\x23\x28\xa7\x38\x39\x3e\x38\x13\x2e\x32\x10\x4b\x88\xfb\x6e\x0b\x29\x3f\x6c\xd9\x78\xed\x44\xf7\xb6\xb9\x4a\xa3\x36\x5a\xf0\xd5\x88\x65\x2e\x8f\x94\xdd\x54\xce\xb1\x8d\xfb\x18\x73\x26\x90\xb2\xf9\xda\x02\x88\xcc\x5a\xa6\xf8\xc3\xe3\x58\x6d\x78\x22\xdf\x40\x1d\x96\x3a\x6f\xcf\x40\xb5\x5c\x57\xf6\x8f\xd0\x2d\xdf\x89\x66\xec\xa6\xf6\xaf\x2a\x3b\xb5\x14\x6e\x6d\xdb\xe1\xc0\x1c\x66\x3e\xc3\xe9\x67\xbc\x0e\xfd\xd4\x58\xa2\xbd\x73\x1f\x50\xbe\xb1\x0a\x7b\x0a\xe8\xf2\x9e\x41\xae\x97\x6f\xdd\x65\x2e\xfb\xa9\x9a\xe2\xb5\x32\xc4\x2a\xe9\x95\x0b\xb7\xd6\xd8\x3b\xba\x89\x61\xdc\xb3\x11\x93\x49\x7a\x6c\x44\xe5\xf1\x85\x92\x82\x71\xad\x93\x15\xb2\xde\x81\x41\x0d\x93\xc8\x5a\xa5\xec\xb6\x7a\x65\x08\x44\x10\xe8\x67\xa6\x49\x88\x98\x2e\x8c\x14\x36\x53\x90\x6e\x67\xd2\x7c\x41\x1a\x01\x44\x4f\x25\x8e\x1c\x1d\x6b\x23\xee\x71\x5b\x17\x1d\x88\x41\xe1\x2d\x0b\x6c\x17\x35\xc3\x01\x0b\x8e\x76\xe2\x01\x1e\xb7\x8b\x80\x18\x94\x4a\xb3\xac\x51\x08\xa7\x59\x88\x54\xc9\x95\x59\x15\x5d\x42\x18\xa4\xc0\x33\x35\x01\x0b\xeb\x6c\x81\x51\x56\xe8\x15\x9a\x12\xa3\xa7\x24\xb1\x37\xa9\xe9\x72\x61\xf4\x38\xe7\xed\x71\xda\x08\x75\xae\x8b\xa7\xe2\x30\xd8\xd2\x9d\x91\xc1\x2a\xb7\xc0\x39\xe7\x49\x44\xc5\xc5\x73\x38\x61\x8f\xba\x10\x1a\xf9\x20\x53\x4e\x87\x67\x7b\xc4\x54\x8e\xf4\x9d\xd6\x83\xed\xf8\xb7\x9a\xb5\x77\x6f\xe9\x9d\xd1\x1e\xed\xb6\x4f\xf2\x93\x36\xf8\x42\x7a\xec\x86\x5f\x33\xf0\xa3\x4f\x38\xc8\xfb\xc9\xf4\xbc\xf6\x5e\x33\x1c\xa4\x25\x66\xe4\x76\xfa\xe1\xec\xdd\xfc\xf2\xee\xb6\xf1\x9e\x29\x8d\x7e\xda\x13\x11\xd2\x39\x7a\xcf\x81\x89\xff\x05\x73\x98\xcd\xd5\xd2\xd2\x03\xf4\x3f\x9e\x1b\x59\xe4\xfa\x41\x2f\x8b\xe0\x76\x1d\x66\x5b\x6b\x2e\x9c\x4e\x92\x13\x39\x27\x5f\x6b\xbf\xc6\xd6\x07\xec\x52\xbe\xc7\xcf\xaf\x54\x9a\x44\xbb\x91\xdc\xf6\xb0\x34\x5a\x55\x13\x1a\xbb\x10\x10\xda\x40\x06\x5f\x6a\x14\xde\xcf\x0a\x11\x15\x1e\x4b\xd0\xec\xdc\xff\xd3\xe8\xd1\xfd\x16\x18\xb4\xc3\xba\x61\x83\xe4\xe4\x0e\x9d\x00\x27\x3b\xb0\x46\x43\xb2\x14\xd4\x72\xc1\xb2\x0b\x32\x2f\xe2\xe4\x73\xaa\x8c\x3c\x1c\x0f\x8f\x6b\x95\x92\x3d\x16\x19\xb8\x67\x32\x13\x79\xa4\x00\x75\x89\xe4\x2e\x8a\x45\xeb\x24\x8d\x7d\x46\xb2\xd7\x10\xa6\x02\x60\xf2\x37\x94\x5c\x57\x38\xf4\x8c\x2d\x7e\xc7\x99\x6f\x97\xdd\x3b\xdc\xdd\x07\x21\xcf\x9e\x13\x77\xbe\x6b\xd9\xff\x4c\xf8\x68\x1c\x0a\xe2\xcc\xab\xe1\x20\x40\xed\x0f\xdb\x33\xc8\xa5\x63\x0e\x7b\x4a\x36\x15\xf9\x6b\x73\x51\x9b\x57\x5a\x66\xf5\xa1\x04\x26\x75\xb4\xa3\x23\x08\x50\x0b\x68\xce\x46\x70\xd4\x04\x3d\xaf\x31\x4d\xea\x4c\x7a\xe4\xc7\x2b\x1d\x6a\x85\xad\xf3\x8c\xd6\x77\x8b\x6c\x1f\xb1\x57\x95\x8e\xbe\x02\xa6\x6d\xa9\xa0\x3e\xf2\xce\x57\x86\x06\x96\xeb\x88\x25\xc5\x4c\x9a\x3b\x9b\x59\x99\xb9\x48\xc5\x83\x69\x5d\xe8\x1d\x22\xbc\xa2\xb5\x9c\xd8\x6e\x43\x70\x14\xb7\x9c\x1a\xb4\x6c\x68\x13\xe6\x21\x63\x33\xba\xa5\x63\xa1\x8d\xd6\x0a\xb9\xa6\xc4\x27\xb3\x01\x12\x70\x7e\x22\xb0\x2d\x16\xd2\xb6\x0f\xf0\x6e\x98\xe7\x7f\x26\xa7\x4b\x20\x36\x00\x3a\x85\x38\x46\x1b\x84\xcd\x3e\xe4\xe8\x33\x13\xf2\x06\x29\xb2\xc8\xd8\x89\xa0\xdc\xd0\xb8\x93\xc4\x83\xc8\xb7\x05\x98\xf4\x61\x5c\xa5\xe0\xc5\x9a\x25\xc5\x08\x78\x4f\xad\xa4\x9c\x49\x1e\xc7\x14\x0f\x8e\xc5\x05\xd7\xd9\xce\x79\xa6\xe7\x0b\xf5\xb0\x4b\xad\x3e\x14\xb9\x8b\xbb\x3a\x4b\xb9\x9c\xe3\x09\xf2\x2b\x60\x77\x83\xb4\xdd\x5d\x20\x8e\x72\x31\x77\x5c\x6d\xcf\xd2\x4e\x27\xef\xaf\x2d\x74\x99\xae\x36\xe5\xc2\x56\x34\xaa\x40\xb3\x17\x9e\xd6\xc3\x59\xe9\x08\x37\x95\x33\x8b\x2d\xe9\x2f\x05\x3c\xac\x97\xd7\x30\x56\x76\xb5\xee\xc3\xf5\xda\x15\xf0\x5b\x45\x5e\xf6\x99\xf9\xda\x19\x52\x9f\xf6\xe1\xa0\xbf\x86\x86\xf8\x24\xe0\xdf\x9e\x66\xbd\x2c\xf8\xaf\xd3\x8a\xd3\x04\x01\xda\xde\x06\xfe\x7d\x0a\x1d\x40\x2b\xac\x33\xa0\xb5\xa7\x65\x0f\x6f\x81\xaa\x05\x1f\xff\x9c\x1e\x0a\x90\x53\x7d\xed\x34\x9e\x50\x04\xda\x35\x66\x53\xc9\xac\xba\x37\x62\xaf\x70\x61\xe9\x57\x64\x80\xa6\xdc\xfe\x04\x96\x89\x69\xf7\x10\x05\x43\x1d\x64\x86\x81\x70\x7e\xbb\xa1\x1f\x70\x27\x5f\xef\x8b\x8e\xcb\x77\x09\x04\xe2\x3d\x85\x6b\x05\x7d\xc8\x0b\x2c\xc0\xc6\x91\x04\xa6\x50\xea\x2e\xf8\x32\x7c\x87\xad\xb7\x93\x7d\x67\x3f\x34\x43\x94\x95\x74\x9e\xda\xe7\x4c\xe5\x33\x69\x4b\x23\x83\xb4\xc6\x04\x81\xf5\xa2\x82\xb8\x20\xd2\xf9\x83\x95\x0a\x50\x00\x9b\x13\x12\x52\x8d\x7a\x52\xf1\xba\x14\x00\x14\xd4\xc2\x21\x50\x21\x0b\x85\xaf\xcd\x28\x1e\x66\x81\x6f\xf0\x98\xaf\x13\x0f\xa7\xa9\x19\x94\xa4\xb0\x3c\xc7\x41\xcc\x9e\x2e\x81\xad\x7b\x59\x1a\x61\x14\x50\x9a\xcf\xa4\x19\x3c\xb6\x4c\x20\x76\x83\xc6\x65\x26\x3f\x28\x6d\x29\x62\xb4\x1f\x0f\x0b\x2c\xa0\x61\x7b\xe5\x52\x63\xd2\x0f\xef\xe0\xd0\x26\x8f\x0f\x92\xbd\xb9\xa3\x05\x82\x35\x89\xe7\x69\xab\xca\xdc\x77\x2a\xe2\x72\x26\xff\x6a\x86\x07\xae\x53\x5c\xda\x69\x55\x4b\xdc\xc2\x30\x83\xe0\x2a\xfb\x88\x85\xbe\xfe\xdd\x9b\x8f\x6f\x30\xb8\xaa\xd4\x90\x8d\x78\x54\x3d\x40\x5c\x76\x8b\x32\x4d\x01\x87\x60\x7b\xe0\x18\x96\x7c\x15\x3b\x71\x78\x74\xa9\x9b\xcb\xaa\x8a\xd1\x67\xa3\xf7\x33\xeb\x4f\x58\xc4\x8b\x68\x7d\x64\x75\x39\x12\x63\xf6\xf4\xa3\xe9\xc3\x28\x28\xa3\x69\xb1\xd6\x04\x0f\xe6\xc2\x99\x6f\x1c\xe5\x6c\x65\xbd\x98\x2e\x80\xf9\xff\xb6\x9e\xed\xcc\x31\x62\xe3\xe2\x44\x1c\x50\x55\xcf\x73\xaf\xdb\x5c\xa3\xfe\xc6\x49\x3e\x12\xc9\x37\x22\x66\xaf\x20\x0c\xf8\x95\x9d\xfc\x99\xcc\x16\xe3\x74\xbb\x2c\x88\xb7\xd0\x0c\xca\x18\xb2\xf2\xed\x39\xe5\xe6\x71\xf3\x9a\xb4\x67\xb0\x3b\x2f\x5a\xed\xba\x8e\x1b\x1b\x57\x53\x7f\x85\x05\x6d\x5c\x6e\x74\x6e\xaa\x98\xc0\x6a\x7a\x10\xae\xef\x47\x6c\x91\x73\x09\x09\x95\xe2\x50\xa9\xf2\xbb\x13\x2e\xcf\x48\x0a\x68\xe3\x02\x25\x4f\xb7\x10\xff\x33\x9a\x49\x64\x50\x04\xaa\xfd\x6d\x94\x26\x11\x5b\xe5\x3c\x5b\xd7\xf4\x20\xf1\x20\x64\x01\x79\xb9\xaf\x05\xd7\x87\x61\x35\xf2\x7a\x09\xac\xb7\x37\x6d\x22\xe1\xf6\xc1\x65\x8d\xf3\x1a\x9a\xd7\x71\xb4\x00\x3e\x53\xc4\xf3\x61\x7c\x57\x7b\x59\x99\x2b\x5c\x9f\x44\x3c\x07\xfe\x67\xd3\x39\x66\x6b\xdd\x07\x7e\xc0\x71\x25\x2a\x26\x8b\xe8\x3d\x14\xb0\xe1\xa8\x9d\x0e\x22\xe8\x9d\x56\xb5\x48\xee\x39\xab\xbc\xdd\x9c\xdc\x7e\x68\xa9\xb0\x61\x10\x4e\x70\x8c\x28\x6f\x2a\x90\x77\xb2\x3f\x96\x0b\x95\x5a\xf6\xd3\xe9\x3b\xa6\x72\x48\x3c\x54\x28\xfa\x29\x89\xbb\xb4\x83\x44\xc6\xe2\xd3\x41\x14\x44\xbb\x0f\x7a\xab\x36\x9b\x6a\x82\xfc\x36\xf5\xce\x82\x74\xca\x85\x39\x84\x0b\x7b\x33\x6e\xbc\xa5\xeb\x50\xe5\x49\x5a\xac\x01\x3f\x8c\x21\x3a\x7e\x50\x37\x7c\xcb\xa2\x35\x97\xab\xc0\x34\x01\x70\x4e\x91\xa9\x1c\x13\xf4\x3e\x00\xd7\xa7\xca\x2d\xc5\x03\x11\x17\x50\x9c\x90\x73\x63\x20\x3c\x5f\x59\x76\x02\xbe\x5a\xe5\x62\x05\x61\xac\x33\x59\xa1\x5e\x01\x9e\x53\x9b\x1b\x08\xeb\xd9\xc5\x5c\xf1\x3c\xf4\x4f\x5d\xb7\xc1\x22\xdf\xba\xb8\x7f\xca\x6e\xed\xf7\x73\x7d\x58\x47\x2c\x11\xe3\x11\xfb\xca\x87\x24\x88\x48\x49\x47\x1c\xd0\x11\x35\x5e\x33\xf9\xb3\x3d\x57\x87\x26\x4f\x54\x7b\xdb\xe1\x59\x23\x47\x76\xeb\xa2\xd9\xc9\xbc\x50\xf0\xa2\x1c\x70\x06\x9d\xf2\x82\xa7\x6a\x75\x6a\x3e\xbe\xc1\x6f\x77\xad\xeb\x53\x8c\x17\xb0\x1c\x7d\xe6\x7d\x73\x72\x9a\xba\x3d\x87\x7f\xdb\x58\xef\x35\x20\xa7\xaa\xdb\x80\xfc\x1c\xaa\xba\x25\x62\xda\x6f\x43\x4e\x3b\xc8\x85\x76\xf4\x69\xa8\x89\xd8\xa2\xfa\x29\x30\x49\xd7\xaf\xb1\x2d\x12\x20\xcb\x55\x5c\x46\x22\x36\x3b\x17\xee\x43\x88\x87\x72\x1c\x47\x15\x21\xd9\x76\xd0\x56\x88\xda\xe0\xd4\xfd\x5c\x36\x87\x5e\xdc\xf8\x6e\xf8\xef\x3a\xec\x0d\x56\xe3\x6b\x1b\xf4\x70\x7f\xe2\x38\xe5\x03\xcf\x29\x57\x7d\x95\xd1\x5e\xe5\xc9\x2a\x91\xbc\x50\x39\x7b\xed\x98\x0c\xde\xb8\x34\x78\xdd\x1a\xc2\x40\x31\x51\x19\x22\x14\x13\x9f\x55\xf1\x68\x5b\xa4\xe6\x2d\x5d\xf0\x4d\x16\x72\x44\x83\x15\x38\x18\x99\x14\x07\xc1\xe9\x26\x60\x3b\x4d\xb4\x8f\xda\x9d\x49\xf2\x38\xe0\xbc\xa9\x3c\x4c\x72\xd0\x79\x36\x67\x65\x31\x7f\x22\xef\x19\x7e\x3c\xcc\xf0\x44\x20\x88\x0f\x3c\xdb\xcd\x24\xc5\xc9\xe4\x80\x61\x8b\x64\x8e\xf0\x9a\x4a\x75\x7d\xee\x4e\x23\x34\x90\xd9\xba\xee\xb8\xbf\x3e\xb7\x8e\x22\x7f\x1f\xac\x5c\xb0\x60\x22\x90\x52\x17\xc3\xc0\xf0\x6a\xef\xc4\x9a\x39\xc5\x2d\xfd\xd4\x69\xaa\xca\x98\x91\x50\x23\x10\x40\x3e\xc6\xd3\x11\x38\xae\xc7\xe3\xae\xb0\xb6\x81\xe9\xcd\x9d\xfc\x81\xef\xda\x77\x20\x3c\xeb\x90\xc0\x3b\xb7\x3e\x8d\xec\x8b\x4d\x3d\x8d\x34\xcc\xbd\x13\xc7\x83\xe6\xde\x59\xc1\x81\x70\x73\x98\x81\x14\xee\xa3\x49\x9c\xc2\x7e\x0b\x1d\x08\x2d\x94\xe0\x15\xc7\xac\xbe\x3f\xb8\x3a\xcb\x42\xb1\xbb\xaa\x8c\xe7\x42\x16\x73\xa8\x71\x58\x65\x50\xc9\x15\x7c\x5e\x51\x98\x7a\x19\x82\xff\x7c\xab\xd0\xbe\x6f\xd9\xb5\xfe\xc2\x6e\xc8\xa6\x65\xe4\x55\x02\x10\x62\x7d\xcf\x5e\x27\x80\x78\x0a\x7c\xa1\x6e\xe2\x3a\xa6\x8b\x3a\xf4\x84\xd1\x0b\x3a\x54\x11\xed\xbd\x3a\xe4\x5b\x0f\xae\x6a\x28\x85\xcc\x7b\xc4\x09\x60\x44\xad\xfd\x2d\xc8\xb8\x71\x51\xf9\x1b\xd8\x91\xcd\xfc\xa5\xec\x6f\x22\x57\x3e\xfe\x0b\x8d\x55\x61\xc1\x3b\xf5\xf5\xa7\x27\x0b\x47\x7d\x1c\xd3\x54\x87\x79\x5a\xe1\x17\x22\x30\x43\x8b\xc2\x62\x6b\xaf\x23\x1d\x2e\xa4\x4c\x44\xf3\x8e\xa4\x3c\xbd\x9a\x12\x5c\x3c\xc3\x24\x3b\x49\xed\x30\xb3\x1b\xf4\x18\xec\x15\x14\x58\xb5\xe1\x19\xa1\x0b\x09\x48\x5e\x77\xde\x8c\xa1\x13\x7f\xfe\xd3\x5f\xc6\x49\x47\x88\x37\x34\x7d\x28\x58\xcb\x35\xfe\x7d\x9e\x08\x19\x83\x33\x96\xc7\xcd\x7c\x71\xb2\x62\x9d\xaf\x88\x67\xb3\x0c\x9f\x25\x1e\xbc\xfd\xa8\xd5\x73\x5c\x44\x9f\xc1\xa3\xef\x85\xac\xdb\xbe\x15\x7f\x5f\x97\x2a\xa1\xe7\xf1\x56\xf2\x4d\x12\x7d\xd6\x36\x6e\x13\x91\xc6\xd0\x44\xaa\x7d\x9f\x57\x2a\x16\xd1\xfd\x50\x9d\xe0\xc9\xd9\x2e\x44\x74\xcf\x7e\xb8\xfd\x70\x8e\xc9\x8d\x13\x3d\x93\x17\xbc\x48\x1e\xc4\x5d\x9e\x3a\x77\x00\x81\xb4\xf3\xd4\xee\x91\x2a\xfb\x7a\xc0\xf4\x65\xa9\xda\xad\xe2\x10\x26\xc7\xd8\x6c\x8f\x16\x65\x74\x2f\x8a\xe3\x9c\xcb\x58\x6d\xb0\x1b\xc7\xba\x5c\x2e\x93\x4f\xe3\x82\xe7\x1d\x99\x32\xd0\x8e\xf0\x2b\xea\xb9\x3e\xff\x59\xe1\x75\x5e\x54\x75\x1f\x21\xcc\x9b\xb2\xea\x57\x94\x5b\x8c\x4a\xe4\x1b\x01\x54\xa7\xac\x9a\x65\x06\x4a\xc1\xc8\x69\x48\xc6\xaa\x35\xc5\x4f\x28\x4a\xf5\xfe\x31\x50\xee\x3f\x06\xad\xf2\x2e\xec\xb0\x51\x3e\xc1\xe9\x86\xdf\xe3\xfd\x70\x95\x0b\xad\x47\x4c\x2b\x68\xf1\x4c\xda\x48\x04\x1b\x2d\x07\xb8\x17\x20\x4b\x4e\xb7\x2c\x52\x99\x83\xcc\x63\xbf\xd6\xea\x11\xec\xf4\x61\x9c\x30\xa4\xf0\x2e\x65\x91\xa4\x8c\x2f\x0b\x32\xe2\x43\x66\x08\x9b\x09\x4e\x8f\x67\x12\x5c\xb1\x11\x74\x1f\x20\x12\xce\xfd\xe2\x3a\xa1\xd9\x92\x47\x49\x9a\x14\xc4\x57\x07\x21\x66\xdc\xf4\xd7\x9c\x07\x66\x2c\x73\xbe\xe5\xa9\xbf\x58\xf1\xb4\xf4\xa1\xd1\x47\x5a\xec\xe0\x43\x4d\xf4\x1c\x0d\x04\x2f\xb7\xc1\x3d\x0a\x30\x09\x9d\x0f\xc8\x1d\x3f\x31\x95\x5f\xd4\x4e\xd1\x7f\x0a\xff\x5b\xb9\x87\xef\xd2\x0a\x0e\xb8\x90\x1f\x72\x38\x36\xaf\xdc\x2e\x7d\xba\xd7\x33\x92\xd8\xa2\x93\x2b\xaa\xb8\x0f\x3e\x76\xc7\x23\xf8\x4c\x3a\x2e\xfd\x63\x9b\xf4\xae\x59\xc3\x80\xd1\x6b\x57\x12\x3f\x93\x39\xa3\x8b\xd0\xbf\x4f\xf3\xad\x35\xfe\x4a\xa9\xf4\x50\x8b\x3c\x51\x72\x24\x4a\xce\x21\x0f\xf4\x21\xd7\x49\x5c\x00\xce\xb0\x35\x7d\xe7\x7c\xee\x8e\x21\xbf\x9a\x3d\x8e\xe0\x60\xd4\x04\x10\x64\xd0\x88\x1d\x38\x75\x9d\xb5\x80\x2e\x06\xe2\xed\xa1\x0c\x44\x6b\x59\xd5\xbe\xe9\x22\x08\xd8\x59\xb8\x6f\x23\xb0\x08\xd7\x5a\x38\xc8\x58\x87\x59\x9b\x6b\x55\x39\xc3\x5d\xc8\x36\xee\xc6\x31\xa8\xdb\x8e\xe7\x86\x4b\xb2\xfc\x91\x16\x3f\x93\x81\xc6\x8e\x8c\x78\x36\xa0\xc1\x8d\x5a\x9b\x3d\xaf\xb2\x0c\x0f\xb6\xe7\x1d\x92\x52\x62\xa7\xe4\x7c\x17\x26\x87\x04\x2c\x48\xa4\x36\x8b\x44\x5a\x4e\x0a\x32\x72\xc3\x55\x63\x62\x19\x7b\x9d\x43\xc2\x5e\x19\x30\x65\x50\x6d\xec\x9d\x9a\x13\x92\x1f\x87\x22\x6b\xdf\x75\x3c\xbc\xdf\x3d\x6f\xf6\x8b\x0e\x4f\x63\xbd\x07\xe6\x00\x49\x1f\xf9\x56\x43\x02\x75\x61\xa4\xe2\x12\x0d\xbb\xd5\xf6\x8f\x02\xf5\xc3\xb2\x41\xcf\x24\x8c\x10\xb2\x85\x59\x41\x6a\x24\x2b\x2c\xc0\xd4\xa6\x8a\xf7\x4c\x6f\xaf\x74\xfb\xe0\xfc\x3a\xbe\x9a\x7c\xa7\xaf\x06\x9d\xd0\xff\x3d\xdc\x33\x3b\x8c\xc0\x07\xda\xa2\x83\x63\x12\x35\x46\x82\x09\x41\xd8\x98\x73\x51\x8f\xd8\x86\x27\x92\xb6\x01\xa6\xe3\x8c\xc5\xa2\x5c\xad\x3a\x4d\xa4\xbf\x7d\x5f\x4b\x75\x9f\xfc\x8f\xb7\x85\xef\xe4\x2a\x7c\x0e\x6b\xf1\xd4\xd6\x84\xe6\x6b\x73\xef\xfb\x3c\x06\xe2\x5f\xd1\x1a\xdf\xea\x12\x6b\x2c\xa2\xe7\xb1\xc6\x4f\xfb\x58\xe3\x2d\xb6\x0b\x02\xfc\xe8\x3a\x6d\xf1\x37\xff\x30\xd3\x7f\x1e\x33\x7d\xaf\x45\x81\xa4\x3e\xf3\xa4\xaa\xa0\xef\x68\xe1\x13\x79\x2f\x1d\x15\x34\xb4\x0a\xb9\xe5\x8c\x74\x8f\x35\x5b\xf0\xe8\x05\x88\x30\xe1\x74\x3c\xdc\x1e\xb8\x07\xfc\x72\xa3\x36\x82\x41\x55\x1a\x13\x39\x31\x8a\x62\x1c\x01\x5a\xd5\x74\xd0\x23\x46\x08\x8f\x02\xc7\x29\x22\x57\x62\xaf\x54\xbf\x96\xe2\x91\x99\xd3\x6a\x14\xc2\xf7\x82\xe9\x81\x0c\x7f\x6f\x8c\x76\x58\xc1\xfa\x3b\xc2\x8e\x5c\xac\x78\x1e\x43\x84\x09\x6d\xc9\x94\x47\xf7\xe6\xdf\xd0\x3e\xaa\x91\x20\x86\x96\x2b\x00\x61\xaf\xbe\xb4\x44\x46\x48\x85\x68\x39\xdd\x5d\xfb\xf0\x73\xcd\x78\x94\x2b\x8d\x46\x23\x97\x18\x1b\xe2\xab\x41\x81\x7d\x48\xe2\x92\xa7\x58\x63\xa7\xa5\x7d\x28\x7c\xad\x0e\x38\x0a\x72\xd8\x35\xd1\x6c\x34\x1d\xc8\x50\x05\xc3\x38\x9e\xc9\x77\xce\x61\x72\xc2\xee\xb4\x20\x94\x99\xb6\x59\x00\x76\xb6\xf4\xc5\xd4\x87\x06\x26\xb0\x53\x87\xd8\x31\x00\x16\x64\x1d\x0c\x84\xee\x1e\x89\x3d\x74\xaa\x87\x4c\xca\x60\x5a\xe8\x69\x90\x48\xdf\x0f\x0b\xde\x13\x72\xc1\xe3\x6d\xc8\xc5\x98\x48\x06\x5e\x3a\xc6\xe3\x4d\x22\xcd\x26\xb0\xc9\x5a\xdd\x49\x63\xf3\x36\x20\xe4\x18\x72\x9a\xa5\x69\x4d\x08\x6a\x26\x85\x51\x2e\x79\x9e\xa4\x5b\xb8\x4f\x64\xb9\x38\x0a\xea\x09\xe6\x87\x22\x9e\x20\x03\x05\x91\xc8\x94\x5a\x2c\xcb\x14\x6f\x1d\x70\x2f\x77\x1d\x20\x89\x74\x37\x1d\x19\x85\xa3\xa0\x4c\x42\x41\xc5\x98\x9f\xf3\x39\xa2\x47\x1a\xde\xca\x61\x1e\x37\xcf\x15\x9a\x03\xc8\x7d\xad\x1e\x6d\xa8\xdb\x23\xf7\x58\xe6\xae\xd3\xf5\xd9\xbc\x2c\xbb\xf5\x50\x7b\x03\xb4\x72\x2a\x20\xfc\x73\xae\x35\x7a\x26\x62\x27\x9b\x12\x09\xdd\xa1\x14\xd7\xde\x72\x5d\x6a\x8c\x98\x33\x73\x09\xe7\x97\x35\x74\x54\x0d\xd7\xcc\xf5\x2e\xd1\x4a\xb2\x59\xf9\xe5\x97\x5f\x0b\xf6\x25\x84\x10\xd2\x7d\x04\xfd\x63\xc0\x16\x8a\xa5\x83\xc8\x76\x15\x08\xa4\x12\x6d\xcc\x08\x6b\x83\xa8\xda\x78\x7d\x00\x79\xf2\x68\xcd\x74\xb9\x40\x04\x23\x27\x17\x0b\x97\x8e\x75\xfc\x5c\x01\x18\x11\x4f\x76\xdb\xfa\xff\x47\x1c\x0a\x98\xf4\x65\x26\x33\x85\xc4\xf8\x00\xfd\x5c\x08\xb6\xe1\xf9\x3d\xe4\xf0\x45\xf3\x3c\x24\x02\x78\x9d\x88\x71\xd5\xbd\xf0\xa6\xd2\x1e\x72\xe8\x20\xe1\x35\xcb\x4b\x29\x6d\x52\x32\x66\x14\x53\x6f\xeb\x1f\xcd\xe4\xa2\x0c\xef\x9e\x15\x67\x81\x5f\x5a\xe0\x30\x00\x61\xab\x80\xa9\x84\x1a\xc5\xb5\x6f\xd7\x98\xf5\xf0\x1a\xcc\xe4\x33\xbb\x0d\xf6\x19\xfc\xae\x48\x07\xb3\xc6\xbc\x20\x5e\x01\xba\x1b\xe6\xcd\x86\xe9\xc0\x65\x0f\x4a\xce\x15\x24\xcf\x1e\xb1\x1f\x92\x07\x31\x62\x37\x19\xcf\xef\x47\xec\x1d\xba\xff\xfe\xa0\x16\x6d\x36\xbc\x06\xa1\xc4\xc1\x76\xbc\xa7\x99\xb1\x76\xd1\xbc\xb4\x6b\xff\x3f\x37\x88\x01\x58\x97\xef\xfb\xbf\x27\x22\xaf\x83\xeb\xe3\x7f\xba\x25\x62\x8f\x9b\xfa\x1f\xe0\xb5\xff\x91\xb7\xe2\xdd\x34\x1f\xff\x14\xfe\xd7\xca\x2f\xab\x71\x81\xee\x49\x52\xae\x15\x95\xf6\xdb\x0a\x6c\x4e\xe2\xfa\xa1\xdc\x8c\x6f\xee\xb7\x15\x28\x7c\x3c\x76\xa1\xed\x03\x40\xf7\xf4\xa9\x1d\xaf\xd3\x54\xe9\x32\xdf\xbd\xf9\xaf\xab\xad\xb6\xb5\xb7\x10\xbd\xc2\x62\xdb\x2c\x04\xb0\x16\xf4\x85\x9f\xe0\x6b\xf3\xbf\xaa\xc5\x1c\xb0\x56\x87\xed\xf0\xb6\xe2\x1c\x7d\xb4\x8a\x2a\x4d\xf5\x27\xe4\x4d\x26\x80\xef\xca\xab\xa2\xde\x21\x50\x5b\x61\xce\x34\x32\x93\x96\x71\x1f\x23\x66\xf3\x5c\x00\x35\x78\x2e\x20\xd1\x23\x23\x86\xc3\x74\x1b\x68\x44\xc1\xcd\xc7\x83\x62\xc2\x28\x37\x08\x56\xa5\xfb\xd6\x42\x08\xe9\x46\x7b\x88\x2a\x01\x34\xd8\xb5\xd1\x27\xb4\xdb\xa3\xb0\x89\x17\x3a\x92\xd2\x36\xbe\x0b\xee\x82\xa0\x72\xaf\x44\x11\x48\xf3\x9a\x6a\x51\xd9\x9a\x15\x0f\xd5\x6f\x0a\xf1\xdf\xea\x83\xae\x91\x73\x55\x0c\x28\xbd\x7c\x7a\xcf\x61\x2f\xbf\xe2\xc5\x1a\x2f\xb4\x1b\x55\x08\x94\x99\xc8\x12\x84\xeb\x05\xad\xce\x8b\x54\x2d\x20\xc3\x62\xb1\x83\x41\x32\xa2\xad\xdd\x6b\xe8\x9a\x13\xd6\x47\x32\x18\x69\x02\x91\xb6\xb9\xd0\x40\xb8\xd2\xf4\x52\xf5\xc5\x27\x0f\xbb\x74\x37\x9b\x6b\x84\xfe\xbb\xc6\x65\xbb\x99\x92\xc3\x6c\x6b\x00\xab\x9e\x3d\x21\x82\xa6\x91\xe0\x84\xa8\xaa\xc9\x0d\x8c\x6c\xb5\xb5\xfe\xda\x44\xfe\x33\x39\xc1\x27\xc1\x21\xc0\x7d\x8e\x2d\x87\x07\xa5\x9c\xcd\x6e\xff\x61\xf8\x2a\x9b\x84\x08\x44\xb2\x10\x8c\xbc\x2d\x13\x2e\x03\x23\x88\x6a\x94\x45\x92\x0b\x26\x01\x85\x30\x93\xba\x5c\x1c\x79\x62\x12\x73\x8b\x7b\x00\x32\x1d\x2d\x32\x0e\x57\x19\xe0\x2b\x3a\x6a\x39\x86\xd1\x32\xe9\x73\xe5\x58\xfa\x40\x9e\x92\xf0\x87\x58\x49\x8c\x8c\x77\x7d\x77\xe5\x98\xcb\x1a\xdc\xa2\x2d\x5c\x09\x0f\xbb\x5d\xf2\x02\xb2\x79\x41\x04\xe6\x35\xa2\x28\x7e\xed\x03\x3c\xf4\x86\xf6\x3d\xba\xc1\x9f\x36\x93\xff\x6a\xcf\x86\x6e\x50\xf1\x80\x95\x6e\x46\xc6\x1c\x51\x9d\x60\xe7\x4a\xdb\xec\x15\x32\x50\x02\xbb\x1b\xd5\x58\xf2\x6d\xa5\x72\x8b\x6b\x09\x53\xba\x28\x0a\x97\x85\xa7\x0f\x89\x0e\xc8\xde\xa1\xb6\x1b\x21\xd8\x49\x2e\x96\x27\x1f\x73\xb1\x9c\xdb\x99\x1e\x43\x87\xc6\xa6\x47\x4d\xca\xf7\x9e\x8b\x43\x67\x4a\xb6\x93\x1f\xee\xa1\x46\xad\x75\x09\xcb\x09\xfa\x94\x2c\x99\xcf\x6e\x6b\xfa\x03\x0c\x10\x22\xae\x73\xd1\x37\x5a\xf6\xd9\x8f\xb9\x2e\x24\x58\x0f\xa8\x55\x47\x12\xd4\xff\xf9\xc7\x5b\x65\xcc\xfa\x1c\x6f\xb7\x55\xc8\x8c\x15\xf6\x5c\xba\x03\xaf\x1b\x17\xfa\x79\xd1\xe9\x30\x81\x3a\xe3\x8f\x92\x78\x6c\x06\x99\x9e\xfa\x1d\x6b\x35\x00\x51\x70\xac\x35\x30\x70\x7e\x97\x49\x6b\xe9\x4b\x5c\x1e\xcd\x11\xf3\x37\x68\x9e\xa6\x61\x46\x0d\xef\x69\x9b\x49\x1f\x97\x6a\xb4\xd6\x34\xb5\x26\xbc\x8a\xbe\xe1\x12\x1e\xeb\x82\x17\x62\x64\x49\x57\x88\xae\x90\xfc\x61\x47\x0b\x0e\xa9\xad\x5d\x0e\xb5\x7d\xbb\xf9\xb9\x2e\x91\xbf\xb1\xb8\xe8\x3d\x9e\x67\xac\x76\x7e\x2f\x1a\x70\xe6\xbd\x6d\x6d\xf7\x74\x04\x94\x12\xb0\x99\xad\x94\x8d\x78\x9e\x5b\x94\x3f\xd5\xca\x2c\xdd\x79\x78\x2b\xe9\x68\xe7\x5a\x44\xf7\x99\x4a\xe4\x60\x59\x54\xa1\xb8\x80\xc5\x5e\x30\x5f\x9a\xbb\x1d\xf6\x3a\x1c\x2b\xfa\x24\x76\x44\x03\xbc\xc2\x42\x43\x3d\x19\x1b\x67\x2e\x53\x76\xf7\xb2\x7b\x6e\xfb\x85\xf0\x67\xc3\x0b\xd8\x62\x5b\xfc\x43\xb5\x53\x85\xb7\x18\x76\x2a\x4c\xa0\xbc\x11\xfd\xd5\x73\xb0\x39\xab\x50\x18\xb6\x0e\x29\x98\x20\xff\x61\x19\xfa\x87\x65\xe8\xbf\xb9\x65\xe8\x73\x9a\x85\x00\x1b\xf3\x92\x36\xa1\x1d\x0e\xf2\x03\xb6\xa3\xab\x75\x70\x8c\x63\xab\x76\x3c\x0a\x92\x7e\x07\x91\x8e\x4d\xa0\xbf\x25\xc2\x30\xe3\xb3\xe0\xd1\xbd\x90\x9d\x3e\x7a\x4b\x5f\xd4\x99\x7f\xf5\x79\x11\x2c\x6d\xec\x4b\xc1\xd7\xbb\xa1\x2c\x1e\xea\x44\xa4\xc1\x6d\x84\x20\x66\x9f\x80\xee\x69\x3a\x7e\x04\xa0\x31\x95\x3b\x62\x6b\x4d\x51\x78\xe8\x8c\x44\x9a\x24\x04\x4b\xd5\xa8\xa0\xfb\x62\xe2\x6c\xc5\xf3\x4c\xa9\xb4\x15\x1a\xf7\xac\x03\xd8\x08\x94\xe9\x3b\x78\x53\x54\x46\x75\x08\x18\xb3\xa3\xe8\x83\x2e\x7c\x88\x06\xc6\x63\x40\x26\x0e\x58\x4d\x71\x09\xb1\x94\x7e\x38\x82\xf4\x8a\xdc\x19\x5c\x08\x23\xb6\x10\x11\x87\xc4\xaf\x16\xbc\x17\x71\x17\x7d\x12\x92\x22\x35\xc2\x41\x74\xb3\x9e\x0e\xaf\x25\x94\x3b\x4f\xda\xd2\x6e\x0c\xdd\x5c\x35\x0d\xc1\x42\xcb\xb1\xe5\x16\x49\x62\x69\x17\xf7\x25\x34\xb6\x1c\xd3\x73\xc8\xbe\xd8\xef\x84\x6b\x95\x3b\x53\x2a\xe8\x14\xca\xe9\x2f\x48\x7f\x80\x70\x9c\x4d\x4f\xe4\xce\x4c\x4e\x5c\x9e\x5b\x8f\xfd\x72\xc8\x3d\x74\x97\x22\x66\xb1\x31\x35\xc8\xe5\xe8\x6f\x2e\x23\xa6\xcb\x68\x0d\x6c\x95\x55\x39\x15\xca\xad\xe6\x8e\x1d\xcd\xa4\xb9\x10\x81\xa9\x65\xc3\x21\x2e\xfe\xd1\x28\xab\x3a\xf9\x9b\x70\xf0\x2c\x22\xef\x0a\x11\x59\x78\x71\x52\xb2\x15\xbd\x66\x89\x43\x11\x60\xe1\x31\x25\x65\x16\xf3\x42\x8c\x67\x1e\x6d\x93\xa0\xa5\xd3\xa2\x3c\x48\x65\xd6\x61\xc7\x42\x1c\x63\x4d\xd2\xa6\xc9\x52\x44\xdb\xa8\x91\x85\x68\x37\x4d\xc4\x3f\xae\x6d\xbf\xad\x6b\x1b\xb2\xec\x62\xcc\xe0\x90\xa1\xa5\xa6\x5e\xfb\xcf\x0f\x1b\x5c\xc1\x82\x96\xe8\x01\xe3\xfc\x19\xaf\x9d\x2d\x3a\xf0\x30\x7d\xbe\xf7\x3d\x68\xf7\x71\xe6\x2f\xb6\xfe\xb0\x0e\x28\x10\x1a\x6a\x61\xe8\x5c\x2c\xc2\xa5\x63\x14\xda\xde\x6e\xfd\x6e\x96\x99\xdf\x14\x38\xa9\xcf\xc5\xd5\x68\xdc\x0e\xae\x74\x61\x35\x6d\x29\xf0\xbc\xdb\xa1\x71\x07\xac\xee\xbc\x78\xa5\xdd\xa8\x57\x25\xa0\xc5\xfe\x4f\xe4\xf6\xa0\x00\xcc\x6d\x26\xe6\x65\x9e\x1e\x04\x37\xbe\xbb\x3e\x3f\x76\xda\x06\x68\xce\x9d\x79\x8f\x8a\x5a\x6a\x68\x9b\x93\x58\xc4\x04\x07\x8d\x54\xca\x16\xe5\x72\x09\xf9\x4b\x08\x18\x6a\x85\x11\x64\xa6\x2f\x75\x61\xcf\x13\x64\x9a\xe1\xba\x98\x49\x25\x05\x9b\x7d\x71\x3c\xfb\xc2\x1c\x65\x39\x8f\x0a\x91\x23\xc9\x40\xca\x75\xc1\xb4\x58\x81\xaa\x45\x95\xde\x5d\x9f\x43\x54\x62\xb1\xc6\xe2\xdc\x95\x15\xe3\x3d\x91\xf3\x19\x72\xfd\x00\x41\xb5\x0c\x32\x6e\x41\xdb\x5f\x73\xcd\x12\x39\x93\x1f\x4d\x11\xc7\x2b\xa5\x56\xa9\x18\xdb\x09\x19\xbf\x23\xd3\xe3\xc7\x37\xd8\x02\xf8\x3c\x84\xf5\x9b\x03\x91\x4b\x25\x93\x88\xa7\x10\x90\x33\x93\xa0\x35\x8f\x4c\x67\xc0\x34\x3a\xfb\x62\x3c\xfb\x82\x81\xfb\xb4\x60\x3c\x8a\x44\x56\x88\x18\x53\x9b\x4e\x25\xcb\x00\xbf\x18\x89\x11\x2b\x04\xdf\x68\x4b\xe9\xcc\x32\x73\xc7\x84\xab\x21\x4b\x24\x21\x9d\x16\x89\xe4\xf9\x16\xc1\x4c\x98\xac\x9c\x82\x3f\xb6\x33\x29\x3e\x01\xfd\x67\x02\x0c\xa0\xa5\x76\xb4\x34\x94\x98\xc0\x74\x79\x22\xb7\x63\xf6\x03\x32\x34\x20\x05\xea\xdd\xf5\xb9\xa5\x37\xa2\x18\xd0\x99\xd4\xd1\x5a\x6c\x04\xfb\xb8\x2e\x8a\xec\xe3\x08\xff\xab\x3f\x82\xc7\x51\x2a\x86\x4f\x47\xcc\x4c\x91\x51\x54\x2d\x5e\x3e\xdd\x42\x0e\xd9\x32\xa3\x84\xf3\x33\x09\x5c\xec\x79\x88\xee\x35\xa3\x0d\x35\x06\x57\xf0\x0a\x2e\xdc\x48\x71\x48\xee\x78\x62\x06\xe7\x7f\xb1\xe9\xd2\x57\x69\x06\xd0\xe6\x16\x73\xad\x02\x85\x44\x43\xc8\xd6\xd8\x7c\x30\x91\xec\x87\xdb\xdb\x2b\xf6\xfd\xd9\xad\x55\x76\xee\xae\xcf\x71\x5d\x00\x9d\x0a\xe3\xec\xcf\xf5\x29\xbe\xdd\x66\xe2\x2f\x7f\xfe\xcb\x4c\x32\x9b\xa3\x5c\xda\x91\xc6\x1d\x3d\x42\x4a\x58\xc0\x3b\x81\x63\x16\xa8\x9c\xa1\x3e\x4c\xb9\x43\xcd\xcf\x51\x3b\x7f\x24\x6b\x01\x9c\x51\xa9\x52\xf7\x65\xe6\xcc\xdc\xa1\x1e\x66\x2a\xbc\xbb\x3e\x87\xd2\x81\x4e\xa9\x58\x43\xfe\x34\xe1\xac\x2f\x30\xf1\xdc\x36\xc6\xfc\xfb\x41\x25\x31\xe3\x72\x6b\xbe\xc5\xa2\x61\x59\xe6\x62\xa9\x72\x31\xb2\x6f\x9a\x02\x78\x91\x2c\x92\x34\x29\xb6\x20\xa5\x6c\x5e\xfb\xcc\x72\xe4\x9b\x02\xcc\x6d\x86\x00\xde\x66\x81\x61\x1a\xdb\xd7\x77\x3a\x44\x80\xc3\xa4\xb9\xdc\x88\x78\xd1\x31\xdf\x2e\x72\xc1\xef\xcd\xea\xa6\x12\xc6\x6f\x28\x67\xac\x38\xc1\x33\x66\x59\xca\x08\x97\x86\x69\x03\xad\x7e\xba\x39\xa5\x5b\xc6\x1f\x78\x82\x39\x65\xad\xbb\x7c\xb9\x4c\xa2\x84\xa7\x24\x39\x16\xe5\x12\xd2\xc6\x70\x4d\x29\x8b\x10\x7c\x68\x0a\x81\x5b\x86\x4d\xd8\x8f\x0b\x6a\x21\x56\x09\x02\x8e\x1f\x93\x62\x8d\x71\x05\x63\x9c\x67\x9e\x25\x7a\x1c\xa9\x0d\xec\xb7\x1b\x58\x4a\x9a\x2e\xbd\x80\x03\xaf\xad\x73\xf6\xda\x42\xed\x36\x59\xb1\xa5\xb5\xf7\x86\x6d\x92\xd5\xba\x80\x44\x2e\x50\x3b\x40\x22\x92\x4d\x96\xc2\xa5\x8f\x3c\x8c\x16\xef\xab\xc5\x86\xcb\x22\x89\xba\x7c\x4a\xad\x29\xc1\xfb\x61\x3c\x17\xdb\x62\xb7\x1d\xef\x03\xf1\xec\x73\xa4\xd0\x0f\x24\x32\xab\x0b\x64\x92\x81\x90\x5e\x26\x20\xf0\xaf\xa7\x9c\xdd\x77\x85\xfa\x38\x91\xdb\x8f\x9e\x84\x94\xcb\x20\xf7\xd5\x8e\xda\xed\xfe\xe7\xa9\xa2\x59\x63\x7c\x26\x01\xd5\x69\x04\x06\x25\xa3\xdd\x79\xc6\xb8\x23\xc5\xcc\xec\x95\x5d\x34\x69\xb2\x80\xba\x49\x56\x68\xa6\xcb\x0c\xe2\x09\x0a\xc5\x32\x1e\xdd\x1f\x97\xd2\xfc\xc7\x08\x43\xdc\xee\x3a\x24\x27\x9a\x49\xb5\x64\x65\x81\x1b\xc7\x2e\x61\x30\x8a\x04\xa6\x00\x7f\x41\xdb\x88\x62\xad\x62\x17\x17\x66\xca\x84\xf1\x33\x2d\x3a\x23\x7a\xe9\xb7\x27\xec\xca\x54\x68\x16\x31\xd5\xcd\x5d\xf7\x13\xc9\x4e\xff\xf5\x5f\xe1\x7d\x33\xb8\xef\x95\x62\x4b\xa5\xd8\xb7\x6c\x3c\x1e\xff\x3b\xfe\x66\x0a\xe5\x72\x4b\x7f\x71\xb9\x1d\x9b\xe2\xde\xe7\x6a\xf3\x7a\xa9\xd4\x1b\xfa\x1d\x92\x36\x9b\x7f\x24\x4b\xf6\xda\xbc\x74\x07\x55\xdd\xaa\xd7\xb3\xf2\xcb\x2f\xbf\xfa\xbd\x79\xf5\x0d\xfb\x4f\x7c\x27\x78\xfd\xef\x61\x53\xbf\xda\xd3\xd4\x3f\xf0\x07\xde\xa7\xad\xec\x5b\x38\x6b\x4c\x01\x3b\xdb\x98\xe8\xd7\xef\x95\x1a\xc3\xed\x3f\x6c\x1d\x16\x6b\xde\xc0\x56\x04\x6f\xfd\x7b\xd0\x6c\x66\xdb\xfd\xf5\x9e\x76\x23\xaa\xde\xb5\x1c\x8b\x7f\xaf\xd4\xeb\xf1\xd8\xc8\x2d\x1a\x57\x6c\xf5\xeb\x37\xd5\x81\x86\x0e\x34\xdb\x6f\x1e\x4f\xb1\xf9\xef\xce\x6e\x4e\xaf\xa7\x57\xb7\x97\xd7\x6f\x4e\x6c\x0f\xfc\x0c\x04\xdf\x33\x9b\x5a\xdb\x35\xfc\x7f\xef\x69\xf8\xf7\xca\xb6\x19\x1a\x7d\xf2\x2d\xc3\xd9\xcc\x16\xe3\xf7\x4a\xfd\xe7\x78\x3c\xfe\x3b\x3d\xe6\x72\x3b\x32\x07\x93\x79\x27\x43\x51\xfe\x81\xe7\x7a\xcd\x53\xd3\xa7\xa0\x0d\xae\x13\xad\x25\xda\xe2\x92\x65\xad\xb0\x3b\xb9\xf1\xc5\x41\x65\x30\xb1\xf0\xd6\x3f\x7f\xcb\x64\x92\xfa\xe9\x0b\xea\x80\x79\xba\x05\x6a\x89\xe8\xde\x6d\x17\x97\x23\x74\xb1\x65\x59\x7d\xe3\x62\xdc\xd9\xd6\x66\x28\x30\xe2\x7e\x26\x5f\xb5\x48\xf4\x63\xa3\xda\x8d\xe1\x81\x39\xa0\x5e\xd9\xec\xf1\xf6\x58\x70\x99\xb5\x70\x64\xc1\x11\x8d\xbb\x55\x52\x8c\x5a\x9b\x7e\xe8\x0e\xbc\x80\xac\x0a\xd4\xce\x57\xc7\xaf\x28\x50\xc8\x57\x51\x25\x92\x9f\x7d\xb1\x54\x6a\xbc\xe0\x39\xb4\xee\xd3\xf1\x76\xfc\xb7\xd9\x17\xd8\x1f\x54\x3e\x50\x31\x82\xc2\x67\x5f\xc0\x53\x58\x0e\x33\xf9\x87\x9b\xcb\x8b\x99\xfc\xf6\xdb\x6f\xbf\xc5\xd1\x32\x7f\xb7\xf8\x5e\xcc\x71\x05\xe2\x16\xf5\x94\x52\xdb\x94\x92\x62\x55\xa6\x3c\x9f\xc9\x76\x77\x4d\x2c\xbc\xd0\x1c\x79\xe7\x0d\xad\xb3\x91\xcd\x6e\x01\x49\xca\xac\x8c\x43\xdb\xe4\xc7\xff\xdf\x34\xf9\x23\xa9\x88\x4e\xc8\x87\x43\x30\xb6\x8b\xf9\xc4\x2e\x55\x33\xd8\x66\xfd\x7a\x3d\x6b\x99\xa4\x82\x36\xae\x5d\xdc\x57\x22\xd7\x4a\xfa\x35\x43\x17\x02\xe0\x36\x03\x07\x00\xfb\x96\xbd\xfd\xf7\xda\x53\x33\x0f\xf6\xe1\x57\x15\x49\xc0\x98\x2f\x6a\xf6\x05\xb4\x7a\xf6\xc5\x09\x9b\x7d\xd1\xb6\x6e\xaa\x0d\x1b\x63\x53\x66\x5f\x8c\x7c\x01\xd0\x8c\x0b\xbe\xc1\x42\xca\x2f\xbf\xfc\x3a\xc2\x26\x60\xe8\x5a\xf0\xa6\x69\x52\xf7\x8b\x41\x13\xa7\x35\xd7\x99\x1d\x08\x1b\x02\xf9\x28\xd2\xf4\xe8\x5e\xaa\x47\xcc\x33\x0e\x7e\x22\x8a\x52\x66\xb8\x3c\xaa\x93\x4b\xb9\xc9\x6a\x33\x6e\x83\x36\x5d\x35\x2e\xbd\x1d\x4c\xe8\x4c\x7e\x84\xa5\x63\x67\x94\xe8\x88\x80\x0e\xd4\xd5\x04\x97\x1a\x5a\x09\x36\xc6\x82\x16\xc2\x4c\x42\x31\x6e\xce\xd9\x6b\x00\x7e\x51\x57\x1a\x9a\xb5\xbd\x3c\xfd\xe5\xcf\x7f\x79\x73\x72\xc8\x3c\x55\x8b\xab\x4c\x15\xf4\x07\xcb\x78\x3b\xfe\xea\xed\x57\x7a\xf6\x05\x8d\x7a\xfb\x15\xfb\x3c\xd1\xc5\x4f\x35\x0d\xec\x09\xc9\xce\x8d\xe2\xf0\x52\xce\x0b\xdb\x54\x6c\x66\x5f\xa7\xc5\x75\xd5\xad\xa0\x96\xd6\xac\x03\x97\x33\x9b\x06\xde\xb4\x7b\x90\x7a\xe7\xc6\x0b\x2f\x5b\xec\x31\xe7\x59\x26\x72\x6b\x2b\x6f\xb8\x33\x20\xa7\x3a\xd4\x62\x45\x7f\x9b\x30\x33\xcb\xa6\x56\x34\xbc\x06\x43\x37\x6e\x9f\xb9\x8b\x32\x4d\x3b\x67\x6e\x7f\xb2\xe4\x8b\xbb\xf3\xf3\xf9\x4f\x93\xf3\xbb\x33\xdb\xfd\xd6\xe4\xc3\xc1\x6b\x9d\x63\xe2\x5a\x42\x63\x82\xb8\xaa\x02\xb0\x54\xe5\x46\xe4\x96\x29\xcc\xf7\x1a\x71\x24\x65\x9a\x56\xd3\x62\xcf\xe4\x47\x2a\x07\xc4\x40\x29\x13\xab\xa6\xec\x1c\xb8\x6a\xfd\xf0\xda\x47\x53\xf8\x47\xfc\xf6\x88\xf9\x4e\x9c\xb0\x0b\x57\x6b\xc7\xb8\x12\xe1\xc4\x01\xdb\x01\xe3\x6d\xbb\xb6\xc3\x73\x27\xfe\x7f\xda\xf6\xb8\x93\x90\xf4\xcb\x48\x5e\xcc\xd7\xff\x2c\xbb\x03\xc7\xee\x63\x15\x0a\xee\xcc\xa5\x31\x7a\x0d\xa1\xdc\x11\xa6\x6b\xd7\x05\x71\x16\xe3\x98\xcd\x24\x0a\x62\xd3\xa6\x42\x75\xb7\x89\x4d\xc9\x83\x94\x72\xb9\x2a\xf9\x4a\xe8\x11\xb3\x95\xcf\xa4\xbd\x9d\xda\xbb\x8e\x03\xe6\x00\x23\x6b\x6d\x09\xd5\x42\x80\x13\x39\x93\xd4\x27\x38\x61\xa9\x78\x0c\x47\xfd\xc3\x8d\xeb\x0e\xc5\x7d\x63\x41\x94\x71\x5e\xce\x24\x4e\x2e\xda\xc6\x2c\xd8\x10\xd4\x8e\xe6\xd9\xc4\x01\x1e\x8c\xf7\xba\x98\x15\x6a\x05\xb0\xc7\x99\x74\x2c\x58\x08\xce\xb0\xf7\x35\x9f\x1b\x14\x9b\xb4\x5f\x9e\xd8\xc9\xb0\x7b\x82\xda\xd6\xbe\xea\x0f\x3e\x03\xcc\x86\x9b\xb7\xde\xe5\x77\x2f\x5b\x2f\xc6\x7a\x02\x72\x78\x20\x38\xba\xa8\x11\x81\xfa\xac\xbd\x35\xb6\x5f\xf8\x4e\x67\xf4\xa8\x2a\x17\xe9\x80\x26\xe1\xfb\x3b\x1b\x85\x22\x79\x77\xa3\x7a\x58\xa4\xaf\x6b\x5b\xcb\x2c\xd3\x5d\xd5\x2e\x94\xea\x98\x97\x67\xc4\xec\x56\x1a\x45\x1f\xec\x1b\x8c\x32\x2a\x9e\xb2\x5e\x7a\xf0\x01\xd5\x87\xc8\x4a\x9f\x5d\x0d\x4a\x13\xfd\xa4\xe6\x78\xfd\xa9\x77\x8b\x9c\x86\x40\x87\xdd\x20\x09\x4b\xe7\x5c\x45\xc0\x76\x88\x49\x7b\x4d\xc1\xf0\x16\x91\xa0\x78\x31\x9b\x67\x04\x9b\xc8\xac\xff\x91\x5b\x44\x23\x3f\x73\x23\x68\x64\x54\xe6\xda\x88\x4b\x92\x77\x24\xb5\x55\xce\xf8\x4c\x5a\x36\x18\x2b\x8e\x27\xd6\x1e\x9c\xbb\x5f\x91\x63\x29\xc3\x94\x75\xe0\x14\x2a\xc0\x4a\x4e\xd2\x70\x26\x1f\x78\x9e\x70\x09\x98\xe6\x85\x86\x7c\xc3\x70\xa5\xdb\x32\x7a\xe0\x08\x38\x74\x68\x64\xde\x23\xf3\x6a\x6a\x40\xe5\x9c\xff\x27\xf3\xbf\xbf\xff\xd3\xff\x0d\x00\x00\xff\xff\x48\x2f\x2f\x28\xd9\xeb\x06\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x73\xe3\x36\xb6\x28\x8a\xff\x3f\x9f\x02\xd5\xfb\x57\xd5\xc9\x8c\xed\xce\x3c\xce\xfe\x4d\x79\xd7\xa9\x7b\x15\x5b\xdd\xd1\x89\xdb\x76\xfc\x48\x76\xea\x68\x97\x02\x91\x90\x84\x31\x05\x28\x00\x68\xb7\x66\x6a\xbe\xfb\x2d\x2c\x00\x24\x48\x91\x12\xf5\x34\xe5\x46\x4f\xd5\x44\x96\x48\x3c\x16\x16\xd6\xfb\xf1\xaf\x3f\x20\xf4\x4e\xbe\xe0\xf1\x98\x88\x77\xe7\xe8\xdd\x5f\xce\xbe\x7b\x77\xa2\xbf\xa3\x6c\xc4\xdf\x9d\x23\xfd\x3b\x42\xef\x14\x55\x09\xd1\xbf\x8f\x92\xb9\x22\x34\x4e\x3e\x48\x22\x9e\x69\x44\x3e\xe0\x78\x4a\xd9\xd9\x4c\x70\xc5\xe1\x45\x84\xde\x3d\x13\x21\x29\x67\xfa\x71\xfb\x11\x31\xae\x90\x24\xea\xdd\x1f\x10\xfa\x37\x0c\x2f\xa3\x09\x99\x12\xf9\xee\x1c\xfd\x5f\xf3\xd2\x44\xa9\x99\x1b\x40\x7f\x96\xfa\xd9\xff\x81\x67\x23\xce\x64\x5a\x78\x18\xcf\x66\x09\x8d\xb0\xa2\x9c\x7d\xf8\x87\xe4\x2c\x7f\x76\x26\x78\x9c\x46\x0d\x9f\xc5\x6a\x22\xf3\x3d\x7e\xc0\x33\xfa\xe1\xf9\xcf\x1f\x70\xa4\xe8\x33\x19\x24\x38\x65\xd1\x64\x30\x4b\x30\x93\x1f\xb8\x18\x7f\xf8\x17\x8d\xcf\xb8\x18\xff\x1b\x3e\xcc\x04\xff\x07\x89\x94\xf9\x23\xe6\x53\x4c\x99\xf9\xcc\xf0\x94\xfc\x3b\x1b\x14\xa1\x77\x63\xa2\xbc\x3f\xf5\xd6\xd3\xe9\x14\x8b\xb9\x06\xcf\x47\xa2\xa2\x09\x52\x13\x82\xcc\xa4\xc8\xc1\x8b\x8f\x10\x46\xe7\x82\x8c\xce\x7f\x13\x64\x34\x70\x50\x3f\x33\xd0\xbe\x82\xa5\xdd\x26\x98\xfd\x76\x66\x61\x06\x23\xf3\x19\x11\xb0\xd1\x5e\xac\x47\xff\x44\x54\x07\x86\xcd\x9f\xff\x8b\xff\xb8\x20\x72\xc6\x99\x24\xb2\xb0\x3e\x84\xde\xfd\xe5\xbb\xef\x4a\x5f\x21\xf4\x2e\x26\x32\x12\x74\xa6\xec\xc9\x76\x90\x4c\xa3\x88\x48\x39\x4a\x13\xe4\x46\xf2\x57\x63\xf6\xaa\x8f\x19\x2f\x0c\x86\xd0\xbb\xff\x9f\x20\x23\x3d\xce\x7f\x7c\x88\xc9\x88\x32\xaa\xc7\x95\x06\x9b\xf2\xe5\xbe\x2b\xbc\xf5\xef\x3f\x54\x7d\xfe\xb7\xb7\xa3\x19\x16\x78\x4a\x14\x11\xf9\xf9\x9b\x7f\xa5\xbd\xe8\x43\xd2\x93\x9b\x13\x2d\x2f\xba\xb4\xd3\x1b\xf8\x84\x93\x13\xc4\xc5\x18\x3d\x91\x39\x02\x94\x22\x31\x52\x1c\xce\x4e\x10\xc9\x53\x11\x2d\xee\x9e\xc2\xfb\x1a\xcd\xca\xbf\x08\xf2\x7b\x4a\x05\xd1\xc7\xa4\x44\x4a\x4a\xbf\xaa\xf9\x0c\x96\x27\x95\xa0\x6c\xec\x03\xe1\xdf\x27\x8d\x36\x65\xb1\x73\xc5\xc6\xae\xf1\x94\x68\x4c\xd3\x7b\xb0\x6f\x14\xf6\x83\x86\x24\xe1\x6c\x2c\x91\xe2\xed\xd9\x9a\xb9\x6b\x6b\xec\xcc\xbc\x50\xbb\xb1\x3e\xeb\xb8\x47\x22\xcc\xd0\x90\x20\x4d\x6e\x68\x4c\x04\x89\x11\x96\x08\x23\x99\x0e\x25\x51\xe8\x85\xaa\x09\x65\xfa\xef\x19\x89\xe8\x88\x46\x0e\x66\xed\x81\x0d\x7c\x5c\x0e\x99\x47\x49\x84\x5e\xf8\x33\x8d\x49\x8c\x9e\x71\x92\x12\x34\xe2\xa2\x88\xc7\x7d\xf6\x30\xd1\x70\x98\x0e\x29\x03\x7a\xa2\x61\xe9\x30\xe4\x4f\x0e\x5c\x7f\x42\x7a\x3e\x94\x32\xfa\x7b\x4a\x92\x39\xa2\x31\x61\x8a\x8e\x28\x91\xe5\xd1\xfe\xc4\xed\x15\x42\xa7\x48\xc3\x99\x08\x05\xf0\xe6\x4c\x91\x2f\x4a\xa2\x53\x94\xd0\x27\x82\xde\x5f\x51\xa9\x50\xe7\xb6\xf7\xfe\x04\xbd\x37\x44\x00\x01\xf9\x7d\x7f\x00\x08\x67\x9f\xff\xc7\xa3\x27\x0a\x8f\xcb\x94\xe4\x5d\x47\x93\xa8\x7b\xc3\xfd\xf2\x11\xfe\xe7\x0f\xfe\x38\xf6\xbc\x56\xb3\x14\xc3\x4f\x72\x66\x62\x39\x49\x53\xfe\x01\x00\x2b\xb2\x0e\xa9\xcf\x6a\x5b\xce\xa1\xc7\x2d\xb3\x0e\x79\x64\xbc\x43\xef\x61\xdf\xfc\xe3\xed\x31\x8f\x6d\x38\x07\x56\x70\xa5\x31\x65\x86\x02\x64\x04\x41\x48\x4d\x04\xdc\xb2\x5b\xb2\xd3\x6d\x18\x89\xb7\x33\x8f\x97\x38\x16\xe1\x41\xa5\x85\xfb\x4e\xe8\x94\xae\x3a\xdf\x1e\x8b\xb5\xc8\x6c\x29\x39\x4b\xa7\x43\x22\x34\x18\x1c\xb2\xc2\x6e\x87\x1a\x79\x55\x2a\x18\x89\x1b\x6c\xf3\xf7\x94\x88\xf9\x92\x7d\x8e\x70\x22\xeb\x36\x4a\x99\x22\x5a\x3f\x29\xfd\x3c\xe2\x62\x8a\x95\x7d\xe0\x3f\xff\xb6\x2e\x20\x14\x7f\x22\xab\xce\xbf\x67\x4e\x33\xc2\x12\xd0\x60\x9a\x26\x8a\xce\x12\x82\x66\x78\x4c\xa4\x85\x48\x9a\x28\x79\x02\x8f\x69\x9d\x88\x88\xd3\x8c\xbd\xc2\x0c\x4e\xac\x48\xa5\xb9\xf4\xa3\x4c\xe6\x67\xe4\x8b\x82\x91\xfa\x0c\x04\x0b\x00\x91\xcf\x2e\xf7\x00\xca\xcd\x70\x46\x72\xa1\x06\xc3\xf9\xd9\x13\x59\x98\xb7\x16\x73\x30\x43\x58\x29\x41\x87\xa9\x22\x7a\xdf\x7a\x0c\x47\xf1\x80\xe0\x1b\xe9\xa3\x09\x69\x78\xbd\x0d\xc7\x54\x90\x08\xf6\xb6\xce\x85\xc9\xde\xd2\xfb\xd6\xf4\x7e\x6e\x76\xaf\xc9\xbf\x16\xb6\x2a\x20\x90\x1d\x79\x9f\xf5\x19\x3a\x45\x97\xdd\xfb\x8b\xee\xf5\x65\xef\xfa\xd3\x39\xfa\x7e\x8e\x62\x32\xc2\x69\xa2\x4e\xd0\x88\x92\x24\x96\x08\x0b\x02\x43\x92\x58\x0b\x54\x7a\x31\x84\xc5\x94\x8d\x11\x17\x31\x11\xfb\x03\x63\xe9\x57\xc2\xd2\x69\x89\x53\xc2\xf7\xf9\xea\x4b\x6f\x68\xf9\x29\xfb\xa9\xf0\xcb\xff\x2c\x00\x18\x76\xac\xe7\xf6\x46\x7b\x55\x89\xed\x88\xf5\xfe\xe3\x12\xdd\x0e\xa0\xf6\x07\x0d\x39\x68\xc8\xd5\x90\x09\x1a\xf2\x56\x10\xde\xbf\x4a\xb4\x63\x69\xe0\xf0\x6c\xe4\x38\xd4\xfd\xe3\x62\x19\x87\xd0\xf6\x83\x6e\x1c\x74\xe3\xa0\x1b\x07\xdd\xb8\x08\xaa\xa0\x1b\x07\xdd\xb8\x75\xba\x71\x83\x63\x0c\x82\x9a\x2f\xa8\x45\x13\x9a\xc4\x82\xb0\x0f\x0a\xcb\xa7\x01\xf9\x42\xa2\xd4\xc8\x19\xe0\xa6\x29\x7e\x39\xd0\x8a\x04\x8f\x49\xf1\x9b\xc2\x1f\xc6\xaf\xb3\xf6\x6b\xb9\x64\xb8\xf6\xab\x99\x2d\x62\xed\x37\xc1\x72\xd1\xec\x3d\xf8\x86\xc6\x95\x4f\xc3\x37\x2b\xf6\xe0\x9e\x59\xb2\x58\xf7\x48\xed\xaa\xdc\x03\x56\x00\xae\x7c\x46\x10\x25\xe6\x03\xac\x14\x99\xce\xd4\x9a\x56\x19\x8c\x12\x2d\x66\x2f\x13\xab\xaf\x79\x4c\xba\x6e\xbe\xdf\x90\x91\xee\x49\x8c\x86\x73\x7b\x2d\x46\x44\x10\x16\x91\xfa\x11\x1e\xb0\x7c\xca\x47\x58\x25\x9b\x17\xe6\x93\x1f\xb9\xd0\xaf\x1f\x85\x3b\xae\xb0\xf2\x43\xc8\xe8\x9b\xdc\xd4\x37\xe6\xc2\xdb\x94\xea\xbc\x39\x5b\xd8\x86\x34\x34\x58\xce\xb6\x87\x64\x53\x3b\x1b\x17\x48\xce\xa5\x22\xd3\x95\x16\xb7\xe3\x01\x84\x65\x92\x6d\x5d\x70\x89\x4f\x7f\x05\xb7\xbe\x28\x75\x84\xeb\xbd\x06\xc8\x76\x65\x2f\x6f\xfb\x3e\x5d\xc8\xf2\xf2\xad\xde\xbb\xe3\xf3\xdc\x75\x47\xb1\xcd\x82\x3c\xbc\xeb\x45\xee\xc9\x02\x55\x7b\x56\x0e\xda\x03\x58\xc0\x0a\xdb\x43\xd1\xe3\x92\xdd\x3f\xfd\xaa\x6f\xb4\x33\x16\x5a\x35\xa1\xd2\xb3\x5f\xa2\x88\x0b\x23\x0e\xc7\xf6\xbe\x1b\xf3\x43\xe7\xa1\x73\xdf\x7d\x38\x47\x1d\x14\x63\x85\xf5\x05\x17\x64\x26\x88\x24\x4c\x81\x69\x47\xbf\xaf\xe6\x68\xca\x63\x92\x18\x23\xc4\x47\x2d\xfd\xa3\x4b\xac\xf0\x05\x56\x38\xe1\xe3\x33\xd4\x81\x3f\xf5\xcb\x54\x22\x9c\x48\x8e\xb0\x43\x2b\x12\xbb\x21\x30\x8b\x1d\x69\xc1\x28\xe2\xd3\x19\x4d\x32\x6f\x53\x66\x6f\xa3\x2c\xa6\xcf\x34\x4e\x71\x82\xf8\x50\x53\x15\x79\xd6\x67\xdd\x67\xc2\x54\x8a\x93\x64\x8e\x70\x92\x20\x3b\xad\x7b\x00\xc9\x09\x4f\x93\x58\x8f\xeb\x56\x29\xe9\x94\x26\x58\x68\x99\xd6\xac\xf6\xc6\x8e\x85\x1e\x26\x24\x5b\x2b\xac\x4b\x43\x73\x8a\x9f\x88\x44\x54\xa1\x19\x97\x92\x0e\x93\xfc\xce\x3f\xf6\x10\xac\xfb\xe2\xaa\x07\x26\x9e\x48\x21\x6e\x68\xa8\x9b\xdc\x9a\xf4\xdc\x8c\x53\xcc\x18\x81\x89\xb9\x9a\x10\x61\xa7\xb7\x0f\xbf\xb6\xb5\xe6\xf1\xfa\xfe\xb6\x7b\xd1\xfb\xd8\xeb\x5e\x2e\x9a\x6b\x1e\x3a\xf7\x3f\x2e\x7e\xfb\xcb\xcd\xdd\x8f\x1f\xaf\x6e\x7e\x59\xfc\xe5\xaa\xf3\x78\x7d\xf1\xc3\xe0\xf6\xaa\x73\xbd\xf8\xa3\x45\xab\xc6\x96\x1f\x7f\x65\x3b\xbb\x5b\x47\x67\x14\x0a\x46\xfd\x35\x8e\x7d\xd7\x46\xfd\x93\xb7\x6b\xd5\x1f\xd1\x04\x8c\x0e\x8d\x2d\xfa\x99\xd5\xc8\xbe\x89\x66\x58\x4a\x23\x07\x9a\x15\x9c\xf5\xd9\x67\x2e\x34\xb9\x1e\x71\x4d\x11\xb5\xac\xa8\x44\x1a\x29\xca\xc6\xd9\x4b\xe7\xa8\x9f\x7e\xf7\xdd\x5f\xa3\x2b\xca\x9e\xe0\x13\x69\x23\x70\x82\xcb\x23\xb8\x3c\x5a\xe7\xf2\xf8\x43\xc5\xab\xfb\x77\x0f\x04\x1b\x7f\xb0\xf1\xef\xcf\xc6\x1f\x4c\xfc\xde\x1a\x82\x7d\x7b\x5b\x40\x04\x03\x58\xb0\x6f\x6f\x0f\x88\x60\xdf\x6e\xe9\x8e\xc3\xf5\x0e\xf6\xed\x60\xdf\x0e\xf6\xed\x60\xdf\x0e\xf6\xed\x60\xdf\xfe\x6a\xec\xdb\x2d\x0c\x79\x0a\x46\xfe\x60\xe4\x0f\x46\xfe\x60\xe4\x0f\x46\xfe\x60\xe4\x3f\x1e\x23\xbf\x96\x76\x3f\x94\x43\xff\xf7\x54\xf4\x4f\x0b\x97\x6c\x96\x2a\x10\x25\x79\xaa\xf4\x47\x3d\x3f\xe0\xca\x92\x12\x00\xcd\x0c\xca\x9f\x88\xca\x1e\xd4\xa2\xed\x51\xc4\x8a\xff\xc2\xc5\xd3\x28\xe1\x2f\xd9\xca\x3f\x11\xa5\x17\x7f\x67\x67\x09\xc5\x00\x43\x31\x40\x14\x4a\x1d\xec\xba\xd4\x41\xab\x4c\xd4\x07\xa5\xef\x47\x4d\xd2\x03\x45\x0f\xc4\x2f\x10\xbf\x3a\xd8\x1c\x25\xf1\x6b\xb6\xb5\xa3\xb3\xde\xec\x9f\xa6\x17\xed\x5d\xb9\xe0\x5e\x91\x92\x5b\x1f\x8d\x53\x1b\x6c\x53\x13\x4b\xe3\x85\xca\x1c\x84\x4d\x14\x03\x52\x56\xb0\x8a\xc2\xc3\x47\xa3\x01\x14\x56\x7d\x78\x5e\xf1\xc6\xf3\x42\xbf\x96\xb0\x98\x10\xf5\xb2\x21\xa0\xde\x30\xd3\x3c\x5c\xcc\xca\xe1\xb9\xdd\x57\xcb\xd3\x02\x4b\xb3\xff\x02\xc1\x0f\x04\x3f\x10\xfc\x57\x22\xf8\x1b\xc0\x3d\xa8\x70\x0b\x4c\xad\xb2\xec\x52\xd3\x3a\x4b\xeb\x24\x5d\xac\x91\x65\xd1\x38\xad\x62\x45\x1e\x45\x65\xe2\x44\x55\xa6\xc4\x62\x6a\x44\x65\x2e\xc4\x76\xc9\x0f\x9b\xf2\xea\xe6\xe9\x0c\x9f\x88\x2a\x3c\x7c\x34\xfa\x67\x61\xd5\x87\x67\xd6\xaf\x1e\xb6\xf3\x5a\x74\xfa\xeb\x4b\xdd\x08\xb9\x1a\x7b\x04\xdd\x5b\x17\x6b\xda\x9b\x8d\xf1\x15\xa4\x5f\x84\x7c\x8b\xb5\x60\xf4\xb6\x12\x2c\xde\x6a\x46\xc5\x71\xa6\x50\x84\x9c\x89\x90\x33\xb1\x53\x95\xb7\xf4\xeb\x57\x95\x33\x71\xcc\x49\x12\x87\x37\x4f\x04\x93\x43\xfb\x4d\x0e\xc1\xe2\x60\xff\x05\xed\x7b\xed\x9d\x07\xd1\x3e\x68\xdf\x4d\x76\x1e\xb4\xef\xa0\x7d\xb7\xf0\x8a\x06\xed\x3b\x68\xdf\x41\xfb\x0e\xda\x77\xd0\xbe\x51\xd0\xbe\xbd\x81\x5e\x2b\xb5\xb6\x0d\xce\xcd\xa3\xb2\x39\xe4\x5b\x1f\xb8\x0b\xbe\x98\x8e\x5a\x20\xbb\x4d\x32\x54\xe1\x93\x53\xea\xd7\xad\x98\x58\xab\xa5\x5f\xe6\x8b\xed\x02\x91\xfc\xcd\x92\x8a\x15\x0a\xfb\xc2\x7b\x47\x11\x23\xb0\xb0\xea\x90\x96\xba\xa9\xc8\xf3\x4a\x42\xc3\x9e\x20\x70\x24\xec\x6b\xfd\x83\x7a\xc3\xba\x64\xd0\x21\xb7\x4f\xa1\x3b\x1a\xdd\xf1\x78\x74\xc6\xc3\xcb\x16\x6f\x51\x9c\x08\xd2\x84\xb7\x86\xc0\x78\x03\xe3\x0d\x8c\x37\x30\xde\xc0\x78\x43\x06\xbe\x7d\x7e\xaf\xf2\x44\x49\x98\x68\x54\x4a\x6b\xe7\x3d\x1c\x2a\x44\x09\x8f\x03\xaf\xea\xc8\x50\x7e\x9b\x12\xf9\xb7\xa3\x94\x29\x0e\xd1\x94\x21\x08\x15\x47\x22\x54\xbc\x49\x5b\x52\x90\x94\x82\xa4\x54\x0d\x99\x46\x92\x52\x9f\x3d\x4c\x34\x1c\xa6\x43\xca\x32\x6f\x9e\xc3\x90\x3f\x39\x70\xfd\x09\xe9\xf9\x50\xca\xe8\xef\x29\x49\xe6\x39\x4d\x92\xe5\xd1\xb2\xca\x9e\xe8\x14\x69\x38\x13\xa1\x00\xde\x9c\x29\xf2\x45\x49\x74\x8a\x12\xfa\x44\xd0\x7b\x4d\x98\x51\xe7\xb6\xf7\xfe\x04\xbd\xbf\x82\x06\x43\x68\x96\x60\x26\xdf\xb7\xc6\x71\x13\xca\x2a\xef\xab\xac\x72\xa8\xaa\x1c\xaa\x2a\x37\x05\x50\xa8\xaa\x1c\xaa\x2a\x1f\x6f\x55\xe5\x9d\xe9\x87\x1b\xd6\xe5\x7c\x15\x4d\xf1\x38\x7d\xd9\x41\x53\x44\x41\x53\x0c\x9a\x62\xd0\x14\x83\xa6\x78\x24\x9a\x62\x3b\x20\x1c\xd4\xc4\xa0\x26\x06\x35\x71\x87\xc0\x09\x6a\x62\x50\x13\x83\x9a\xb8\xa0\x26\x1e\xaf\xe7\xf0\xaf\x41\x1f\x0c\xfa\xa0\xff\xfd\xf1\xe9\x83\x41\x75\x0a\xaa\x53\x35\x64\x8e\x53\x75\x6a\x8d\xec\x73\x8c\x21\x45\x41\x29\x6c\x0e\x88\xa0\x14\x36\x06\x55\x50\x0a\x97\x00\x27\x28\x85\x41\x29\x0c\x4a\x61\x63\xa5\xf0\x98\xdc\x85\x41\x3b\x0c\xda\xa1\xff\x7d\xd0\x0e\x83\x76\x18\xb4\xc3\xe0\x58\x0b\xaa\x61\x50\x0d\x83\x6a\x18\x54\xc3\x55\xc0\x09\xaa\x61\x50\x0d\xbf\x32\xd5\x70\xce\xf0\x94\x46\x03\xa8\x2b\xf5\x62\x1b\x8d\xb7\xa4\x17\xe2\xb2\xea\x06\x66\xd9\xd7\x3c\x26\xae\x3b\xba\xab\xf7\xbb\xaa\xc0\x71\xc5\xab\x47\xa1\x36\xd6\xef\x38\x34\x40\x74\xbf\x86\x06\x88\xaf\x02\xa8\xb7\x5e\xab\xb8\x45\x95\x89\x43\xb5\xbf\x5a\x56\x46\x9e\x09\x53\x12\xfa\xfa\xfa\xc4\xfb\xdd\x8c\xcb\x7a\x5e\xe3\x0b\xba\x15\xdc\x06\xc6\x2c\xf6\xd7\x85\x02\xa4\xbf\xa1\x09\x96\x88\x47\x51\x2a\x4a\xe2\x5c\x99\xe3\x5c\x08\x82\x15\x81\x11\xf4\x8b\xc7\xc0\x6a\x16\xb7\x7b\x28\x4e\x33\xe4\xf1\x02\xb6\x19\x44\xac\xfa\x65\xf9\x55\xdb\xd9\xd6\x7f\x4f\x49\x33\x03\xed\x1e\x91\x1a\x12\x7b\x0c\x32\x2e\x36\xee\x74\x62\xdb\x8e\xb1\xde\x89\x19\xdb\x61\x7e\x36\x8a\x7e\xf9\x28\xd2\x79\xaa\xf7\x7d\xa8\x2b\x50\x7d\xc8\x7b\x26\xf3\x87\x66\x64\xaf\x7e\xcf\xeb\xce\xb8\x65\x77\xbd\xb2\x4f\x6f\xbb\x19\xdc\x51\x5c\xf1\xd7\xe3\x70\xb5\xe7\x1a\x6e\xf8\x57\xc7\xc9\x67\x58\x10\xa6\x06\x4d\x7a\x73\x2b\x2c\x9f\x76\x7c\xe7\x0b\x3d\x93\x36\xba\xf3\x30\xc2\xd1\xdc\xf9\xc5\xfd\x1e\xf6\xce\x37\x3e\xed\x40\x09\x76\x4b\x09\xaa\x0e\xbe\x0d\x94\xa0\xdd\x77\x3a\x5c\x69\xf8\x17\x90\x7a\x3d\xa4\x3e\x1e\x5d\xf4\x18\x10\xfc\x75\x55\xd1\x57\x47\xf2\x76\x6a\x69\x59\xfb\xd2\xc6\x28\xfe\x20\xe8\x78\x4c\x84\x71\x9a\x46\x1a\x15\x6d\x64\xce\x12\x0f\x57\xde\xb0\x73\x25\x5a\x67\x8f\x1e\x03\x4a\x67\x8b\x35\x6b\xff\x6a\x70\x79\x61\xdf\x2d\x41\xe2\x62\xcd\x20\x41\x22\xfe\x4c\x44\x63\xcc\xbe\x23\x80\xce\x40\xbc\x67\x82\x3c\x53\x9e\xca\x64\x7e\x2a\x52\x86\x1c\x27\x40\xd9\x5c\x26\x60\xf4\x85\x26\x09\xe2\x2c\x99\x23\xa9\xb0\x50\xee\x67\x36\x46\x23\xc1\xa7\x70\x45\x12\x2c\x15\x7a\x62\xfc\x85\xa1\x11\xa6\x49\x2a\x08\x9a\x71\xca\xd4\x59\x9f\xf5\x18\xba\x33\x6b\x84\x06\x5f\x27\x28\x95\xfa\x62\x45\x98\x31\xae\x50\x34\xc1\x6c\x4c\x10\x66\x73\xdb\x29\x37\x47\x13\xc4\x05\x4a\x67\x31\x56\x04\xa6\x28\x55\x47\xce\xd6\x08\x11\x74\x54\x22\x2a\x11\xf9\xa2\x04\x99\x92\x64\xae\xe7\xd0\x17\x41\x71\x64\xe1\x63\x96\x6a\x7d\x59\x44\x08\x2e\x24\xb4\x06\x1b\xce\xff\x89\x99\xa2\x8c\x20\x70\xea\x4b\x13\x1d\x77\x8a\xae\xb8\x84\x10\xa3\x1f\xff\x2e\x51\x94\xa4\x52\x11\x71\x82\x86\xe9\x58\x22\xca\xd0\x2c\xc1\x6a\xc4\xc5\x54\xaf\x90\x32\xa9\xf0\x90\x26\x54\xcd\x4f\xd0\x14\x47\x13\x33\x16\xc0\x40\x9e\xf4\x59\xcc\x5f\x98\x54\x82\xe0\x6c\x76\xf7\x23\xfa\xc6\xff\xcd\x60\x83\xfc\xf6\x04\x7c\x6e\x74\x3a\x4b\xe6\xfe\xf2\xf3\xe3\x37\x67\xa2\x07\x21\x31\x1a\x92\x08\xa7\xd2\x06\xf9\x2a\x31\x47\xe4\xcb\x04\xa7\x12\xce\x4e\x6f\xcf\x36\x57\x8b\xf8\x74\x96\x10\x45\x10\x1d\x21\x25\xb4\xe6\x81\xc7\x98\x6a\xd0\xdd\x13\xd2\x80\xa2\xd9\x03\xb4\x57\xe0\x37\xf0\xfe\x4d\xb9\x20\x28\x26\x0a\xd3\x64\x69\xe0\xb7\x7d\x37\x1b\xeb\x28\x54\xcf\x57\xa2\x79\x41\x9d\xdc\x2b\x21\x2f\xa2\x71\xfb\x28\x79\x02\x71\xb8\x3b\x10\x52\x98\x0d\x10\x8e\x70\xb2\xa5\xbc\x72\x67\x17\x15\xae\x6f\xb8\xbe\xe5\x95\x1c\xfe\xfa\x1a\x5c\x6c\xe9\xfd\x3d\x58\x8d\x8e\xfc\xe2\xae\x4a\xb8\xca\x9e\x3c\x8e\xb2\x8c\xd9\x72\x0f\x91\x60\xf5\x26\x2f\xeb\xdb\x8e\xf5\x0b\xe1\x7d\x5f\x61\x3e\x52\x6b\x22\xef\x43\xee\xce\x9e\x72\x77\xa8\x0c\xc9\x3b\x21\x79\xa7\x29\x80\x42\xf2\x4e\x48\xde\x39\xda\xe4\x9d\x75\x75\x87\x0d\x4b\x39\x2c\x4f\xc5\x69\xa6\x3f\x7c\x22\xea\x48\x95\xfe\xa0\x39\x04\xcd\x21\x68\x0e\x3b\xd7\x1c\x5a\x95\x0b\xb4\x2b\x2a\xed\xde\x7e\x17\x93\x84\x28\x52\x6f\x6b\x25\x62\xaa\x15\x22\x23\x81\x50\xa6\x45\xd5\xb1\x20\x52\x6e\x4b\x66\xb3\x81\x8f\x94\xd8\x66\xeb\x0f\x46\xd6\x40\x7d\x6b\xb6\x16\xa8\xef\x1b\xa3\xbe\x47\xe5\x36\xf0\x28\xd4\xa1\xfc\x06\x19\x57\x99\xa5\xf5\x92\xfa\xa3\x89\x6d\xc8\x83\x2d\x0c\x86\x6b\x75\x4b\xf1\xec\x72\x5b\x3c\xdf\x92\xcb\x98\xb9\x8e\x94\xc5\x98\xc5\x07\xfe\x12\xf8\x4b\xcd\xd6\x02\x7f\x09\xfc\xe5\xf5\xf8\x8b\x23\x4f\xad\x72\x4a\x73\x31\x2e\x98\x8c\x96\x31\xa2\x43\x05\xbb\x1e\x17\xd7\x39\x6c\xe8\xc8\xdb\x63\x39\xed\xb9\xa0\x6d\x8b\xdf\x0d\x21\xbb\x21\x64\xf7\xa8\x42\x76\x03\xdd\x3e\x02\x2a\xd7\xba\xe0\xd6\xe3\x88\x67\x0d\xb8\x7d\x14\xb8\xdd\xb6\xc8\xcf\x56\x07\x7b\x1e\x15\x4e\x1f\x28\xd6\x33\x98\x3f\x82\xf9\xa3\x1a\x32\x21\x2c\x32\x54\x6a\x5f\xdc\x56\x88\xf6\x0c\xd1\x9e\x21\xda\x73\x97\xc0\x09\xd1\x9e\x21\xda\xf3\xab\x8d\xf6\x6c\x79\x80\xe7\x51\x69\x0c\x41\x5b\x08\xda\x42\x70\x96\xae\xb9\xb5\xa3\x93\xd1\x77\x45\x99\xdd\xdb\x2d\x8a\xf0\x3c\x2a\x6a\xfb\x1a\x01\x9e\x81\xfc\x06\xf2\x5b\x0d\x99\xa3\x24\xbf\xed\x31\xa4\x87\x58\xc8\x85\x58\xc8\xa3\x22\xc6\x07\x0f\x85\x0c\x94\x38\x50\xe2\x6a\xc8\x04\x4a\x7c\xfc\x51\x83\xc6\xab\x3a\x98\x25\x98\x0d\x68\xec\x85\x0e\x7e\xf8\x57\x6e\xac\xd8\x97\x67\x53\x5f\xad\xd8\x34\xd4\xce\x1a\x58\x8b\xdf\xf4\x2b\x49\xee\xe8\x40\x7c\xa8\x97\xb1\xb2\xb5\xb8\xf1\x8d\xdc\x26\x98\xf5\xe2\xe3\x28\x76\x53\xb9\xfd\x43\x38\x43\xdf\x5e\xa8\xe1\x36\x4c\x0a\x2b\x70\xba\x61\xca\x8c\xd9\x35\x6f\x8c\x5e\x30\x2a\xb7\x63\xa3\xdb\xb0\x2c\x6f\x63\x1e\xd7\x72\xcc\xc8\x03\x4a\xfb\xb6\x1d\x7c\x71\xa1\x6b\x72\xf0\x36\x35\xdc\x70\xf0\x36\xb5\xd7\xdb\xd4\xe0\x18\xf7\xe2\x42\x3e\xf0\xf5\x3c\xa8\xcc\x7a\xd4\x92\x6a\x10\x54\x51\x10\xeb\x82\x58\x57\xbf\xeb\x20\xd6\x05\xb1\x2e\x88\x75\x41\xac\x0b\x62\xdd\xeb\x8b\x75\x0d\xb6\xf9\xd5\x46\x19\xac\x12\x55\x9b\xb7\x1e\x32\x39\x3e\x90\x0a\x98\xce\x12\x8e\xe3\x65\x91\x5e\xb9\x30\xf9\x1b\xca\x05\xb7\x25\x12\xa8\x19\x3d\x7f\xed\x18\x04\xd0\x7c\xb5\x5f\x59\xfe\xd3\xe2\xc6\xdb\xe2\x2d\x28\x96\xaf\x6c\x29\x6e\x1f\x85\x1b\xe0\xb5\x90\xfb\x4d\x96\xb9\x09\x37\xb6\xe1\x8d\x3d\x5c\xfe\x62\xf5\x2d\x5e\xc3\x4a\x22\xff\x76\x5c\xd7\x38\xf4\xae\x08\x35\xaa\x2a\xb6\x16\xa2\x4d\x42\x92\x66\xc8\x66\x7c\x73\xa6\xb6\x90\xcd\x18\xb2\x19\x83\x21\x72\xf9\xb6\x83\x21\xf2\x4d\x64\x33\xae\xaf\x4c\x6c\x98\xdc\x78\x18\xb5\xe2\xc8\xac\x03\x41\xad\x08\x6a\x45\xc5\xd6\x82\x5a\xf1\x15\xaa\x15\xed\x80\x70\xd0\x29\x82\x4e\x11\x74\x8a\xa0\x53\x04\x9d\x62\xe7\x60\x0c\x3a\x45\x03\x9d\x02\x3e\xd9\x12\xc3\x6b\x2b\x18\x6b\x2a\x16\x2b\xea\xa8\x1c\xad\xcf\x31\x68\x14\x41\xa3\x08\x1a\xc5\xc1\x35\x8a\xd6\x6c\xc8\x92\xcf\x15\x7b\xba\x77\x07\x52\x2a\xe8\xde\xbe\xfd\xb8\x15\x0d\x60\xa4\x15\xc2\x44\x51\x41\xcb\xb0\x4e\xbf\xea\xeb\x28\x26\x9a\x1c\xc4\xf2\x3c\xd8\x1a\x45\x5c\x18\xa2\x1c\x5b\x2c\x37\xf2\x44\xe7\xa1\x73\xdf\x7d\x38\x47\x1d\x14\x63\x85\x35\x5a\x0b\x32\x13\x44\x12\xa6\x40\x56\x23\x10\x47\x0f\x65\xf5\x13\x23\x55\x7c\xd4\xfc\x07\x5d\x62\x85\x2f\xb0\xc2\x09\x1f\x9f\xa1\x0e\xfc\xa9\x5f\xa6\x12\xe1\x44\x72\x84\x1d\xe8\x49\xec\x86\xc0\x2c\x76\x17\x0a\x43\xb5\x78\x9a\x64\xca\x69\xa6\x5e\x50\x16\xd3\x67\x1a\xa7\x38\xc9\xd2\x13\xfa\xac\xfb\x4c\x98\x4a\x71\x92\xcc\x11\x4e\x12\x64\xa7\x75\x0f\xb8\x02\xf4\x43\x92\xad\x52\xd2\x29\x4d\xb0\xd0\xe4\xd8\xac\xf6\xc6\x8e\x85\xb4\x62\xec\xd6\x0a\xeb\xd2\xd0\x9c\xe2\x27\x22\x11\x55\x68\xc6\xa5\xa4\xc3\x24\xbf\x00\x8f\x3d\x04\xeb\xbe\xb8\xea\x81\xcc\x16\x29\xc4\x0d\xe5\x70\x93\x5b\x05\xc6\xcd\x38\xc5\x8c\x11\x98\x98\xab\x09\x11\x76\x7a\xfb\xf0\x6b\x8b\x5f\x8f\xd7\xf7\xb7\xdd\x8b\xde\xc7\x5e\xf7\x72\x51\xfe\x7a\xe8\xdc\xff\xb8\xf8\xed\x2f\x37\x77\x3f\x7e\xbc\xba\xf9\x65\xf1\x97\xab\xce\xe3\xf5\xc5\x0f\x83\xdb\xab\xce\xf5\xe2\x8f\x16\xad\x1a\x8b\x72\xfe\xca\xf6\x21\xcb\xb9\xb7\x1b\xd4\xf4\xb0\x97\x4b\x61\x95\x4a\xd3\x53\x46\x90\x31\x95\x0a\xc8\x7f\x13\x29\x6c\x75\x29\x8f\xa3\x95\xbe\x42\x63\xb3\x20\x8b\x05\x59\x2c\xc8\x62\xc7\x26\x8b\x1d\xce\x24\x70\x44\x61\x8a\x7f\x3d\x2e\xde\x13\xda\x2e\x04\xe2\xdc\x7e\xe2\xdc\x3a\xd7\x5b\x6b\x4c\xe7\xc7\x58\xd2\x35\x38\x15\x9b\x03\x22\x38\x15\x9b\xc3\x2a\x38\x15\x97\x00\x27\x38\x15\x83\x53\xf1\x2b\x76\x2a\x1e\x65\x6c\x62\x50\x25\xdc\x73\x41\x95\x08\xaa\xc4\x1b\x55\x25\x5a\x03\xe1\xa0\x47\x04\x3d\x22\xe8\x11\x41\x8f\x58\x0e\x9c\xa0\x47\x04\x3d\x22\xe8\x11\xc7\x16\x8f\x78\x5c\x9a\x44\xd0\x22\x82\x16\xd1\x6e\x2d\xa2\x35\x1b\x3a\x1e\x6f\x71\xb3\xfd\x84\xc8\xbd\x10\xb9\x17\x22\xf7\x6a\x23\xf7\xde\xa8\x26\xbf\x2b\xf9\xcd\xbd\xdd\xb6\x80\xc4\xe3\x12\xbf\x42\x77\xb1\xec\xd7\x20\x8c\x05\x61\xec\x2b\x15\xc6\x5a\x54\x44\xb1\x15\x4d\xd2\xa6\x58\x45\x13\x3c\x4c\xc8\x20\xb3\x65\xc9\xa6\xea\xfd\x15\x95\x4a\xa2\x28\x95\x8a\x4f\xeb\x99\xcb\x67\x37\x43\x27\x9b\xe0\x82\xb3\x11\x1d\xa7\x86\xb7\xfc\x06\xa8\xef\xdd\xe8\x5c\xc0\x9d\xcf\xc8\x2a\xbf\x62\xc5\xe8\x47\xc1\x96\xaa\x97\x7e\x28\xee\xb4\x8e\x3e\x92\xdb\x2e\xad\x32\xa1\x45\xc8\xc1\x5d\xf7\xfe\xe6\xf1\xee\xa2\x7b\x8e\x3a\x20\x62\x81\x3b\xc1\xa0\x02\xfd\xa7\xde\x14\x52\x58\x3e\xe5\x67\x29\x0c\x9a\x4b\x90\xb3\xc1\x7f\xa1\x45\x7e\x74\x8a\x2e\xae\x1e\xef\x1f\xba\x77\x35\x03\x5a\x44\x81\x56\xa9\x64\x3a\x4b\xb0\x22\x31\x7a\x4a\x87\x44\x30\xa2\xa5\x9d\x28\x49\xb5\x70\x93\x7b\x35\xcc\xa0\xdd\xff\xee\x5e\x3c\x3e\xf4\x6e\xae\x07\x3f\x3d\x76\x1f\xbb\xe7\xc8\x61\x9c\x1e\x56\xaf\x4b\xaf\x22\x9e\x33\x3c\xd5\x8a\x95\xfe\x22\x6f\xce\xfa\x7b\x4a\x52\x82\xb0\x94\x74\xcc\xa6\x84\xa9\xf2\x88\x6e\xc1\x57\x9d\xef\xbb\x57\xc5\x91\x27\x04\xfd\xf8\xf7\x7c\x51\x09\x1e\x92\xc4\xba\x59\xc0\x73\xa0\x11\x3d\x9f\xc8\xfa\x5f\x52\x03\xd5\x9f\x1e\x3b\x57\xbd\x87\x5f\x07\x37\x1f\x07\xf7\xdd\xbb\x9f\x7b\x17\xdd\x81\x15\x96\x2f\x3a\x7a\xde\xc2\x4c\x56\xa6\x46\xbf\xa7\x38\xd1\x4a\x17\x1f\x81\xdf\x82\x46\x04\xbd\x4c\x08\x43\x29\x03\x8c\x33\x9a\x9c\x56\xef\xb2\x49\xf5\x2d\x33\x3b\xba\xbd\x7a\xfc\xd4\xbb\x1e\xdc\xfc\xdc\xbd\xbb\xeb\x5d\x76\xcf\xd1\x3d\x49\x40\xd7\x71\x40\x87\x53\x9c\x25\xe9\x98\x32\x44\xa7\xb3\x84\x68\x68\x18\x5d\x6e\x48\x26\xf8\x99\x72\x61\xaf\xee\x98\x3e\x13\x66\xe0\x08\x77\x16\xc6\x77\x3a\xc5\xc0\x03\xdd\xcd\xf5\xc7\xde\xa7\x73\xd4\x89\xe3\x6c\x0f\x12\xc6\x28\x60\xce\x0b\x17\x4f\xa3\x84\xbf\x9c\x16\x97\xad\x89\x03\x4c\x6f\x90\x88\x3f\x13\x21\x68\x4c\x4a\x78\xd4\xb9\xbf\xef\x7d\xba\xfe\xdc\xbd\x7e\x00\x88\x29\xc1\x13\x89\x26\xfc\x05\x2c\xf4\xb0\x43\x30\xdc\x3f\x63\x9a\xc0\x64\xee\xb0\x38\x43\x2f\x13\x0a\x5e\x1d\x2a\x7d\x80\x19\xb5\x53\xa4\xec\xd5\x8d\xce\x85\x8b\xb7\xa8\x8d\x95\x6f\xd2\xe2\x13\xa5\x6b\xb1\xec\x81\x02\x96\x2f\x3e\xb8\x0a\x5b\x17\xdf\x28\xa1\x5b\xbd\x0e\xba\x80\x2f\xf5\x3b\xcd\xcf\xba\xb1\x0a\x5a\x84\xe1\x9a\xc2\xc3\xba\x1a\xa8\xf1\x81\xf9\x4a\x28\xb8\xd4\x9c\x98\xef\x68\xe2\x71\x69\xa3\x8d\xc5\x88\xbc\xe1\xea\x91\x0b\x14\xc7\x91\x78\xf7\xba\x12\xc5\x61\xaf\xc6\xa1\xb5\x86\x20\x2f\x05\x79\x29\xc8\x4b\x41\x5e\x0a\xf2\x52\xf6\x6f\xcf\xf2\x04\x51\x82\x46\xf2\x43\x86\x57\xfb\x2d\xca\x4a\xa4\x46\x58\x45\xa7\x04\xd9\x99\xed\x4d\xad\x15\x42\xb2\x56\xf7\x4b\x2d\xe6\x9f\x88\xca\x1e\xfc\x6c\x06\x3e\x0a\x61\xe2\x17\x4b\x51\xb2\xc5\x7f\x22\xca\xae\x3f\x24\xf4\x87\x84\xfe\x9a\xad\x05\xaf\xc0\xf6\x5e\x01\x2e\x90\x9c\x4b\x45\xa6\x47\xe2\x1f\x88\xc9\x6c\x71\xc2\xd2\xc6\xe0\x19\x13\xdf\xb5\x10\x8e\x6c\x3c\xe7\x36\x76\x20\x21\xcf\x24\x01\x41\x56\x09\xfc\x4c\x84\xb4\xe2\xd9\x50\x10\xfc\xa4\x65\xda\x98\xbf\xf8\xc2\x59\x4c\x14\xa6\xc9\x3e\xf4\xe7\x26\xe1\xca\x7f\xfd\xcb\xab\xf2\xc3\xe3\x65\x81\x81\x03\x06\x17\x72\x60\x16\x5f\x21\xb3\x38\xc6\x20\x9e\xc0\x03\xdb\xc2\x03\x35\xb8\xe3\x81\x0b\xe7\xfb\xf0\xaf\x82\x51\xee\xdf\xfb\xd2\x0f\xef\x20\x3f\x4a\x2e\x63\x84\x9a\x4a\xc5\x5d\x38\xbe\xdf\x6c\x10\xe0\x0a\x8e\xe8\xbd\x71\x14\xfa\xa0\xb7\xde\x36\xb9\xa6\xef\x7c\xc3\xbe\xe3\x13\x53\xa2\x70\x8c\x15\xd6\x57\x68\x4c\xd4\x19\xba\x61\xf0\xdb\x03\x96\x4f\x27\xc8\xf1\x75\x4d\x3b\xf3\x50\x0c\x3f\x45\x67\x4f\xa4\xb2\xa1\xcd\xea\xb5\x83\x37\xdb\x48\xd1\x83\x96\xbe\xcb\xad\x05\xc1\x2b\xa4\x63\xb7\xb9\x6e\x9e\x7b\xbb\x51\xb4\xf3\xee\xb8\xb2\x19\xf1\x88\x19\xf3\x61\xe3\x9b\x77\xca\xa6\x53\x58\x7a\xe0\xc1\xe6\x5f\xe0\xc1\x81\x07\x07\x1e\xbc\x0c\x32\x81\x07\x1f\x71\x00\x7c\x05\xcb\x7a\xd5\x08\xf8\x26\x66\x05\x63\x53\xc8\x0d\x0a\x6b\x16\xea\xcd\x6d\x08\x2b\xcb\x6b\x55\x48\x2d\x2b\x6b\x6b\xe5\xef\xd0\x23\x09\x56\xf3\x76\x79\x88\xfa\x5a\x3b\x15\x56\x4c\x85\x97\x60\x55\xd8\xa3\x44\xf3\xf6\xc4\x99\x6d\x64\x19\xac\x80\xc9\x60\xca\x0c\x4f\xca\xb3\xbd\xe5\x01\x30\x6c\xcd\x8d\x6e\x23\xd9\x78\x1b\xf3\x84\x1b\x27\xb3\x78\x40\x69\xc9\xa1\xee\xa5\x0c\xd7\xeb\xd8\xf1\x5f\xbf\xf4\x16\x79\xbb\x95\xb7\x42\x71\xa9\xb5\x2e\x49\x28\x2e\x75\x88\xe2\x52\x0d\x8e\x71\x2f\x15\xe3\x0e\x7c\x3d\x5f\x53\x75\x38\x1e\x27\xe4\x91\xe9\x0c\x47\xa5\x2f\x04\x1f\xe4\xfe\xed\x9f\xc1\x54\x18\x4c\x85\xd5\x90\x09\xa6\xc2\xaf\x2b\x5c\x6b\x57\xfc\xde\xbd\xfd\xda\x5e\xc8\x23\xe3\xcc\xc1\x09\x19\x98\x70\x60\xc2\x81\x09\x07\x26\xbc\x2b\x08\x07\x7f\xdd\x9a\x4a\xf7\x51\x78\xe9\x8e\x8c\xad\x07\x27\x5d\xe0\xf8\xee\xe5\xe0\xd2\x5a\xb5\xcf\xe0\xd2\x0a\x2e\xad\xe0\xd2\x0a\x2e\xad\xe0\xd2\xca\xbe\x0f\x2e\xad\x83\x62\xeb\x57\x6b\xb6\xab\xd6\x18\x78\x4c\x06\x15\x95\x64\xb2\xaf\x06\x7e\xda\x60\xe1\xdb\x82\xfb\xae\xf0\x8b\xef\xcb\x2b\xfc\x90\xb7\xcb\x81\x79\x69\xbc\x76\x1e\xfe\x32\x73\x22\x8f\x49\xe3\xbc\xfb\xc2\xc3\x6d\x8f\x0b\x74\x1b\x35\xaa\x87\xbf\xf2\x03\xe4\xd9\x97\x31\xe1\x8d\x45\x9f\xd5\x60\xf5\x5b\xb4\xd4\x55\xdc\xd1\x60\xb6\x5b\x09\xa8\x37\x5c\x70\xc0\x12\xe1\x03\xac\xe7\xf0\x3c\xcc\x15\xfe\x1b\x54\x70\xb2\xea\xdf\x72\x7e\x56\xfd\x7b\xc6\xd5\xaa\x7f\xde\x4f\x4b\xe9\xe6\x4c\x0d\xec\x68\xfe\xd3\x47\x12\xee\xee\x2f\xf9\x10\xb6\xb4\x5a\xc4\x78\x63\x8c\x6d\x29\x92\xbf\x39\xf6\xb6\xec\xca\x06\x26\xd7\x10\x5c\x6f\x95\xd5\x85\x9e\xd0\xcb\xac\x78\xa1\xe9\x72\x0b\xad\x14\xc1\x88\x18\x8c\x88\xc7\x68\x44\x34\xc1\x07\x83\x19\x16\x84\xa9\x0a\xdd\xa2\xcc\x4e\xe0\x71\xbf\x49\xa7\x93\x3a\x60\x00\xa4\x45\x7b\x64\x19\x72\xc6\xaa\xde\x58\xa0\x7c\x49\x7b\x79\xc3\x76\xb6\x96\xeb\x23\xed\x31\xb3\xbd\x55\x29\x3d\x18\xa1\x82\x11\xaa\xbc\xcf\xc3\x19\xa1\x36\x80\x7b\x70\x16\x2d\x65\x55\x5f\x89\x21\xad\xe5\x7c\xab\x4d\x76\xb4\xb7\xca\xb9\x82\x7d\x69\x07\xe0\x7a\xab\x5c\xec\xb5\x4c\xca\x87\xd7\xd2\x83\x25\x2d\x58\xd2\x82\x25\x2d\x58\xd2\x82\x25\xcd\xff\x3e\x58\xd2\x96\xc1\xfd\x60\xea\x89\x15\x81\xfc\x36\xab\xff\xca\x3f\x67\x6a\x89\xaf\x5a\x2c\xcb\x60\xbd\x10\x04\x6e\x05\x17\x36\xff\x71\x17\xed\x57\xb1\x2a\x08\xbd\xd0\xd1\x60\x89\x2e\x62\xb2\x8a\x6e\xcd\xd3\xc7\xd5\xc6\x7d\x61\xd1\x87\xcd\x7f\x5d\x3c\xf8\x66\x17\xc8\x9d\x0c\x35\x2d\x36\xbd\x3e\x8e\x5a\xee\xe6\xa3\x9c\x31\x48\xf4\x42\x93\x44\x4b\x32\x56\x6a\x6b\x89\x34\xfa\xea\x59\x71\xb5\x27\xff\xaa\xb9\x71\x55\xd4\xa1\x8a\x24\x34\xb1\x8e\xef\xaa\x0d\xb3\x43\x36\x68\x21\x0b\x7a\xdf\x0a\x73\xfa\xdb\xa0\x04\x9f\x88\x3a\x14\x19\xd8\xf4\xee\x2f\xbd\xf7\x82\x8c\x88\x20\x2c\x22\x2d\xcc\xc8\x5a\x27\x55\xf0\x17\xb3\x49\x9b\x27\x98\xf5\x29\xf7\xb7\xaa\xb8\xd5\xd3\x0a\xa2\x6e\xe8\xde\x1c\xba\x37\x87\xee\xcd\xe5\xab\x1e\xba\x37\xbf\x8d\xee\xcd\x0d\xa8\xec\x0e\x6c\x7b\xcb\x0d\xb6\x2d\xd5\xbb\xdc\xdb\xef\x62\x92\x10\x45\x6a\x05\xa5\x4b\xf8\xf9\xb5\x04\x25\x33\xfb\xdb\x90\x95\xcc\x5e\x82\xb8\xf4\xd5\x28\x4b\xee\xc0\x5b\xa1\x2c\x99\xbb\xe6\xeb\x4c\x90\x5c\xe1\x29\xd7\x26\xa3\xe2\x6d\x9a\x59\x8e\x22\x81\xa2\x3d\x76\x96\xbd\x33\xc5\x43\x13\x87\x60\x43\x5a\x5c\x49\xb0\x21\x6d\x47\x16\x0b\x5f\x56\x54\x61\x3a\x38\xa9\xdc\x44\xc0\x2a\xd0\xcb\x4b\x78\xfc\x38\xa9\x66\x79\xed\xc7\x4c\x3b\xbd\xd1\xda\x41\x44\xbe\x5e\xf2\xb9\x70\xc5\x9b\x6d\xdc\x86\xfe\x1c\xef\xbe\xdb\xc2\x36\xea\xae\x75\x9b\x99\x47\xb1\x8f\xd6\xf1\x7a\x24\x8e\x89\xfc\xbf\x8a\x4b\xe2\xcd\x89\xc9\x5f\x9d\xd1\x20\xf8\x58\x82\x8f\x25\xf8\x58\x82\x8f\x25\xf8\x58\xd0\xa6\x3e\x96\x5d\x49\x5a\x47\xed\x90\x38\x4e\x51\xe9\xb0\x1e\x89\x20\x2d\x1d\xbb\xb4\xd4\x16\xa5\xf0\xb8\x5c\x2c\x5b\xb6\x55\x6e\x8b\x5e\xf8\x96\x8c\x83\xc7\xa5\x23\xb6\xce\x1c\xf8\xd5\x11\xbe\xcd\x4c\x7f\x47\xbb\xdd\xa0\x15\x07\xad\x38\x68\xc5\x41\x2b\x0e\x5a\x31\x0a\x5a\xf1\xda\x5a\xf1\x5b\x12\x14\x8f\x4e\x43\x0e\xb2\xe2\x6b\x6f\xf8\x2b\x93\x15\xdb\x62\x13\xa8\xbb\xb9\x2d\xb5\x0c\x7c\x9d\x01\x45\x47\xcc\x09\x42\xce\x2b\xf2\x8e\x2e\x04\xdc\x7c\x2d\x74\xb4\xe5\x01\x37\x6f\xcf\xae\x7a\xc4\x34\x32\x64\x03\x07\xb1\x72\x47\xdb\x0d\x26\xc8\x60\x82\x0c\x26\xc8\x60\x82\x0c\x26\x48\xd4\xee\xe4\xe7\x95\x06\xa7\x90\xff\xbc\x2f\xc3\xea\x11\x4b\x8a\x21\x17\x3a\x08\x8b\xbb\xdb\x6e\x5b\x75\xe7\x36\xd9\x20\xe5\xfa\x7d\x23\x56\x56\xe2\xb6\xdb\xfe\x6d\x09\x01\xbb\xa2\xd2\x29\xba\xc7\x44\xaf\xe4\xbe\x49\xd2\x36\xe5\x77\xdd\x89\xbe\xd9\xea\xbb\x5b\x74\xa3\x07\xda\xf5\x46\xdb\xd1\x87\xe2\xc0\x4b\x80\x13\x8a\x03\xaf\x45\x4d\x42\x71\xe0\x96\x14\x07\x5e\x57\x05\x33\xb7\xd2\xd7\xc2\xe0\x92\x3b\xa9\xd5\x99\xa5\x8e\x54\x19\x9b\x71\x59\x2f\x99\xdc\x91\x31\x95\x40\x92\x96\xf4\xb4\x72\x32\x09\x34\x56\x00\x54\xff\xa8\x1f\x40\x31\x99\x25\x7c\x0e\xf6\xaf\x25\xe2\x8a\x9b\xe2\x76\x41\x63\x68\xbb\xc4\xe2\x56\x7e\x28\x9d\xaa\x2d\x32\x77\xbe\xef\x56\x48\xd9\x79\xc8\xff\xeb\xcb\xdb\xc7\x14\x78\xb5\x77\x81\xfb\xb0\x74\xf6\x98\xfa\xe2\x06\x75\x22\xa8\x13\x4d\xb0\x26\xa8\x13\xab\x00\x14\xd4\x89\xa0\x4e\xec\x53\x9d\x38\xb0\x04\xf3\xe1\x5f\xa5\x76\xb3\xcb\x02\x10\x1f\x6d\xd4\x21\x38\x67\xa9\x84\x2b\xbf\x52\x90\xe9\xb3\xea\x1f\x9c\x93\x72\x48\x1c\x8d\x19\xa6\xca\x6b\xbb\x26\x35\xd3\x9a\x11\xa1\xe6\xde\x93\x64\x3a\x53\xf3\xff\xea\x33\xaa\xb2\x10\x2f\x3a\x66\x5c\x18\x8c\xd1\x2f\x4f\x30\x8b\x13\xcd\xd4\x65\x36\x4e\x84\x19\xe3\x0a\x48\x39\x6c\x20\x46\xcf\x14\x1b\xc2\xdf\xb9\xed\x35\x0e\x74\x3c\x26\x51\xeb\xb0\x91\x8c\xfb\xef\x9d\x76\xf8\xce\xa2\x2b\x36\xf4\x29\xe1\x43\x9c\x24\x73\x94\x16\x3d\x4a\x7a\x80\x96\xec\xa1\x2d\xda\x5b\x3b\xd4\x35\x57\x56\xa0\xac\xb6\xb5\xcc\x1a\x71\x4c\x44\xe6\xd0\xe6\x08\xef\x08\xdf\x18\xb9\x69\xcb\x55\x6d\x9b\xa1\x25\x08\x27\x4d\x85\x93\x23\x22\x1b\x87\x95\x4d\x02\x27\x3f\x7e\x4e\xae\xb0\x7c\xf2\x3b\x99\x03\x43\x77\xcd\xe8\x0b\x5d\x7c\xcb\x2d\x7d\xff\xdd\xe4\xb9\x3c\xbd\x60\xf5\xb3\x59\x37\xf4\xd5\x8f\x42\x67\xf4\x9a\x07\x6d\x1b\x7d\xf3\x33\x6c\xaf\xbc\x0e\xf7\xa5\x3f\xa1\xfb\x2e\x1f\xd9\x7d\xf3\x4c\x84\xa4\xdc\x3e\x26\x88\x12\xf3\x01\x56\x4a\x13\xa4\x0d\x6c\xd4\xb5\x54\xf3\x01\xcb\xa7\x66\x5d\xd9\x3f\x11\x55\x78\xb8\xed\x62\x8d\xdb\x28\xec\xb3\xb0\xf2\xfd\xd3\xa7\x06\x68\xfc\xc6\xc4\x9d\xc6\x57\x72\xc5\xbe\x8f\xaf\x31\x7d\x53\x02\xb3\xc6\xc6\xbf\x96\x26\xf5\xcd\x08\xee\xaa\x78\xc8\x63\x6c\x58\xbf\x8c\x83\xb4\x66\x85\x25\x26\xf6\x16\x6f\x6e\x91\x25\x87\x2b\xba\x0c\x46\x4d\xef\xe2\xd1\xdc\xc0\x92\xa4\xb5\x62\x6f\xf7\xee\x80\xec\xe3\x0e\x13\xda\xb7\xaf\x82\xb0\xb8\xeb\x55\xed\xc7\x01\xec\x9d\xc6\x3a\x29\x84\x3d\xd7\x6c\xdd\xb8\xb3\xb2\x3b\xe4\x92\x0a\xb3\xab\xa9\x26\xd0\x90\x8a\x4a\xbf\x3f\x7b\xc4\x85\x91\x36\x63\x7b\x67\x8d\x43\xab\xf3\xd0\xb9\xef\x3e\x9c\xa3\x0e\x8a\xb1\xc2\xfa\x92\x0a\x32\x13\x44\x12\xa6\x8c\x29\x82\x29\xaa\xe6\x68\xca\x63\x92\x18\x3b\x80\x31\x0e\x5e\x62\x85\x2f\xb0\xc2\x09\x1f\x9f\xa1\x0e\xfc\xa9\x5f\xa6\x12\xe1\x44\x72\x84\x1d\xe2\x90\xd8\x0d\x81\x59\xec\xc8\x03\x46\x11\x9f\xce\x68\x62\xf2\xda\x7c\xff\x36\x65\x31\x7d\xa6\x71\x8a\x13\xc4\x87\x60\x43\x39\xeb\xb3\xee\x33\x61\x2a\x05\x1d\x17\x27\x09\xb2\xd3\xba\x07\x3c\x03\x86\x5b\xa5\xa4\x53\x9a\x60\xa1\xa5\x47\xb3\xda\x1b\x3b\x16\x7a\x98\x90\x6c\xad\xb0\x2e\x0d\xcd\x29\x7e\x22\x12\x51\x85\x66\x5c\x4a\x3a\x4c\xf2\x6b\xfc\xd8\x43\xb0\xee\x8b\xab\x1e\x38\x0d\x23\x85\xb8\xa1\x83\x6e\x72\xeb\x41\x77\x33\x4e\x31\x63\x04\x26\xe6\x6a\x42\x84\x9d\xde\x3e\xfc\xda\xfe\xbf\xc7\x6b\x9b\x2e\xd6\xbd\x5c\x74\x00\x3e\x74\xee\x7f\x5c\xfc\xd6\xe5\x87\x2d\xfe\x72\xd5\x79\xbc\xbe\xf8\x61\x70\x7b\xd5\xa9\xc8\x3b\xb3\x68\xd5\xd8\x97\xe8\xaf\x6c\xf3\xcb\xb4\x7f\x45\xa3\xa5\xa1\x89\xcd\x8d\x0e\x8d\x2c\x0e\x8d\xcd\x0d\x4d\x6d\x0d\xcd\x0c\x0d\xf5\x56\x86\x3d\x84\xa9\x35\x37\x05\x5c\x51\x59\xb4\x05\x1c\x47\xcc\x5a\x61\xc9\x7a\x0f\xfb\x36\x04\x7c\x75\x56\x80\xaf\xd4\x04\x10\xf4\xff\xbd\xc0\xed\xad\x2a\xff\x2d\xd7\xfc\xb7\x09\x4a\xcd\xea\x5f\x84\xa8\xd4\xc5\xa8\x54\x12\x82\x52\x43\x50\x6a\x53\x00\x85\xa0\xd4\x10\x94\x7a\xb4\x41\xa9\x65\x45\x2b\x78\x6c\xdb\xe0\xb1\x6d\xb9\x8e\xd6\x66\x87\xed\x5b\xd5\x5c\x82\xf3\x32\x38\x2f\x83\xf3\xf2\x48\x6f\x6e\x70\x5e\x36\x87\x51\x70\x5e\x06\xe7\x65\x70\x5e\x06\xe7\x65\x70\x5e\x06\xe7\xe5\x6b\x9a\x46\xda\x10\x1b\x7a\xcc\x2e\xdb\xe0\x89\x5d\xe1\x89\x6d\xb9\x92\xdf\x4a\x47\xec\x5b\xd5\x11\x82\x6a\x1f\xfc\x92\x5b\x6d\xbb\x55\x4a\xfd\x5b\xe3\x9b\xc1\x15\xdb\x1c\x10\xc1\x15\xdb\x18\x54\xc1\x15\xbb\x04\x38\xc1\x15\x1b\x5c\xb1\x5f\xa1\x2b\x96\xc6\x5b\xb7\xdc\x6a\xa2\xb7\x68\x59\x31\xee\x82\x79\x28\x33\x6e\x89\xdf\x40\x7a\xc4\xf2\x29\xb3\x00\x35\xd0\x67\x7a\xf1\x51\x28\x32\x95\x1b\x3e\x84\x42\xb3\x8d\xc6\x82\x95\xa6\xe0\x0a\x4a\x15\xe8\x5f\x72\xa3\x62\x0b\x7b\x04\x6c\xa3\xa3\x78\x1b\xf3\xd4\x14\xa7\x7d\x78\x40\x69\xdf\xb6\x83\xe0\x17\x04\xbf\x20\xdb\x34\xdc\x70\x90\x6d\xda\x2b\xdb\xbc\x96\xc2\xd2\xbe\xeb\x79\x74\xf6\x89\xbd\x8b\xa5\xb2\x71\xd1\x36\xd3\x26\x1b\x5c\x77\xe9\x2c\xe1\x38\x5e\x15\x20\xf7\x1b\xca\x65\xb5\x25\xe2\xa6\x19\x57\xbf\xd0\x72\x69\x73\x21\x36\xce\xac\xfc\x6b\xa8\x1a\x5f\xbb\xf5\x57\xad\x67\x06\xf8\x9b\x55\x2d\x5a\xab\x02\xe1\xfe\x91\xb9\xed\xd9\x78\xaf\x8c\xcd\x6f\x32\xf5\x2e\x5c\xd1\xd5\x57\x14\x3e\x14\x02\xbc\xf7\x65\x09\x29\x5f\xdb\x46\x46\x0f\xf9\xb7\x96\xdf\xdb\xec\x7c\x0f\x61\xe2\x78\x93\xb7\xf4\x0d\x3b\x9b\x83\x43\x79\x79\xd4\xcf\x8e\x02\x50\xfb\xec\x61\xa2\xe1\x30\x1d\x52\x96\xc5\xdb\x39\x0c\xf9\x93\x03\xd7\x9f\xa0\xd6\xa5\xad\x7f\x99\xcc\x73\x53\x98\x2c\x8f\x96\x29\x4a\xe8\x54\x6b\xa9\x11\x11\x0a\xe0\xcd\x99\x22\x5f\x94\x44\xa7\x28\xa1\x4f\x04\xbd\xd7\x57\x1e\x75\x6e\x7b\xef\x4f\xd0\xfb\x2b\x9c\xb2\x68\x82\x66\x09\x66\xf2\x7d\x6b\x14\xac\x60\x33\x0b\xdd\x54\x82\xb7\x74\x97\xc0\x09\x16\xc5\x60\x51\x6c\x9d\x45\xb1\x2d\x3a\x83\x49\x2a\xc5\x53\xd2\x16\xed\xa1\xed\x5a\x7f\xd0\x1e\x82\xf6\x10\xb4\x87\xa0\x3d\x14\xb4\x87\x76\x40\x38\xa8\x0e\x41\x75\x08\xaa\x43\x50\x1d\x82\xea\xb0\x73\x30\x06\xd5\x61\x99\xea\x00\x9f\x5c\xdd\x98\x75\xf5\x88\xc6\xfa\x43\x83\x22\x31\x47\xa3\x3c\x04\xc5\x21\x28\x0e\x41\x71\x38\xb8\xe2\xd0\x9a\x0d\xbd\xbd\x7a\x17\xa1\x62\x44\xa8\x18\x11\x2a\x46\xd4\x54\x8c\x38\x94\xc8\x66\xe4\xb5\x23\x4b\x91\x39\x0a\xa1\xed\xd5\x72\x64\xde\x9e\x18\x17\xb2\x7e\x42\xd6\x4f\x30\x43\x86\xac\x9f\x60\x68\x0b\x86\xb6\x56\x1b\xda\x5e\xcb\x7a\x7e\xe0\xeb\x79\x00\xe1\xb4\xe5\x11\xcb\x7f\x3d\x06\x09\xf4\x80\x31\x07\xc1\xca\x16\xac\x6c\xd5\x90\x39\x4e\xf7\x7c\x6b\xb8\x7e\x28\xf0\x14\x24\xfe\x10\x78\x10\x02\x0f\x56\x02\x27\xe8\x43\x41\x1f\x6a\x9d\x3e\xf4\x8a\x8a\x42\xeb\xc2\x94\x83\xc6\x10\x34\x86\xa0\x31\xbc\x59\x8d\xa1\x35\x10\x0e\xea\x42\x50\x17\x82\xba\x10\xd4\x85\xe5\xc0\x09\xea\x42\x50\x17\x82\xba\xd0\xea\xd0\xe4\x63\x51\x18\x82\xb2\x10\x94\x85\x76\x2b\x0b\xad\xd9\x50\x08\xe2\x0d\x41\xbc\x21\x88\xf7\xab\x09\xe2\x7d\xa3\x0a\xfb\x5e\xc5\x34\x47\x22\x97\x09\x5e\x8b\xf2\xd2\xcf\x0b\x84\xb5\xb5\x22\x53\xbe\xda\x4d\xeb\x3e\xee\x0a\xd4\x2f\x5c\x3c\x8d\x12\xfe\x32\xc8\xb4\x3a\x1b\x14\x9e\xff\x6d\xf3\xf9\xbc\x2f\x72\xe1\xd9\xfb\x32\x13\xa2\xbd\xef\xdc\xe8\xc5\x02\xa1\xe9\xaa\xfa\xa0\x12\x71\x81\xd2\x59\x0c\x1f\xa3\x54\x2a\x3e\xad\x97\xaa\x3f\x63\x15\x4d\xf0\x30\x21\x9d\x6c\xde\x0b\xce\x46\x74\x9c\x1a\xfc\xf8\x0d\x48\x21\x76\x92\xcd\x89\x93\x8c\x34\x51\x74\xeb\x5b\x26\x89\x3f\xc2\x3a\x7e\xb1\x4f\xe6\x93\x1c\x45\x00\xfa\xe2\xb2\xcd\x76\x0e\x55\x6e\xb4\x88\x45\xdb\x92\x38\x6f\xb4\x76\x88\x3f\x8b\x77\x62\x95\xa8\x0a\x56\xe8\x4c\x33\xa1\x31\x20\xe7\xcb\x84\x82\x65\x0d\x2c\x71\x60\x7d\xca\x07\x46\x2f\x34\x49\x40\xe2\x30\xb0\x68\xdf\xce\x1b\x69\x2f\x76\xe3\xf6\xee\xbd\x89\x7d\x3b\xe2\xb1\x62\xe7\xee\x0a\x1a\x37\xc4\x91\x6e\xfb\x35\x2b\xec\xae\x20\x64\xaf\x5a\x67\xb7\x96\x7d\xd6\xe4\x54\x7d\xf8\x57\x25\x4b\x6c\xd2\x3b\xf5\xb5\xf9\xe0\x27\xa2\xde\x0c\x13\xfc\x44\xd4\xa1\x38\xe0\x5b\x64\x7b\x9b\xf2\xba\xa5\x84\x4f\x90\x11\x11\x84\x45\xe4\x58\x73\xb2\x16\x58\xdc\xd1\x6e\x77\x23\xce\x76\xb4\xbb\x5d\xc7\x80\xf5\x8b\xd9\xa4\x35\x57\x4d\x1d\xc9\xf5\xb7\xaa\xb8\x75\x2f\x17\x5c\x60\xd6\x58\xf5\xd0\xb9\xff\x71\x70\xd7\xbd\xbf\x79\xbc\xbb\xe8\x9e\xa3\x0e\x5c\x74\x78\xc7\x90\x77\xfa\x4f\x18\x0e\xf2\x61\x33\x63\x98\x30\x3c\x4e\x02\xa9\x06\x37\xb8\x86\x22\x3a\x45\x17\x57\x8f\xf7\x0f\xdd\xbb\x9a\x01\x2d\xf1\xa7\x6c\x8c\x14\x99\xce\x12\xac\x48\x8c\x9e\xd2\x21\x11\x8c\x80\x62\x95\xa4\x52\x11\x91\x3b\xc7\xcd\xa0\xdd\xff\xee\x5e\x3c\x3e\xf4\x6e\xae\x07\x3f\x3d\x76\x1f\xbb\xe7\xc8\x71\x11\x3d\xac\x5e\x97\x5e\x45\x3c\x67\x78\x4a\x23\xf3\x45\xd6\x8a\x16\xfd\x9e\x92\x94\x20\x2c\x25\x1d\xb3\x29\x61\xaa\x3c\xa2\x5b\xf0\x55\xe7\xfb\xee\x55\x71\xe4\x09\x41\x3f\xfe\x3d\x5f\x54\x82\x87\x24\xb1\xde\x7a\x70\x40\x6b\xe6\x95\x4f\x64\xdd\xf8\xa9\x81\xea\x4f\x8f\x9d\xab\xde\xc3\xaf\x83\x9b\x8f\x83\xfb\xee\xdd\xcf\xbd\x8b\xee\xc0\x1a\x63\x2e\x3a\x7a\xde\xc2\x4c\xd6\x66\x83\x7e\x4f\x71\x42\xd5\x5c\x9f\xa3\x34\x4c\x1f\xbd\x4c\x08\x43\x29\x03\x06\x62\x2c\x85\x98\x79\x93\xca\x19\x89\xcc\x8e\x6e\xaf\x1e\x3f\xf5\xae\x07\x37\x3f\x77\xef\xee\x7a\x97\xdd\x73\x74\x4f\x12\xb0\xa5\x39\xa0\xc3\x29\xce\x92\x74\xac\x29\xc1\x74\x96\x10\x0d\x0d\x63\x2b\x1c\x92\x09\x7e\xa6\x5c\x58\x76\x3c\xa6\xcf\x84\x19\x38\x6a\xb4\x32\xe3\x3b\x9b\xd5\xc0\x03\xdd\xcd\xf5\xc7\xde\xa7\x73\xd4\x89\xe3\x6c\x0f\x12\xc6\x28\x60\x8e\xbb\xba\xa7\xc5\x65\xd3\x11\x8d\x60\x7a\x83\x44\xfc\x99\x08\x41\x63\x52\xc2\xa3\xce\xfd\x7d\xef\xd3\xf5\xe7\xee\xf5\x03\x40\x4c\x09\x9e\x48\x34\xe1\x2f\xe0\xe8\x85\x1d\x82\xff\xf7\x19\xd3\x04\x26\x73\x87\xc5\x99\x7f\xfb\xbd\x99\x8d\x59\x53\xa4\xec\xd5\x7d\x97\x85\x8b\xb7\x68\xed\x2b\xdf\xa4\xc5\x27\x4a\xd7\x62\xd9\x03\x05\x2c\x5f\x7c\x70\x15\xb6\x2e\xbe\x51\x42\xb7\x7a\x1b\xe7\x02\xbe\xd4\xef\x34\x3f\xeb\xc6\x26\xce\x22\x0c\xf7\x21\x63\xbb\xb7\xdf\xc5\x24\x21\x8a\xd4\xca\xc4\x97\xf0\xf3\xeb\xcb\xc4\x66\x1d\x6f\x46\x2c\x36\xdb\x09\x92\x71\x90\x8c\x1b\x6f\x38\x48\xc6\x55\x1b\x7e\x23\x92\x71\x0b\xad\x3e\x8e\x44\xb5\xce\xea\x13\xfc\x23\xa5\x93\x3a\x4e\x16\xf8\x6a\xee\x91\xe0\x3f\x58\x8f\x85\x1c\xff\xbe\x83\xff\x20\xf8\x0f\x2a\x39\xc9\x9b\xf7\x1a\x1c\x27\x6b\x38\xa0\xd3\x20\xa8\x11\x4b\xf6\x1b\xd4\x88\x23\xdb\x6d\x30\xb0\x07\x03\x7b\x30\xb0\x07\x03\x7b\x30\xb0\xa3\x4d\x0d\xec\x0d\xa8\xec\x21\xcc\xa9\x2d\x0d\x22\x7e\x2b\x6e\x83\xe3\x94\x8b\x0f\xeb\x35\x08\xa2\xf1\x92\xfd\x06\xd1\xf8\xc8\x76\xdb\x42\xbb\x48\xbb\x2c\xec\x34\xae\x32\x88\x1c\xb0\x34\xbd\x5b\x49\xd3\xf2\xf4\x0e\xa0\xbd\xf8\x28\xc8\xf9\xab\x55\xa8\x0f\xf5\xdc\x43\x3d\xf7\x50\xae\x25\xd4\x73\x47\xa1\x20\x49\x28\x48\xd2\xe6\x82\x24\x0d\x8e\xf1\x2d\xd4\x73\x3f\x8c\x85\xe1\x0d\x25\x29\x3b\xc1\x50\x16\x62\x37\xb8\x5c\x15\xbc\x01\x56\x82\x74\x96\x70\x1c\x2f\x2b\x16\xe3\xe4\x48\xbf\x60\xcc\x12\xd1\xd3\x8c\xfd\xcb\xa2\xf2\xd4\x5a\xc9\xd3\xad\xd5\xac\xfc\x50\xe6\x83\xd6\x28\x5c\x6e\xdb\xad\x50\xb3\x8a\xbd\x5b\x5b\x88\xd0\x47\x15\x50\x7b\x58\x8c\x7e\x93\x4d\x5b\xc3\x35\x5d\x7d\x4d\x0f\xd7\x1f\xa5\xea\xea\x36\x36\x84\xc8\xbf\x1d\xd3\xdd\x3d\x50\xe5\xe3\xb7\x77\x63\x43\x85\xb6\x50\xa1\xad\x16\x32\xc7\x59\xce\xb9\x35\x8a\x57\xb0\xa5\x85\xd2\xc7\xa1\xf4\xf1\x2e\x81\x13\x2c\x8d\xc1\xd2\xd8\x3a\x4b\x63\x9b\x74\x88\x3d\xb6\x4e\xd9\x4e\x9b\x38\x2a\x4b\x40\xd0\x26\x82\x36\x51\xb1\xb5\xa0\x4d\x7c\x85\xda\x44\x3b\x20\x1c\x54\x89\xa0\x4a\x04\x55\x22\xa8\x12\x41\x95\xd8\x39\x18\x83\x2a\xf1\x3a\x6d\x55\xaa\xf4\x89\x86\x29\xa9\x47\xa5\x4c\x04\x45\x22\x28\x12\x41\x91\x08\x8d\x63\x96\xef\x29\x34\x8e\x09\x8d\x63\x42\xe3\x98\x37\xd0\x38\xe6\x90\x22\x5c\x4d\xb5\xf2\xe3\x48\xb3\x39\x0a\x21\xee\xd5\xf2\x6c\xde\x9e\x48\x17\x32\x87\x42\xe6\x50\x30\x51\x86\xcc\xa1\x60\x84\x0b\x46\xb8\x56\x1b\xe1\x5e\xcb\xb2\x7e\xe0\xeb\x79\x20\x41\xf5\x48\xa2\x9d\xff\x7a\x0c\xd2\xe8\x81\xe3\x13\x82\x05\x2e\x58\xe0\xaa\x21\x73\x9c\xae\xfc\xd6\x48\x01\xc7\xd8\x39\x36\x68\x00\xcd\x01\x11\x82\x14\x9a\xc3\x2a\x04\x29\x2c\x01\x4e\xd0\x8f\x82\x7e\xd4\x3a\xfd\xe8\x95\x15\x87\xd6\x86\x38\x07\x0d\xc2\x3c\x17\x34\x88\xa0\x41\xbc\x51\x0d\xa2\x35\x10\x0e\xea\x43\x50\x1f\x82\xfa\x10\xd4\x87\xe5\xc0\x09\xea\x43\x50\x1f\x82\xfa\x70\x34\x61\xcd\xc7\xa4\x40\x04\xe5\x21\x28\x0f\xed\x56\x1e\x5a\xb3\xa1\x10\x00\x1c\x02\x80\x43\x00\xf0\x57\x13\x00\xfc\x46\x15\xf8\xdd\x8a\x6d\x7f\xb0\x80\x7a\xe7\x09\x18\x99\x24\xf2\xee\xfb\x84\x0f\x1f\xe6\x33\xa2\xff\x7b\x49\xa7\x84\x49\x80\x04\x55\x73\x5f\x4c\xab\x41\xa8\x45\x54\x7a\x77\xdf\xbb\xfe\x74\xe5\xb7\x07\x7a\xf7\xf9\xf1\xea\xa1\x77\xdb\xb9\xcb\x8e\x3b\xdb\x95\x7f\xc4\xf6\xbd\x82\xa4\x69\x6f\xf2\x1d\xd1\x2a\x35\x10\x83\x7b\x85\x55\x2a\x37\x5b\xd9\x5d\xf7\xbe\x7b\xf7\x33\xb4\x37\x1a\x5c\xf6\xee\x3b\xdf\x5f\x15\xf0\xbc\xf0\x7b\xe7\xe2\xa7\xc7\xde\x5d\xfd\xef\xdd\xff\xee\xdd\x3f\xdc\xd7\xfd\x7a\xd7\xbd\xea\x76\xee\xeb\xdf\xfe\xd8\xe9\x5d\x3d\xde\x75\x97\xc2\x63\xe9\x6a\x97\xeb\x56\x12\x80\x04\x2d\x3e\x50\x64\x89\xa1\xc8\x61\x88\x32\xa9\xd8\x51\xf9\xaa\xb9\xce\xd1\xa3\x35\x55\x50\x3b\xb8\xe1\x1b\xde\x40\x46\xc7\x8a\xa9\xc4\xc3\x84\xc4\x0b\x23\x39\x18\xd6\x8d\x84\x0b\x8b\x7a\xc1\xd2\x93\xa4\x35\x29\x8f\xcc\xf5\x41\xd0\x74\x4d\x11\x16\x57\xcc\x61\xce\xa1\x76\x06\xa6\x49\x32\x7d\x26\x85\x99\xa2\x54\x08\xc2\x54\x32\x47\xe4\x0b\x95\x4a\x2e\x0c\xea\x8e\xaf\x6e\x58\x4b\x10\xb2\x01\x27\x58\xa2\x21\x21\xac\xb8\x7e\x41\x12\x82\x65\xc5\x9a\xed\xe9\x37\x03\x4b\x76\x56\xd6\xc8\x64\x78\xec\x08\xd3\x24\x15\xa4\x74\x5b\xf8\x74\x86\x05\x95\x9c\x75\xbf\x68\x16\xad\x2f\xf2\x0d\xbc\xce\xc5\x66\x37\xa6\xfb\x93\x8f\xc1\xd7\xc5\x3f\x3f\x3d\x14\xff\x2a\xdc\xf9\xab\x87\xe2\x5f\xcb\x71\xdd\x1b\xb8\x8c\xd9\xa7\xe8\xd3\xc3\x39\xfa\x04\x25\x46\x05\x7a\x98\x60\x83\xb1\x57\x0f\xe7\xe8\x8a\x48\x09\xdf\xe4\x2f\x2b\xaa\x12\xd8\xdb\xf7\x94\x61\x31\x47\x6e\xfb\xa6\x73\x1f\x8e\x26\x88\x64\xa0\x29\x03\x8f\xfd\x23\x65\x60\x91\xc8\xa1\x77\xc5\xc7\x34\xc2\xc9\x76\x40\xec\x5c\x17\xe8\xc0\xcd\xdd\x52\x50\xf8\x4f\x2f\xc2\xa2\x73\x7d\x09\x5d\xf1\xdc\x52\x2b\x76\x7e\x4d\xa4\x46\x92\x88\xb3\xd8\xfa\xd4\xb4\x50\x33\xf7\x74\x95\x7f\x70\xe8\x2c\x98\x4a\xca\xc6\x7a\x44\xf4\x01\xdd\xdc\xf5\xd9\x8d\x88\x8d\x7d\x97\x68\x21\xdf\xe0\x1c\x95\x88\x71\x85\xe8\x74\xc6\x85\xc2\x4c\x69\xfd\x06\xa4\x1b\x0b\x11\x43\x01\x2e\xf8\x74\x9a\x2a\xac\x2f\xda\x02\x50\x99\xb1\xf2\xdc\x13\xd5\x8b\xc1\x11\x56\x01\x43\x23\xfe\xe4\x7b\x99\x09\x3d\xbe\x16\xbd\x8a\xa6\x01\x1a\x2f\x68\xe8\x6e\x08\x2c\x04\x2e\x32\xe0\x77\x54\x91\x69\xf9\xf9\x86\x6c\xf7\xdf\x95\x76\x8f\x0b\x93\x15\x41\x44\x47\x44\x13\xaa\x48\xa4\xf4\x15\xdc\x08\x27\x1e\xaf\x7f\xbc\xbe\xf9\xc5\x17\x8c\xde\x75\x3e\x5f\xfe\x67\xa1\x0c\x6c\xe7\xee\xf3\xc2\x17\x83\x9f\xff\x73\xe1\x9b\xff\xff\x52\x7c\x2a\xcf\xb4\x60\xbe\xf0\xf6\x72\x0a\x9a\x02\x98\xba\xdd\x56\x11\x9d\xe2\x31\x41\x32\x9d\x69\x0c\x90\x67\xc5\xf3\xd5\x92\xf2\x15\xc7\x31\x65\x63\xd3\xfc\xed\x8a\x2a\x22\x70\xf2\x19\xcf\x3e\x3a\xb3\xfc\x06\xd0\xf9\x3f\xf7\x85\x06\x84\xef\x7e\xed\x7c\xf6\x5b\x18\xbe\xbb\xbd\xbb\x79\xb8\x59\xba\xeb\xc2\x08\x8b\xd7\x48\xff\x7c\x0e\xff\x8f\x3e\x20\x3d\x7a\x26\xd0\x4f\x89\xc2\x5a\xd1\x41\xdf\x98\x7e\x59\x59\x26\x0c\x65\x09\xdc\x9a\x99\xa0\x53\x0a\x2c\xc5\x18\x26\xbf\x35\x3a\x43\xa6\x14\x65\xf7\xc6\xbc\x00\x46\x00\xc7\x94\x59\x8c\x45\x8c\xfe\x21\xcb\xfd\x30\xc1\x1e\x6e\xbe\x20\x31\x3a\x45\x13\xa5\x66\xf2\xfc\xc3\x87\x97\x97\x97\x33\xfd\xb4\x16\x60\x3f\xe8\x0f\xa7\x84\x9d\x4d\xd4\x34\x31\xfd\x3f\x35\x14\xce\xd1\xad\xe0\x9a\x85\x80\xdd\x81\x08\x8a\x13\xfa\x4f\x12\xa3\xa1\xa1\x7f\x7c\x84\x7e\x8b\xb8\x20\x67\xf9\xc1\x58\x5b\x99\xe5\x23\xd6\x9e\xf6\x41\x3f\x54\x41\x4c\xca\xe7\x89\x62\x12\xd1\xd8\x8a\x19\x84\x45\x1c\x0c\xaa\xc6\x05\xa3\xc7\x73\x4d\xc6\xb4\xa2\x36\x4b\x55\x0e\x4e\x4f\x07\xc3\x31\xf1\xda\x77\x5a\xf9\x3a\x43\x38\xad\xcf\xf5\x8c\x36\x9e\x4a\x22\x80\xb7\x62\xe0\xaa\xee\xd1\x99\xde\x70\xc4\x13\x34\x4c\x47\x23\x22\xfc\xf0\x81\x13\xad\xa4\x51\x89\x04\x89\xf8\x74\x0a\x12\x83\x7e\x2b\x95\x06\xab\x01\x62\x76\xb5\x67\x7d\x06\xe7\xaf\xb5\x37\xc0\x80\x98\x03\xa9\x63\x84\xc4\x08\xb3\xb9\x99\x66\x98\x8e\xfc\xf1\x4d\x5f\x5d\x1c\x23\xaa\xfa\xac\x93\x24\x48\x90\x29\x57\xc4\x6b\x9f\x06\xae\xce\x22\xc0\x81\x44\x0a\x32\x4b\x70\x44\x62\x83\x0f\x09\x8f\x70\x82\x46\x34\x21\x72\x2e\x15\x99\xfa\x03\x7c\x03\x26\x28\x0d\x33\x2a\x51\xcc\x5f\x58\xc2\xb1\xdd\x47\xf9\xb5\x6f\x8b\xb7\xb1\xeb\x7a\x9e\x76\x85\xe0\x02\xfe\xef\x47\xca\xe2\x9d\x51\xa8\xc7\xfb\xee\x9d\xff\xf7\xfd\xaf\xf7\x0f\xdd\xcf\xeb\x51\x9f\x0c\xb3\x60\x79\x60\x9a\x38\x47\xf7\x06\x08\x5c\x68\x89\x48\xd4\x6c\xea\xb3\x45\xa5\xfc\x0b\x1e\x6f\x48\x7d\x3f\x77\xae\x1f\x3b\x05\x8a\x72\x7f\xf1\x43\xf7\xf2\xb1\xa4\x0f\xd8\xfd\x15\x64\x78\xa3\xd5\xfa\xdf\x5d\xfc\xd0\xbb\xba\x1c\x54\xe8\xc1\xef\xee\xba\x17\x37\x3f\x77\xef\x72\x95\xb5\x12\x44\xa5\xc5\x94\x89\xd5\x83\x21\x4a\x13\x1e\xa3\xe1\xbc\xba\xc3\xad\x96\x9c\x13\xf0\x9c\xe7\x3d\x9e\xcd\xa8\xe7\x40\x9b\x5c\xb3\xe1\xfc\x8d\x29\x8f\xc9\x89\x7d\x06\x5a\x03\x1b\x9b\x91\x91\x98\xab\x07\xd6\xb3\x63\xe6\xd9\x5f\x4c\xd7\xde\x0c\x70\xe7\xa8\x83\xa4\x7e\x30\xd5\x97\x5a\xd0\xf1\x18\xec\xa1\xa5\xa5\x9a\xd1\xec\xab\x00\x5e\x78\xcf\x9c\xff\x4c\x70\xb8\xe7\x7a\x5a\x6b\x48\xcf\x8c\x2d\xe6\x45\x68\x23\x5d\x1c\x51\x60\xb0\xa3\x54\x2c\xcd\x1d\x96\x06\x42\x2d\xbc\xcc\x7d\x34\x66\x30\x7d\xb9\x80\x6c\x49\x63\xc6\x9d\x09\xf2\x4c\x79\xea\xbd\x6a\x3b\x15\x17\x4e\xbc\x72\xf8\x1c\x00\x00\x36\x63\xeb\x29\x0d\x93\xa1\x47\xe5\x08\x9a\x84\x3d\xc3\x08\x23\xc1\xa7\x15\x63\x14\xaf\x49\xef\xe6\x5e\x09\xac\xc8\x78\x7e\x69\x49\xc6\xe6\xd7\xe3\xf2\xe6\x97\xeb\xab\x9b\xce\xe5\xa0\xdb\xf9\x54\xbc\xf1\xd9\x2f\xf7\x0f\x77\xdd\xce\xe7\xe2\x4f\x83\xeb\x9b\x87\x81\x7b\x62\x29\xca\xd7\x4c\xb0\xc8\xa7\x8b\x0f\x9e\x23\x4d\x72\x81\x34\xbe\xd0\x24\xd1\xcc\xc4\xa3\x8f\x43\x32\xe2\xc2\xd0\xf9\xa9\x0b\x34\xb1\x22\x8c\x83\xad\xd5\xc5\x4a\xbb\x38\x07\x83\x5f\xd5\x90\xc6\x98\xaf\x04\xc1\x53\xe0\x13\x98\xa1\x2e\x8b\x4f\x6f\x46\xa7\xf7\xe6\xcb\x29\x16\x4f\x44\x64\xaf\xbe\x08\xaa\x14\x61\x05\x95\x0e\xbb\x25\x67\x4a\x62\x3e\xc1\x19\xba\xd3\x74\x5f\x3f\x9f\x31\x35\x8d\xec\x31\x51\x98\x26\xd2\x2e\xb6\x00\xd7\x73\x74\x85\xc5\x38\x37\x2f\x7e\xc3\x47\x23\x33\xd8\xb7\x66\x19\x9a\x87\x15\x76\x51\x41\x7b\x35\x6a\x38\xbe\x08\xf3\xd9\x87\x33\x79\x78\x11\xab\x1e\x67\xdb\xe1\xd4\xe3\x2d\x40\xdc\x68\xec\x05\xdd\xd0\xfe\x52\x81\x6b\xb0\x71\xf3\xf3\x72\x26\x53\x3d\xf6\x22\x3a\x15\x1f\xac\x40\x27\xd3\xa1\x45\x9f\xfc\x48\x6b\x9b\x15\xb8\x44\xbe\x50\x6b\x30\xf0\xd7\x5d\x42\xa1\x7c\x18\xb0\x1a\xe3\xd9\x8c\x60\x21\xab\x4e\xbb\x28\x06\xd6\x9c\xbd\x99\xc9\x9f\xc3\x1e\xb2\x9b\xe7\x04\x71\x06\x06\x87\x4c\x88\x28\x61\x64\x03\x1c\x30\x63\x2d\x60\xc0\x2d\xb4\x8f\xbf\xb1\xad\xda\x3f\x53\xa9\x95\x46\xf3\xe5\xf7\xb6\x87\xfc\x66\x08\xf1\xb1\xd3\xbb\x2a\x09\x17\x83\xcb\xee\xc7\xce\xe3\xd5\x72\x33\x61\xe1\xbd\xf2\x11\xa3\x53\xa4\x7f\x2f\x86\x03\xd0\x91\xe1\x19\xae\x13\xbe\x51\x69\x09\x03\xa3\x95\xed\x52\x6d\xcc\xf0\x31\x99\x25\x7c\x3e\x25\x0c\x4c\x3c\x05\x4e\xa8\xe1\x39\xc2\xd4\xb2\x16\x6f\xb1\x60\xc5\xb1\x66\x37\x60\x63\xa7\xae\xfd\x3e\x89\x33\xce\x5b\xec\xbe\x5f\x22\xdd\xb7\xc6\x29\x68\xff\x73\xaf\xb0\xda\xf0\x8e\x75\x2e\x1e\x7a\x3f\x77\x8b\xfa\xe1\xc5\x0f\xbd\x9f\xab\xa4\x9a\xc1\xa7\xee\x75\xf7\xae\xf3\xb0\x42\x38\x29\x0d\x59\x25\x9c\x48\xbd\xe0\xb2\x53\x98\xca\x2c\xd0\x29\x32\x3d\xfc\x11\x55\x12\x3d\x53\x49\x87\x34\xa1\x6a\x8e\xac\x83\xf5\xb1\x07\x94\xf5\x19\x27\x34\xa6\x6a\xee\xc4\x17\x33\x6f\xf1\x1c\x35\x25\xb5\xe3\x1b\xb3\x83\xef\x76\x05\x2b\x9f\x39\x1c\xb7\xe9\x73\x04\xba\xed\x33\x28\x6d\xde\x6b\x4c\x0b\xd2\x6c\x4c\x84\x59\x0e\x38\x95\xfc\xb5\x78\xbf\xeb\x55\xf9\xc2\x4a\x0e\xb5\x4c\x68\x1d\x13\x46\x34\x89\xf4\x26\x31\x82\x94\x20\xec\xbd\x96\xb9\x66\x09\x8d\xa8\x4a\xe6\x28\x02\x1b\x16\x98\x33\xa7\x98\xe1\xb1\x15\x0e\x40\xcd\x29\xa1\xc4\x4f\x29\x18\xe0\x6f\x46\xd6\xb4\xff\x40\xc9\x86\xd7\xec\xf1\xfa\xb2\xfb\xb1\x77\x5d\x44\x81\x1f\x7a\x9f\x0a\x22\xec\xe7\xee\x65\xef\xb1\xc0\xcd\xb5\x24\xbb\x5c\xae\x2f\x0f\x5b\x71\x15\xb3\x87\xce\xd1\xa5\x79\xf5\x5c\x03\xf7\x77\xb3\x39\x8d\x32\xd2\x6c\x2f\x57\x7e\x4b\x70\xb8\x73\x91\x86\xee\x43\x97\x29\x51\xe9\x97\x68\x6a\x42\xb2\x5e\xa1\x82\x0d\xa9\x3a\x02\x63\x61\xee\xeb\xb2\xaf\xbc\xbc\x65\xf7\x20\x84\xc8\x9e\xe5\x96\x25\x3f\x34\x03\x8c\x06\x75\x46\xac\x0a\x6f\x5d\x4e\xb0\x7f\x06\xcf\xfb\x34\x95\xca\x78\x48\x01\x39\xd1\xd3\xdf\xa5\x06\x28\x78\x50\xcf\xd0\x3d\x21\x7d\xe6\xac\x07\x63\xaa\x26\xe9\xf0\x2c\xe2\xd3\x0f\x4f\xe9\x90\x08\x46\x14\x91\x1f\xf0\x8c\x4e\xb1\x96\xa4\x89\x98\x7f\x18\x26\x7c\xf8\x61\x8a\xa5\x22\xe2\xc3\xec\x69\x0c\x81\x3d\xce\xd3\xf5\x21\x1b\x76\xcc\xff\xe3\xea\xaf\xdf\x9d\x5e\xfd\xfd\xbb\x77\x8b\x16\xb2\xba\xf3\xef\xb2\x08\xcf\x64\x9a\xd8\x40\x40\xe1\xc3\xc6\x5d\xf9\x94\xac\x3a\xef\xeb\xe2\x71\x6d\xa7\xbf\x5e\xdc\x3e\x16\x2c\xd6\xc5\x3f\x3f\x77\x3f\xdf\xdc\xfd\x5a\xa0\x94\x0f\x37\x77\x9d\x4f\x05\x82\xda\xbd\xfd\xa1\xfb\xb9\x7b\xd7\xb9\x1a\xb8\x1f\xb7\xb1\xbd\xfd\xc8\xf8\x0b\x2b\x82\x46\x3a\x0a\xb8\x30\xd3\x39\xfa\xc8\x05\xfa\x31\x3b\xc9\xd3\x21\x96\xc0\x62\x1c\xcf\x92\x27\x68\xc6\x63\x20\xbc\x88\xcc\x26\x64\x4a\x04\x4e\xac\xcd\x40\x2a\x2e\xf0\xd8\x70\x7a\x19\x09\xac\xa2\x09\x92\x33\x1c\x91\x13\x14\x01\x36\x8c\x4f\xe0\x50\x40\xd5\xe2\xe3\xb2\x9d\xef\x2e\x65\x8a\x4e\x89\x53\xc1\xed\x9f\x0f\xe6\x30\x36\x38\x9c\x9b\x87\x1f\x8a\xc2\xde\xc7\xab\x5f\x1f\xba\x83\xfb\xcb\x1f\x97\xc2\xd3\xbc\x56\x58\xd9\x3d\xc4\x55\x5d\xf0\x24\x9d\x32\xff\xf3\xe6\x6b\xeb\x5d\x3f\x74\x3f\x95\x57\x77\xd3\x79\x28\x62\xc6\x5d\x31\x6e\xef\xdd\xf7\x37\x37\x57\xdd\x82\xa7\xfb\xdd\x65\xe7\xa1\xfb\xd0\xfb\x5c\xc0\x9f\xcb\xc7\x3b\xf0\x01\x2d\xdd\xa6\x5b\x41\xc5\x46\xf5\xb6\xfc\x6d\xee\x9a\x14\x36\xa2\x44\x1d\x1b\xfe\x6f\xee\xf2\xa9\x57\x2f\xc7\x44\xb9\x81\x55\xe7\x34\x33\xa9\x46\x66\xa5\x95\xe4\x50\x15\x8f\x09\xd5\x93\xe3\xa5\x07\xbd\x8c\x2a\x3f\x64\x4b\x80\x75\x9d\x19\x65\x1b\x27\x09\x7f\x31\x11\xca\x53\xaa\xb9\xb2\x24\x10\xa8\xac\x1f\x91\xb9\x87\xf0\xac\x82\xe2\x15\x8f\x85\x44\x82\xa8\xcf\x3c\x65\x6a\x73\x94\xeb\x5c\x17\xe8\x4e\xf7\xfa\xe7\xc1\xcf\x9d\x22\x06\xf6\xae\x96\x93\x1a\x7f\x88\x0a\x56\xdc\xb9\xfe\x35\x63\xc2\x10\xc7\x7e\x92\x69\xa8\x46\x76\x8d\x12\xaa\xc5\xde\x08\x6b\xed\x35\x01\x89\x06\x11\x0a\x26\x87\xa9\xde\x1c\xc4\xcd\xce\x8c\x3f\xc9\xd0\x27\xb3\xc8\x73\xf7\xa1\x34\x9e\x04\xb8\x80\x35\xd5\xa5\x09\xc0\x38\x56\xab\x66\x88\xb0\x67\x2a\x38\x03\x61\xfb\x19\x0b\xaa\xa5\x71\x33\xb2\xde\xeb\x39\xfc\xff\x7a\x63\x82\x61\xb4\x44\xb8\xee\xb9\x50\x97\x59\x7c\xf2\x66\xd6\x90\xaa\x38\xdd\xc5\x08\xdd\x6a\x43\xc7\xe2\xbb\x15\x87\xb3\x65\x1c\x73\x71\xc3\xbf\x27\x97\x14\x27\x9a\x00\xec\x4e\x5e\xec\x5c\xdf\xf7\x8a\xf2\x63\x51\xcd\xf0\xe8\xf2\xc6\xf2\x22\x18\x2a\xcd\xca\x9d\x32\x71\xff\xd3\x95\xd1\x2e\x34\x92\xd8\x7b\xeb\x29\x16\x20\x00\xb9\xde\xaa\x33\x2c\x64\xe9\x0d\x89\xa0\x92\x59\x1e\x47\xa6\x79\x16\x44\x69\x3d\x73\x1a\xf7\x19\xf9\x32\x23\x4c\x42\x70\x80\xe1\x67\xb9\xaf\x5d\x9e\xa1\xde\x08\x48\x82\x7e\x9c\xa1\x94\x59\x07\x98\x66\xb8\x66\x91\x27\x5a\x94\xb5\x4b\xc8\x34\x44\x30\xbc\x30\xe2\x62\xc0\xf2\xc5\xf7\xd9\x2f\x99\x13\x0d\x7e\x1a\x71\x4d\x80\xf4\x29\xda\xf1\xce\x11\x66\x92\x9e\x20\xad\xb0\x94\xcf\x14\x32\x22\xb4\x42\x69\x23\xd3\x34\xa5\xb1\x1f\x0f\xcf\x06\x16\xc2\x9f\x7d\x66\x50\xcd\x0b\x4a\xac\xa0\x46\x34\x4e\x8c\xc7\x64\xd0\x9c\x27\x44\x5c\x10\xeb\x67\x59\x9b\x0d\xac\x22\xec\x0f\x58\x3e\x2d\xf8\x1e\x7a\x4c\x2a\xcc\x22\x72\x91\x60\xb9\x61\x10\x92\xb3\x71\x9c\x14\x25\x8e\xbb\xbb\xc7\xdb\x87\xde\xf7\x2b\xa8\x7c\xf9\xe5\xc5\x30\xa0\x28\x49\x9d\x7b\x6e\x28\x38\x8e\x91\x26\x9f\x63\x6e\x5c\x81\x56\xf0\x37\x37\xc8\x9c\x09\x95\x5e\x9c\x28\x96\x4f\x05\x23\xb5\xcd\xb2\xb0\x76\x0e\xdf\x95\x40\x2d\x20\x50\xa4\x21\x81\x3c\x93\x87\x3b\x6a\xf0\x2c\x9a\x28\x3a\x6b\xdd\x9a\x25\x58\x8d\xb8\x98\x1a\x2a\x5f\xd8\xb4\x19\x7c\xf9\xa0\x94\x29\x22\x44\x3a\x53\xa0\xb2\xeb\xb5\x96\xa5\x54\x7d\x64\x57\x7c\xfc\x99\x48\x89\xc7\x64\x1b\x07\x74\x95\xf2\x70\xff\xb3\xff\x27\x38\x98\x9b\xc8\xfe\x85\x15\xba\x80\x7e\x87\x4f\x37\xec\xa3\x09\xe4\xb9\xe5\x09\x8d\x36\x0c\xb8\xfb\xd8\xe9\x5d\x0d\x7a\x9f\xb5\x12\xdf\x79\xe8\x5e\x15\x44\x09\xf8\xad\xf3\xf1\xa1\x7b\x37\xe8\xfe\x77\xf7\xe2\xf1\xa1\xf3\xfd\x55\x77\x70\x7d\x73\xd9\xbd\x1f\x5c\xdc\x7c\xbe\xbd\xea\xae\x88\xcc\xa9\x1d\x7c\xd1\xba\x5a\x7e\xf4\x7c\xe1\x1b\x38\x61\x4d\xcb\x7c\x7b\x19\x24\xc3\x61\x9a\x80\x13\x9c\x1b\x67\x38\x46\x8c\xc7\x04\xbe\x96\xce\x3a\xe3\xb2\x4d\xce\x50\x4f\xbd\x4f\x12\x84\x53\xc5\xa7\x18\xbc\x36\xc9\xbc\xcf\xf0\x50\x93\x56\x9c\x24\x5e\x78\x97\x48\x19\xd3\x24\x56\x0f\x26\x4d\x7c\x71\x42\x34\x39\x9f\x79\x39\x8c\xd6\x6f\x30\xa2\x0c\x02\x88\xa7\x58\x3c\x19\x37\x53\x3e\x65\x7e\x29\x24\xc2\xb2\xcf\xf4\xba\x88\x35\x0c\x35\x81\xf0\x79\xa3\xa7\x6a\xa1\x33\xc5\x4f\x44\x43\x65\x9a\x46\x13\x34\x13\x7c\x2c\x88\x94\xd6\xb6\x1c\x61\x66\x02\x10\xec\xe3\x9a\x0d\xf5\x19\xe3\x1a\x14\xce\x84\x1d\x93\x19\x61\x31\x61\x11\x35\xd9\x8a\xe0\xbb\xcf\x4c\x9b\x63\x81\x67\x13\x24\x39\x38\xbd\x01\xec\x60\xbf\x32\x2f\x39\x4e\x66\x76\x6c\x7e\xf6\x2d\xd0\x22\xd5\x74\xe2\x06\xe4\x44\x03\x65\x78\xd9\x31\x43\xe7\x76\x31\x76\xc0\xe9\x2c\x21\x30\xa5\x05\x39\x1c\x86\x86\x75\xe1\x3c\xf4\x31\x55\x1d\x82\x66\xd8\x6e\xcd\x58\xda\x15\x9d\x55\x58\xb6\xed\x95\x42\x3f\x60\x16\x27\x7a\x14\xe7\xc3\x28\xde\x45\xc8\xb0\xe9\x68\xac\x71\xb7\x71\x1b\x2e\x1a\xe1\x54\x6e\xc3\x46\x4b\x29\xa6\xc6\x2a\x78\x9a\x07\x85\x00\x7a\xdb\xfc\x52\x80\xee\x4c\x93\x48\x9c\x70\x0b\x25\xf3\x78\x6a\x83\x96\x61\x35\x35\x6c\x76\x26\x28\x8b\xe8\x0c\x27\x1b\xe9\x7e\xa5\x1c\x03\x1b\xba\xff\x0d\x1d\x69\xf4\xf9\x76\xc1\x6d\xab\x88\x98\x42\x3a\xb9\x5d\x66\x76\x84\x6b\x58\x92\x6c\xb2\x06\x91\x79\x34\x09\x16\x3c\x35\xfe\x38\x80\x0b\x89\x2b\xae\xea\x59\xd5\x71\xeb\x9b\x81\x8b\x01\xd0\x1b\x1c\xb6\x89\xfc\xa9\x83\x5f\x69\x14\x3b\xbb\x09\xc6\xc3\xc9\x6d\xf5\x98\x55\x27\xe0\xfd\xf8\xef\x65\xb8\xf3\x19\xcf\x34\xce\x44\xa9\x54\xe0\x29\xce\xf6\x68\x95\xa4\x52\x28\xbb\xe7\x3b\xcf\x82\xda\x9b\x9f\x46\x0e\x42\x1b\x00\xb5\x38\x49\x21\x86\xc0\xab\x08\x60\x71\x7c\x94\x6a\x59\x16\x61\x88\x42\x40\xdf\x90\xb3\xf1\x19\xba\xf9\xb9\x7b\x77\xd7\xbb\xec\x9e\xa0\xce\xed\x6d\xf7\xfa\xf2\x04\x11\x15\x7d\xeb\x62\x16\x6d\xc0\x52\x9f\x29\x6e\xa5\x95\x39\x9a\xf0\x17\xa0\x8d\x44\x8c\x49\x61\xcf\x2e\xba\x09\x42\x95\xc7\x54\x2a\x1b\x3e\xab\xe9\x4a\xbe\x2c\x2d\xef\x57\x62\x48\xaa\x26\xdb\xa0\x06\x96\x32\x9d\x6a\x5d\x76\x40\xf1\x74\x20\x78\xb2\x0d\x51\xb8\x84\xad\x80\xba\x9c\x15\x53\xa0\x78\x8a\xf4\xb0\x36\x14\x24\x73\x39\x66\x22\x9d\x16\x8c\x34\x5d\xd6\x7c\xd3\xe3\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\x62\x0b\x35\xa4\x22\x37\x1b\x0f\xac\xa5\x7e\x80\xa3\x48\xab\xdc\x3b\xde\x54\x3e\x51\xe6\x12\xb0\x13\xed\x6d\x9b\xab\xf0\xdc\x2d\x73\xa6\x29\x18\x04\x03\x6b\x96\x2b\x79\x44\xf3\xf1\x2b\xe6\x1d\xce\x17\x66\x05\x94\x3d\xeb\xb3\x47\x99\x99\x54\x0c\x13\x96\x04\x4e\x52\xa2\x97\x09\x81\xab\x31\x47\x13\xfc\x4c\x0a\x53\xba\x1c\x12\x3d\xf0\x9c\xa7\xa2\x8a\xd0\xf5\xd9\x25\x99\x09\xa2\x25\xfd\xb2\x03\x25\xc3\xe9\xbb\x22\x26\x06\xbc\x0e\x78\x7d\xf4\x78\x7d\x91\xa4\x52\x11\xd1\x91\x92\x8e\xc1\x90\xb8\x95\x00\x67\x06\x1b\xcc\x38\x4f\x06\x0d\x6c\x22\xcd\x21\x5e\xf0\x84\x15\x02\x3e\xa4\xa9\x74\xc0\x53\x90\x8f\x0a\x6c\x93\x6b\x5e\xe7\x65\x0e\xdb\xe5\x2d\x01\x83\x73\x99\x75\x5c\x41\x89\xad\x44\x1c\x5c\x35\xca\xb2\x91\xd0\xde\xc5\x9c\x0b\x23\xdf\x64\xee\xb2\x7c\x89\xa5\xcb\xe4\x44\x11\xca\x1c\xd8\xf2\x97\x00\x9f\x35\x80\x8d\xdc\xf1\x7b\xca\x15\x96\xdf\x9e\xf5\x99\x16\xa2\x9e\xc8\xdc\x98\x5b\xb5\x98\xf2\x47\x2d\x8b\x9f\x4a\xc2\x24\x84\x7b\xff\xd1\xb8\xe7\x34\x8a\x3b\x73\xb5\x51\x4d\xc9\x74\x96\x60\x05\x41\xd7\xd9\x2c\x10\xa2\x6b\x07\xb5\x52\x52\x1e\x00\x0d\x72\xbe\xd9\x8b\xfd\xcd\x2c\x7f\x4c\x14\x64\x8e\x2b\xaa\x40\x67\x8a\x53\x0d\x9e\xc5\xa5\xaf\x34\x5d\x19\xac\x10\x1c\xfc\x24\x71\xba\x1d\xe1\x97\x8b\x63\xac\xa4\x8c\x99\xb6\x70\x6f\x63\xde\x3f\x38\xbb\x51\x24\x38\x2b\x45\xc3\x68\x65\xce\x9c\xf4\xd0\x90\x03\xe7\xbf\x26\xec\xec\x85\x3e\xd1\x19\x89\x29\x86\x08\x78\xfd\xd7\x07\xbd\xaf\xff\xb8\xb8\xbb\xb9\x1e\xe4\x99\x3c\xff\xd5\x67\x9d\x44\xf2\x2c\x4b\x01\x31\xce\xb2\x70\xfb\x99\x20\x4e\x24\xb4\x7b\x01\xab\x6b\x6e\x46\xec\xb3\xba\x15\xc4\x3c\x92\x67\xf8\x45\x9e\xe1\x29\xfe\x27\x67\xe0\x4a\xef\xc0\xc7\x8b\x84\xa7\xf1\x2f\x58\x45\x93\x0f\x70\xaf\xd5\x07\xf2\x4c\x98\x32\x6e\x2a\x0d\xae\x18\x72\x92\x25\x44\xeb\xff\x87\x5e\x73\x9e\x54\x24\xb5\x26\x1b\x91\x99\x42\xff\xaf\x20\x43\xce\x55\x35\x93\xe2\xa3\x91\x24\x6b\x31\xa4\x5c\x49\xbb\xbf\x41\x7f\xff\xcf\xef\xfe\xac\x51\x68\x13\x18\xf7\xee\x6f\x06\xfa\xfd\xff\xb8\xb4\xef\xcb\x35\xc8\x9d\x49\xa5\x95\xd6\xd5\x6c\xa0\x61\x02\xe7\x53\x06\xdc\x4f\x80\xf3\x02\xc8\x1b\xa0\x43\x7e\x8e\x55\xd4\xed\xb2\x30\xfa\x76\x2a\xdb\x46\xc0\x04\x15\xdb\xdb\x23\x3a\x45\x8c\xa3\xa9\x89\x35\xc5\x0c\xfd\xed\xc7\xef\xab\x0f\x30\x15\x74\xa3\x09\xa9\xad\x42\xe1\x4d\x29\xe9\x3f\x89\x44\x1a\x6b\x34\x16\xf3\xa9\x9e\x5a\x10\x39\xe1\x49\x8c\x5e\x08\xa8\x49\x36\x0e\x34\xd3\xca\x05\xe9\x33\x7f\x08\x08\x39\x44\x38\x51\x7c\x4c\x80\x57\x3b\x45\x4d\x11\xa1\x45\x15\x93\xa5\xa1\xb8\x20\x27\xa6\x30\xdb\xfd\x5f\x5d\x6c\x35\x6c\x13\x7e\x72\x49\x2d\xd6\x24\x17\x0f\xab\x77\x3e\x2a\x9b\x5e\x51\xbd\x0d\xbf\x7c\xc8\xd6\x6c\x5b\x0d\x1a\x9b\x84\x62\x6d\x58\xe5\x93\xa9\x5e\x0c\x8d\x38\x1b\x24\x94\x3d\x6d\x74\x18\x2e\x31\x1c\xe9\x11\x2c\xcc\xf4\x88\x99\x9d\xdb\x58\x40\xd6\xb8\x1f\x1f\xd3\x24\x31\xa9\x2d\xfe\xf1\x80\xdc\x65\xe0\x06\xc2\xc0\xcc\xe4\x80\x92\xd8\xfa\xbd\xac\x26\x2c\x08\x83\x80\xb7\x3e\x1b\xce\xad\xcf\x56\x9e\x20\x99\x46\x13\x97\x99\x17\x71\x26\xb5\x18\xcd\x05\x8a\xf8\x74\xaa\xb5\x5e\x38\x32\xc5\x79\x22\x6d\xb4\x3b\x3b\x55\x38\x52\x7d\x96\xcf\xb7\xe2\xe6\x99\xa6\x4c\xdb\xa5\xee\x35\x77\xe9\xe4\xcd\x9f\x96\x0a\xdc\x34\xf6\x4b\x51\x80\x11\xcc\x78\xa2\xbc\xa2\x16\x7c\xf1\x2e\x99\x03\xab\xd1\x0c\xe4\x84\x0b\x35\x88\x2b\x69\xce\x4a\xa4\x29\x13\x42\x46\x4e\x13\x08\x1a\xe6\xcf\x5a\xf8\x27\x2f\x99\xf1\x75\xd9\x12\x34\x56\x2f\x5b\x41\xb3\x6b\xb4\x74\x65\xeb\xa2\x60\x0d\xac\x4c\x61\x92\xa8\x18\x13\xbe\x6a\x8d\xf7\xf0\xd6\x85\x7e\x69\x29\xf0\xca\xf7\xce\x09\x41\x3c\xce\x6b\xe8\x19\xbe\x6e\x33\x42\x96\xc1\xd4\x96\x4e\xd8\x5f\xe6\xe8\xb2\xad\x3c\x16\x2d\xb9\x7a\x2d\x60\xb2\x97\x04\x64\x4d\x2c\x86\x54\x09\x2c\x0a\x05\x50\x32\x7d\x50\x12\x2c\x20\x3e\xab\xcf\x4c\x39\x3c\xa3\x29\xc4\x28\xa6\x12\x12\x44\x80\x97\x7a\xce\x30\xd4\x4c\x09\x2c\x5d\xed\x3c\xcf\xd1\xc4\x9f\x43\x60\x59\x8e\x1a\x8e\xd8\xe9\x89\xb2\xb2\x5f\x5a\x3f\xe3\x51\x9a\x0b\x72\x11\x48\xb8\xb6\x54\x10\xa2\x4c\xd2\xf1\x44\x21\xca\xac\xdd\x11\x27\x63\x2e\xa8\x9a\x4c\xe5\x09\x1a\xa6\x52\x6b\xa1\x26\x58\xcd\xc4\xa3\x10\x15\x35\xa2\x42\xdb\x26\x11\xc7\xa5\x01\x17\x55\x94\x0d\x50\xa3\xd9\xa5\xec\x96\x78\xc5\x0a\xc4\xe9\x64\xe5\x13\xcb\x63\x50\x22\xb3\xaa\x9b\xc8\xc4\x01\x72\x57\xb0\xea\xf7\x94\x48\x55\x77\x0f\xa0\xd8\xe5\xce\xbc\x14\x87\xe8\xa4\x85\x4c\x32\xa8\x20\x2e\x76\x1b\x24\xaf\x62\xc1\x4d\x53\x94\x2a\x73\x3a\x4d\x67\xaa\x32\x70\x6b\xd1\x55\x74\xe7\x95\x32\x6a\x06\x6c\x48\xc6\x02\x6c\x86\x02\x74\x7d\x76\x4f\x48\x7d\x7d\xba\x85\xb3\xff\x0d\xae\x12\x6c\xc1\x26\x7a\x2c\x47\xf9\x6d\x9c\xd8\x97\xdd\xfb\x8b\xbb\xde\xad\x29\x39\x71\x73\xf7\xb9\xf3\x30\xa8\xf0\x6b\x57\x3c\xf5\xb9\x73\xf7\xe3\xe5\xea\xc7\x7e\x78\x28\x66\x65\x57\x3c\x72\x77\xbf\x3c\x99\xa3\xc1\x12\x2b\x92\xc2\x2a\xe7\x39\x47\xb3\xb9\x9a\x70\x96\x85\x28\xc4\x05\xda\x74\x8a\x4c\x46\xb0\x82\x10\x22\x21\x55\x85\xe3\xf0\x01\xe2\x72\x56\x4b\x98\xc5\xc3\x32\xd5\xe5\x76\x2a\x1a\xad\x71\x23\x3f\x25\x7c\x08\x7e\x6b\x2b\xfb\xd8\xc2\x74\x4b\x22\xd0\xb7\x8c\xf7\xb9\xa4\x72\x96\xe0\xf9\xc2\x0c\xab\x58\xce\x35\x9e\x12\x88\x38\xce\xcb\xe2\xb9\x64\x11\x7d\x32\x90\xc0\x94\xf1\x75\x3a\x82\x4c\x26\x45\xb1\x22\x68\x48\xd4\x0b\xe4\xcd\xb9\x6f\x33\x5b\xaa\x0b\x18\x91\x67\x7d\x06\xe6\x9c\xbe\x06\x72\x9c\x42\xb4\x5f\xff\xdd\x09\xea\xbf\x8b\xc9\x33\x49\xf8\x4c\x9f\xbc\xfe\xa2\x8e\xc9\xcc\x19\x9e\xd2\xe8\x9a\xc7\xc4\x85\x68\xdc\xd9\x4a\x8e\x5b\xd9\x14\x21\xf8\x8c\xc4\x03\xc7\x32\x9b\xcb\xc0\x17\xf6\x55\xb7\x9c\x8b\x84\xcb\xac\xe0\x0b\x5a\x6e\xfa\xe9\x4e\x31\x4d\xae\xb9\xca\xec\x8c\xdb\xec\x41\x90\x88\xce\x40\xcf\x18\x10\x3d\xee\xe1\xc4\xa8\xc2\xbd\x74\xc4\x19\xd6\x80\x70\x1c\x0b\x22\x25\x10\x66\xb7\xbc\x3c\xa0\x89\x79\x5b\x2f\xb4\xee\x5c\x47\x40\xca\x8c\xf9\x66\x46\x7f\xcc\xa2\x11\xb7\x0a\x9f\xba\xec\x79\x8f\x0e\xe6\x6d\xc5\x12\x8d\x5f\x3f\x92\x39\x24\x94\xdc\x62\x2a\x36\x74\x34\x57\x45\xf0\xee\xc5\xe5\xdc\xad\x98\xa8\x45\xce\xe7\x6a\x38\x6c\xe7\x86\xce\x22\x0f\x0f\xa5\x73\x3b\x3a\x93\x4d\xdc\x50\x09\x7f\xac\x53\xb9\x6b\x03\x32\x50\x59\x8d\x9c\x91\x68\x0d\xfd\x31\x5b\xe0\xbd\x7e\x6f\xa5\xde\x95\x09\x9f\x2e\x9a\x30\x3f\x05\x9b\xea\x5f\xae\x2e\x40\x56\xae\x38\xb2\xb4\x78\x83\x45\x3b\x32\xbe\x6c\xdd\x5d\x1f\x7d\xb5\x94\xbb\x56\x78\x46\x05\xe0\x4b\x15\x3b\x0d\xd7\x54\xd6\xdf\x67\x9f\x3e\x41\x14\x62\x47\x41\xbd\x4c\xf2\x3a\x08\x2c\x46\xb9\x53\xa7\xcf\xf2\x08\x1c\x89\x5e\x48\x02\x41\x7b\x9a\xcb\x81\xc3\xc2\x2e\xd7\x8e\x44\x62\x13\xff\x7c\x82\x78\xaa\xf4\x60\x26\xc3\xc8\x99\xa4\x6d\xfa\x52\xee\xc4\x31\x9e\x44\x1b\xca\x9f\x55\xff\x36\xb8\x6e\x24\x03\xca\xd0\x27\xa2\x60\x14\x68\x1a\xe1\x6f\x10\xb4\x9e\x72\x40\x68\x35\xec\xb7\xb8\x51\x76\x27\x6b\x9c\x7c\x5e\x06\xe6\xfb\x84\x0f\x97\x9b\x3c\x60\x70\xf4\x78\xd7\x73\xf6\xd5\x3c\x1a\xcc\x2b\x31\x5d\xf0\x8f\x76\x6f\xef\xba\x17\x9d\x87\xee\xe5\x19\x7a\x94\x44\x83\x27\xdb\x2e\x64\x8b\x67\x0a\x96\x59\xb9\xad\x2b\xc3\xa4\x22\xb8\xce\xac\x43\x84\x28\xe4\x74\xaf\x20\x1c\xc5\xa2\x33\xcb\x11\x1b\x4a\xbe\x50\x6b\x76\x84\x32\x49\xe5\x7d\xda\x38\xc3\x55\x37\x10\xa2\xbe\x06\xc7\x13\x73\x67\xd6\x3b\x5d\x8c\x33\x5c\x85\x3e\xc5\xf8\xc4\x7d\x6f\x06\xae\x96\x9a\x10\x2a\x50\xa3\x6d\x19\xa4\x1a\x34\xdf\x93\x17\xb0\xff\x19\xcf\x96\x27\xd3\xe2\x97\x02\xd2\x1a\xc1\xde\x8b\x44\xd8\xf7\x3d\x70\x64\x6d\x60\x48\xe1\xf6\x1b\xcc\xdd\x73\x86\xb6\x66\x74\xd3\xe4\xaf\x48\x67\xf2\xf3\x37\x56\x5a\x84\x8d\xca\x95\x08\xee\x0e\x7c\x43\x19\x2a\xb0\xc4\x13\x34\xa2\x5f\xec\xa0\x79\xb4\xbe\x7b\xd4\x0b\xdf\xa8\x89\x0e\x9d\xe0\xc5\x3b\xb5\x86\xd8\x70\x0b\xef\x2f\x15\x22\xb9\xd4\x22\x51\xa4\xc5\x25\x41\x22\x2e\x34\xa7\x80\x69\x73\x9f\xca\x2a\x91\x41\x61\xa1\x81\xb2\xe8\x63\x5a\x76\xfb\xf3\x46\x31\x31\x56\xe4\x54\x8b\x5e\x2b\xd2\xb9\x6d\xc6\x0f\xe4\x06\x61\xe5\x15\x37\xcb\x39\xcf\x90\x8c\x31\x73\x81\xe6\x35\xcb\x75\x2c\x6f\x0b\x52\xa5\x55\x20\x0c\xc9\x6e\x20\x5f\x41\x22\x53\x61\x1d\x72\x06\xf0\x5c\xba\x0e\x1b\xcb\xd3\x06\xb0\xbd\xe0\x2c\xb4\xa8\x66\xb1\xe9\x2c\x6e\xd3\x62\x13\x2c\x15\xb2\x6b\xaa\x33\xac\x78\x2a\xe2\x7e\x4d\xca\x05\xdd\xbe\xa9\xf2\xa6\x51\xa8\xa8\xc5\x12\xf0\xf3\x48\x57\x05\xc6\xd4\xbc\xd1\x3a\x8d\x13\x84\x2f\xe0\x84\xb2\xbb\x7d\x67\xa4\x2c\xc7\x25\x7c\x62\x02\x29\x07\x8b\x43\x9f\xa1\x0e\x5b\xa8\xfe\xe5\xa2\xcc\x0a\xf0\x32\x3c\x09\x27\x2f\x78\x2e\xd1\x4c\x98\x42\x39\x26\x0f\xc1\x6d\x1e\x34\xb0\xe2\x4b\x59\x60\x87\x72\x89\x20\x08\x2c\x4b\xab\x43\x00\x9d\xdc\x3b\xd8\x83\x63\xb2\x14\x23\x9f\x09\xe4\xf9\x70\xb9\xad\xa2\x01\xa9\x53\x64\x10\x4d\x30\x1b\x93\x81\x33\x19\x6f\xa2\x2d\xe9\x71\x2e\x60\x98\x4b\x3b\x4a\x35\x73\xba\x35\x0a\x93\x6d\xd2\x63\x1e\xcd\xcc\xa1\xfa\x12\x48\x85\xc7\x04\x99\x15\x35\x32\xb2\x17\xe2\xdf\x6c\xe9\x64\xd0\x13\xec\xa8\xdd\x62\x4e\x40\x9d\xf0\x0e\x81\x5c\x57\x78\x48\x92\xd7\x89\x03\x81\xa9\xad\xab\x01\x7c\x8f\x26\xb7\x81\xa0\x17\xf0\x4e\x94\x48\x86\xf5\x45\x88\xb4\x2a\xd3\x61\xd9\x3e\xe1\xca\xd9\x9b\xb6\xcd\x46\x5d\x43\x97\x4d\xb6\x5a\xd7\xe6\xc5\x67\x7b\x5e\x3b\x94\x2a\x03\x9b\xcf\xfe\xca\x16\xf2\xcd\x16\xe2\x75\x65\xa9\x59\xc7\xd6\x6d\x59\x56\x6e\x65\xe3\x92\x09\x0d\x3b\x30\xf6\x46\x88\x71\x46\x10\x95\xf9\xc3\xaa\x98\xdc\x95\x15\x1c\xd2\x22\xbe\x31\xbe\x64\xad\xd4\xb2\x0e\x59\xfb\xb6\xb4\xe4\xa5\x20\x32\xdb\x80\xcb\x56\x67\x44\x2b\xaa\x58\xcc\xa1\x60\xa9\xa1\xc3\x45\x99\x6e\xe5\x3a\x77\x2e\x70\x3f\xb8\x7a\xb4\x5e\xdc\xb1\xe2\x08\xc4\xc8\xd2\xe2\x90\xa9\xea\x6a\x1f\xb2\x2f\xd9\xa2\x3b\x7d\x96\x59\x36\x00\x11\xa9\x44\x53\x3c\x03\x0f\x25\xe3\x2a\x7f\xcb\x14\x91\x52\xd9\x11\x9e\x38\x41\x5c\x9a\x46\x67\xab\x21\xc0\xc5\x78\x9b\xc0\x93\xe6\xcd\x2c\x9a\x1b\x96\x1c\xf3\xcf\x4f\xb5\x58\x2a\xd4\x95\x39\x1e\xd3\x67\xc2\xdc\x8d\x3a\x71\x37\x52\x83\xc4\x6d\x39\x99\x9f\x62\x08\xd9\x26\xb1\xef\x45\x5a\x4e\x0f\xb7\x77\xc6\xec\xca\x1a\xda\x1c\x64\x0f\x95\x21\x49\xa6\xe0\x5c\xa1\x53\x80\x0b\xb2\xf7\xef\x88\xad\x81\x6c\xb2\xea\xb1\x44\x7f\x64\x5c\xfd\xd1\xab\x12\xed\x4c\x27\xf0\xaa\x33\x80\x9d\x2c\x74\xf5\x01\x92\x61\xd1\x16\x61\xaf\x5a\xd9\x4a\xc8\x6f\x1b\x67\x91\x27\x11\xec\x55\x16\xee\x2e\x66\x14\xd6\xb5\x45\x0b\xd1\x0f\xa8\xcc\x94\xca\xe6\x56\xd3\x79\x31\xbf\xe9\x05\x33\xab\x5c\x15\xee\x90\x9d\x45\xa3\x30\x87\x85\xea\x0a\xdb\x60\xdb\xb4\x71\x14\xda\x8a\x82\xd2\xd5\x56\x91\x4d\x72\x66\xeb\xb4\x02\x51\x0c\x03\xb4\x2d\x45\x6a\x2a\x26\x9f\xf5\xd9\x47\x2e\xac\x00\x20\x6d\xcf\x86\x21\x8e\x9e\x4e\x09\x8b\x11\x4e\xd5\xc4\x54\x2e\xb6\x5e\x8d\xb9\xc5\x06\x2d\xe7\x00\xda\x64\x65\x49\xa8\x8c\xb0\x88\x5d\xf7\x90\x67\xee\x56\xd1\x67\xde\x20\xd0\x15\x02\x7a\x81\x41\x93\xe6\x3a\x45\x97\x48\xad\xdd\xd5\xc1\xa2\xaa\x4f\xef\x42\x97\xde\xe5\xf7\xac\xd0\x77\x18\xfa\x59\x40\xb0\x18\x1f\x2d\x42\xa7\xe7\x6c\x9d\x4e\xbb\xd4\xf8\xbc\xe8\x03\x39\xb1\xfa\x8c\x31\x88\xd9\x1d\x68\x39\xeb\x3b\x47\x6b\x0b\x15\x98\x47\xa9\x80\xd0\xe7\xaa\x31\xbf\x89\x26\x34\xc9\x3d\x27\xdf\x9e\x64\xcb\xd4\x43\x26\xe4\x99\x24\xa6\xfe\x7f\x24\x20\xcb\xc1\xd8\x2c\xbf\x43\xff\xdb\xf4\xae\x45\x7f\xee\xb3\x4f\x40\x86\x93\x64\x0e\xd5\x49\xb3\x91\xb1\x2a\x0d\xf3\x54\xb9\x00\x65\xd3\xaa\x50\x71\x21\xe6\xac\x27\xf8\x99\xf4\x99\x1b\xe6\x7f\xa3\x27\xf4\x27\xf4\xe7\x3a\xe5\xd2\x25\x2b\xec\xd9\xca\xf2\xd1\x4b\x05\xf0\xb8\x9c\x25\x94\x96\xde\x38\x23\x4c\xc1\x04\x5a\x51\xa5\x24\x2b\x32\x4e\xd9\x33\x8f\x16\x32\x62\xfc\x5b\x8b\x05\x61\x6a\xc0\x78\x4c\x06\xa4\xc2\xa1\xba\x84\x48\x68\x21\xe0\x9a\xc7\x64\xa5\x3b\x34\x23\xa6\xbf\x80\xe1\x48\xa6\xc3\xec\x38\xa0\x58\x42\x96\x19\x9f\xd9\x3e\x8a\x98\x56\xbd\xf2\xac\x92\xef\x26\xeb\xde\xd4\x95\x9b\x8b\x8d\x38\x2f\x25\x5c\xed\x4e\x4c\xb0\x72\xd2\x64\xf9\x3a\x96\xdd\x10\xfa\x61\xbd\x73\xcb\xac\xbc\x1a\xc5\xd0\x47\x46\xd0\x31\xd5\xda\x43\x73\x77\x31\x50\xc2\x4d\x7c\x29\xa6\x60\x6b\x23\x67\x4a\x0e\x0a\x57\xb4\xe6\x34\xc3\xbf\xdc\x05\x3a\xe4\x69\x59\x7d\xb0\x00\xa0\xd2\x0f\x36\xb0\x9a\xc2\x5c\xd3\xe1\xb1\xc9\xa6\x24\x13\x6a\xea\x17\x74\x2e\xae\x90\xbe\x1d\x7c\x6a\x8a\x7c\x01\xd0\x52\x35\xe1\x82\xfe\x73\x19\x6e\x63\xa1\xe8\x08\x47\x6a\xb0\x93\x9e\x38\xf5\xc8\xd4\xb1\xf3\xf4\xea\xfb\xee\x2d\xd4\x6b\xc0\xcf\xc4\x0b\xa7\x84\x60\x49\x3b\x8a\xcc\x1c\xb9\x65\x7a\xcb\x05\x62\xfc\x25\x2f\xf2\xe5\xde\x87\xba\xd6\x5e\x1a\x0a\xd6\x2a\xd7\x0c\xe2\xa1\x25\x05\xfc\x84\x92\x5b\xef\x95\x49\x31\x85\x72\xed\xa6\x58\x96\x46\xcf\x09\x66\x71\xe2\x58\x08\xe2\x26\xa2\x67\xfe\x82\xe7\x6b\xf9\xd4\xfd\x28\xd1\x3c\xe7\xd0\x1c\x7f\x51\x09\x02\x1a\x60\x24\x35\x55\x50\x35\xab\x14\x61\x34\x4c\xa1\x4c\xb0\x86\xc9\x28\x4d\x4c\x6f\x91\x88\x8b\xf8\xac\xcf\x6c\x78\xb8\x37\x9b\x16\x01\x9d\xd6\x84\x55\x36\x20\xb5\xd5\x54\x6d\xf7\x12\x63\x96\x5b\x2a\xd7\xff\x94\x92\x74\x47\x49\xa2\xaf\x1a\x56\xff\x80\xc7\x32\x8f\x93\x37\xb0\xd1\x2c\x2f\x87\xef\xef\x7a\xa7\xd2\x4b\xab\x76\xe6\xe2\xac\x4a\x99\xb1\xb3\x98\x96\xbc\x6b\x99\xe9\xee\x4c\x77\x86\x1d\xd8\xe9\x0e\x11\xa4\xb3\x28\x7a\x56\x50\x75\x8b\x7e\xcf\x59\x92\x31\x3a\x8c\xf1\xcb\xb5\xb9\x28\x09\x75\x7b\xb4\x83\x6d\xc0\x3b\x16\x75\x95\xa5\x81\xfb\xb9\x55\x2c\xe3\x16\x15\xf9\xfe\x8a\x43\x66\xd0\x8b\xa0\x50\xc4\x70\x9e\x3f\x9c\x75\x9f\x76\x5c\xd8\xa7\x31\x5a\xf8\x33\xda\x02\x04\xeb\x38\x10\xce\xab\x59\xe7\x1a\x76\x1d\x3b\x50\x71\xea\xc5\x60\x8c\xba\x1b\x61\x48\x52\x5b\xaf\xc4\x62\x05\xa3\x95\x97\x21\x6b\x56\xf3\x3a\x56\xe1\x4c\x62\x3c\xdc\xcd\xc8\xd0\x71\x10\xe1\x68\x52\xbb\xa9\x21\xe7\x09\xc1\xac\x4e\x29\xa8\xfc\xb9\x7c\x45\x4c\xfd\x5d\x20\xdd\x49\x02\x45\xa8\x1d\x08\x6c\xe3\xd2\x5c\x2b\x62\x31\x34\x0f\x30\x34\xdc\x04\x7c\xba\x85\x2a\xc2\x9c\x41\x8d\xb2\x71\x42\xca\xb0\xb2\x5d\x1e\x4e\xec\x24\x49\x94\x26\x5e\xe7\xd2\x19\x11\x7a\xd5\x1a\xc4\xcf\x84\x69\x55\xcc\xae\xc3\x79\xa8\x5e\x5c\xce\x7e\xd6\xaf\xec\x24\x9b\xda\x39\x49\x21\x31\x36\xee\x33\xb8\xb8\xbc\x78\x59\x35\xae\x4a\xad\xbd\xf9\xe6\xbe\x8d\x6f\xa7\x27\x44\xac\x7d\x3d\xef\x8b\xb6\xff\xb5\xef\xa4\x99\x7b\x00\x81\x23\x5b\xfb\x4b\x3d\x9f\x5a\x5e\x4d\xc4\x1c\xac\xab\x18\x77\x20\xcf\x00\x84\xe2\x14\x63\x89\xbd\x48\x9c\xba\x8a\x65\x7b\xe5\x25\x79\x87\x16\xc7\x0d\x1a\x2e\x65\x69\xfc\x41\xc3\x68\x02\x30\xfa\x2e\xbb\xb7\x57\x56\xaa\x2f\xfa\xe1\xb3\x14\xb4\x3c\x76\xd5\xf6\x20\x56\x02\x43\x01\x0d\x28\x7b\xf0\x8b\x31\x5c\x50\x69\x84\x7b\xd7\x89\x65\x3a\x53\x73\xdb\xb8\x0f\xf8\x62\x41\xde\x87\xa2\x84\x55\x3e\xff\x32\x8f\x8c\x0b\x5e\xff\xaa\xc9\x60\x22\x6b\xad\xa9\x1c\xd2\x01\xda\x2f\x72\x53\x2a\x2a\x52\x17\xe2\x63\x7a\x20\x0f\x70\x52\x6b\x22\xdc\x01\xd1\x04\xe5\x28\x2f\x24\x62\xeb\x13\x2b\x91\x12\x4d\xbb\x70\x92\x94\xf6\x85\x21\x63\x5f\x65\x7d\x10\x87\x79\xb3\xe6\xe6\x11\x08\x09\x1e\x92\xb5\x62\x0e\xae\xcc\x0b\x4b\xb1\x08\x1e\x81\x70\xfd\xd9\x2c\x99\x37\x4b\x13\xf0\xb5\xdf\xca\x3a\x7e\xab\x16\xe6\x57\xff\x5b\xca\x9b\x8a\x15\xf4\x36\x5b\xa2\x24\x51\x2a\xa8\x9a\x0f\xac\x2d\xb5\x39\xd1\xba\xb7\x6f\x5e\xd8\x17\x9b\x18\x2a\xce\x91\x9b\xcf\xd9\x6e\x81\x4f\x09\x6a\x9a\x3c\xd9\x2d\x34\x39\x6e\x9c\xaa\x49\x65\x7d\xaf\x65\x80\x75\x05\xc6\x9a\x2d\x55\x4f\xb1\xe9\xf2\x6c\xf3\x98\x01\x1f\xb9\xd2\x5d\xcd\x01\x5b\xee\xaa\xb3\x86\x11\xda\x55\x08\x9f\x09\xca\x85\x6d\x5e\xd3\x24\x52\x71\x8a\xbf\x0c\x66\x58\xe0\x24\x21\x09\x95\xd3\xcd\x4d\xe6\x7f\xfd\xcb\xd2\xd5\x5e\x98\x26\x4b\x66\xb1\x53\xfc\x85\x4e\xd3\x29\x62\xe9\x74\x68\xa5\x5c\x2c\x9f\xfc\xfa\xac\xae\x9a\x84\x29\x33\xe6\x16\x58\xa8\x69\x21\xbc\x8a\xbb\x7d\xe6\xd5\x5e\xb7\xa6\x0a\x1c\x4d\x28\x79\x86\xca\xb0\x82\x11\x29\xcf\xd0\x35\x57\xe4\x1c\x7d\xc6\xb3\x07\x10\xd4\x4c\xd7\xd3\xb1\x71\x3a\x60\x89\xb4\xd4\x9a\x32\xaa\x4e\xfa\xcc\x16\x6c\x77\x50\xf9\x10\x71\x66\x8a\xf6\x46\x00\xd8\x6c\x08\xb0\xa2\xbb\xea\xb5\xca\xe5\xde\x52\x59\x03\x6c\x81\x5f\x06\x5e\x48\xf2\xc0\xa4\x7c\xac\x81\xc7\x77\xf8\xc5\x04\xe1\x5f\x62\x85\x4d\x43\xe3\x65\x92\xbb\x8d\x72\xb3\x4d\xae\x4c\xad\x6a\x17\x0d\xc4\x6d\xc1\x94\xac\x3d\x9f\x09\x39\xfe\x86\x9e\x91\x33\xf4\x7d\xc2\x87\xf2\x24\x37\x55\x99\x1f\x25\x51\xf2\xc4\xf8\xfd\xe0\x6f\x93\xad\xf8\xad\x83\x7e\x4e\xf7\xa1\x33\xe5\x88\x7e\x31\x75\x5a\xe4\x5f\xcf\x3f\x7c\x98\xce\x4f\x87\x69\xf4\x44\x94\xfe\x04\x32\x45\x25\x84\x5c\x91\x33\x5c\x55\x32\x6d\x15\x74\x16\xcb\xad\x35\xc2\x48\x9b\x2b\x25\x09\x94\xf6\xd7\x2c\x3d\xeb\xfd\xeb\xaa\x73\x71\x56\xdd\xd8\xd4\x6e\x59\xa4\x75\xd7\xab\x50\x13\xfc\x30\xda\x8a\xe9\x6d\xec\x97\x22\x1f\x25\x78\x5c\x52\x59\xd6\x50\x52\x6e\xa6\xd4\x62\x91\xde\x3b\x04\xd1\xe8\x5b\x56\x0c\x1d\x7c\xef\xbc\xbc\xe0\xad\xb5\x5e\xac\xb3\x3e\xeb\x48\xf4\x42\x4c\xcb\x62\x48\x9b\x05\xa7\x4f\x4a\xe5\x24\x4b\x9a\x05\x33\x34\x0c\x6a\x2a\x36\x9b\xc2\x1e\x56\x71\x74\x9a\x95\x73\x8b\x59\x0d\x14\x27\x92\x9c\xe8\x81\xc1\xa4\xea\xa2\x43\xd1\x8b\xc0\xb3\x19\x11\x7d\x66\xab\xef\x42\x8d\x79\xce\x6d\xe4\x4f\x5d\x8a\x40\xd0\x28\x0f\xab\x51\x7a\xb0\x27\xc5\x2c\xd4\x55\xf7\x1b\x92\x56\x97\x41\xb8\x2a\x0f\xd3\x81\x4f\xcb\xa2\x4d\xc3\xf7\x5f\xdf\x6c\xdc\x70\xcd\xab\xb4\xf3\x4e\x29\xf7\x02\x3a\xa2\x4f\x41\x81\x94\x79\xe3\x57\x67\xeb\xcb\xd4\xf7\x82\x98\x03\xc5\xdb\xe1\xe5\x98\x13\xe9\x19\xf1\x51\x66\x8b\x4b\xe8\x88\x68\xe9\xa3\xcf\x34\x1a\xfb\x0e\x07\x53\x03\xde\x95\x84\xd7\x93\x46\x82\x4b\x69\xd3\x29\xcc\x38\xcb\x93\xe2\xb6\x68\x37\x69\x0a\xd9\xf7\x6e\xae\x07\x8b\x8d\x27\xbd\xdf\x5c\x0b\x4a\xfb\x63\x65\x1d\x88\xda\xa1\x56\x36\x9c\xcc\x61\xb1\x46\xcb\xc9\x0f\x17\x57\xbd\xac\xcf\x5a\x69\xea\xc5\x9e\x93\x7e\xf1\xff\xfa\xae\x93\x8b\x3b\xf6\xfa\x4f\x96\x86\x58\xd2\x81\x72\xf5\x61\x15\x83\xb8\xb7\xa9\xec\x58\x3a\xfa\x95\xf4\xa1\x88\x33\xab\x72\x0d\x76\x74\x4c\x35\x6c\x25\x02\x81\x71\xdf\x81\x0b\x20\x78\xe9\xa7\xa4\xc2\xd3\x99\x9f\x47\xeb\x4a\xdb\xda\x6d\x9a\xab\x56\xc7\x04\x0f\x5a\x72\x3f\xc2\x26\x48\xa8\xbc\xb8\x85\xa3\x58\xcf\xe3\xf5\x60\x2b\xf9\xef\x22\x36\xfd\x70\x89\xe9\xc9\x3c\x0f\x86\x94\x56\x76\x73\x5d\xe2\x6b\xec\xfe\x43\x92\x75\x2d\xa8\x3d\xd0\x6d\x33\x4f\xb3\xea\x66\x82\x60\x69\xdd\xdf\x90\xa0\x59\x4a\xde\x5a\xc3\x3c\x9c\xad\xd9\xa4\x78\x9f\x66\x7d\x42\x3c\x56\x63\x5b\xdf\x45\xee\x22\x52\x21\xc8\x33\x11\x80\x3b\x36\x94\x8a\x15\xaf\x2a\x4e\x04\xc1\xf1\xdc\x83\x48\x16\xc7\x61\x66\x06\xf3\x98\xa4\x53\xad\xc0\x83\x6a\xc2\xf8\x29\x9f\x39\x9d\xa5\xf0\x14\x34\x79\xa1\x23\xcd\xb1\xbc\x28\x10\xfd\x06\x3b\x25\x5f\xa8\x54\x5a\xae\xa8\x08\x81\x75\x83\x80\xc4\x03\xad\xdf\x26\xc4\x72\xb8\xfe\xbb\xce\xf7\x37\x77\x0f\xdd\xcb\xfe\xbb\x3c\xe5\xc2\xe5\x14\x66\x45\xcb\x5c\x0f\x0a\xce\xfa\x2c\x8b\x53\xce\x6a\x74\xc3\x59\x22\x1c\xc7\x79\x7c\xb4\x55\x22\x8d\xcc\xb6\x94\x22\x7b\xb7\x62\x65\x84\xf2\x92\x61\x1e\x21\xb1\xac\xad\x37\x6b\x89\xeb\xac\x70\x73\x4c\x7a\xdc\x92\x3c\xa6\x1d\x31\x1b\xbf\xbc\xb0\x32\xba\x36\x51\xae\xfe\x25\x23\x2f\x4e\x57\x02\xee\xfc\x01\x1b\x26\xbc\x1e\xb5\x73\x07\xb2\xc1\xa1\x7e\xa4\x5f\x48\x7c\x57\x23\x55\xed\x24\x4d\xa9\x51\x80\x65\xe5\x29\xa4\x8c\xae\xa3\xf1\x67\x5b\x79\xd4\xef\x35\x27\x4b\x37\x79\xd5\xc0\xbc\x02\x30\x94\xff\x55\x08\xa3\x88\x08\x85\x29\x43\x23\xb8\xd8\x2c\x9a\x23\xa8\xc2\x42\xc0\x87\xfd\x17\x34\xa5\x0c\xca\x41\x2c\x03\xed\x63\x71\x1f\x6b\x08\xad\x9f\x7b\xd7\x8f\x0f\x05\x51\xf5\x87\x9b\xc7\x42\xab\xcd\xcb\xce\xaf\x4b\x65\xd5\xd2\x08\xcb\x82\x85\xbc\x2d\xe6\xa9\xa5\xb6\x10\x72\x06\x99\xca\x8d\x26\x73\x45\x1e\xef\xae\xb6\x92\xef\xaa\x9d\x65\xb5\x65\xec\x7d\xe9\xaa\xba\xcc\x45\x93\x57\x63\x12\xad\x2a\xb4\xdb\x1c\x8f\x4c\x14\x94\x86\x83\xb5\x26\xda\x22\x7c\x58\xa2\x19\x16\xd6\x0f\x15\x9b\x00\xa8\x62\xf3\x3a\xa3\x79\x2d\x2b\x0b\xf2\x89\xa8\x9f\x35\xeb\xe3\x6c\x37\x95\xbe\x40\x94\x05\xff\x28\x19\x3c\x9b\x81\xd7\xb8\x69\x76\x29\x4b\xf2\x97\x9c\xb0\x0c\x33\x20\x3b\x83\x5f\x4c\xe3\x0c\x01\xd6\x74\xf4\x70\x00\x11\x17\xa6\xa9\x55\x52\xce\x34\x46\x9a\x8a\xbf\xae\x4c\xb0\x37\x1c\x1f\x99\x97\x1b\x16\x4d\xf4\x92\x05\xf4\x58\x39\x28\x51\xe7\xb6\x57\x01\xeb\xab\xb2\x0b\xe9\x6d\x75\x5c\x4a\x32\x6f\xd6\xae\x2b\x5f\x79\x39\xa7\xad\x28\x75\x65\x77\xba\x5d\x6d\x2b\xe3\xf4\xbf\x2d\x46\x12\xb4\xa1\xa0\x74\x95\xca\x50\xc8\x25\x5f\x51\x3b\x7a\xbd\xf4\xca\x1c\x0c\x6b\x56\xb2\xf2\x17\x64\xb3\x6b\xfc\xea\x4d\x8b\xa1\xdb\x27\x7e\x35\x27\x6e\x7a\x3a\xdb\xd8\x82\x9d\x55\xb8\xca\x77\xd3\xa4\xc4\xd5\xcf\x06\xa3\xb3\x0a\x28\x50\xd3\xc5\xf5\x0c\x75\x21\xd7\xb6\x20\x81\xbf\x5d\x1f\xdb\xd6\xab\x8a\x95\xaf\xcf\x99\xbf\x6d\xb9\x74\x3c\xc3\xd6\xee\x00\x4a\x94\x6b\xe6\x51\xd5\xfb\xf1\xac\xcf\xbc\x80\x15\x69\xd4\x1e\x7d\x47\x5c\xff\x1c\x68\xca\xcc\xa0\xf6\x3a\xe4\x3e\x65\xc2\x4f\xe1\x04\xca\x75\x0f\xd4\xa4\xd8\x01\x67\x61\x1e\x7b\x3b\xe5\x04\xbb\xec\x52\x67\x41\xb1\x71\x80\xbe\x7d\x09\xc6\xf3\x7a\x5e\xd8\x89\xc1\x1c\x0d\x46\x0b\xec\x75\x54\xf4\x2a\x12\xc4\x9c\x48\xf6\x5e\x65\xf9\xbb\x34\x99\xbb\x90\xea\x92\x7b\x40\x4b\x75\x98\xda\x91\x97\x5f\xf0\x1d\x94\xdc\x5a\x57\x71\xf0\xae\xd5\x4a\x33\x95\xf3\xf1\x02\x26\xf8\xb1\x48\x30\x69\x9d\x55\xfd\xcb\x8c\x44\x9b\xd4\x05\xba\xc5\x02\x4f\x89\x22\x62\x59\x38\x52\xb1\xdf\x39\x88\x38\xee\x04\xed\xbc\xe6\x14\x4d\x33\x98\x72\xd7\xa0\x4c\xbb\xbd\x5a\x55\xe7\x27\xdb\xc5\x5a\x25\xcd\xf4\x36\x7e\xb6\x96\xff\x35\x77\x61\xe7\xc9\xb7\x61\xa3\xad\xbc\xb2\x4e\xdb\xee\xe9\x30\xf5\x6d\x1e\x16\x2a\xc5\x14\xc2\x85\x5a\x52\xd8\x66\xf5\x2a\xeb\x2a\xda\xac\xa2\xa5\x3b\xa1\xdd\x2e\xc3\xc1\x65\x26\x97\x2e\x55\x21\x77\x02\xb0\x04\x54\x2a\x53\xdc\xa5\xba\x2a\x0d\x08\x2d\x55\x11\x92\x9e\xdb\xcf\xd6\x2c\xcc\x0d\xba\x56\xb2\x2a\xf7\x3f\x2b\x81\x6b\x05\x8d\xdb\x55\xc5\x8e\x20\xd1\xec\x5a\xa2\x59\x85\xca\x85\xe8\x5a\x8d\x9d\x44\x94\x8a\x07\xd9\xbe\xe4\xb6\xea\x43\x71\x83\x90\xd2\x65\x59\xa4\x6d\x6e\x0c\xac\x9f\xb2\xec\xaf\x22\x05\x77\x48\xed\xa3\x6a\x55\xae\xea\x99\xe7\x82\x02\x0f\x54\xe2\x4b\x03\x36\xae\x06\x56\x6b\xc2\x20\x8d\x95\xbf\x77\x6d\x1c\x58\x90\x33\x3e\xe7\x29\x7a\xa1\x72\x82\x14\xef\x33\x88\x13\xcc\xbc\x01\x8a\x23\xf3\xe0\x09\x3c\x05\xb5\x2d\x64\x3a\x9c\x52\x85\xb0\xb7\xc3\x82\x49\xf2\xc4\xde\x67\xfd\x02\xec\xb8\xb2\x7c\x41\x55\xdd\xa5\x15\x97\x66\x03\xfb\x5a\x3e\xc8\xb6\x15\x0a\xbc\x98\xe6\xfd\xd6\x28\xf0\x34\x1e\x5f\xc3\xac\xbc\x73\xa1\x48\x01\xaa\xb6\x36\xd8\x4a\xb0\x50\xae\x97\x4a\x55\xe2\x2d\xd6\xd0\xb3\xa2\x40\x41\x7e\x10\x8d\x2a\x14\xe4\x8f\xef\xa2\x44\x41\x5d\x27\xbd\x65\x29\xab\xee\x95\x1a\xfb\xb7\x4b\x85\x56\xdc\x05\xce\xfb\x92\xd2\x6d\xad\xa4\xd4\xb6\x52\x75\x79\x42\xc0\xe6\xe1\xe5\x75\xd1\xcb\x70\xc7\x23\xce\x62\xba\x46\xbc\x30\x74\x4b\x1b\xa6\xa3\x0e\x9b\xaf\xae\x7c\x34\xf5\x03\xf5\xad\xbd\xc4\x93\x44\xaa\x6b\x6e\xae\x54\x59\xf3\xf1\x7d\x4c\xf7\x52\x42\x8b\xc5\x88\x48\x99\x3b\x31\xae\x20\xef\x27\x52\xc9\xbc\x22\x17\xb5\xcf\xaa\xa5\xa4\xe5\x74\x7b\xdb\x34\x92\x9d\x96\xdd\xf3\x68\x84\xdb\x85\xb5\xba\xfd\x92\x05\xe2\x19\x85\x9e\xd8\x22\x1b\x25\x31\x38\x77\x43\xd6\x05\x50\x69\xe1\x68\x93\x5c\xf3\x0a\xca\x51\xbd\xf4\x85\x24\x8f\x95\x77\xd7\x0a\x06\x3b\x54\x3f\x17\x38\x48\xe3\x9c\x98\x4c\x8e\xb7\x1c\xc3\x06\x75\xc7\x99\xad\xa1\xe4\x4e\xde\xa4\x59\x33\x94\xb3\xdd\x59\x11\xde\x72\x65\x0a\x3d\xf8\x09\xb8\xa0\xed\xda\xb1\x09\xc7\xc9\x4a\xc3\x97\xce\xa4\xb0\x63\x13\x52\xb9\x97\x5d\xaf\xdb\x61\xdb\xf3\x89\x0a\x1b\x93\x4c\x7d\xeb\x06\xb4\xd6\xb6\xa1\x9c\x25\x6e\x91\x09\xa0\x29\x8b\x89\x60\x04\xab\xc9\xe1\x32\x41\x2e\xb6\x35\xa1\x7b\xeb\xdb\x6f\x56\x88\x5d\x29\x2e\x26\x87\x6c\xb3\xdc\x54\x4d\xd6\x4c\xb2\x58\x23\x63\x21\x6f\xb6\xbd\xa0\xde\x56\x98\x36\xbd\xfa\x43\xeb\x60\xe9\x56\xc9\x22\xd5\x2a\xe7\x7e\xd2\x66\x2a\x6c\x53\x0b\x09\x33\xfa\xb6\xfb\x2d\xca\x57\x80\xe4\x4d\xe4\xa7\xec\x3f\x65\x62\x59\x33\xf4\xd4\xcb\xa2\x80\x8e\xf4\x0a\x53\x66\xa9\xd7\xb2\xc4\x09\x2d\xf7\x4e\x71\x55\xae\x44\xeb\xb3\x70\xde\x7c\x12\x4e\x48\xc9\x08\x29\x19\x15\x67\x14\x52\x32\x10\x6a\x5b\x4a\xc6\x2a\x15\x74\x99\x91\x36\xf3\x1b\x42\xd3\xda\x42\x6f\x25\x73\xbe\x2b\xf4\xc8\xcd\xd3\x0e\x9c\x9d\xd3\x8f\xd9\xb2\xdf\xd8\x2f\x2a\xc3\xb6\x16\x5e\x2b\xef\xd6\xb7\xb9\xb2\x79\xd9\x75\x81\x45\x9c\xd8\x12\x84\x36\xa8\xba\x68\x23\x5b\x66\xce\xed\xb3\x1f\xf8\x0b\x79\x26\xe2\x04\x61\x85\xa6\x1c\xea\x5a\xe5\x31\x3c\x70\x11\x0a\xb5\xf4\x4d\xac\x06\x46\xd7\x78\x4a\x62\xd3\x38\xd4\x0b\xbd\xb4\x46\x65\xeb\x0e\xae\xaa\xb4\x0b\x45\x63\xcd\x31\xb8\xd8\x8e\x3e\x33\xe1\x90\x26\x04\x0f\x64\x05\xea\x36\x06\x08\xf3\xc7\xcc\x59\xfd\xc7\x33\xf4\xa0\xf9\x13\x95\xc5\xf5\x7a\x85\xf7\xea\xd6\xd6\x67\x63\xc1\xd3\x59\x66\xe7\xe3\x43\xd3\x41\xda\x44\x68\x2d\x3a\xab\x61\x31\xce\x53\x1d\xe1\x58\xeb\xe2\xcb\x11\xe7\x55\x22\x65\x37\x2a\xb3\xe4\x23\x90\xbe\x86\x59\xf8\x9f\x0d\xc7\x37\x3e\x66\xaf\xb8\xcc\xb2\x0e\x00\x7b\x72\x80\x5f\x12\x09\x56\xa1\xcc\x33\x50\xc8\x75\x2f\xd6\x53\xa8\x5c\xe7\x32\xbb\x6d\xe6\x5b\x71\xfe\x87\xea\x52\x0d\xf9\xe4\x36\x2e\xcd\x24\xd2\x5a\x3e\xb1\x37\x8b\x6e\xe3\x08\xdf\x3a\x7a\x71\x9b\x8a\x19\x07\x49\x2c\x99\xbb\xd2\x12\xb6\xc8\xdf\x8c\xcf\x52\x13\x7b\x47\xfd\x50\xac\x4a\xcc\xa6\x52\x7d\xc6\x2a\x9a\x68\xca\x9d\x57\x65\xdb\x51\x4c\x62\x4e\x95\xf7\x6b\xe5\xad\xd8\xc1\x85\x3f\x7b\x8d\xdb\x63\x19\xf6\x78\x31\x86\x59\x20\x67\x26\x49\x4c\xf5\x7c\xc6\x35\x68\xfb\xc2\x7b\x76\x51\xf7\x8a\xfd\x45\x6f\x74\x15\x16\xad\x5a\x7f\x33\xdc\x2a\xb6\x7a\xdb\x79\xb4\xe3\x16\x65\x6e\x2e\x6d\x51\xb1\xfc\x41\xdb\xe8\xb8\x26\x44\x41\xd0\xcd\x32\x95\x6c\x7b\x86\x67\x2d\x8e\x64\x16\xd7\x29\x9e\x69\x25\x42\x71\xcd\x25\xc5\xd8\xc8\xb1\x26\x96\x17\x61\x94\x0a\xea\xee\x7e\x29\x6f\xbd\x1e\x3b\xc0\x42\xf9\xc1\x6f\xe5\x15\x61\xaf\xcb\xa1\x09\x4a\xc0\x91\x4a\x71\x16\x3c\x09\x38\x91\x50\xf6\xa4\x27\x33\x39\xfa\xce\xf9\x2f\x9c\x78\x57\x71\xa6\x2b\x11\x7b\x8b\x53\xc6\x55\x35\x18\x1b\xdd\x34\xca\xc6\x5e\x01\xc7\x6a\x2b\x71\x93\xa6\x1b\x95\x6f\x36\x6b\x1c\x52\xf9\x6a\x5d\x9b\xe3\x26\xef\x2e\x29\x30\xd5\x28\x64\xbd\x8d\x1d\x13\xbc\x4c\x00\x1b\x2a\x6c\x65\x37\xbf\xb0\xa7\x9d\x08\xca\x1e\x53\x08\x65\xc0\x4e\x96\xfb\xc6\x6f\x9b\xa0\x97\xf6\xed\x7f\xe5\x3f\x82\xfe\x6e\x9b\xb3\x54\x3c\xd8\x67\x5c\xd8\x47\x4f\xb2\xe7\xf4\x63\x79\x7d\x62\x2d\x25\x2e\xbe\x99\x57\x1f\x15\xc5\x3a\x85\x50\xad\xc5\xd6\x99\x33\xe5\xa9\xb3\xb6\x16\x7a\xf1\x4f\xe9\x90\x08\x46\xf4\x9e\x5c\x5d\x87\x8c\x06\x4f\x31\xc3\x63\x28\x86\x7d\x02\x41\x87\x20\x65\xe7\x1a\x94\xb9\x89\xa6\x3f\x28\x10\x59\x4d\xe3\x6d\x2a\x73\xde\xf5\x1b\xe6\x34\x12\xb8\xad\xc5\x9b\x47\xae\x54\x5f\xda\x3b\x3b\xff\x66\x8a\xc6\x43\xe7\xfe\xc7\xc1\x5d\xf7\xfe\xe6\xf1\xee\xa2\xa0\x6d\x5c\x5c\x3d\xde\x3f\x74\xef\x2a\x7f\xcb\xd3\x80\x7f\x7a\xec\x3e\xd6\xfc\xe4\x06\xb8\xea\x7c\xdf\x2d\xb4\xd0\xff\xe9\xb1\x73\xd5\x7b\xf8\x75\x70\xf3\x71\x70\xdf\xbd\xfb\xb9\x77\xd1\x1d\xdc\xdf\x76\x2f\x7a\x1f\x7b\x17\x1d\xfd\xa6\xff\xec\xed\xd5\xe3\xa7\xde\xf5\xc0\x45\x74\xfb\x3f\xfd\x72\x73\xf7\xe3\xc7\xab\x9b\x5f\x06\xde\x94\x37\xd7\x1f\x7b\x9f\xaa\x76\xd1\xb9\xbf\xef\x7d\xba\xfe\xdc\xbd\x5e\xde\xaa\xbf\x1a\x1a\xb5\x7d\xb3\x3d\xfe\xeb\xd9\xba\x3c\xe9\x6e\x38\xb7\x77\x82\xfe\x13\x5c\x2e\xb7\x06\x45\x4f\x4f\xdc\x27\xd3\x58\xff\x54\x53\x6e\xe7\xce\xcb\x89\x5e\x9f\x65\x3e\xe1\x4c\x16\x50\x78\x2c\x5d\x56\x77\x61\xb5\xe7\xa8\x03\x97\x0c\xf4\x9c\xc2\xa4\x90\x34\x92\xad\xd4\x45\x11\x00\x1e\x26\x74\x4a\x21\xa0\x00\x9d\xa2\xf2\x81\x17\x07\xb4\x7b\x82\x25\x58\x77\x63\xbc\xec\x36\xc8\x72\xc2\x38\x60\xca\x39\x72\x8c\x85\x18\x2b\x88\x29\xeb\x6b\x1a\xd3\x97\xb3\x5b\xa0\xb2\x2d\xca\xab\xb8\x94\x47\x2c\x20\x58\x71\xe4\x09\x41\x3f\xfe\x3d\x5f\x14\x38\x5e\xac\xc1\x20\x5d\xe8\x40\x69\x7f\x10\xa9\x81\xea\x2a\xf4\x2c\xcc\xe4\xae\xb9\xb5\x88\xc3\xbd\xb5\x7d\xfb\xc1\x4b\x96\x32\xaf\x92\x5b\xc1\x65\xa6\xaf\xb7\xd9\x51\x09\xc7\xcf\xd1\x3d\x54\x91\x91\xb9\xc5\x41\x9f\xe2\x2c\x49\xc7\x94\x21\x3a\x9d\x25\x40\x63\x8c\x19\x62\x48\x26\xf8\x99\x72\xd7\x70\xc5\xf4\xa5\x01\x38\x5a\x89\x10\x9d\xa2\xda\x8b\x72\x8e\x3a\x71\x2c\x8b\x04\xae\x80\x39\x8e\x8a\x9e\x16\x97\xed\x17\x5f\xd3\x84\xd5\x92\xcd\x12\x1e\xe5\x57\x0e\x20\xb6\xfb\x3a\x39\x8b\xe4\xb0\x28\x32\x6c\x21\xb5\x68\x08\x0e\x1c\x2a\x0f\x36\x92\x61\x1e\xb0\x7c\x72\xa4\x79\x95\x1c\xe3\x2a\x16\x6d\x37\xa3\x2d\x5d\xd4\x74\xd2\x0c\xb2\x03\xb8\x68\x9b\xcd\x59\x5b\x70\x7b\xc5\x94\x6e\xc7\x49\xa9\xd5\x5d\xe3\xf9\x0a\xad\xf2\x2a\x27\xdb\xa9\x93\xaa\x5a\x88\x84\x2b\x39\xc8\xf0\x7f\x8d\x7d\xdc\xc2\xab\x37\xd9\x9b\x4b\x25\xcd\x81\x07\xb7\x75\x5d\x57\x0b\xf9\xcf\xd6\x7d\xb5\x14\x0f\x77\x54\x39\xab\xb9\x14\x09\xad\x42\x68\x04\x5e\x4a\x4c\x99\x6d\x20\x45\x32\x37\x9a\x6b\xd8\xae\xef\x71\xd6\x52\x11\x0f\xf9\x73\x41\x27\x9e\x12\x29\x71\x4d\x2d\x18\xcf\x92\xb7\x0d\x61\xc8\x6e\xa8\x7d\xb1\x21\x3e\xb9\x3b\xf9\xa0\xdf\x5a\x26\xa3\xdf\xf9\x0a\xbd\xdb\xa8\x96\x61\x63\x17\xc4\x8c\x6e\x4c\x2a\xa3\xa6\x2f\x27\x79\x0c\x10\x17\x5e\x68\x54\x9d\xd7\xaa\xa1\x35\xb0\x0c\xb0\xca\xbe\x60\xbe\xe7\x71\xfd\xd0\x21\x6f\xf4\x8d\x8b\x8d\x5b\x77\x10\x2e\xc2\x67\x0d\xac\x2b\xb8\x69\xfd\x8e\xed\x11\x9f\x4e\x8d\x5c\x50\x30\x01\x9f\x20\x6c\x32\x48\x73\x69\x4a\xa6\xd1\xc4\x38\xc7\x34\xcb\x38\xe9\xb3\x17\xef\x40\x0a\x31\xd6\x1d\x7f\x24\x28\xd4\xfa\x45\x5f\x37\xfa\x5c\x88\x5c\x07\x91\x91\x42\x18\xb5\x87\x08\xc6\x8f\x99\x37\x3c\x5b\x81\xe0\xde\x79\x6d\x81\xea\x1b\xf4\xd6\x2c\xc1\xb7\xae\xc3\x66\xb6\x37\xaf\xb1\xe5\x16\x0a\x7e\xd3\x25\x78\xbd\x35\xab\x56\xb0\x83\xd6\x9a\x07\xad\x9c\x9e\x65\xc2\x9a\xc4\xe9\xe9\xd0\x96\xff\xd0\xdb\x75\xd0\xfe\x93\xdb\xd1\x9f\x8c\x22\x9c\xd6\xd4\x8b\xf1\x46\xcb\x8a\xa7\xa3\x53\x2d\xb3\xba\x3a\x06\x36\x7e\x44\xa2\x53\x53\x90\xf1\x3d\x04\xb1\x76\x6e\x7b\xef\x4f\xd0\x7b\x3f\x91\xef\xfd\xd1\x98\x2e\xf2\xeb\x6f\xa1\x66\x9b\x7b\x82\x2e\x57\xc8\x25\x29\x5e\x7a\xc0\x94\x12\x1d\xb0\x18\x63\xc9\x00\xaa\xa3\x02\xfa\xcd\xc2\x3b\xe0\xd1\x87\x76\x91\xc6\xe9\x9d\x45\xb2\x5b\xbf\x99\x91\xb0\xa9\xac\x38\xb9\xb8\xcf\x86\xf3\xb2\x67\xec\x24\x73\x8d\x35\xa6\x11\x5b\xb7\x40\xd4\xe3\x2d\xe6\x9d\xef\x38\xc2\x7a\x39\x37\x5a\x91\xc9\xde\xc9\xfa\xf4\xe4\x34\xb4\x2e\xb4\x23\xa4\x26\x54\xed\xaa\x60\xe6\x73\xc0\xac\x3c\x94\x55\xd2\xd7\xb1\xa1\x5b\x83\x78\xfe\x4e\x15\x44\x6c\x2a\x47\x8d\x68\x1f\xb0\x6c\xbf\x58\xb6\x8b\x54\x96\xe2\xe2\xd6\x67\xdf\x17\x46\x8a\xf4\x86\x71\xe6\x5e\xad\xca\x64\x04\xbe\xd0\x27\x73\x75\x7b\xeb\x35\x1d\xe5\x1e\x4c\x56\x7b\xca\xef\x4d\xb4\x85\xf1\x55\x2f\xae\xb5\xbc\xd4\x8e\xb2\xdd\xa5\x38\x35\x69\xab\x8a\x4e\xc9\x89\x69\x67\x96\x47\x88\xd8\xfb\x0a\xe8\x66\x02\xbb\x26\x84\x0a\x37\x89\x2d\x1e\xb9\x56\x9d\x83\x35\x75\x81\x3a\x1c\xd9\x22\x3c\xe7\xba\xf3\xb9\x7b\x39\xe8\x5e\x3f\xf4\x1e\x7e\xad\x28\x0c\x5a\xfc\xd9\xd5\x06\xf5\x1e\xb8\xff\xf5\xfe\xa1\xfb\x79\xf0\xa9\x7b\xdd\xbd\xeb\x3c\xac\xa8\x1b\xba\x6c\xb2\xba\x9a\x94\xa9\xac\x52\x1e\xd7\xa9\x4b\xe9\x8c\xcc\x15\xb3\x2f\x56\x0f\xf5\x26\xa1\xa4\xa6\x82\xa8\xa9\xe9\xc0\x62\x22\x50\x4c\x9e\x49\xc2\x67\xb9\x51\xb7\x12\x60\x5e\x69\xd1\x8a\xf1\x97\x95\x17\x85\x31\xcb\x30\x3e\x47\xa6\x37\xa2\xd7\x1e\x3a\x1b\x10\x44\x3e\x2c\x08\x7b\xaf\x10\xf9\x32\x4b\x68\x44\x95\x97\xf3\xc9\x85\x75\xee\x18\x9f\x2b\x84\xf4\xae\x40\xae\x9d\x85\xf0\xec\xdc\xe2\xe0\x87\x1f\x2c\xda\x1a\xb2\x1b\x95\x95\xba\x5b\xd9\x19\x6a\x07\x66\x85\x1a\x4f\xfb\x42\x25\xbe\x0d\x56\xb7\x0f\xe3\xc4\x62\x62\x93\xcd\xdb\xac\xa9\xd2\x57\xbd\xc8\xd5\xdc\x70\x59\x70\x51\xe1\x5e\x2f\x8f\x2e\x6a\x86\xa9\xaf\x1c\x23\x54\x68\x44\xbb\x83\x92\x2a\x36\xe0\x7f\xcd\x28\x8f\x85\x46\x40\xcc\x04\xea\x62\x24\xc8\x94\x2b\xad\x80\x99\x30\x8a\x13\x2d\x54\x51\x9c\xd0\x7f\x42\xf1\x31\x41\xce\xbc\xb0\x13\x57\xb2\x2d\x77\x5e\xd8\xc2\x20\x67\x7d\x76\xd9\xbd\xbd\xeb\x5e\x68\x82\x74\x86\x1e\x25\xd4\x15\x2b\x6c\xfd\xd2\xa2\xb7\x11\xc7\xfc\xf0\x0f\xca\xa4\x22\xb8\x2e\x82\x8e\x08\xc1\x45\x73\xfa\x90\xcd\xd7\x85\xf7\xaa\xd1\x1b\x7e\x2b\x58\xc6\x9c\xf9\xe1\xba\xb6\x8b\xb8\x97\x68\xb1\xf3\x44\xb6\x3b\xfc\x52\x80\x88\x5f\x57\x05\x24\x91\x22\xd4\xf7\x08\x6d\xa8\xcc\xda\x7c\x7f\x85\x39\x6f\xe1\xdd\x65\xfb\x7c\x80\xb8\x44\xa9\xf2\x32\xaf\xa6\x12\x6c\xd6\xce\xa8\xb4\xcf\x5a\x51\x51\xbc\x46\x0d\x96\x12\xea\x0f\xc9\x18\x33\x24\x52\xc6\x4a\x75\x7f\x7d\x3b\xdf\x62\xa4\xd1\xba\x57\x55\xc3\x0c\x4f\x79\xca\x4c\x3f\x5e\xbd\xaa\x8a\xc5\xc8\x19\x61\x6a\xc5\x62\x5e\xab\xc2\x4e\x69\xa9\xed\x2d\xb2\x53\xb1\xd0\xba\x3a\x3b\x55\xde\x2c\x68\x55\xbe\x1e\x5b\x76\x91\x8c\x05\x97\x96\xbe\x54\x19\x7f\xae\xd6\xb2\xb1\x7c\xda\x7a\xba\x07\x2c\x9f\x56\x4f\x15\x93\xe8\x69\x5d\x66\x53\x4e\x67\x4d\x6c\xa7\xf7\x05\x63\xdf\x5c\xff\x6a\x7b\xee\x40\x83\xff\xe8\x09\xfd\xf0\xf0\xf9\x0a\x8d\xa8\x96\x7b\x35\x5b\xb9\xc6\x5a\xc6\x7e\x14\x89\xb3\x4a\x5b\xcb\x6e\x2a\x92\x8c\xf7\xc2\xc1\x3b\x51\xca\x93\x12\x34\x47\xc3\x63\xe2\x4c\xcd\xc2\x96\x51\x2c\xf5\xdc\x11\x98\xc5\x7c\x6a\xf6\xf1\x41\xa6\xa3\x11\xfd\x72\xa6\xb0\xf8\xb6\x06\x1e\x26\xa6\x63\xf0\x0f\x3e\x1c\xe8\x15\x6d\xc9\x88\xab\x86\x43\xb6\x01\x79\x06\x36\xbb\xb3\x4b\xf3\xec\xff\xe1\x43\x28\x11\x00\x55\x0e\x9c\x6f\xd0\xc6\x49\xd8\x47\x1c\x26\xe5\x1d\xb9\x0b\xd5\x6b\x22\x2e\x04\xb1\x95\x05\x4c\xd3\xd8\x19\x16\x8a\x82\xb5\xd6\x55\xbf\x29\xb4\x3d\xc8\x8f\xc8\x6f\x91\x3f\xc1\x79\x89\xf1\x21\x21\xe0\x5e\x9a\xd1\x64\x3d\xa5\xf7\xa2\xe0\x19\x2d\xdd\x40\x1b\xae\x6b\x0b\xa2\x82\x41\x66\xa5\x88\xd5\x7d\x26\x4c\xed\x44\x3f\x81\x21\x2a\x6a\x1d\x34\xf3\x71\x98\xde\xad\xbd\xcb\x9c\xb9\xb9\x38\x68\x3f\xa6\x4a\x09\x0c\x7c\xde\x66\x97\x59\x87\x7e\x5d\x98\xc1\x73\x63\xcf\x35\x3c\xba\x08\x97\x15\xf9\x04\x16\xda\x79\x6b\xfc\x3c\x16\xd8\xf5\x6c\xd8\xb0\x42\x93\x24\xc6\x8a\xe1\x55\x06\xb1\xca\x69\xf9\xcc\xcd\x9c\x1a\xb7\x4a\x53\xae\x3c\xf2\x0d\xca\x11\x15\x86\xf9\x44\x20\x0f\x76\x17\xd1\xfb\xeb\x14\x3c\x80\x85\x3c\x8a\x04\xe2\xce\x97\x5a\xb1\x4c\xff\x78\x4d\xf9\x32\xc9\x0e\x37\x90\xd1\xcd\x62\xb4\xd0\x48\x66\x82\x44\x9a\x95\x9d\xa3\xdb\x84\x68\xc9\x2b\xd5\xd2\x57\x9a\x24\xae\x74\xdb\x72\xe9\x70\xad\x72\x83\x7b\xdf\x97\xa7\x7b\x2c\xd9\x98\x2b\x5d\xb8\x7c\x67\x1e\x0c\x76\x5f\xa6\xc2\x83\x2f\x98\x90\xc1\x90\x58\xd4\x22\x81\xc2\xcf\x4d\xd4\x2e\x98\x92\x70\x81\x91\xd1\x7f\x6a\xf2\x2b\x88\x9c\xf0\xda\xcc\x50\x7f\xb7\xfb\xd9\x83\x03\xe5\x1e\x37\xe1\xf8\x61\x5d\x30\x7a\x03\xb9\xa6\xc4\x03\x0b\x22\x4e\x13\x5f\x6c\x1e\x7b\x62\x0b\xe9\x5a\xde\x6a\x97\x06\x5c\x32\x37\xb5\xf9\x45\xed\x72\xd7\x45\xae\xcc\xcc\x8d\xef\x35\x7b\x3d\x37\x20\xe7\x79\x14\x54\xc9\xbc\x9d\x20\xd2\xbc\xb6\xee\x88\xf5\x3e\x07\xa9\x58\xab\x8e\x47\x5e\x8e\x7e\x1d\xca\x6d\x33\x78\xf2\x65\x69\x20\x54\x93\x4b\xdb\x25\x04\xc4\x68\x1b\xe8\x24\x0b\x25\xfe\x2c\xda\x18\x30\x56\xaa\x78\xf5\x44\x79\x5b\xb7\x1a\x48\xc9\xb9\x28\xb3\x2f\xef\x5a\x01\x03\x0b\x1b\x08\x45\xe3\xd6\x2f\x1a\x67\x5b\xc6\x64\xb8\x07\x25\x1e\x95\x80\x6a\x09\xb9\x03\xad\x2c\x38\x58\xa3\xf7\xaa\x74\xb1\xc2\xe9\x34\xca\x0d\x2b\xbc\xa1\x69\xc9\xe5\x96\x1e\x38\xbd\x99\xf9\x00\xb2\x6d\xb7\x89\x01\x2a\xec\xdf\x78\x0f\x60\x4c\x12\x23\x53\xf2\xc1\x94\xb4\xb6\xb0\xcb\x3c\x27\x33\x2c\x08\x53\x7d\x76\xa7\x57\x61\xde\xc8\x23\x31\x5c\x14\x90\x6b\x33\x00\xcd\x88\x47\x08\xdb\xb7\x00\xe8\x75\x61\x78\x72\x60\x1e\x02\xd5\x74\x8f\x95\x09\xbe\x37\xcf\x98\x42\x11\xb6\x50\x92\xde\x2a\x1d\xe5\x6a\xbc\x16\x20\xa3\x09\x85\x3a\x0d\x31\x91\x96\x21\x51\x65\x0b\x71\x64\xe2\x77\x4a\x5c\x61\x6d\x78\x2d\xa3\x5f\x55\x04\xdb\x19\x0a\x98\x33\xd0\xc9\x3e\xf3\xe6\x58\x52\x87\xd5\x28\xeb\x1b\xaa\x12\x70\xce\x34\xce\x1c\x5f\xf0\xa7\x39\x21\x2e\xe8\x98\x32\xaf\x1b\x96\xdd\xde\x14\xcf\xc0\xbc\x6b\xee\x20\x1f\x65\x3c\xed\xc1\xe6\x38\x9c\xc1\x8a\xff\xef\x7f\xff\xcf\x19\xad\xf3\x7e\xc8\x81\x85\x40\x1b\x4e\x72\xbd\x63\xf1\x4f\xde\x2b\xbd\x52\x53\xd2\xc3\xd3\x69\x65\x21\x6f\x23\xff\xd6\x32\x37\x8d\x34\x5c\x4d\x8c\xbb\xb7\x88\xee\xe0\x1b\x11\xe9\x92\xbb\x61\x58\xcc\xeb\xc2\x92\x4a\xc8\x4d\xd0\x2b\x31\x37\x39\x33\x10\xf8\x9d\xe6\x17\xcc\x34\x7d\x96\xbf\x22\x4d\x11\x19\x53\xb7\xd7\x7c\x91\x43\xa7\x21\x60\x96\xd1\xfe\x3c\x52\x22\x77\x87\x7b\xb1\xd0\xae\x2f\x8a\x89\x61\xd5\xe3\x97\x38\x6d\x89\x72\x7b\x05\x2c\xb7\x89\x19\x9d\x60\xb9\xbf\xd0\x9c\xca\x7e\x5e\xc6\x9a\xee\x0b\x0f\xab\x82\x74\xcc\x22\x4d\x8a\xac\x3e\x90\x54\x12\x61\x28\x5d\x56\x43\xcc\x62\x82\x5f\x9e\x13\x22\x44\x57\xf8\x1a\xc9\x14\xd3\xb5\xb2\x19\xf4\xf3\xd5\xc5\x43\x0b\xce\x06\x3c\x26\x62\x10\xa7\x6a\xe1\x5a\x2c\xcb\x30\xd0\x2f\x5d\xa6\x6a\xbe\x7a\x7c\x99\xe0\xc5\x7e\x46\xcb\x0a\xb6\xea\xe7\x6b\x86\x5d\x2d\x31\x7b\x21\x3e\x45\xa9\xb9\xa6\x1c\x2a\x29\x95\x43\xb5\x11\xaf\x05\x13\x09\x70\x60\xa6\xa0\x0e\x61\xae\x49\x59\x16\x6d\x8a\xb6\xc3\xca\xd1\x30\xcd\x4d\x4a\x59\x1b\x8c\xf8\xac\xcf\x3e\x9a\x3e\x32\xa0\xe5\x99\x05\x44\x90\x6e\x44\xbe\xcc\xb8\x24\x85\xfc\xb7\x8a\xd6\x16\x36\xf1\xd5\x2e\xa3\x5a\x58\xcf\x5f\xda\x5e\x56\x7f\xf5\xc2\xb6\x8b\x07\xbe\xb8\xe5\x6a\x0c\xdc\x4a\x1c\x8c\xe8\x8c\x6a\xdc\x19\x54\xde\xb4\xfd\xb5\x57\xce\x63\xba\xa0\x78\x98\x4a\xe6\x27\x28\xdb\x5e\x09\x21\x12\xf2\x4c\xc0\x9c\x0e\x6b\xf4\x1b\x98\x14\xed\x7a\x35\xe4\x64\xd5\x05\xca\x93\x4f\x81\x2c\xa0\xb8\xbc\x82\x62\x8a\x5e\x15\x2e\x16\x93\x8f\xb6\xce\x93\xab\x0a\x4c\x59\x43\x3c\xef\xf8\x8d\x5c\xe6\x44\x21\xf2\x45\x11\xdb\xea\xf5\xc1\x65\x32\x2e\x26\x3f\xa0\xea\x64\xac\x7a\xd9\x71\xef\x4d\xb7\x3b\x2e\xf1\xdd\xa5\x6a\xc6\x8e\xe5\xdb\xd4\xc5\x09\x66\xb1\xcd\xc7\xb5\x4a\x86\x16\xb6\x60\x77\xc6\xe8\x96\x65\x2a\xd8\xac\x52\xaf\x02\xbe\x19\xd3\x94\xea\x07\x46\xe6\x14\x46\xad\xb2\x40\x78\x05\x17\x5a\x72\x4f\x99\xa2\x89\x46\x0e\xbb\x06\x89\x46\x10\x19\x67\xab\x3b\x42\x64\x7b\x5d\x01\x41\x2a\x25\x65\xe3\x81\x85\xa4\x4b\x2d\x6d\xc6\x18\x8a\x38\xf5\xd9\x0c\x65\xbe\xfc\xde\x0d\xb4\xdc\xa8\x6e\xd0\x1a\x8a\xbb\xb9\xa4\x56\xd0\x38\x18\x77\x9b\xb1\x55\xf9\x5c\x2e\xec\x80\xc6\x06\x14\xd4\x74\x14\x87\x8d\xae\x63\x77\x07\x99\x6e\xb1\xf8\x45\xce\x42\xa4\x4d\x54\x35\xe9\x67\x10\xa9\xaf\x6a\x32\x71\x65\x6d\x06\x6e\x8f\x65\x22\x9a\xed\x67\x96\xd5\x19\x28\x25\xf3\x62\x37\x9d\x4d\x47\xc0\x49\x32\xc4\xd1\x53\xa6\x85\x65\xb6\x08\x2e\x5c\x3f\x08\x2d\x57\x42\xc3\x3b\x83\x5c\x7a\xa1\x11\x48\x37\xbe\xb7\xd0\x94\x3f\xb2\xcb\xce\x27\x37\x50\xb3\x75\xe5\x4c\xbd\x2b\xb3\x7a\x93\xdb\x10\x93\x59\xc2\xe7\xd3\x1a\x7e\x56\x4e\x60\xdc\x26\x52\xa7\x2e\x7f\x72\xa7\xac\xac\x44\xf4\xd6\x66\x66\x0b\xd9\x50\x3b\x28\xc6\xb5\x06\x95\xfc\x94\xf0\x21\x98\x54\xad\xf9\xc1\x65\xf8\x78\xa9\x1e\xe5\xfb\xbc\x6e\xde\x51\xf9\x46\x52\x39\x4b\xb4\x32\x53\x3f\x83\xc9\x39\xd9\xef\xb9\x99\x0a\x09\xab\xad\x83\xcd\xa3\xb5\x2b\x5f\xdf\x47\xd9\xe7\x2b\x27\x09\x98\x67\x0d\xfd\x2a\x59\xd9\x4c\xaa\xe1\x99\x71\x52\x2b\xde\x67\x0a\x8f\xdd\xe1\x5a\xe1\x92\xbf\x30\x22\xe4\x84\xce\x0a\x8d\x30\xb7\x0e\x0f\xb7\x18\x6d\xff\x63\x82\xa1\x2b\xc7\x6c\x61\xea\xd6\x03\x9f\x9d\x9a\xea\x2c\x1a\x3b\xe5\x0c\x47\xb9\x4d\x36\x4a\xb0\x94\x74\x34\xf7\x8a\xaa\x64\x71\xbe\x90\xba\x56\x34\x62\x78\x9d\xef\xaa\xc8\x9c\x81\xce\x6e\xaa\x0a\x6c\x9f\x51\xf9\x58\xbc\xfc\x34\xf6\x8b\xee\x69\x6e\xb6\x58\x7a\xc7\xc9\x09\x16\xea\xb5\xc5\x83\x4d\xf9\x84\xcd\xaa\x00\x34\xad\xd7\xb4\x67\x4c\xaa\x48\xc3\x5c\x40\xa4\xbc\x5a\x58\x26\x47\x5b\x98\x59\x1d\x2e\xab\xb4\xe2\x97\x2f\x52\x85\x1c\x56\xc0\x3c\xad\x33\x3a\x93\xb8\xbe\x97\x59\x95\x16\x28\x66\x91\xbf\x7c\x82\xe4\x56\x45\xd9\x9a\x20\xe5\x25\x49\xc8\x4e\x82\xcd\x37\xc0\xd0\x72\x24\x87\x87\x9b\x4b\xf1\x32\x6f\x4b\xb1\xda\xae\xb2\x41\x0c\x7c\x4d\x8d\xa4\xea\xa5\xff\x62\x16\x6a\xc3\xe0\xab\x4e\x11\x6c\xa2\x00\xe5\xd5\xab\x6d\x13\x96\x7b\xa1\x25\x66\xf9\x16\xdf\xf3\x3d\x16\x90\x3a\xdf\x71\x26\x27\xb6\x11\xcf\x5f\x39\x54\x7d\x61\x5d\x9f\x48\x93\xb0\x9a\x95\xb7\x6f\x23\xda\xbb\xc8\xa1\x9a\xe1\x85\x75\x5c\x2b\x8e\xc6\x04\x2a\xf1\x50\x16\xd3\x67\x1a\xa7\x38\x39\x2a\x9c\xd8\x59\xa2\xcd\x8e\xa0\x5f\x4d\x61\x1a\x59\x7a\xf2\x78\x50\xa2\xa4\xe3\x47\x0b\x35\x3f\xed\xe1\xb4\xf0\x08\xda\x71\x2d\x8d\xc2\xf0\xe6\x25\xb6\xad\x4b\x63\xd8\x95\xd9\x02\x11\x41\x94\x2c\x30\xd9\x7c\xed\xbb\x97\x26\x0d\x8c\x63\xfb\x46\x56\x0e\xa2\x50\x86\x0d\x17\xaa\x59\x9a\x33\x7a\x7d\xaa\x5b\xbe\x5a\x6f\x5d\xee\x5c\xff\x8e\x95\x57\x95\xdf\xae\x20\x0c\xb7\xe1\x9e\x36\x97\x87\x5d\x01\xda\x16\x0a\x3f\x75\xd7\xb0\x9d\xfc\xb7\x05\xc2\xf1\x82\x48\xb0\x3b\x11\xf9\x88\xd0\xa4\x15\x92\xf2\xc2\x51\x1c\x4a\x5e\x3e\x75\xb5\xbd\xf2\x4a\x59\xed\x3d\xa2\x76\xdc\xe4\x3b\xeb\x7e\xdc\x1f\x83\x5f\x8d\x2f\x3b\xc1\x0f\x28\x73\x8b\x21\x1f\x3f\xb5\xed\x7e\xe0\xf2\x7a\x31\x9c\x0b\x3e\xaf\x15\xd1\xb1\x76\x79\x8d\xe2\x62\x17\xc0\xb9\x8f\xe3\xb5\xc9\x97\x8d\x0f\x77\x9f\xa8\xb6\xee\x5a\x76\xa1\xa3\xed\xd9\x7b\x68\xb1\xd1\x7b\x21\x04\xa9\x37\xe3\xa2\x15\x25\x9d\xdc\x91\xed\xf2\x92\x55\xf5\x68\xdc\xbe\x7c\x84\xcb\x2d\x1d\xcc\x04\x19\xd1\x2f\x1b\xa9\x02\xb7\xf0\xaa\x55\xaf\x35\x98\x4b\x5d\x1f\xc1\x2d\x08\x5d\x22\xbd\x40\x5a\x0b\x69\xdb\x19\xae\xcf\xf2\x8c\x5c\x9b\x8e\xab\x85\x61\x2e\x0a\x5f\x6d\x5a\xfa\x74\xf7\x1d\x2a\xcd\xb9\x4e\x94\x9a\xc9\xf3\x0f\x1f\xc6\x54\x4d\xd2\xe1\x59\xc4\xa7\x26\xff\x83\x8b\xb1\xf9\xf0\x81\x4a\x99\x12\xf9\xe1\x2f\x7f\xfe\x73\x7e\xc4\x43\x1c\x3d\x8d\x4d\x39\xa7\x45\x7f\x67\xf1\xc8\x09\x96\xdb\x45\x94\xb9\xd4\xc9\x3d\xa7\xd0\x7b\xd3\xb8\xa4\x65\xfd\x8e\x54\x78\x3a\xf3\x43\x90\x4d\x8f\x47\xa9\x70\xde\x59\x06\xf2\x61\xf5\x36\xd1\x04\xcf\x66\x84\xd5\x9b\x5d\x4c\x82\xf3\x16\xa4\xc7\xa5\x48\xdb\x15\x92\x2f\xb3\x04\xb3\x62\xd9\x0f\x68\x93\x26\x48\x44\x98\xb2\x25\x29\xf2\xde\xf4\x80\x8d\xa6\xf4\x94\xa1\xff\xeb\xa5\xc0\xc2\x1e\xa9\xcc\xfb\x1f\xba\xe5\xd8\x5e\xc4\xae\x43\x2d\xf6\x40\x57\xee\xff\x9c\xc3\x8e\x38\xa8\x2d\x4b\x8e\xbd\xb7\xbd\xde\xb6\xc1\xa0\x48\x70\x36\x20\x5f\x34\x91\x93\x9b\x16\x8a\x7b\x94\x44\xa2\xce\x2f\xf7\x48\xce\x99\xc2\x5f\xce\xd1\x67\xca\x40\x80\xfd\x81\xa7\x42\xa2\x4b\x3c\x3f\xe5\xa3\xd3\x29\x67\x6a\x82\x3e\xc3\xff\xdb\xaf\x5e\x08\x79\x42\xbf\x12\x2c\x2c\x7d\xb0\xfd\x23\x5d\x0b\x3b\x40\x21\x91\x32\x89\xc8\xb3\xbe\xa1\x7f\xfe\x5f\x68\x6a\x46\x3e\x47\xdf\x7d\xf8\xf3\xff\x42\x7f\x84\xff\xfd\x3f\xe8\x8f\x35\x96\x86\xf5\x4a\xcd\x41\x9b\xf1\xbb\xda\x30\x02\x80\x94\x5c\x04\xf9\xaa\x61\x2f\x04\xcf\x4f\xaa\x72\xe4\x27\x1a\x3d\xf1\xd1\x68\xa0\x11\xc3\x24\x90\x0e\xf0\x56\x66\x07\xbf\x6a\x30\xb5\x8d\xe2\x4d\xdb\xc9\xbc\xe1\x93\x9d\xd4\x54\x1a\x71\xe4\x5a\xa6\xb9\x79\x02\x82\xd7\x0a\xad\xc7\xa9\x84\xb7\x48\xac\xa9\xea\x3a\xb7\xc3\x59\x17\x5d\xd1\x01\x67\x41\xf2\x2b\xf3\x38\x81\xb8\x10\x70\xea\x47\x4f\x9b\x00\x33\x0b\xc8\xca\xeb\xb0\x10\xd6\xfd\x66\x62\x75\x61\x6b\xaf\x15\xa7\x2b\x17\x26\x5f\x1d\xa2\x7b\xcf\xc5\x56\xfa\xd6\x13\xa9\x4d\xa1\x59\xd1\xdc\xcc\x35\xdc\xc6\xbe\x51\x43\x71\x24\xb9\xc8\xaa\x77\x1b\xbb\x88\x6d\x81\xba\xda\x8a\x4a\x85\x09\x6a\x6c\x76\xe9\xf5\xd6\x2f\xb3\x57\x56\x2d\x13\x22\x1c\xdd\xd3\x79\x73\x47\x58\xad\x16\x91\x34\x49\xac\x58\x71\x45\x91\xcd\x55\x07\x7a\x9f\xd5\x55\x81\xc1\x21\xdc\x16\xf2\x86\x98\x93\x6c\x6d\xe1\x8a\xea\xf3\x4c\x45\x44\x2e\xf8\x76\xe1\xd6\x09\x65\x0b\x79\x1a\xb5\xc1\x6d\xf5\x32\xf9\x95\xed\x10\xe7\xea\x50\xf3\x38\x57\x16\x8c\x5b\xc2\xf6\x5e\xf1\x0a\xe0\x16\x77\x03\x85\x14\x77\x51\x63\x75\xa1\x23\xc8\x16\x54\xdb\x18\xae\x73\x82\xe7\x1a\xca\x94\xfa\xc8\x08\xac\x69\xe1\x92\x98\x49\x08\x27\xdb\x7a\x1d\x5e\x6f\xa4\x3c\x46\xad\xd0\xa5\x18\x56\x02\xf9\x96\x1b\xd6\xc8\x35\x6d\xca\x4e\x90\xc0\x10\x0c\xac\x26\x7a\x3c\x49\xc4\xe9\x08\x47\x94\x8d\x4f\xbc\xf2\xa8\x50\xaa\xc4\x67\x07\x55\x48\xfa\x80\xe5\xd3\x6e\x03\x5c\xb7\xee\x36\x4b\xe3\xbc\xe3\xa1\x2d\x68\x64\x1c\x2b\x74\xa1\x36\xa4\xc2\xf2\xa9\xae\xa2\xd7\x42\x39\xc1\x25\xab\xcb\x40\xe1\x8a\x10\x2e\x5b\x9f\x2b\x7d\x40\x7c\x7d\x0a\x3a\x95\xb8\xfe\xe7\xb6\xb8\xa8\xcb\x34\xc5\x59\xf5\x9f\x72\x55\xdd\x25\xeb\x97\x13\x2e\xd4\x60\xc3\x7a\xc4\x65\x97\x0a\x23\xa7\x09\x14\x12\xe2\xcf\x44\x3c\x53\xf2\x52\x2c\xeb\xbb\x0e\x2e\x1a\xa3\x99\x17\x4f\x09\x75\x5f\xa7\x33\x0e\xa9\x5b\x23\x34\xc5\x6c\x6e\x08\xa5\x26\x2e\x58\x3e\xc9\xac\xeb\x32\x92\x53\x9c\x24\x27\x48\x90\x54\x9a\x6e\xe4\x92\x24\xa3\x53\xd7\x00\x26\x46\x09\x1f\xd3\x08\x27\x68\x98\xf0\xe8\x49\x9a\xcc\x4a\x36\x36\x44\x6a\x26\x78\x44\xa4\xf4\x24\xab\xbc\x8a\x82\xcd\x6d\x85\x96\xcb\x8a\x88\x29\x65\x54\x2a\x1a\x39\x91\x29\x2f\x86\xf2\x00\x69\x18\x11\x06\x93\x30\x64\x0a\xc3\x72\xb5\xa4\x47\x4c\x51\xd8\x94\xd9\x56\x61\xc0\xae\x6d\xad\x47\x97\x9c\x50\x77\x81\x76\x50\xba\xd2\x61\xc8\x40\x15\x2f\xe4\x8a\x2b\x75\x61\x5f\x83\x6b\xbc\x0c\x05\xee\x8a\x37\x2a\x43\xc8\xec\xa6\x15\xca\x69\x41\x2e\x43\x96\x7a\x51\x90\x5c\xb2\x8c\x84\x96\x55\xd2\x83\x25\xd7\xd4\xcf\x5b\x85\xd3\x1a\x8a\x20\xf2\x40\x77\xba\xb2\xd7\x9e\xb2\x28\x49\xe3\xac\xad\xaa\x16\x01\x9e\x35\x92\x38\xf0\x68\xd8\x6b\x41\xe1\x04\x61\x89\x5e\x48\x92\xe8\xff\x9a\xcc\x8b\xd3\xac\x5d\x88\x26\xc9\xa6\xa5\x0b\x4c\xe2\xa8\x74\x1d\x46\xb5\xae\x2a\xea\x2d\x56\x13\x53\x6b\x62\xca\x95\xe9\x68\x6b\xaa\xa2\x3a\xfb\x96\x29\xa3\x39\x4c\xf8\x10\x6e\x3a\x14\x4c\x75\xf9\xd5\x5e\x3a\x67\x1a\x45\x84\xc4\x24\x36\xfd\x39\xb3\x62\x9e\xf6\x8a\x7e\x5b\x5d\xbe\xb3\x00\x91\x16\x14\x4b\x2d\x1b\xd6\x6a\x4b\xa6\x16\xbb\x1b\x9e\xa1\xdb\x52\x41\x20\x0f\x32\x23\x5c\x2e\x0f\x77\xb2\x70\x84\xaf\x53\x60\xb5\xb4\x89\xfd\x9d\xd0\x9a\x05\x56\x0b\x73\xee\xa0\xc0\x6a\x69\x9f\x35\x39\x23\x7c\xbc\xd7\x5c\x77\xbd\xa9\x2b\xde\x3c\x01\xd1\x14\xa6\x33\xbc\xb3\x80\x82\xee\x42\xce\xab\x10\xb1\x5d\xc5\x63\x4b\x3d\x40\x5f\xb7\x78\x6c\x69\x31\x6d\x2e\x1e\x5b\x5a\x6a\x7b\x8b\xc7\x56\x2c\xb4\x41\xf1\x58\xe3\xdc\x1f\x68\xa4\x6e\x46\x14\x20\xa1\x6a\x98\x8e\xee\xa1\xc4\xc0\xd2\x35\x5e\x98\xc0\x01\xc3\xc6\x1c\x8f\xb6\xf1\x45\xb0\x5a\x9b\x7b\x5b\x17\x8e\x55\x72\x42\xac\x8b\x7b\x99\xf7\xcd\x14\x1d\x59\xd7\xec\x7e\xe2\x5b\xbb\xc1\x0e\x19\xe1\x99\xad\x65\x50\xd7\xe2\xa8\x3d\x59\xdb\x9b\xd5\xe5\x85\xda\x97\x05\x92\xdf\xa8\x72\xdd\xe7\x52\xb7\x90\x09\x7f\xb1\x1d\xbb\x00\x0d\x0d\x52\xd6\xa2\x20\x4c\x3a\xb0\x4a\x5b\x1d\xe4\x28\x53\x64\x5c\xd6\x69\xf3\x4b\x43\x99\xfa\xeb\x5f\x56\x52\x22\x53\xda\xd3\xa9\x87\x5e\xcf\x8e\xcc\xd9\x61\x7f\x23\x31\x8a\x26\x5a\x2b\x92\x5a\x7d\xd1\xdb\x31\x9c\x55\xa2\x29\xa6\x4e\x91\x4a\xa5\x71\x2d\x51\xd9\x67\x85\x5a\xb8\x67\xe8\x23\xb4\x41\xc6\xd3\x99\xd6\xbf\xb2\xfd\x51\x8d\x49\xfd\xf4\xbb\xef\xfe\x4a\xd0\x77\x68\x4a\x30\x2b\xe8\xb0\xa0\x36\x69\xd6\x07\xb5\x23\xd5\x84\xf4\x59\xe5\x51\xa0\xee\x17\xd3\xdb\xcc\xc5\x1b\xf6\xd8\x88\x3b\x9d\x18\xda\x7b\xe2\x68\x82\x64\x3a\x34\xfd\xa9\x3d\x1b\x86\x13\xa4\xaf\xf8\x18\x1c\xd5\xc0\x91\xdd\xa2\x97\xdd\xc2\xfd\xc6\x00\x58\x77\x63\x53\x6e\xdc\x01\x3e\x72\x2a\x49\xa1\xa6\x58\x85\xd3\xcc\x50\x3e\xff\xe2\x4b\x53\x6f\xe8\xc4\xf8\x10\xb4\x7e\x86\xad\x65\x5f\xcb\xd2\x10\x4e\x0c\x5e\xb2\x34\xc1\xc2\x5e\xfd\x3e\xd3\x8a\x86\x20\xcf\x94\xa7\x32\x99\xa3\x98\x33\x72\x02\x98\x90\x46\x13\xe3\x58\xd5\x3a\x0b\xb6\x8d\x52\x9e\xa9\x4c\xb5\x42\x0b\x63\xb9\xbe\x2c\x52\x61\x53\x0b\x6d\x42\x61\x1e\xad\x7e\x13\x78\x4b\x79\xf9\x91\xa8\x99\x16\xe5\x97\x2b\x2e\xd1\xfc\x86\xe5\x8a\x0b\x58\x15\xca\x15\x67\xe5\x8a\x17\xe1\xd2\xc6\x72\xc5\xa5\x33\x6f\x56\xae\xb8\xea\xc8\x37\x28\x57\x5c\x18\xe6\xcd\x94\x2b\x2e\x41\xf4\xcd\x94\x2b\x2e\xed\x2b\x94\x2b\x7e\x7b\xe5\x8a\xb7\x2c\xc8\x5b\x4d\x8b\x4d\x5d\x2f\x45\xd9\x7c\x6d\x24\x7b\x2f\x51\xef\x46\x23\x58\xf4\x54\x0c\x6a\xcb\xd8\xd5\xf6\x45\x80\xab\x89\xd0\x7a\x45\x80\x2b\x55\xf5\x7a\x52\xb7\x6d\x61\x31\x50\x0c\x0e\x5c\x04\xb8\xb0\x81\x10\x5f\xb9\x7e\x7c\x65\x25\xf2\xd9\xb9\xf5\xf2\x5c\xd0\x65\x99\x21\x37\x2c\x03\x5c\x38\x9f\x46\x91\x98\x20\xba\xef\x00\x13\xf7\x2b\xcd\x3f\x14\x2e\xf9\x4a\x59\xde\x87\xa2\xb4\x05\xc9\xb5\x84\xe7\xaa\x14\x1a\x25\xdc\xf7\xff\x07\xcc\xdd\x20\x32\xb8\x04\xde\xcc\xaf\x62\x70\xb1\x01\xaa\x36\xc6\x50\xa7\x95\xee\x26\x51\xd8\x25\x6f\xae\xe9\x62\x76\x8b\xb8\x9f\x91\xa8\xc6\xc6\x4c\xa7\x74\x57\xc3\xae\x62\x64\x59\x0d\x36\x50\xc8\x17\xf2\x52\x35\x7b\x32\xcb\x31\x32\x7e\x29\x1d\x18\xaa\xa4\x98\x37\xc7\x54\x2a\x51\x1b\xdb\xb4\xb0\xc2\x6d\x5c\xa5\xb3\xb4\x71\x40\x8c\x07\xd5\xf1\x66\xaf\x4d\xc9\x94\x8b\x55\x81\x55\x95\x6f\xda\x16\x4b\x9b\xbc\x4a\x66\x13\x32\xd5\x92\xcc\x60\xdd\x41\x9a\x9e\x77\x96\xb4\x6c\x73\xd7\x4c\xa0\x63\x01\x09\x3c\x47\xa8\x7e\x36\x36\x95\x50\x1b\x1f\xf7\xb6\xc7\x6c\x6b\xb5\xae\xe9\x10\x72\x45\xbc\x97\x1b\xdc\xec\x43\x05\x77\x37\xe0\x77\x65\x4c\x47\x16\x52\xb3\x3a\x6a\x63\x49\xbc\xc6\xb2\x7a\x67\xf9\x5b\xb6\x01\xf9\x1a\xae\xfc\xa2\x77\x5e\x53\x42\xbf\xfb\xf4\xfa\x01\x1e\x35\xd5\x7a\x17\xc1\x03\x91\x39\x92\x88\x53\x5f\x33\x28\x2c\x66\x11\x5e\x05\x2c\x71\x1a\xe5\x16\x48\x92\x8a\xda\x28\xd3\x26\x06\xed\x48\xa5\x38\x01\x4d\xc2\xef\x9a\x5a\x3e\xd4\xe1\xbc\x22\xed\xb1\x99\xc7\x84\x32\xf5\x9f\x7f\x5b\xeb\x34\xb5\x6a\x65\xe1\x06\x9d\xde\x70\x14\x11\x69\x6c\xec\x36\x0a\x19\x0f\xf9\x33\x34\x79\xdb\xe6\x54\xf5\x55\xd6\xfb\xd6\x04\x3e\x2b\x81\x1d\xe7\xa8\x6e\xc4\x85\x89\xe0\xe9\x78\xe2\x6c\x48\xfa\xce\xe8\xad\x55\x9d\xe5\xcf\x0b\x36\xf2\xb5\xcf\xf2\xfb\x94\x26\x9b\x59\xe8\xee\x0b\xed\xef\x3e\xf5\x1e\x90\x9c\x64\xb7\x75\x08\xc3\x56\x1e\xec\xe2\xa2\x9b\xcf\x69\xdf\xcd\xfc\x35\x30\xcd\x89\x2b\xfb\x3a\xe2\x49\x02\x9e\x06\x49\xa6\xcf\x44\x54\x4f\x0f\x1b\x7e\xa0\xeb\x55\x6c\xcc\x16\x00\x6f\xe7\x89\x11\x8d\xe4\xaf\x5b\x23\x1a\x4a\xe4\x56\x5f\x0e\x5a\x30\xa1\x6a\x9c\x11\x56\x65\x63\xfb\x65\xb1\xf3\xd0\x91\x05\x0c\xba\xe8\xb1\x9d\x05\x0d\x3a\x90\x1c\x38\x70\x70\xc5\x3e\xda\x1a\x3c\x58\x22\x76\x59\x2c\x5f\xce\x66\x5c\xe0\x90\x51\x7c\x3a\x1a\xc4\x7d\xd6\x29\xe4\x53\xb8\x0e\xed\xc3\x79\x1e\x90\x6d\x74\x08\x9f\x98\x41\x7f\x17\x6b\x58\x01\x37\x9a\xfe\x04\x9a\x8e\x29\x9a\x6c\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x14\x47\xf3\x28\xa1\x91\xa7\x33\x8f\x05\x9e\x4d\xaa\x28\x9e\x3b\xf9\x50\x75\xe8\xb5\xaa\x0e\xd5\x35\x42\x5b\x27\x6e\xdb\xe1\x15\xc3\x53\x12\xaa\x21\xb5\xb1\x1a\xd2\x49\x56\x6f\x83\xe5\x2d\xe5\x5e\xb1\x8c\xc3\xe2\xbd\x0f\x25\x91\x5e\xa1\x24\xd2\x26\x97\x3f\xaf\x77\x54\xb8\xf6\xa1\x4c\x53\x13\xe0\xbd\x7e\x99\xa6\x4c\x08\x68\x55\xe5\x9d\x7a\x7a\xf0\xca\x15\x5d\x16\x17\xf6\x9a\x65\x99\x2a\xc4\xa5\x75\xe4\xc6\x65\x75\x99\x96\xe1\x45\x23\xb8\xbc\x6e\x95\xa4\xf5\x20\xb3\x56\x01\xa4\x4a\xde\xd9\x92\x72\x48\xf5\xc7\xd0\x92\x7b\xb3\xcb\xac\x9e\xf5\x7a\xf6\xfa\x99\x3d\xeb\x28\x98\xeb\x25\xf9\x64\xf8\x70\x5c\x89\x3e\x79\x73\xc3\xcd\x92\x7d\x3a\xce\x07\x4f\x04\x9a\xf0\x24\x76\x45\x38\x32\x68\x65\x13\x64\x99\x10\x19\x80\xdc\x61\xdc\xcf\x48\x64\xb4\xcd\xbc\x11\xdf\xb2\x94\x9e\xec\x10\x61\xb9\x3b\x20\x34\xbb\xb0\xa2\x64\x94\x64\x13\xfb\xc9\x4a\xe9\x42\x16\xcd\xff\x4b\xd6\x58\x80\x10\x78\x0d\xaa\x97\xb9\xd2\xee\xbd\x62\x71\xcb\x44\x0f\xcf\x38\x2a\xaa\x5a\xec\x1a\x3c\x83\x5f\x9f\xa9\x33\xc4\x60\x7f\xc6\xa5\x5e\x4a\xb7\xbb\x46\x9e\xca\x32\xb2\x6c\x10\x0c\xb7\xd0\x31\x71\xfb\xe2\x48\x53\xfc\x65\x30\xc3\x02\x27\x09\x49\xa8\x9c\xee\x2d\x18\xfa\xa2\xe8\xae\xd6\x77\x55\x70\x63\x22\x63\xe9\x74\x68\x50\xd1\x2d\xc4\x36\xd9\x54\x1c\x89\x94\xf9\xa5\xdd\xb2\x83\xc9\x9a\x78\xa6\xc0\x17\xc0\xaa\x16\x4d\xa0\x5b\xf2\x08\x53\xc1\x88\xac\xed\x4d\x4b\xa2\x54\x50\x35\x1f\xd8\x56\xbf\xcd\x2f\xdc\xbd\x7d\xf3\xc2\xbe\xb8\xdc\xc3\xef\xaa\x1a\xb8\xf9\xb2\xd6\xc2\x33\x22\xa0\x3d\x97\x6b\x34\xe5\xb5\x33\xb6\x55\x2b\x48\xd6\xe3\x0b\xc2\xbf\x17\xd8\x76\x5d\xe0\x34\x7e\x19\x78\x19\x65\x83\xa8\x8c\x1c\xab\x2e\x6b\x55\xdd\xad\x65\x9b\xdc\x73\xe5\xa9\x1a\x2f\xfa\x1e\xba\xfb\xd8\xb4\x11\x33\xb4\x5e\xb0\xe7\x0a\x07\x7b\x6d\x7e\x30\x5e\xca\x7f\x45\xb3\x1b\x6f\x9d\xb6\xd6\x51\x55\xf0\xd5\x92\xc5\x76\xbc\xb7\x1a\xac\xd8\x9b\x64\x47\xcb\xd6\x17\x5d\x88\x74\xa6\xe8\x70\xb1\xb4\x8f\xa3\x06\x3b\x68\xdd\xdb\x49\x20\xcd\xdc\xb9\x59\x0a\xd3\x9a\x7e\xbe\x05\x4a\x6c\x77\xa7\xe5\x7f\x5b\x47\xcd\x55\x48\x32\x15\xa6\xfc\x3c\xc6\x9b\x29\x55\xca\x25\x4a\x18\x03\xbc\xc6\xce\xa2\x6d\xfa\xbd\x0b\x77\xc1\xd0\x61\xd9\x98\xa8\xce\xfa\xac\x23\xd1\x0b\x41\x8c\xd8\x12\x1a\x15\xbd\x93\x33\xab\x3e\xf4\x5c\x1b\x12\x3d\x53\x16\x9b\xa3\x85\x07\xaa\x64\xd6\xf6\xcf\xcc\x31\xc2\x89\x24\x27\x7a\x60\xe8\x16\xac\x38\x04\xbf\x62\xf4\x22\xf0\x6c\x46\x44\x9f\xd9\x2c\x16\x70\x38\x71\x9e\x98\xf1\xeb\x42\x7c\x2d\x0c\xc8\x20\xc2\xd1\xe4\x40\x67\x84\x21\x19\x29\x9a\x90\xd8\xe5\x4b\x17\x8f\xc7\xed\xdb\x18\xec\xd7\x38\xac\xde\xc8\xb5\xad\x3b\xb1\x93\x24\x91\xa6\x28\x59\x7b\xf7\x19\x11\x7a\xd5\x1a\x87\x9f\x09\x43\x74\xe4\xd6\x61\x63\x97\xd0\x0b\x78\xe6\x34\xea\x3f\x63\x9a\x98\x02\x04\x6e\x6a\x27\x04\x1a\xf7\x43\x9f\x19\x77\x3f\x8b\x0a\x19\xba\x94\x51\x39\xd1\x94\x3a\x05\x9f\x2c\xa8\x19\x75\x89\x43\xec\x79\x9d\xdb\xdc\xd5\x8f\x2f\xa7\xa0\xcf\x54\x70\x36\x85\x24\x21\x5b\x97\xca\x81\x4f\x12\x95\x5d\x8f\xca\x14\xcf\x95\x12\x71\x1c\xcb\xa2\xf1\xd5\xa8\x95\xf4\x9f\x05\xb3\xcb\x69\x21\x2b\x32\xf2\xca\x2a\x41\x10\xab\xeb\xe8\xb7\x4c\xfe\x0d\xa9\x1d\x8b\xa9\x1d\xd5\xb0\x69\x63\x7a\x47\x76\x89\xd7\x4d\xf1\xa8\x3b\xfe\x5d\x48\xb6\x3b\x4c\xf5\x78\xe5\x9c\x88\xfd\xa4\x43\xbc\x6e\xfe\xca\x3e\x52\x57\x42\x82\xc7\x2b\x26\x78\x34\xb6\xd4\x16\x63\xd3\xeb\xaf\xed\x5a\xc9\x11\x2b\x8a\x59\x55\xcd\xf2\x99\x28\x41\x23\xb9\x0b\xfa\x20\x67\xb8\x61\x54\x1f\x68\x81\xb3\x15\x52\x93\x7e\x20\x73\x82\x42\x9c\x5c\xd6\xe1\x72\x28\x08\x7e\x8a\xf9\xcb\x82\xad\x4e\xfa\xd5\x44\x3e\x73\x2d\xf6\x08\x12\x51\x49\x0a\x91\x3c\x54\x22\x46\xa4\x35\x76\xe2\x3e\x9b\x50\x22\xb0\x88\x26\x90\xdd\x99\x1f\x8c\xc9\x12\x36\x05\x9d\x4c\x2c\x87\xef\xed\x5a\xe3\xd0\x1b\xc0\xbd\x6c\x61\xca\xea\xf3\xd9\x33\xd7\x2b\x99\x9a\x57\x32\x61\xc6\x4a\x19\xbe\x49\xae\xd1\xf1\x6f\x9b\x88\x90\x01\x7b\xaf\xc9\x08\x59\x30\x95\xf7\x46\xc3\x84\x84\x1c\x1b\x42\x52\xc2\x9e\x92\x12\x2a\x40\xbc\x5e\x62\xc2\x46\x26\xbf\xc3\xc7\x4c\xbb\x99\x0f\x11\x37\xbd\x2a\x68\x2d\x1d\x0e\xf6\x7e\xf5\x2a\xf7\xdc\xf4\x06\xfe\x92\x21\x85\x91\x88\x85\xc6\xb3\x21\x89\x63\xa0\xb4\x8a\xdb\x0e\xed\x39\xee\x38\xf3\x80\xe6\xbd\x58\x6a\x64\xc7\x09\x67\x63\x49\x63\x53\x6c\x66\x86\xa1\x57\xb1\x6f\xbc\x80\xe2\x0a\x70\xbe\x49\x42\x84\xf3\x4a\x08\xf4\x8d\xa4\xcc\x56\x93\xcc\xbe\x8b\x39\x91\xec\xbd\x32\xc6\x02\xcc\xe6\xe8\x89\xf1\x97\x84\xc4\x63\x38\xa1\xf2\x62\x4e\x11\x25\x27\x88\xaa\xec\x35\x01\xd5\x18\x78\xaa\xfa\x7a\xed\x10\x6b\x67\x34\x00\x62\xdf\x15\xb6\x7b\x85\x47\x81\xe5\xb7\x67\x08\xf5\x18\x1a\xe1\x48\x9d\x20\x99\x0e\xf3\xf1\x63\x6e\x9a\xcb\x6b\xed\xdb\xdb\x78\x3e\x48\x88\x99\xaf\x98\xbc\xfa\x6e\x38\xea\xa0\xd1\xb5\x93\x50\xbc\x55\x6c\xe1\x33\xde\xa6\xc4\xea\xe7\x54\xda\x20\x0c\xc4\x59\x76\xf5\x6d\x79\xa9\xac\x46\x36\xd4\x3b\x35\xf5\xa6\x19\x8f\x6b\x6d\x9d\xa5\xad\xac\xbb\x96\x3c\x10\xd4\x0a\x4a\xd6\x51\x05\xe3\x1a\x70\x6b\xa9\x49\x2a\x41\xf0\xd4\x3a\x07\x34\xab\x01\xb1\xc6\x84\x81\xea\xd5\x53\x61\x24\xcc\x75\x8e\xf8\x8a\xb2\x27\x7d\xba\x79\x55\x70\x0e\xf5\x92\xf5\xcc\x55\x87\x36\xd3\x1c\x8f\x5c\x70\x66\x1c\x84\x5b\xc9\x9d\x74\xcc\x70\xb2\xa6\x8d\x63\x01\x72\x8b\x3e\x3d\x27\x67\x59\x71\x41\x4b\x11\xc6\xd8\x87\xcc\x8c\x6b\xd9\x90\x4a\xfb\xf5\xe5\x3d\x8c\x62\x32\x23\x2c\x26\x2c\x9a\x03\x8a\x30\xa8\x1c\x24\x18\x4e\x10\x86\xf7\x70\x72\x86\x2e\x4d\x7e\x51\x26\xe1\x59\xb6\x0e\x0c\x7d\x8a\x19\x1d\x69\x3d\x01\x8c\xb0\x76\x95\x7d\x66\x96\xe9\x7c\x20\x24\xb7\xae\x66\x10\xab\x3a\x19\xcd\x41\xae\xb7\xac\xca\xcc\x8a\xef\xa3\xe5\x0c\x07\x66\x5b\x76\x3a\x7a\x38\xd7\x83\x41\xa6\xc3\x53\xf8\xbb\x90\x70\xe7\x0a\x15\xe5\x55\x74\x48\x42\xc0\x1c\x68\x3d\x5e\xc0\x18\xeb\x0a\xeb\xed\xc2\x6f\xb7\x22\x8f\xc5\x9b\xa3\xa0\xd4\x4c\x29\xa3\xd3\x74\xea\x39\xef\x4c\xc7\x86\xc8\xda\x2f\x4d\x26\xca\x4c\xeb\x01\x91\x2b\xde\x8e\x34\x73\x65\x73\x34\xa6\xcf\x84\xf5\xd9\x8c\x53\xa6\xce\xd0\x35\x57\xc4\x6b\x91\x61\x4a\x67\xf1\x99\xa2\x53\x53\xed\x55\x10\x7d\x0f\x4c\x51\x70\x28\xb4\x39\xc1\xea\x04\xc5\x29\x5c\x55\x46\x94\x26\x1d\x9a\xe3\x2a\x38\x19\x88\x0f\x17\x7d\x66\x38\xdd\x08\xd3\x24\x15\xc4\xca\xac\xd8\xe4\x05\xe5\x4b\xce\x57\x66\x2b\xc1\x79\x9b\x98\xd2\xf1\x44\xe9\x23\xd2\x32\x9e\xf5\x37\x4e\x34\x35\xe2\x7d\x36\x24\x08\xa3\x19\x97\x54\xd1\xe7\xcc\x7f\x49\x47\x08\x4b\x09\x16\x94\x33\x74\x59\xb0\xff\x53\x09\xaa\x77\x5d\x5c\x31\x65\x03\x6b\x7b\xae\xcf\x47\xda\xfa\x20\x0b\xb3\x58\x28\xe3\xa1\xe4\x49\xaa\x7c\x17\x6c\xf5\xd9\xe6\xa6\x71\xd7\xb8\x00\x0c\xc4\x7c\xd4\x67\x0e\xaf\xe5\x19\xea\x48\x24\xb9\x3e\x25\x69\x8e\x32\x12\x54\x11\x41\x4d\x15\x2b\xa2\xcc\x21\x64\xf7\x34\xbb\x03\x53\x2c\x9e\xb4\x08\xe5\x5b\xe0\x4d\x4d\xd5\x82\xb5\x63\x68\x24\x24\x28\xeb\xe5\x1f\x07\x98\xfe\x11\xe3\xec\x94\x91\x31\x5e\x75\x22\x7d\x56\x38\x12\xf4\x0d\x1d\xe5\x0a\x69\x9d\xcf\xd1\x83\xdd\x00\x22\x9f\xea\x4e\xc9\x4c\x5c\x77\x48\xa3\x84\xe3\x15\x6e\xe3\x51\x7e\xe9\xd1\x3f\xf8\xd0\xac\x51\xeb\xfd\x5c\x81\x14\xa8\xd5\xab\x11\x17\x64\x82\x59\x7c\xe2\x0e\xab\xb8\x36\xe0\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x5d\x11\x65\x62\x6a\x51\x61\xe6\x9d\x85\x55\xdc\xec\x51\xe4\xe7\xb0\x16\xaf\xc8\x46\x83\xde\x2f\xc6\x00\x61\x48\xde\x7c\x66\xaf\xb8\xa4\xd3\x59\x92\xe7\x74\x79\xb6\xd1\x91\x16\xb1\x1c\x8d\xe4\xcf\x60\xba\x72\x5a\x1b\x70\x75\x7b\x72\x1a\xcf\x2a\x56\x9e\x11\x52\xe0\x1a\xce\xe6\x65\xda\x80\x7a\x24\xec\x1b\x49\xf4\x9f\x8a\xe4\x6a\x9f\x11\xd6\xfb\xcc\x89\x20\xdf\x02\x95\xb1\xc3\x7a\xc6\x33\x2d\x42\x9b\x32\xb7\x16\x7e\x28\x32\x4e\xee\xc2\x3d\xb1\x97\xc1\x3d\x5a\xc9\xa8\x14\xd5\x62\xf6\xf7\x14\x2a\x74\x5d\x6e\x59\x76\x9f\xb2\x98\xd4\x36\xb3\x6a\x44\x35\xea\x78\x8b\x21\xa8\x83\x4d\xfb\x4f\x3c\x4c\x88\x24\x48\xbd\x64\x85\xe2\xb4\x5e\x05\x26\x4b\x41\x12\xf2\x8c\x73\x1e\x97\xcd\x65\xc9\x65\x84\x65\x4d\x7b\x18\xa8\xb6\xa6\xd7\xbf\x79\xe2\x74\xb6\xbe\x1b\xbd\x94\x67\x9c\xd8\xc4\x15\xeb\x2b\x97\xf5\x07\xd6\xbb\xdc\x2a\x86\xd4\x8e\x52\x05\xcf\x7a\x11\xc3\xcd\xfd\x23\x99\x57\x43\x64\x45\x11\xc3\x65\xd9\xe8\x19\xd8\xd7\xb0\x55\xdf\xe6\xef\x2c\xc2\xb8\x16\x72\x3f\x16\xb6\xfc\x0a\x49\x54\xb7\x0b\x1d\xb8\xe1\xa3\x4c\x47\x23\xfa\x05\xb4\x5a\xc7\x49\x9c\xe6\x11\x09\x2e\x35\x15\x03\x59\x05\xb9\xc3\x33\x8e\xe4\x6d\x12\xaa\x2a\xdf\xd4\x5a\xd6\xda\x18\x5d\x0b\xed\x9f\x52\x22\xb6\x82\x77\x86\xaa\xeb\x84\x23\x7a\xb7\xa4\x5a\x47\x74\x83\x2a\xdc\x30\x26\xc9\x1f\xf5\x01\xd7\x80\x6e\x75\xf9\xf3\xca\xd7\x86\x86\xf8\xae\xbf\x10\x9f\x6a\x2f\xb5\xa9\xe5\xf1\x69\x59\x6c\xb2\x6b\x4a\xa4\xe9\xdb\x89\x2d\xb0\x8e\x6d\xe0\x54\x96\xea\x8c\x5d\xcc\x88\x71\x8c\x98\x9e\x55\xca\x76\x5a\xf0\x34\x75\x3b\x18\x65\xe3\x3e\x73\xb0\x95\x27\xc8\x84\x89\x97\x08\x6a\xa1\xb6\x3d\xf6\x5e\xcd\x10\xbb\x99\x49\xd5\xf8\xd5\x19\x91\x52\x33\x46\xa9\x04\xa6\xcc\xfa\x70\x1c\x7c\x64\x9f\xa1\xd3\x72\x9c\xfa\x09\xd8\x11\x4e\x5c\xb6\xeb\x49\xbe\x40\xd9\x67\x26\xe3\x04\xfd\x05\x7d\xa3\xf0\xd8\x70\x09\xa8\x5e\x89\x13\xa8\x7b\x09\x5a\x82\xd5\xca\xbd\xe4\x80\xec\x46\xd2\xf8\xdb\xf3\x65\x73\x1a\x1b\xc2\x37\x30\x0c\x5c\x72\x0d\xc3\x1c\x40\x74\x94\xff\x41\xe2\x6f\x97\x8d\x94\xbf\xf4\x44\xe6\x27\x65\x20\xd7\xf3\x8d\x07\xbc\x55\x84\xe6\xbe\x18\x07\x2c\xba\xb9\x93\x12\x0f\x49\xf2\x73\xbe\x51\xb4\x94\x14\x7d\x4f\x19\xde\x8e\x06\x55\x2e\xaf\x59\x04\xfa\x70\x5e\xd7\xb7\xae\x82\xf4\x6c\x5c\x71\xa5\x63\x64\x59\x82\xf4\x74\x56\x62\x77\x5d\x0d\x31\x44\x3d\x4e\x48\x32\x43\x31\x1d\x81\xeb\x4d\x01\xbe\x64\xc5\x63\x4d\xbf\x1f\xad\xd0\x4c\x53\x66\x0a\x01\x9b\xa8\x8f\x17\x7b\xd3\x2d\xc9\xc8\x07\x3f\xeb\xb3\x9e\x7a\x2f\x91\x54\x82\xb3\xb1\x56\xa6\xe3\x67\x2a\xf3\x46\x76\xfa\x42\xa6\x53\x22\xec\x14\x54\x1a\xa9\xdb\x36\x81\xc2\x8e\xb1\xe9\xb5\x69\xd6\x07\x82\x8f\x6b\xb6\xa8\xbf\x34\x7a\x85\x5e\xa5\x74\x51\x53\x15\x61\xef\xf6\x70\x4b\xb4\xf3\xc0\xa6\xcb\x9f\x7d\xeb\x24\x9a\xe6\x86\x4c\x47\x2f\x3f\x94\xcd\x98\x16\xea\x4b\x4c\x98\x6b\x33\x84\xa6\x8c\xc0\x75\x4d\x48\x4d\x9a\x93\x9e\xc7\x39\xb6\xcc\xe2\xd6\x52\xb1\x4a\x1b\xb4\xab\x36\xda\x93\x6f\xc2\x24\x14\xec\x1f\x52\xe1\xff\x8f\xbd\x77\x6d\x6e\xdc\x48\xd2\x85\xbf\xef\xaf\xa8\xf5\xbe\x11\xdd\x7d\x96\xa2\xdc\xf6\x99\x09\xaf\x36\x1c\xf1\xd2\x6a\xb5\xcd\xb1\x5a\xd2\xe8\x62\xcf\x9e\xe1\x04\xbb\x08\x14\x49\x8c\xc0\x2a\x18\x05\x48\xcd\xd9\x9d\xff\x7e\xa2\x32\xb3\x2e\xb8\x91\x80\x28\xb5\xbd\x7b\xe6\xc3\x8c\x5b\x04\x50\xf7\xca\xca\xca\x7c\xf2\xc9\x22\x89\xe8\x14\x50\x39\x59\x71\xe9\x5e\xdd\x3d\xb5\x87\xde\x49\x74\xc4\xd3\xe6\x0c\xef\xf0\xa9\xe3\xfb\xbb\x0d\x9d\xb4\xdd\xb0\xec\x9d\xc4\x2e\x91\x4a\xd3\x21\x69\xea\x6a\x3d\x3f\xf5\x9f\xef\x6e\x91\xaf\xc7\x4c\x80\x9d\x0b\xd8\x35\x68\xa0\xe0\x29\xb9\x8b\x74\x41\xb3\x14\xbe\x84\x87\xda\x96\xae\x8f\x33\xa9\x96\x90\xc8\x30\xed\x42\xae\x67\xb9\xda\x24\x43\x32\x69\x20\x98\xfb\xda\xfa\xfe\xf7\x78\x52\x2c\x42\x00\xcc\x6f\xb8\xbc\xa8\x46\xe0\x64\xe0\x64\x52\xdb\xb1\x87\x36\x3c\x7b\xd2\x80\xef\x43\xbe\x4c\xd8\x06\x61\x47\x34\x7a\xc0\xa9\x2d\x20\x38\x15\x06\xf9\x91\x6f\x3d\xfd\x4d\x57\x8e\x04\x39\x68\x39\xdc\x99\xd7\xa7\x72\xa9\x06\x6c\x4e\x4f\x57\x43\xbb\x8f\xdb\x35\x1b\xec\x3f\x87\xc4\xc0\xd9\xc7\x31\xed\xb3\x1f\x4f\xdb\x16\xf5\xe0\x9d\x69\x47\xf0\x25\xfd\xb0\xa1\x10\x09\xbe\xf9\xfb\x90\xb3\xb5\xba\xb5\x82\x12\x19\x34\x67\xf7\x50\x7d\xa8\xac\xc3\x67\x1f\xa3\x5a\x39\xf0\xcc\x07\x8c\x5d\xb5\x97\xfa\x19\xc6\x8c\x36\x49\xaf\xc1\x3a\x90\x9f\x6b\x58\xae\x07\x5b\xa3\xcb\xec\x70\xf0\x4d\x6e\xdf\x60\x80\x34\xd3\x74\x6b\xf0\xd1\x27\x44\x03\xb0\x4c\x52\xa1\xc7\x6c\xda\xe2\xc4\xb5\x41\xf8\x0e\x34\x8e\xe1\x80\x56\x7b\x2a\xf3\x24\x48\xfe\x6e\x75\x24\x96\x40\x12\xba\x10\xc8\x12\x38\x2d\xc0\x7d\xba\x56\x8f\x18\x81\x97\x27\x46\x66\xa1\xb2\x5a\x80\x4b\xcb\xc8\x82\x84\x3c\x42\xe8\x50\x73\x1f\x28\x8c\x8b\x30\xd7\x1c\xe7\x0c\x0b\x2d\x10\xf5\x29\x7d\x8e\x34\x9e\xfd\x39\x0e\x6c\xad\xb7\xe6\x8b\x3e\x97\x02\xfb\xee\x01\xad\x73\x5a\xfe\x70\x7b\xe4\x7b\xf8\xd4\x1a\x76\x39\x5b\xe6\x02\x6e\xd9\x1b\xc7\x9b\x86\x89\x13\x94\x82\xf3\xee\xe6\xdd\x8f\xc7\x77\x53\x26\x8a\x88\xa5\xc9\xbd\x98\xc9\x48\x3f\xc0\xa5\xef\x97\x52\x14\xe6\xe7\x0e\x23\x50\xb2\x11\x52\x83\x24\x48\x8a\x9e\xf7\x35\x3b\x30\xe6\xbf\xef\xaa\xdf\xf7\xb9\x95\x3b\xae\x4f\xb3\x76\x6d\x4e\x43\x58\xa6\x90\xb6\x0d\x87\xb6\xc5\xae\xf9\x1d\xfa\x5b\xcf\xda\x32\x9e\x3f\x21\x24\x5a\xfe\xb5\x94\x03\x95\xae\x53\xff\x51\xd0\x8a\x0e\x9d\x6e\x93\x71\xc8\x67\x32\x2c\xd6\x1a\xbf\x69\x2d\x7d\x9f\x10\xf1\xd4\x37\xd6\x7f\xee\x93\xc3\xb3\x22\x17\x02\x44\x88\x5b\x4f\x74\xd6\x13\xdb\x9a\xeb\x58\xf0\xd1\x78\x26\x3f\x58\x54\x9d\xff\x55\x7b\x5f\xc3\x66\x11\xa4\x79\xa9\x96\x02\xc5\xc6\x89\x76\x3f\x40\xd2\x3e\x5d\xa6\x05\x66\x2d\x5e\x26\x92\xa7\xae\xa1\xf8\xa4\x4d\x4a\xe4\x5c\x46\xeb\x43\xdd\xe4\xc9\x72\x2e\xd2\x21\x9a\xe8\x74\x79\x96\x6a\xb3\xbe\xa3\xfb\x8e\xdd\xf9\x94\xbc\xdc\xbe\x33\xe8\x71\xa2\xdc\x9e\xcc\xbb\xd9\x79\x8a\x59\x83\x05\x03\x1c\x56\x3d\x42\x1e\x49\xc0\xcc\x2c\x92\xa6\x8e\x30\x2c\x0c\x4d\x75\x61\x67\x50\x0b\xe3\xc5\x4c\xe6\xa5\x84\x84\x62\x0e\x95\xc9\x99\xcf\x09\x13\x59\x8c\x04\x21\x56\x56\x46\x4c\x60\xca\x15\x7c\xd9\xdc\xcf\x54\xa9\xc1\x1f\xb5\x11\x85\x39\xa0\x5e\x43\xae\x7f\x84\x45\x8f\x58\x96\x27\x1b\x70\x29\xeb\x37\x2d\x53\x77\xca\x0b\x9e\xaa\xd5\x73\x5b\x95\x9e\x18\x62\x63\x9b\xc1\xa6\xef\xcc\xe0\xaf\x84\x14\x39\x74\x14\x6c\xd9\xad\x5b\xb8\x87\x95\xbb\x43\x72\x83\x27\x91\x9c\xbf\xda\x59\x2c\x78\x59\xa8\x8d\xb9\xdf\xf2\x34\xdd\x8e\xd0\xeb\x2c\xd8\x9a\xeb\xb5\x9d\x68\x74\x18\xf6\x39\x9b\x68\x70\x4f\x79\xb4\x16\x37\x05\x2f\xca\x56\x64\x56\xad\x95\x5f\x08\x59\x6e\xbe\x38\x61\x7f\xf6\x7d\x3c\x9d\x9c\xfe\x70\x36\x7f\x37\xbd\x99\x7c\x77\x7e\xf6\x2e\xe8\x0f\x3d\xf9\x30\xbd\xb9\x69\xfe\xfa\xc3\xf4\xb6\xf9\xe3\xd5\xe5\xd5\xdd\xf9\xe4\xb6\xad\x94\xf3\xcb\xcb\x1f\xef\xae\xe6\xef\x27\xd3\xf3\xbb\xeb\xb3\x96\x4f\xef\x6e\xbb\x1f\xde\xfc\x38\xbd\xba\x6a\x2b\xf5\xec\xa7\xe9\xa9\xa9\x8e\x7e\xff\x4b\xb0\xed\xc0\x75\x6e\x46\xa0\xa3\x7f\xf5\x9d\x79\xc4\xaa\x2f\x9e\xb0\xbb\x7a\xde\x2b\x0a\xc4\x42\x12\xb1\x47\xae\x8d\x70\x83\x38\x40\x30\xc1\xfa\xd1\xea\xfa\x14\xb1\xca\xd1\x5a\xb0\x54\xa9\xfb\x32\x23\x99\x87\xd6\x76\xa9\xd0\x22\x24\x74\x50\xda\x0f\xd3\xdb\x93\x66\xfe\x2d\x57\x58\x40\x97\xea\x8c\xcb\x8f\x1c\xa9\x03\x40\xce\x82\x91\xc5\xe6\x65\xf2\xae\xeb\xa0\x06\x37\x65\xbb\xea\xc1\xd2\xb8\x2c\x6a\xd5\xc4\xb1\x27\x59\x82\x8e\x05\x05\x57\x27\x7c\xd7\x68\xba\xe1\xc0\xc4\xa3\x6c\x21\x22\x5e\x22\xa2\xdb\x1c\x60\x79\xae\xf2\xb0\xc1\x7e\xa1\x3c\x5f\xa1\xb4\xc0\x5a\x0b\xac\xcd\x99\xe9\xb8\xbe\x4f\xb2\xac\x32\xed\xb4\x10\xf7\xcf\x3c\xa4\x7a\x7b\x48\xa2\x42\xc4\x5f\x34\xf5\x22\x1f\x83\x8f\x7a\xb3\xd9\xd5\xa6\xc9\xc1\x5e\x4f\xe4\x0a\x6d\x09\x36\xe9\xde\x7a\xeb\x50\x48\x00\x7a\xf5\x30\x60\x48\x02\x62\xce\x1a\x97\x14\x2d\x01\x58\x11\x2f\xd8\xa3\x00\x3a\x9a\x92\xb2\x8e\xe2\x9d\xde\xc8\x0c\xa8\x0e\xf1\x00\x36\x87\x70\x85\xa6\xa6\x53\xc8\x3f\x87\x22\x6f\xbe\xd7\x62\x98\x13\x6f\x2f\xa7\xc8\x3b\x2c\x14\xa4\xbe\x8d\x17\x80\x16\x3f\xa7\xd3\xaf\xe5\xa4\xdb\x73\x08\x99\xe3\xa0\x4f\x7b\x2c\x8f\x5b\x25\x39\x4a\xff\x86\x55\x12\x68\xec\x1d\xab\x5b\x15\xf3\xad\x59\x1c\x00\x7a\xd0\x65\x96\xa9\xbc\x60\x1d\x65\x20\x04\x12\xdb\x07\x67\x19\xf5\xc3\x89\x48\x28\xc4\x68\x2e\xba\x25\x0f\x5b\x3f\x6a\x29\x1a\xd7\xc0\x77\x16\x04\x17\xc1\x05\xd3\xe5\xcc\xdc\x54\xae\xea\x95\x15\xda\xa6\x54\x1f\x12\x9d\x99\x19\xc5\xa1\x6f\x0a\xe7\xb6\xda\x2f\x6d\x09\xad\x53\x9e\x8a\x65\x31\x1f\xe8\xec\x82\x12\x65\x17\x1b\x60\xb2\x5a\x3f\x43\x89\xfd\x6f\x1f\x5f\x11\x28\xda\x5c\x39\x02\xcb\x43\xae\x54\x81\x7a\xaf\xbf\x1b\x31\x3b\x9a\x60\xb6\xa0\x4a\x29\x8e\xde\x29\x97\xe6\x2e\x81\x58\x32\x17\x72\x3e\x9e\xc9\x33\x00\x9f\xfa\x0b\x8e\x0d\xaf\x87\xdb\xc5\xde\x7b\x45\x25\x61\xfd\x67\x8d\x74\xe9\xce\x0e\xe0\xd7\x3d\x42\x16\x45\xba\x75\x1c\x51\x31\xab\x7c\xd7\x67\xf7\xa0\x35\xdd\xaa\x96\xd8\x61\xdc\x3a\xba\x10\x19\x59\xfc\xb1\x9f\x1e\x25\x0d\xde\x66\x53\xd5\x98\xfd\x6c\x2d\x4a\x10\x34\xe4\x82\x68\x2c\xee\x35\xe5\x5b\x4b\x28\xde\x36\xb0\xcf\xc1\xd1\xfd\xdc\x61\x44\xbb\x07\xd8\x91\x71\xb6\x8c\x72\xe5\x62\x2f\x25\x5a\x7a\x07\xc0\x90\x4e\xdd\x47\x37\x62\x37\xa2\xf2\x3d\xa4\x70\x27\x54\x3a\xe8\x2c\x32\xdd\xfe\x33\x4e\x16\xb2\x78\x58\x90\x06\xa5\xd4\x26\xcf\xac\xd9\x3f\xe0\x59\x44\x92\x0f\xb6\x4c\xd2\x14\xf4\x80\x31\x9b\xc8\xad\x25\xc1\x30\x47\xa1\x05\xa7\x26\x2b\xa9\xf6\xc5\xe7\x77\x2c\xa6\x28\x58\x4c\x37\xdd\x8b\x09\xf1\x1f\x9e\x03\xe9\x79\x56\xd4\x33\xf0\xe1\x19\xd9\xc2\x9b\xd9\x54\xfa\xb3\xe0\x0d\x30\x0a\x84\xa7\xf9\xe7\x8a\x2c\x6b\x34\x37\xf8\xf0\xef\xed\x4d\xff\xbe\xe4\x39\x97\x05\xc4\x4b\x91\xd2\x9a\x8b\x20\x6c\x5b\x7c\x02\x6c\xab\x44\x03\x33\xfc\x14\x4e\xae\x85\x12\x20\xfc\x2c\x89\x47\x2c\x19\x8b\x31\x64\xf6\xcd\x8d\x2e\xb1\xf0\x6f\xae\x8d\xe6\x30\x93\x8d\x38\x90\x31\x9b\xa4\x5a\xd1\x17\x42\x46\xa9\xd2\x00\xed\x5d\x84\xa4\xeb\xb0\xf2\xc9\x5d\xb5\xd8\xc2\xfd\x06\xa6\xd2\x17\xaf\xe8\x41\xf0\x21\x24\xa8\x05\x5f\x7b\x0a\x3b\xdd\xff\xfe\xaf\x8a\xe8\x63\xbb\xf0\x17\x2f\x98\x0a\xac\x71\x0c\xbd\xd8\x24\x61\x9a\xe9\x5d\x13\x04\x6f\xc0\xc4\xf8\xf8\x9c\x80\xbd\x8e\xbd\xe6\x05\x4b\x05\xd7\x05\x7b\xfb\x66\x10\xe6\xc4\x76\xd0\x4b\x57\xda\xbe\x3e\xc8\xde\x86\x69\x86\xca\x9d\xab\x18\xf2\x0e\xf3\xbc\x60\x9c\x49\xf1\x18\x46\xe5\x28\x08\xa4\xb2\xc9\x84\x45\xc0\x0b\x82\x58\x7c\x64\x35\x82\x48\x57\xbc\x32\x75\xc8\x11\x9b\x2a\x83\xdc\xb2\xd4\xac\x96\x95\x35\x72\xa8\x36\x80\xb1\x9b\x97\x7c\xc0\xe4\x9a\x17\x33\x49\x92\xd5\xc2\x51\x82\x10\xf9\x49\x9a\x56\x83\x14\x39\xc4\xe1\x4a\xd3\x61\xd3\xfa\x78\xec\x06\xe8\x02\xae\x5f\x2e\x52\xac\x62\xff\xf3\x9b\x05\x63\x19\x1c\x57\x64\x58\x76\xab\xb6\xd3\x66\xb7\xfe\x8c\x4a\x70\x4b\xf5\xe7\x6a\x95\x44\x3c\xed\xa1\x0c\x8b\xb6\x26\xef\xd9\x58\x4d\x5f\xc1\x0e\xdd\xf8\xb9\x2b\xe8\xaf\x2a\xb7\xdb\xdd\xe1\x98\x7d\x54\x2d\x66\xfc\x8e\xc9\x0d\x74\x8b\x43\x2e\xe0\x2e\x64\xf1\x73\x79\x92\x2b\x4d\x9f\xc6\x40\x98\xb0\x5f\x0a\x7a\x02\x02\x2b\x3a\x30\x6e\x2d\x0e\xe2\xa1\x83\xf0\x4b\x02\x91\xa2\xe0\xa3\x37\x3b\x3c\xba\xd9\x7f\xef\xee\x8f\x7c\xff\x6d\x57\x1c\xb8\xae\xd9\xf1\x6e\x65\x6f\x12\xff\x95\x47\x10\x25\x09\x35\xd9\xf8\xcc\x26\x99\xa5\x4d\x81\xc2\xc1\x49\xd0\xaa\x1e\x66\xb9\x8a\x84\xd6\x63\x76\x06\x07\x0d\xfd\xc9\xf8\xd2\x3a\x3a\x82\x97\x67\xd2\xdc\x4c\x2c\xf7\x5d\x50\x7e\x75\x89\xb7\xed\x00\x24\xd2\x3d\xc8\x47\xb4\xd9\x9f\xdf\xae\xeb\x36\x61\x79\x7c\xa1\x0c\x48\x89\xc5\xce\x56\x27\x2c\x56\xd1\xbd\xc8\x8f\x73\x11\x27\xfa\x04\x7c\xf6\x45\xa7\xb3\x70\x63\x6e\xdb\x07\x6b\x1a\x5d\x00\x84\x3d\x84\x02\xa7\x58\x3f\x85\x14\xd8\xd0\xa4\x11\x4b\x96\x70\x9d\xb0\xf1\xac\x18\xc0\x65\xa9\x02\x85\x2c\xf2\x2d\xa2\x9d\xad\x29\xab\x36\x10\xf6\xa6\x61\x94\xb6\xae\x48\xec\xfc\x39\xb0\x3d\x4f\xec\x36\x46\xfc\x10\x90\x01\x3b\x55\x28\x8a\x03\x43\x71\x91\xf1\x62\xad\x81\xf6\xa3\x3a\x06\x74\xe9\x82\x4f\xcd\x08\xf1\x0c\x70\x10\x68\xa5\xf0\x1f\x39\x72\x0a\x5d\x24\x69\x3a\x93\x18\xb8\x01\x0c\x1d\xaf\x5a\xd9\x85\xcc\xa7\x23\xc6\xe3\x98\xfd\x7f\xaf\xdf\x9f\xff\xc7\xed\xd9\x7c\x7a\x01\x36\xef\xe9\xf9\xd9\x9b\x91\xfb\xf1\xf2\xee\xd6\xfd\x8a\x16\x96\x07\x91\xb3\x0d\xbf\x87\x2b\x9e\xd4\x82\x02\x4f\xc5\x4c\x86\x2d\xb5\xbc\x4b\xe6\x89\x16\x16\x41\x4b\x6a\x8a\xa3\x9f\xa6\x39\xec\x22\x6d\x25\x3a\xce\x01\x97\xdf\x6b\xf7\xc9\xee\x35\x68\x17\x8f\xab\xc2\xaa\x81\x10\x5f\xcc\x75\x40\xc4\x43\x77\x5f\xbf\xe0\x84\x5c\x25\xb2\x0b\xe7\x27\xe4\xc3\x4b\x2a\xf1\x3f\x8a\x2d\x00\xcd\xaf\x78\x92\xf7\x5e\x7b\xed\x4c\x8a\x76\xc7\x98\x7b\x3a\xd7\xf5\x4d\xa5\x51\x17\xc6\x48\xe5\x4e\x2c\x69\x1b\x89\xee\xaf\xde\x5d\xa2\xe6\x14\x9f\x8a\xdc\x32\x7c\xb9\x58\x58\x4b\x83\xe9\x0e\x1a\xbf\x06\x67\xf2\xf6\xf2\xdd\xe5\x09\x13\x29\x5f\x28\x08\x83\x24\xa8\x91\x2d\x82\x06\x2c\x52\x9b\xa0\xa0\x0a\xbb\xdb\x88\x65\x9e\xdd\x2d\x34\xa2\x8d\xb1\x8c\x3d\x2c\x6f\x99\xca\x9b\xdc\x68\xcf\x7b\x05\xa4\xce\x5e\xa9\xbc\xcf\xf1\x6f\x5e\xc3\xb8\x90\xcc\x5c\xe4\x6a\x92\x97\xce\xe6\xa5\xe0\xc0\xfc\x41\x6e\x21\xb2\xe5\x13\x30\x36\x4d\x2b\xb9\xb8\xcd\xc6\xd1\x63\x72\xed\xfb\x37\x95\x64\x3f\x7e\xa3\xd9\xa2\x2c\x66\xb2\x5a\x86\x92\x6c\xf2\xf3\x0d\xfb\x8e\x17\xd1\xfa\xcd\x4c\x42\x5c\xe2\x8f\xdf\x74\xd0\x50\x0e\x66\x76\x36\x63\xf2\x8e\x17\xfc\x5c\xf1\x38\x91\xab\x36\x5a\x67\x9f\x7b\xf0\xec\x76\x72\xc2\x6c\x0a\x18\x1f\x45\x5b\x58\x3a\x95\xa0\x20\x10\xc8\xd0\x11\x2b\x45\x40\x94\xcb\x2a\xf5\x2d\xde\xcc\xe0\xc0\x9a\xc9\x5b\xe4\xb3\x36\x52\x35\x29\x58\xa6\x28\xff\xa5\xb9\x95\x21\xd3\x37\xb7\xd1\xe5\x22\xdd\x32\x33\x3a\xb0\x8c\xdd\x64\x90\x3e\x06\xfa\x4c\x53\xd8\xcf\x24\x5c\xd0\x5d\x5c\x6f\xaa\x22\x9e\x02\xd6\xef\x28\xb0\xe9\x99\x6b\xbb\x2a\x81\x5b\x07\x40\x36\x72\x5b\x85\xe4\x3a\xba\x27\xa7\x94\x85\x13\x05\x06\x00\x98\x47\xf2\x43\x6e\x94\x91\x38\xc8\x63\x0b\xc6\xb7\x14\x47\xc7\x7c\xe8\x78\x6d\x71\x58\xcc\x53\x17\xf2\xae\x4a\x69\x79\xdc\x22\x30\xdf\xcb\x2d\xc0\xc2\x21\x61\x9d\x02\x48\x89\x97\xce\xb4\x28\x1b\xb3\xe8\xce\xc4\xe0\xb3\x99\x44\x04\x62\x65\x5e\x42\xe6\xc3\xa0\x76\x25\x01\x20\xd9\x8c\xb3\x2f\x33\x02\x4c\x92\xae\x9f\xe5\xe2\xc8\x45\x8f\xc7\x95\x31\x35\x27\xec\x98\x5d\x87\xd7\xeb\x58\x45\xe5\xc6\x66\xa5\x80\xc8\x73\x42\xd6\xd1\x21\xea\x56\x08\x1e\xec\xfb\x56\x3c\x30\xdc\x15\x02\xa8\x77\x7a\xdf\x8f\x71\xc1\x4c\xc2\x4f\x9b\x9a\x7a\xb7\xe2\x0b\xb2\xe3\x30\x34\x1c\x16\x34\xcf\xaa\x25\x55\x4a\x3b\x98\xd3\xe1\xc2\x33\xe7\xab\x1c\x94\x2d\xf1\x29\x53\x60\xe4\xc6\xc0\x6a\x15\xbf\xd2\x6c\x7a\x65\x34\x20\x73\xe3\x75\x7b\xb0\xd4\x05\x82\xd6\x30\xfe\x19\xbe\xc6\x30\x84\x11\xfb\x92\xcd\xca\x2f\xbf\xfc\x3a\x62\x9f\xec\x3f\x7e\xff\xbb\xdf\x7d\xfd\xfb\x21\x61\x2a\xf6\x42\x0e\xe5\xfa\x31\x72\xa9\x48\xab\x2a\x51\x38\x03\x4d\x49\x75\xc0\x2c\xd0\x06\xec\x1a\xfe\xa7\x30\x64\x07\x98\x24\xbe\xa2\x1d\xae\xc3\x9d\xc9\x2a\x5b\xd3\x23\x09\xb4\x28\x46\x55\x09\xe1\x94\x5d\xd2\xe8\xff\x79\x07\xd1\xeb\xdc\x6c\x95\xa7\x61\xa7\x92\xd4\xa9\xd7\xa6\x10\xf6\x9a\xec\x7f\x05\x38\x10\xdf\xd8\x03\x4e\xa5\xb1\xc8\xb1\x4d\xce\x64\xe7\x0c\x89\x20\x1c\xc4\xa7\x2c\x55\xb1\xa5\x96\xf7\x3c\x0a\x09\x28\x08\x67\x9f\xb8\x91\xdc\x23\xa2\x20\xa5\xb8\x55\xf0\xbc\x2c\x79\x24\x28\xc6\xfa\xf5\xa7\x13\xf3\xdb\x88\x6d\x4f\x00\x9c\x3a\x62\x7f\x3b\x21\xa6\x41\x9e\x17\x73\xf3\xd3\x1b\xab\x6b\x53\x11\xd0\xe8\x44\xb3\x57\xc7\x0f\x3c\x3f\x06\xf1\x7c\x8c\x2d\x7a\x45\x92\xd5\xe5\x54\x0e\x75\xf3\x54\xa9\x7b\x02\xee\x36\x3e\x3c\xb6\xa4\xb5\xb0\xbc\x9d\xdf\x04\xa7\xde\x91\x1a\x15\xec\x08\x5e\x10\x6c\x9c\x2d\xd8\xf8\xaf\x5a\x49\x36\xde\xf2\x4d\x4a\xbf\xda\xa7\x84\x2b\xe6\x9a\x62\xed\x62\x87\x11\x4a\xb7\x68\x29\xfd\x2e\x55\x0b\xe8\xd5\x07\xdb\x53\x44\xe6\x42\x43\xfd\xe9\xe3\x0f\x2c\xea\x88\x25\xf1\x00\xee\xc5\x8d\x2a\xf0\x15\x0a\x9b\x6d\xf6\xea\x93\x6b\xd2\x9f\xd0\x2f\x0c\x83\x62\x83\x03\xd1\x38\xec\x50\x71\xa6\xd0\x4f\xec\x35\x89\xa0\x37\xe6\x8c\x21\x18\x34\x0e\x43\x5b\x05\x5b\x57\xc1\x7f\x04\x15\x24\x92\x61\xb8\xe7\x8e\x2f\xff\x76\x3c\x1e\x8f\xdd\xd7\xc0\xf8\xf3\x7f\x58\x52\x68\x91\x2e\xb1\x24\x7b\x82\x6d\x67\xf2\x83\x4d\x5a\x65\x8d\xd7\x9e\x0e\x3b\xcb\x55\xa1\x22\x95\xb2\x23\x6f\xd0\x8d\x55\xa4\xd9\xbf\x18\xb5\x36\x18\x4a\xf8\xd1\xdc\xe3\x3a\x28\xf4\x31\x4b\xc6\x67\xda\x54\x64\x10\xaf\x6f\xab\x90\x01\xd7\x5d\x6c\xb9\x0e\x83\x9c\x61\x2d\x98\x95\x73\x4c\x2c\xb9\x79\x6e\x5e\x16\x9f\x0a\x78\xd4\x41\x42\xdc\x0a\x91\x6f\x3f\x29\x1b\xe2\xd6\x73\x11\xe3\xb2\xee\x18\x00\xe2\x0a\x25\xc9\x80\xfd\x1c\x85\xee\x13\x73\xb8\xc8\x30\x8d\x92\x2e\x37\x1b\x9e\x6f\x8f\xfd\x6e\x6b\x2e\x4e\xcf\x52\x0b\x32\x26\xb5\x03\x00\x2e\xdc\x94\xb6\x16\xa1\x18\x48\xbd\xb4\x27\x9a\xdb\xbb\x11\xe4\xc1\x0e\xd8\x9e\x84\x8c\x54\x4c\xeb\xda\x47\xb5\x56\x35\x16\xf7\x4e\x53\x57\xb1\x88\x18\xed\x8d\x71\xb2\x40\xfa\x33\x7a\xc3\x7e\xdc\x21\xbe\xd5\x5c\x17\x46\x50\xae\x06\xb8\x47\xa7\x97\x37\xf6\x9b\xfe\x87\x2e\x8c\x43\x55\x65\xe7\x69\xc8\x2d\x2c\x57\x2c\xe7\x8f\xfe\xf8\x05\x6c\x07\x5a\x67\x4a\x17\xf3\x8b\x7f\x9f\xaa\xab\x24\x35\xa7\x16\xac\xf1\xf1\x4c\x56\x7e\x1e\x31\x91\x26\x9b\x44\x3a\x6c\x1d\x0a\x77\xb5\x44\xed\xf9\x3e\x29\xcc\x94\xe9\xf8\xde\x48\x30\xcb\x89\x19\x5c\xa9\x26\x72\x6b\x97\x8e\x73\x4c\x91\x05\xa2\xd4\xa6\x5d\xfe\x8e\x0e\x6c\x00\x49\x2c\x8e\x48\x21\x4d\x82\x85\x07\xfb\x77\x26\x4d\x69\x76\x2f\x79\x18\x72\x50\x5e\x50\xdc\x91\x4d\x26\x14\x48\x00\xa8\xa3\x82\x25\x76\xfa\x6f\x8b\x82\x72\x26\xcb\xcd\xa1\x41\x2c\x04\x4b\xfe\xb5\xcc\x74\x57\xb9\xb0\x27\x15\x05\x44\x09\x59\x6e\xec\x86\x1a\xb0\xe2\xce\x48\xfd\x89\x45\x94\x72\x64\xf9\x33\x05\x01\xf2\x71\x84\x0e\xd2\x2c\xa8\x0b\x8f\x17\xac\x06\xf3\x13\xa6\x42\xbe\xc6\xbf\xdf\x30\x3a\x1b\xbe\x1c\xd1\x79\x9e\x6b\xc7\x9e\x86\x73\x0e\xf9\xbd\x45\x8c\x36\x74\xc8\xe8\xb0\xe2\x79\x8c\xd6\xf2\xf0\x56\x81\x91\xc1\x46\xff\xda\xaa\x92\x3d\x26\x7a\x3d\x93\xb7\xca\x1a\x1c\x99\x54\x2e\x27\xc6\x08\x2e\xa3\x8d\xfa\xb8\x06\x21\x00\xad\x6e\x5b\x01\x46\x08\x1f\x14\xc3\x04\x20\xda\xb9\x54\xb1\x38\x8c\xfc\xf1\xd6\xfb\x2a\xac\xff\x3a\x17\x18\x67\x06\x27\x45\x57\x98\xae\xd0\x7a\xa0\x6d\xbe\x3e\xf1\x70\x0e\x51\x39\xa6\x56\xf5\x38\x28\x33\x49\xc8\xab\xea\x4e\x35\x28\xc5\xde\x38\x83\x28\xe3\xca\xd8\xbb\x4c\x13\x87\x4e\x42\xd4\xc2\xf4\xd8\xeb\xec\xc7\xbe\x47\x30\xec\x0e\x60\xcc\xd9\x2a\x57\x65\xe6\x42\xf1\x6d\x18\x21\x4e\x03\xe9\x34\x53\xb9\x54\x27\x74\xa7\x3a\x4f\xe4\x3d\xae\xf8\x97\x9a\x23\x4c\x26\x22\xe2\x0a\x05\xae\xcd\xf0\x0f\x7d\x38\x62\x89\x8c\xd2\x12\x0e\x3e\x5d\xf0\xe8\x1e\x13\xa2\x74\x19\x7d\xcd\x37\xf3\xfd\x41\x9a\x1d\x1a\x53\x99\xa6\x54\xad\x3f\x40\x81\x64\x0e\x4c\x40\x0f\x09\x67\x9c\xdd\x5d\x4f\xdb\xeb\xbe\x4f\x9a\xce\x9c\xf6\xd3\xb3\xba\x40\xe0\xff\x7e\x4c\x06\xe1\x2e\x6b\x94\xc2\xa2\xb2\xd4\x9d\x71\xa9\x8b\xb0\x1e\x17\x69\x61\x2e\x10\xf1\x75\x8b\x69\x7f\xf0\x3a\x5d\x65\xe5\xdc\x0c\x54\x3a\x04\x20\x60\x5a\xf1\xfd\xd5\xdd\x24\xf8\x6e\xd7\x52\xf9\xfe\xea\x8e\x05\x75\x20\x59\x74\x2a\xa2\xc2\x21\x8d\xc7\xec\xd4\xe7\x70\xa8\x6b\xe6\xb1\x78\x48\x22\x0c\x9d\x1d\x19\xad\x68\x26\x81\x1a\xdd\xdc\x75\x8e\x2c\x9f\x26\xfb\xfe\xea\x8e\x58\x38\x3d\x6f\x0e\xa6\xa3\x00\x6a\x8c\x61\xc7\x4e\x8d\x94\x5c\x2a\x79\x84\x94\x41\x79\xec\xbd\x1d\x23\xb8\x5c\x47\x3c\x2b\x4a\x52\x30\x1e\xde\x8e\xed\x9c\x5c\x7b\x4f\x88\x69\x96\x9a\x49\xa3\x2b\x61\x8c\x01\x64\x4e\x33\x9d\x6e\x4e\x6d\x6d\x50\x0f\x01\x07\xc0\xa0\x1d\x24\xfc\x13\x17\x39\xc8\xe5\x96\xf1\x7c\x91\x14\xb9\xb9\x86\xe1\xc7\x23\x64\x38\x5b\xdb\xec\x58\x38\x6f\x5e\x33\xa2\x64\x77\x30\xc1\x89\x2c\xf4\x4c\x06\x01\x30\x2e\xda\x18\x83\x17\x12\xc9\x80\x4a\x18\xb0\x37\x96\xda\x34\x4a\x55\x19\xdb\x63\x35\x77\xc9\xf3\xb6\x19\x2a\x51\x33\x09\x8c\x27\xe6\x6c\x55\x46\x0d\xf5\x67\xff\x09\xfb\x28\x1f\x92\x38\xe1\x47\x85\xd0\x29\x3f\x2a\xfe\xf7\xc7\x51\xed\x27\xfe\xf6\xcb\x2f\x3f\x62\x1e\xc0\x2e\x3a\x87\x80\xb5\xe9\x40\x03\x4f\xbb\x9f\xc2\xf1\x1f\x9a\x55\x7a\xc0\x3c\x9d\x27\xf7\x82\x7d\xc4\xe9\xfe\x48\xe4\xc7\x4f\x9b\xb6\x99\x6c\x9b\x37\xf6\x94\x69\x03\x2a\xfa\xf6\x79\x63\x3b\xa6\xed\xed\x6a\xfc\xbb\xd5\xc2\xcc\xd6\x57\xab\xf1\xdb\x2f\xe1\x9f\xb5\x39\xda\xb7\x79\x5d\xf4\x4c\x5b\xb3\x5b\x04\x51\xcb\xb6\x74\xb2\x68\x26\xf7\x0b\x23\x36\x4c\x16\xc1\xaa\x6d\xdb\xf8\xbc\x10\x87\x46\xcd\x22\x27\xf6\x00\xf4\x75\x83\x6c\x7c\xa7\x47\xf0\x40\xa6\x6e\xcf\xb2\x0d\x70\xcf\x6e\xca\xf0\x10\x80\x0b\x0f\x07\xf0\xfc\xc0\xfb\xfd\xfa\x53\x7b\x77\x4f\x77\x76\x37\x33\x15\x62\x00\x33\xcd\x8d\x79\xbd\x67\x23\x2b\xaf\xee\x6a\xe3\x23\xc7\x6c\x84\xcd\x24\x38\x31\xdd\xd6\x87\xec\x22\xbb\x1c\xd1\x64\xa2\x5d\xd8\xa0\x6b\x89\x85\x56\xba\xfb\xb5\xad\x77\x45\x7b\x29\x4c\x76\xe8\xbc\x6e\x2d\x0b\x3f\x30\x45\x1c\x08\x85\x33\x57\xea\xf9\xa6\x37\xc1\xba\xaf\xf8\x1d\x7d\xfc\xa1\x41\xb7\xee\xd4\xcb\x0f\x10\xf1\xed\x48\xb6\x36\x5c\x1a\x6d\xcd\xd6\xda\xe1\x58\xc2\x5b\xfe\x93\x9a\x74\x97\x3d\xa9\x41\x58\x63\xbf\x60\x2d\x5b\x95\x2d\xe5\x11\x7d\xab\x3c\x45\xdf\x41\xb1\x06\xb3\xb2\xcf\x9f\x6b\xc5\x9c\x37\x2f\x63\xae\xdd\x94\xe7\x2b\x34\x7a\x69\x51\xe8\x37\x2d\x33\xec\xe3\xd8\x0e\x98\x61\xab\x76\xcd\x87\xf1\x87\x58\x7d\x0c\x4c\x2a\xbb\x76\x9a\x6b\x65\x35\xd9\x86\xbb\x69\xd9\xfa\x43\x26\x79\x1f\x5c\x17\xa9\x1c\x33\x53\x01\xcf\x6b\x37\xbf\xd6\x81\x34\xb3\x17\x7c\xe3\xd8\x63\xa8\x34\x1b\xf2\x8b\x8d\x5b\x08\xc8\x13\xd3\xdd\x86\x5e\x1c\xb2\x7d\x9b\x40\x4c\xb7\x5d\x2d\x98\xc9\x89\x7d\xc5\xb3\x5d\xeb\x04\xad\x2c\x18\x8e\x58\x2e\x30\xc2\x05\x6c\x66\xdc\x8f\x3a\x75\xae\xa3\x13\x43\x03\xfd\x6b\x5d\xb8\xd3\x22\xf7\xa7\x91\x67\x43\x0d\xfb\xd1\x51\x73\x3f\x36\xe4\x9d\x12\xdd\x76\x91\x8a\xb2\x63\xb9\xa7\x62\x95\xef\x63\x96\xdc\x55\xa9\x45\x5c\x98\x5d\xbc\x02\x5e\xb3\x20\x8d\x73\x57\xed\xfd\xaf\x49\xd4\x0d\xa2\xe1\x46\x0c\x05\x44\x25\xa4\x5b\xbf\x49\x3c\x65\x7b\xad\xb2\xa6\xac\x28\x0e\x3a\x0b\x12\xbe\x99\xe7\xaa\x3b\xb9\x74\x8f\xf1\xb2\x45\x54\x3c\x06\x6b\x4c\x36\xb9\x65\xbf\x94\x3c\xc5\xa3\x55\xd2\x66\xb0\xcd\x06\xe3\xcb\x57\xbf\x67\x13\x38\xfb\xd8\x07\x90\xca\x00\x19\x83\xd2\x0a\xc5\x92\x4d\x26\x72\xad\x24\xef\xcc\xb2\x7e\xff\x8d\x9e\x53\xa6\x58\x73\x31\x57\x65\x33\x2b\xec\x80\x9e\xb4\x94\x16\x76\x8a\xb3\xfb\x72\x21\x72\x29\x30\x93\x3c\xbc\xc7\xec\x7b\xbd\x9a\xab\x78\x59\xac\xbf\x9a\x47\x69\xd2\x3b\x7d\x2d\xc4\xab\x4e\xcc\x67\xa7\xf8\xd5\xae\x0e\x54\xca\xaf\x34\x5d\x32\x7c\xc6\xf0\xd9\x98\x7d\xc7\xa3\x7b\x21\x63\x96\xa5\xe5\x2a\x21\xda\x1b\xbc\x6c\x24\x55\xb3\x42\xb5\x63\xa8\xd9\x60\xf9\xe6\x10\x9c\xc9\x0d\xbf\xc7\x94\x32\xa4\xc2\x9a\x7b\x4b\x17\x69\xa2\x33\xd4\xcc\x93\xe6\xda\xdd\x3b\x5b\xee\x34\x6e\x16\x53\x5f\x7b\xba\xc4\x68\xbd\xc7\xb5\x22\x8c\x53\xc5\x4e\x34\x60\xe3\xba\xd5\xda\x60\x27\xb3\x0c\x32\x5a\x44\x65\x6e\xde\xa0\xc6\xe0\xee\x05\x07\x22\xa4\x45\x2a\x25\xe3\x40\x70\xf6\x4a\xb3\x32\xb3\x42\x04\x3c\x5b\x29\xe0\x8c\x70\x0a\xcc\x83\x2c\x89\xee\x11\xd9\x0a\xb1\x1b\xcc\x75\xaf\x91\x7a\x9a\x09\x0f\xb1\x6c\x13\x0d\x4b\xa4\xf7\x39\x0c\x35\xd3\xc8\xaa\xb4\x67\x9d\xf6\x8c\x4b\x29\xd6\x42\xce\x9f\x90\xdc\xa7\xff\xa4\x55\x62\x50\x48\x09\x77\x1e\x42\x37\x84\xa5\x4c\x88\xcc\xdb\xdf\xf0\x5d\xe6\x8a\x64\x59\x53\xe2\x13\xcd\x34\x2f\x12\x6d\x64\x59\xeb\x88\x7b\x52\xa5\x43\x46\x9d\x0f\x63\x72\x6a\x61\x71\xaa\x8d\x85\x8b\x73\x1b\xb3\xf7\xe0\x57\x09\xee\x25\xca\x71\x22\x75\x09\xac\x62\x2d\x3a\xc9\x81\x9f\x03\x20\x6a\x7b\x10\xbc\xbf\xd3\x5d\xe6\x62\x1a\xc7\x6c\xe2\xfd\xd9\xc8\x0a\x85\x9e\xea\x3d\x3d\x12\xa9\x16\x4f\x59\x7c\xbd\x5c\x3f\x80\xf9\x82\x05\xc4\x40\x8f\xd3\xe6\x77\xcf\x12\xef\x9a\xf9\x08\xb4\x01\xfc\x5e\xc8\x5d\xf6\xfd\xfe\x2d\x44\x07\xcc\x4e\x83\x84\xf3\xec\x28\x74\xee\x3c\xa5\x81\xfd\xb7\x9d\x27\xe2\x4a\x96\xc7\x66\xc8\xcd\x25\x28\xba\xa7\x60\x45\xf4\xef\x11\x95\xd7\xe3\x5a\xe9\x70\x9f\xd9\xf9\xc3\x7b\x74\x5e\xba\x9c\x5d\x10\xec\xe9\x06\x18\x51\x9e\x52\x85\x4c\x5f\xd0\x6a\xb7\x49\xd1\xa8\xe4\xe6\x9b\x59\x11\x0a\xc3\x00\xb8\x08\x5b\x54\xcb\x6e\x96\x59\xf9\x5c\x39\x61\xf6\xd3\x6b\x37\x47\xb8\xd1\xa0\x1f\xbf\xd1\x97\x50\xdf\x73\x90\xd1\xa0\x95\xf1\xf9\x03\xc1\x9e\xe8\x02\x77\x10\x67\x6b\xfd\x54\x10\x24\x42\x07\x65\xa6\x62\xe6\xd7\x7b\x57\xa4\x8d\x94\x0a\x21\xae\xbf\xc1\x6e\x05\x8d\xeb\xdd\xb7\x7d\x5b\xed\x43\x80\x93\x63\x8b\x32\x49\x63\x64\x29\x0c\x34\x54\x65\x55\x20\x48\x8f\x04\xfa\x48\xa2\xdd\x01\xd7\xb2\xe8\x7f\xfc\x46\x5f\xa9\xf8\x90\x85\x35\x9c\x89\xb6\xb9\xae\x7b\x84\xd1\xe8\x10\xcb\xb4\xd9\x3f\x12\x99\xea\x0e\x80\x88\xe7\xba\x9a\x0f\x78\x47\x83\x01\xf1\xb6\x28\x97\x37\x90\x7c\xb4\x8b\x94\x29\xc8\xcb\x67\xa3\xac\xcd\x3c\x9b\x6a\x5c\xcc\x5f\xd7\xa4\x10\x80\xca\xeb\x23\x9c\xfd\xe1\xe6\xf2\xe2\x68\xc3\x73\xbd\xe6\x40\x7a\x61\xcb\x1a\xd9\x7c\xee\x68\x2d\xb0\xc0\x8e\x44\xce\xe4\x11\x5b\xa9\x11\xc2\x88\x4e\xd8\xba\x28\x32\x7d\x72\x7c\xbc\x4a\x8a\x75\xb9\x18\x47\x6a\x73\xec\x87\xe6\x98\x67\xc9\xf1\x22\x55\x8b\xe3\x5c\x40\x20\xc9\xd1\xdb\xf1\x57\x6f\x61\x66\x8e\x1f\xde\x1e\x03\x78\x64\xbc\x52\xff\x72\xfe\xd5\xbf\x7d\xfd\x7b\x53\x70\xb6\x2d\xd6\x4a\x9e\x10\x46\x69\x67\xd9\x47\x78\x4d\x38\xc6\x4f\x6a\xb5\xfc\xdb\xf8\xcb\xb0\x19\xf4\xea\x46\xc5\x22\xd5\xc7\x0f\x6f\xe7\x76\x62\xc6\x59\x47\xc6\x8c\x7f\x84\x5e\x7c\x86\xd0\x8b\xfb\xa4\xf8\x47\xe8\xc5\xaf\x1a\x7a\xd1\x5f\xe5\x72\x32\x06\x38\xb2\xbd\x7c\x34\xbf\x3b\x19\x69\x3d\x11\xfb\xe4\x50\xcb\xe1\x10\x06\xc6\x1d\x70\x44\x0c\x4c\x60\x57\xeb\xae\xbb\xcb\x74\x58\x1c\x87\xe6\xa9\xe9\xbc\x5d\x0c\xe2\x01\x01\xa0\x63\x12\x81\xad\x10\x2d\xa4\x19\x4f\xda\x02\x2a\x82\xbc\x3d\x07\x0c\x21\xe6\x11\x69\x27\x3d\xeb\x93\x6e\x8b\x32\x4e\x89\x78\xfe\x2c\x89\xb7\x5a\xeb\x40\x4c\xe8\xe0\xf2\x1b\x7a\x77\x0f\xd5\x98\x50\xd2\x07\x8d\xe8\x0b\xa6\x48\x79\xee\xdc\x28\xd4\xdd\x27\xe6\x45\x49\xf1\x6b\x8b\xe9\x56\x8f\x36\x1f\xca\x73\x64\x11\xf1\x78\xf5\x7e\x19\x44\x70\x91\x42\x5b\x6c\xbb\x3a\x9a\xb1\xe6\xfa\x69\xc1\x01\x13\xa4\x20\x76\xbe\x60\x44\x56\x27\xda\x56\x68\x4f\x63\xcb\xbe\x64\x0e\x77\x4b\xf2\x98\x95\x79\xa6\xb4\xd0\x63\xf6\x5e\xe5\x48\xeb\x45\x9c\x3b\x3e\xe0\xe1\xfa\xfd\x29\x7b\xfb\xcd\xbf\x7d\x3d\x93\xaf\x5b\x94\x21\x38\x44\x55\xbe\xa2\xf8\x0b\x50\x81\x36\x5c\x17\x22\x3f\xce\x97\xd1\x31\x1e\x1d\xc7\xe6\xfb\x23\xaa\xf4\x48\x2d\x8f\x5c\x8a\x84\x23\x62\x8b\x1f\x6f\xe2\x37\x5d\xc8\xc4\x76\x85\xfb\x57\xbb\xf4\x4c\x3a\x14\xf3\xb6\xf9\xdd\x2f\x58\x2b\x5b\x08\x15\x11\xd2\x42\x34\x68\x2c\x48\xc5\xa8\x96\x2e\xa9\x0f\xc6\xf9\x62\xfe\x2f\xb5\x6c\xf9\xc7\x77\xa9\x5a\xe8\x37\x8e\x00\x96\x6b\x5b\x87\x67\x64\x6c\x93\xdb\x8d\x3d\x77\xc8\xed\x9b\x86\xe2\x25\xcd\x6a\x56\x26\x86\xd3\x36\x64\xe0\xdb\x85\x86\xd7\x05\x91\x8f\x8a\xe7\xaa\x94\x36\x6b\x86\x92\x42\x2d\x01\xe6\x04\xd7\x24\x8b\xd2\x04\xcf\x02\x60\xff\x1c\xf7\x54\x2e\x32\xd4\x3e\xc0\x07\xd6\x3d\xdc\x07\x66\x8e\xd9\x37\xce\x2f\x91\x39\xe6\xd0\x71\x27\xc1\xf8\x2b\x0d\xf8\xa1\xa1\x14\xb8\x95\x86\x20\x90\xcc\xfb\x7b\xd1\x06\x4e\x0e\xf8\xcc\xd5\x3e\x49\x43\xc6\x73\xd0\xe0\xc5\x51\xa1\x8e\x80\xb4\x0f\xa8\xe0\x30\x97\x53\x17\x04\x09\x50\x1a\x43\x8e\x7b\xf3\x7e\x8f\x76\xe2\xad\xed\x53\xd0\x50\x52\x58\x35\x32\xa0\x13\x24\x3d\x91\x52\xe4\xe4\x01\xde\xab\x19\x0c\xc4\x70\x84\x53\xb9\x1b\x91\xee\xcd\x14\x61\x9e\x1d\x17\x8f\xc8\x03\x21\x30\x66\x70\x35\x59\xab\x8d\x32\xba\xae\x2a\x75\xf0\x10\xaf\xb6\xa0\x4c\x74\x2a\xe6\x1b\x9e\xa1\xbe\xfa\xeb\xf5\xc6\x6c\x2d\xf3\x08\x4d\xd0\xe1\x4b\x83\x52\x97\x2d\xaa\xc9\x9a\xf6\xb4\xdf\x65\xd9\xd9\xbd\x6e\x00\x21\xb4\x01\x97\xdf\x9a\x3f\x08\x9b\x3b\x23\xf9\x9b\xb9\xf4\x9a\x25\xe5\xae\x91\x4e\x03\x41\x40\x1b\x72\x51\x87\xf0\x4d\x7b\xea\x76\xb2\xc5\x94\x9b\x81\x73\xe0\x82\xac\xfa\x4c\x00\x97\x18\x76\x64\xe3\x8d\x8e\x5a\x03\x8e\xba\xf6\x25\xd8\xd5\x4a\x73\x33\xb1\x7c\xe9\xc3\x9a\x7a\xe3\x0a\x20\x6a\xf4\x66\xbb\x3d\xdd\x24\x44\xa7\xe1\x18\xa3\x40\xb0\xba\x45\x17\xc8\x79\xf8\x66\x84\xc4\x75\x43\xc6\x0e\x2a\xc1\xc5\xd9\x18\xc1\x60\x2f\x74\x0d\xe0\x30\xfb\xeb\x2e\x73\x66\x1b\xbe\x1d\x19\x7a\x7d\xf4\xb2\x69\x65\xc3\xb2\xe0\x3e\x7c\xf0\xc9\x91\x01\xfe\xbb\x28\xe1\xf9\xc5\xe5\x6d\x88\x6c\x4a\xb0\xb7\x47\xd1\x5a\x44\xf7\x60\x4d\xc3\x23\x0f\x37\x03\x05\xe3\x03\xdc\xda\xa7\x54\x2d\x94\x05\xca\x6c\x5d\x96\x19\x97\x69\x49\xe5\x2c\x4e\x74\x96\xf2\x2d\x40\x12\x24\xc6\x29\x7a\x38\x83\x0b\xf0\x35\xa2\x60\x9f\x33\xa1\xff\x4c\x9b\x59\x99\xf8\xef\x86\x8e\xa5\x07\x9e\xfb\xc1\x6c\xca\x03\xa6\xc5\x86\xcb\x22\x89\x66\x72\x23\xb8\x0c\x11\xac\x04\xc9\x30\x83\x1c\x2b\x41\xf9\x12\x96\x4b\x11\x15\x9e\x70\x19\x2e\x21\x6e\xa4\xf6\xed\xc1\x61\x7d\x77\x3b\x6f\x67\xd7\x7f\xb0\x69\x9f\x93\x0d\xe0\xa3\x69\x0d\xd1\xd1\xf8\x44\x57\x23\xa4\xe0\xa5\x23\xd7\x5e\x6a\xe1\x2f\xbb\xa6\xd8\x42\x14\x8f\x02\xf8\x84\x88\x00\xa1\x4d\xc7\x3f\x38\x0d\xd3\x21\xc1\x83\x13\xc7\x3f\x48\xf4\xf2\x0d\x02\x61\xda\x60\x21\xf0\xd2\x11\x1f\xca\x1a\x83\xe1\x2b\xa2\x64\x00\x53\xe0\x2b\x32\x6a\xbe\x82\x63\xda\xdc\x82\xf3\x07\x11\xcf\x64\x95\x56\x92\x74\x46\xbf\xe1\x98\x4f\x30\xfa\x3c\xd2\xc6\x8e\x71\x2f\x47\xcf\x19\x50\x69\x79\x12\x6d\x47\x3a\xb0\x23\xe1\x29\x76\xfa\x25\x6f\x55\x36\xd7\x72\xdf\xcb\xb0\xcf\x41\x4a\x09\x04\x29\xdf\x70\x05\xfd\xe3\x16\xa5\x23\xcd\x43\x46\x5d\x07\x16\x27\xa3\x75\xc3\x0c\xde\x56\xc6\x4c\x5a\x36\x99\x65\x99\x22\x4b\x7a\x57\xcc\x0e\x71\x68\xda\xc8\xd7\x5f\x2f\x02\xda\x19\x5d\x59\x90\xb3\xd5\x81\x74\x02\xe0\x3e\xca\x3a\xbb\xea\x85\xd4\x25\xa8\x14\x36\x5d\x23\x78\x25\x56\xa2\x80\xd3\x3c\x2e\x53\x04\x6c\x82\x3b\x05\xf8\x38\x79\x9a\xb2\xa4\xd0\x33\xe9\xe8\x43\x31\x30\x07\x24\xac\xf5\xb7\xc4\x74\xe5\x82\x2a\xa0\x58\x78\xcc\x25\xe8\x61\x49\x94\x14\x8d\x70\x87\x6d\x98\xe2\x2c\xcb\x04\xc7\x58\x7e\x9c\xb6\x99\x0c\xef\x5c\xf5\x49\xa0\xc0\x77\xc8\x8a\xff\x1c\x31\xe8\x3b\x0c\xb7\xa6\x8a\x27\xa1\x6c\xb0\x77\xe6\xc2\x65\xb3\x97\x63\x6b\x89\x3f\x88\x50\xc9\xe6\x56\x53\x68\xeb\x40\xf1\xf7\x56\x88\xe9\x89\xca\x94\xe7\x18\xcc\xb4\x2c\x53\x96\x2c\x83\x44\xec\x30\x07\x48\x1e\x69\xa6\x2b\x52\x70\x56\x5b\x17\x8a\xe6\x1b\x11\xf0\xd6\x90\x79\x27\x0d\x10\x3f\x98\x11\x03\xa1\x24\xa6\xac\x37\x63\xf6\xce\xd3\xe3\xe2\x0c\xc3\x9e\x08\x48\xa7\x13\x8d\xe2\xcf\xb5\x37\xa0\x5c\x80\xde\x99\x26\x2a\x69\x76\xa4\xdb\x75\x1d\x33\x08\xc9\x6b\x86\xc1\x89\x6c\xea\xa2\xdd\x08\xfb\x56\xca\x15\xf3\x69\x0d\x64\xe4\x36\x44\x47\x03\xed\xa9\x30\xb0\x91\x21\x61\xf7\x13\x1a\xea\x08\xd1\x5b\x1a\xbb\xd9\x91\xf7\x1d\xe6\x71\x60\x53\x83\x2c\x8a\xc3\x1b\x1a\xac\x9c\x10\x3c\xd6\x67\x64\x57\xbc\x18\x8a\x24\x73\x81\x6b\xc3\x1b\xda\x8a\xda\xeb\xd3\x4c\x90\x1e\x03\xdb\x39\x31\xdf\x3c\xb1\xa1\xba\x5c\x1c\xa1\x80\x76\xf9\x90\x40\x54\x08\x1e\xad\xab\x1c\x12\x96\xe9\xd9\xf5\x00\x62\x08\x61\x3f\x0e\xa7\xbf\x98\xf8\x35\x07\x89\x24\x99\x69\xfe\x98\x5d\x4a\x81\x38\x4f\xb5\x0c\x0e\x15\x6a\x00\x65\x9c\x84\x64\x3b\x4e\xca\x2d\x4c\xc3\xe4\xbd\xa5\xd6\x32\x5b\x6e\xc4\xb8\x2f\x1d\xa4\x1e\x2e\x1b\x94\x22\x1d\xba\x64\x5b\x6a\xaa\x03\xd4\xcb\x7e\x04\x15\xed\x77\xfe\x00\x2e\x3d\x5c\x02\xb4\xf5\xa3\xff\xb4\xec\x8c\x7b\x70\xb7\x38\x1b\xec\x50\x5d\x37\x0c\xc1\xcf\xfb\xc6\xf7\x6a\x5d\xc5\xcc\x0e\x48\x10\x79\x77\xf1\xee\xec\xfd\xf4\xa2\x9a\x7f\xf1\x8f\x77\x67\x77\xd5\x5f\xae\xef\x2e\x2e\xa6\x17\xdf\x87\x3f\xdd\xdc\x9d\x9e\x9e\x9d\xbd\xab\xbe\xf7\x7e\x32\x3d\xaf\xbd\x67\x7e\xaa\xbe\x34\xf9\xee\xf2\xba\x96\x47\xb2\x25\x09\xe4\xed\xf4\xc3\xd9\xbb\xf9\xe5\x5d\x25\x15\xe5\xbb\xff\xb8\x98\x7c\x98\x9e\xce\x5b\xda\x73\x7d\x76\x7a\xf9\xd3\xd9\xf5\x9e\x84\x91\xbe\xbf\xad\x43\xfa\x1c\xd8\xc2\x27\xe7\x15\x9d\xb0\x65\x9e\x08\x19\xa7\x5b\x8c\x14\xb1\x37\xdb\x1a\xf4\x3b\x3c\x7b\x93\x8d\x50\xe5\x21\x01\x1f\xb7\x6b\xc1\xd4\x83\xc8\x81\x05\x0c\x4b\x23\xca\x10\xcf\x38\x50\xaf\x35\x17\x45\xde\xf4\x0a\xec\x8c\xaa\x2b\xf2\xad\x8b\xdb\xdc\xd5\x1c\xcf\x20\x49\x95\xb0\x4c\xe4\xbb\xda\x02\x9a\x51\x5e\x66\x45\xb2\xe8\x0e\xe1\x19\x1c\x78\xdf\xf7\xee\x8d\x7c\xc7\xed\xe4\x70\x17\xed\x82\xb1\x12\xc9\x72\x08\x4c\x1e\x4a\x78\x6a\xba\x5c\xf7\xb5\x85\x16\x67\xe5\x22\x4d\x22\x96\xc4\x75\x7b\x0a\xf1\x61\x80\xc9\xb8\x4e\x8b\x9e\x89\x1c\x54\x55\x73\x03\xc8\x72\x71\xc4\xcb\x62\x8d\x14\x9e\x14\x38\x43\x49\x6c\x66\x52\x8b\x28\x17\xe8\x0b\x10\x1a\x8c\xb4\x98\x0e\x35\xa8\x09\x1a\x43\x0c\x36\x31\x90\xe5\x8d\x83\x14\x35\x1d\x3e\x02\xfc\x12\x4b\x1f\x60\x24\xc5\xf7\x77\x0e\x0d\xb5\x38\xc1\x84\xab\x01\x2c\x0c\x4e\x78\x7c\x68\x93\xaa\x9a\x7e\x1b\x49\xed\x92\x8a\xe2\x24\xdb\x48\xa3\xf6\x6e\xec\x5b\x63\xe1\x42\xa9\x86\xde\x50\xe9\xf4\xe8\x34\x17\x70\x88\x10\xa4\xc1\xda\x2f\x00\xd7\x44\x91\x49\x10\x90\x64\xae\x6a\x0b\xb1\xe6\xe9\x12\x35\x0e\x33\x35\xed\xac\x22\x58\xfe\xad\xba\x17\xf2\x1a\x27\xec\x57\x11\x87\x12\x6f\x3e\x9e\xd3\xc8\x59\x84\xbc\x09\xd3\xb4\xd1\xae\x2a\x1b\x17\x0a\xca\x54\x81\xf7\x84\xe0\x31\x06\x20\xf9\x8c\x05\x36\xa4\x74\xb9\x4c\x3e\x99\x02\x67\x52\xb4\x72\xb6\x03\x98\xcc\xb2\x4b\x3a\xb9\x0c\xc0\x39\xa4\xe8\xbb\x17\x12\xf2\xa9\x02\x39\xe0\xfe\x35\x3b\xcc\x7e\xde\x9c\x8b\x1d\x06\x7d\xb0\xf9\x25\x95\x34\xb3\xa1\x97\xc7\x8e\x53\x81\x11\x61\x8e\x83\x03\xd6\xcd\xe9\xf9\xf4\xec\xe2\x76\x7e\x7a\x7d\xf6\xee\xec\xe2\x76\x3a\x39\xbf\xe9\xbb\xfd\x9e\x23\x8a\xaf\xb6\xfb\xea\xc1\x6c\x4e\x42\x1c\xd3\xce\xf3\xa1\xec\xae\x53\x7e\xdb\xc1\x94\xec\x6f\x7d\x12\x67\xf3\x38\xd1\x91\x39\xfe\xb6\x73\x21\x63\x48\x76\xf1\xa4\xa5\xda\x5e\x54\xbd\x17\xee\x0d\xe6\xde\xb0\x12\x04\x4f\xbb\x07\xbb\xa2\xdd\x73\x80\x64\x82\x19\x32\x17\x66\xf3\xc7\x15\x8e\x91\xf1\xfe\x0c\x67\xa6\xb8\xc3\xfa\x56\x2d\xa2\xde\x27\x6c\x6f\xa2\x75\x09\x54\x26\xf6\x35\xc0\xa3\x76\x8c\x0a\x31\x10\x87\x19\x37\x92\x20\x0b\x3d\x4b\xf4\x4c\x6e\xb8\x8c\x79\xa1\xf2\x6d\x47\x17\xfb\x09\xcf\x70\xdb\x54\x45\x68\x78\x64\x4b\x21\x62\x3b\x0b\xf8\x2a\x97\xf5\xa5\x84\x79\x39\x6e\x2f\x7f\x3c\xbb\xb8\x99\x9f\x5d\xfc\x34\xbf\xba\x3e\x7b\x3f\xfd\x93\x83\xc9\x66\x5c\xb7\x25\x97\xce\x72\x61\xa4\x8b\xa5\x39\x6b\x95\x2f\x98\xb2\xd9\x96\x43\x69\x3a\x93\xe5\x4c\x5a\xc9\x92\xfb\xe2\xd7\xb9\x2a\x57\xeb\xf6\x82\xea\xad\xbc\x9a\xdc\xfe\xf0\xa4\x66\x02\x09\x25\xe6\x75\xc5\xdd\xd6\x84\x0b\x27\x4b\x92\x7b\x88\x31\xae\x35\x0f\xa8\x54\xe1\xd5\x36\x2f\x43\x87\x44\x7b\xd2\xed\xa5\x29\xb4\x76\x2a\xff\x2d\xaf\x77\x2d\xa0\xdb\x40\x6e\x56\x8e\x11\x80\xaf\x63\x72\xf0\x46\x69\x27\x2d\xbf\x55\x4e\xb0\xaf\x8e\x52\xb1\x5a\x89\x18\x97\x57\xbd\x60\xb2\xc1\x91\x08\x8c\xfc\xb9\xde\x36\x8a\x94\xc0\xf7\x80\x83\xd9\xe1\xbd\xfa\x0b\xf0\x2b\xf7\x49\xbb\xac\x38\x25\x22\x29\xf0\x6f\x16\x5c\x76\x38\x92\xf7\xc7\x83\xb5\x17\x7f\x99\x33\x17\xaa\x47\x06\x13\xeb\x32\xf0\xfb\xa0\x0b\xf0\x72\x38\xbe\xd5\xb5\xe3\x5a\x64\x29\x8f\x84\x0b\x70\x41\x06\x60\xb8\xd7\x3f\xc5\x81\x47\x69\x92\x25\xd9\x5b\x82\xf4\xc9\x3e\x33\x5c\xdb\x12\x00\xcb\xed\xb5\x95\xc7\x2f\x6f\x5a\xd9\x79\x71\x23\xde\x4f\x30\x34\x63\x9e\x4a\x8a\x8b\x40\x5b\x14\x24\x7f\xed\xc4\xac\x0f\x5a\x0e\xb5\x9a\x7f\xa2\x89\xc7\x3b\x73\xd5\xd0\xcd\x2d\xb3\xae\x5b\x1e\x4e\x75\xdc\x65\x2f\x2c\x8a\x7c\x27\x19\xf7\x73\xb8\x23\xae\x72\xb5\x49\xb4\x98\x14\x45\x9e\x2c\xca\x30\x1b\xf1\x40\xc0\x5c\xe5\x72\xe2\x3b\x9c\xe5\x2a\x2e\x23\x4b\x9f\x05\xbd\xf5\xb0\x1f\xb2\xf2\x59\xad\x23\x66\x47\x66\xf5\xd1\xcd\x4d\xc4\x47\x10\xed\x81\xfc\x6e\x6d\x3e\x36\x2b\x18\x3b\x6c\x7f\x57\xf6\x28\x7f\xe6\x98\xd1\xee\xc1\xb4\x6b\xa0\x5f\x18\x38\xb3\xaf\x83\x06\xdc\x81\x9a\xa2\xe5\xb2\xe0\xe8\x40\xaf\xea\x28\x5d\x6c\x39\xee\xa8\x19\x06\xee\xea\x87\x8d\xa9\x86\x53\xa1\xde\xb0\xe6\x1a\xd5\xf9\x22\x5a\x57\x1b\x0e\xbd\xa9\xb2\x06\xd7\x9b\xeb\xd4\xe3\xc3\xcc\x26\xbd\xdc\x68\x23\x34\x34\x24\x64\xd8\xae\x64\x80\x75\xe9\xac\x3b\xed\xf7\x18\x72\x31\xff\xa5\x14\x43\xb2\x3a\xdb\x50\x8d\x3f\xc2\x67\x7b\x01\x29\x09\x62\xb7\x9c\xed\xb5\x48\x36\x46\x03\xe2\x79\xb4\x66\x0b\xae\x89\x8e\x30\x64\x4b\xc0\xf4\xf3\x2c\x31\x5f\xf1\xa8\xa0\x74\xbc\xb6\x5a\x9b\x92\xf7\xd6\x42\x21\x8d\x5a\xeb\xad\x1e\x6d\xcb\x6d\xdf\x00\x0c\xb1\x5e\xdb\x66\x4c\xdf\x0d\xf2\x21\x84\x7a\xb8\xbb\x27\xe3\x11\x0b\xa7\x53\xca\x4b\x19\xad\x59\x96\x72\x24\x94\x58\x73\x8d\x82\xc2\x22\x74\xf8\x22\x49\x93\x02\x78\xc2\xd0\x71\x5c\x5b\xb7\xe6\xf2\xcc\xf3\x7b\x9b\x6e\x81\x7b\x52\xb8\x5d\xa2\xe4\x40\x24\xb4\xeb\xd5\x67\xc5\x42\x7b\x41\x18\x0a\xf7\x7e\x9b\x9d\x70\xd0\x7e\x3a\xcc\xf1\x06\x9b\xdd\xf7\x65\x98\x77\x88\x4a\xbc\xaa\x7f\x5e\x1b\x6f\x24\xa0\x3c\x88\x24\x78\x67\x5c\xd6\x8b\x80\xce\x7d\x54\xd9\xee\x63\xb4\xd9\xe1\x16\x25\x78\x38\xf0\x89\x12\x27\x0d\x50\x62\xea\x69\x95\x5a\xf7\xfd\x32\x55\xbc\xd8\x1d\xe5\x86\x59\x92\xba\xca\x8e\x55\xb9\xe8\xca\xcb\x81\xad\x7a\x7a\x0c\x9d\x15\xff\xcf\x65\x73\x0f\xcf\x51\x5e\x08\x23\x7d\x9f\x36\xa0\xe6\xeb\x23\xf8\xbc\xbd\x70\x8a\x62\x1e\xcc\x48\xe1\x96\x81\xcf\xd5\xe7\x74\x7f\x80\xa4\xb6\x6c\xa7\xba\x92\x77\x50\xcc\xe3\x61\xf3\x95\xc8\x3d\x4b\x69\x7f\xfa\xaf\xaf\xbf\xea\x13\x8d\xf8\xc7\x92\x9b\x03\xe0\x72\x79\x83\x04\x61\x87\x74\xba\x48\x9a\xdb\xaa\x5d\x0c\xd4\x6b\xbd\xad\x7a\x69\xc3\x85\xdf\x9b\xed\xa0\xad\x37\x37\xe6\xeb\xfe\x62\x77\x5a\xb1\xc6\x66\x79\xa2\x80\x28\x4b\x2d\x2b\xba\x46\x8b\x24\x6e\xad\xf7\x80\x91\xfc\xa5\x14\xa5\x30\x0b\x68\x51\xc6\xab\xa6\xb3\x64\xc0\x85\xcb\x77\x69\xad\x1e\xd9\xa6\x8c\xd6\xcc\x16\xce\x62\x91\xf2\x6d\x55\x8d\x32\x77\x8d\x42\x01\x85\xf2\x20\xbe\xc0\x80\xf8\x3e\x2a\x75\xa1\x36\x80\x53\xf7\xe5\xe6\xa5\x84\x5d\xce\xb8\xdd\x5d\x6d\x07\x5a\x85\xd0\xf3\x89\x1e\xf2\x9b\xab\xb3\xd3\xe9\xfb\x69\xcd\x3d\x3d\xb9\xf9\x31\xfc\xfb\xe7\xcb\xeb\x1f\xdf\x9f\x5f\xfe\x1c\xfe\x76\x3e\xb9\xbb\x38\xfd\x61\x7e\x75\x3e\xb9\xa8\x38\xb1\x27\xb7\x93\x9b\xb3\xdb\x3d\x7e\xea\x66\xad\xdd\x13\xc1\x03\xbe\x51\x8b\x9c\xb7\xc9\x74\xac\xb9\x8a\x6a\x3d\x61\x13\xcb\xbe\x5a\xe1\x07\xb6\x58\x03\x00\x27\xa5\x88\xb1\x44\x48\xc2\x3b\x5e\xf0\x53\x5e\xf0\x54\xad\xc6\x6c\xc2\x28\xae\x00\xe3\x45\xb4\x51\x09\x89\x9a\xd2\xcc\x0e\x16\x61\xf4\xc2\xc8\x9b\x82\x7c\xb6\x70\xb5\x24\x52\xd8\x54\x84\x79\xa5\x6c\x90\xe7\x4c\x9e\x3d\x08\x59\x94\xa0\x68\xf3\x34\x65\x54\xad\x7d\x21\x60\x05\xb1\xad\xd4\xc9\x26\x49\x79\xee\x13\x3b\x5f\x52\x59\x70\xd9\xb5\x6d\x75\xac\x74\x4d\xca\x09\x6b\x0f\xb8\x9b\x32\x68\xf7\xe9\xf9\x14\x14\xdd\xa8\xb0\x59\x0b\x6d\xe5\x33\x89\xa4\xa3\x54\xe3\x86\x43\x0c\x53\xa1\xc8\x40\x8f\xd5\xd3\xcb\xdd\x0b\xf1\x20\xc5\xca\xba\xb2\x5e\xca\x30\xe1\x1a\x69\xff\x71\x26\x8b\x7c\xdb\x5b\x7b\xbd\x05\x46\x07\x0d\xf7\x3a\x82\x44\x56\x93\x3d\xa3\xfd\x94\xd9\xd2\x2f\x40\xa5\xb5\x78\x5d\x72\xef\x39\x2f\x1e\xc2\xa3\x3a\xae\x44\xa9\x39\x79\x7f\xab\xe3\x10\xb2\x80\xc1\x28\x2c\x54\x29\x63\x4d\xe0\xcd\x4d\x22\x8f\x37\xfc\xd3\x1b\xdb\x53\x24\xb1\x71\x29\xd7\x80\x31\x51\xa4\xe6\x3e\xb8\x35\x42\x6e\xf7\x70\xcd\xe4\x8e\xf1\xda\x7f\x27\xb0\x92\x15\x4c\x06\xde\xbe\x83\x30\xd4\x07\xb1\x6d\x9b\xbf\x46\xda\x4c\x16\xe6\x7e\x80\x42\xb2\x5c\x98\x17\x1d\xc6\x35\x45\xe8\xb2\xfb\x1b\x62\x59\x2a\xa9\xbd\xdb\x65\x77\x08\x1b\x39\x68\xdb\xb4\x02\x56\xfa\x2b\x3e\xbd\xf3\x9e\x52\x4d\x66\xce\x10\xbe\x62\x3d\x27\x14\xbb\x43\x7e\x79\x33\x59\x7f\x55\x0b\xb6\x84\x40\x36\xb2\x13\xe4\x02\x3c\x65\x30\x15\x36\x51\x0f\xf0\xea\x35\x30\x31\x76\x09\xa4\x42\x83\xff\x48\x9a\x4b\xb5\xf8\xa5\x24\x08\xc0\xdb\x2f\x87\x9d\xb3\x05\x66\x7b\x40\x7a\xef\x7a\x1e\x04\x77\x96\x43\xbb\x4a\x99\xb4\x91\x6d\x5e\x97\xd2\x1c\xc5\xcf\x81\x9e\xea\xef\x1e\xaf\x55\x4a\x7f\xee\x8d\x35\xb3\x9e\x9d\x1c\xdf\x7f\x31\xe6\xe6\x9f\x6a\x84\xcd\x54\x1d\x44\x36\x50\xe9\xe1\x81\xb6\xe0\xd1\xfd\x23\xcf\x63\x34\xff\x03\x9c\x69\xcc\x7e\x50\x8f\xe2\x41\xe4\x23\x16\x89\xbc\xe0\xc4\x57\xa8\x01\xcf\x01\x1b\x8a\xca\x99\x49\x08\xf4\x41\xf2\x47\xa9\xcb\x5c\xb0\x22\x59\xad\x0b\x91\x87\x68\x1c\x95\x1b\x71\x54\x20\x55\x6d\x26\x22\x22\x64\xeb\x18\x80\x65\xca\x1f\x9a\x04\x8c\x4f\x61\x92\x61\x53\x17\xad\x6c\xdd\xdd\x36\xf9\xd9\x2e\xfc\x14\x0d\x18\x09\x4d\xa4\xd0\x1a\xb1\x95\x4a\xb9\x5c\x8d\xc7\x63\x48\xf4\xf1\x66\xd0\x42\xa7\x02\x43\x07\xba\x43\xe9\xa7\x4a\x69\x91\x6e\x1d\x89\x98\x8b\xa3\x02\xe0\xee\xa7\x42\x48\x9d\xa0\x61\xab\x65\xf9\xdf\xd4\x9d\x4b\x9f\xd7\x17\xd7\x7e\x3d\x1f\x1c\xa5\xdb\x51\x0e\xe4\x52\x1d\x50\x12\xbe\xdf\x7e\xf3\x7a\x52\xd4\x79\x7b\x59\x52\xc9\xa1\xa1\xd4\x3f\xa9\xa4\x03\x0a\xf2\x24\xb2\xd1\xd6\x92\x88\x08\xe9\x49\xe1\xa7\xed\x63\xd6\x88\x08\x3e\x20\x18\x78\x47\x5c\xef\xc0\x90\xde\x3e\x86\x80\x9b\xfa\x74\x0f\xde\x16\xfb\xd3\xbb\xb5\x76\x68\x60\xc8\xb4\xe7\x36\x18\xa2\x3a\x61\xd4\x65\xba\x85\x1b\x97\x0b\xa0\x06\xf7\x40\x1c\x78\x95\x2a\x4e\x33\x08\xe5\xf3\x5e\x37\x47\x50\x17\x38\xd9\x74\xa1\x72\xbe\x12\x6c\x23\xe2\xa4\xdc\xb4\x0a\x1b\xd7\xdc\x43\xe0\xa3\x2a\x2d\x37\xdd\x54\xa1\x87\x2a\xd0\xbe\x91\xf8\xaf\x53\xa8\xae\x3f\x87\x8e\x8b\x8c\xb0\x59\x36\xa9\xbd\xe8\x42\xa2\xb1\x36\x27\x65\x9e\x68\x60\xd9\x7d\x4a\xe4\xac\x2b\x06\x8b\x06\x07\xfc\x36\x43\x23\x7b\x65\x76\x8f\xac\x67\x94\x3e\xd1\x38\xab\xe0\xb5\xef\x3e\x14\xea\xa0\xd4\xe1\xb9\xf6\x72\x55\x36\xb8\xa7\x7a\x01\x25\x40\x6d\x0c\x32\x6f\x10\x6a\x0e\x0a\x24\x68\x4f\xa1\xd8\xd2\xc6\x62\xde\x8b\x80\xfa\x30\x86\x9c\x1c\x8f\x48\xf9\xf4\xe3\x37\xda\x82\x80\x08\xa7\xe5\x35\x96\xc2\x57\x82\x1e\xa0\x87\xb7\x16\x9e\x87\x3d\xc4\x22\x80\xa0\x30\xe6\xb2\x68\x2d\xc0\xa3\x57\xa1\x2c\xfc\xe4\x27\x5e\xa6\xed\xaf\x53\xf9\xf0\x2a\xe6\x6c\x9d\xfc\x7c\xc3\x70\xa8\x29\x7f\x42\xbe\xab\xa1\x41\x21\xfb\x01\x82\x30\x5c\xf3\x27\x68\x82\x95\x79\xc0\x41\xb7\xe9\x3b\xcc\xb0\x8b\x22\x5a\x7b\xcd\x03\x08\x1a\x1d\xb1\x24\x25\xe4\xa6\x7e\x6e\x7c\x46\x08\xc4\x5e\x87\x20\xd6\x64\x25\x55\x98\x4a\x49\x49\x01\xae\x38\x23\x80\x54\x58\x2c\x4b\x8a\xfd\x48\xc1\x81\xac\x84\xfb\x96\x5a\xa1\x10\x01\x46\xfd\xac\xf8\xa9\xe1\x4a\x91\x20\x5d\x95\x85\x59\xe3\x9d\x88\xf2\x3b\xd7\x33\x05\x54\x09\x40\x66\xb2\x5a\x55\x63\x90\x2c\x94\x2f\xc9\x05\x12\x7c\x6b\xa3\xbd\x15\xc9\x83\xd9\xa8\xcd\x65\xed\x16\x28\x48\x80\xe6\xda\x23\xb7\x2d\x0b\x58\xc2\xef\xc5\x56\x87\xc9\xa4\x69\x45\xb1\xae\x05\x99\x98\xfe\xd0\x7c\xed\x9f\x0a\x18\xb8\x79\xee\x53\x42\xf6\x3b\xcb\xb0\xd2\x0f\xe6\xe3\x1d\x18\xe1\x46\xe1\x66\x0d\xfa\x60\x57\x6f\x53\x24\x31\xe1\xc7\x99\xe6\xd0\xc3\x00\x01\xe4\x19\xc2\x38\xc3\xc8\x25\xb8\xf8\x9a\xfb\xed\x4c\x52\x22\x81\xe0\x90\x33\x02\xa7\x39\x6d\x14\x81\x8f\xf4\xe5\xdb\x0a\x7b\x10\x50\xab\x5a\x9a\xd9\x6a\x95\xd6\xbb\x0c\x79\xf9\x60\x79\x40\xd5\x18\xa3\x6c\x6d\x78\xad\x15\x3e\x11\x5b\x4a\x93\xdb\x89\x27\x0d\x02\x01\xf1\x4d\x62\x17\xc5\xac\xe4\x78\xfb\x89\x84\x19\xbe\x89\x6c\x85\x72\x5a\x20\xe7\xcd\xd9\xe9\xf5\xd9\xed\x67\xc3\x9b\x5a\xb0\xe7\x60\xc0\xa9\x6d\xe7\xbb\xb3\xf7\x93\xbb\xf3\xdb\xf9\xbb\xe9\xf5\x4b\x20\x4e\xe9\xd1\x13\x20\xa7\x37\x94\x9f\xe4\x54\xc9\x42\x7c\x3a\xe8\x4c\xce\x4b\x39\xe7\x03\x42\x9f\x5c\x86\xa2\x5d\xea\x0e\x16\xda\xcc\xaf\xe2\x92\x9f\x10\xb7\x2d\xa1\x4e\x6c\x3a\x95\xa5\x37\x1a\x2e\x93\x34\x85\x48\x70\x67\x5e\xa7\x28\x43\x33\xa8\x20\x7f\x2c\x9d\x2f\xc9\xd4\x99\x5c\x54\xd2\xdf\x80\xc9\x6f\x6d\x2e\xc1\x18\x03\x9e\x99\x01\xc8\x13\x88\xb0\xdd\x95\x82\x65\x95\x48\xe1\x9b\x01\xb3\x66\xda\xd7\x49\x53\x4f\x93\xf8\x92\xc8\x3a\x52\xbc\xfa\xea\x9a\x76\xc5\x55\xd6\xa7\x55\x3f\xed\x43\xd7\x43\xdc\xc4\x89\x44\xc5\xb4\xb2\x9b\x6f\xda\x97\xee\xb1\xdf\x02\x30\xee\x66\x26\x39\xf8\x20\x74\xc1\xf3\xc2\x4f\x24\x4d\x04\x26\x86\xf3\xce\x89\xfb\x04\x11\x68\x6a\x59\x1b\x67\x23\x0a\xcd\x58\x27\xe0\xa9\xe0\x44\x6e\x13\xa5\xa5\x2e\x44\x4e\x66\x93\xc9\xcf\x37\x33\xf9\x9d\x39\xbe\xde\xd0\x29\x44\xe9\xbb\xb0\x0a\x44\xea\xa8\x4a\xfd\x56\x43\x09\x25\xd8\x6b\xb4\x51\x6f\x04\x97\x9a\xc1\xd6\x48\x53\x91\xfb\x95\x81\xed\x11\x22\xa6\x24\xda\x40\xf5\xec\xbf\x7f\xc3\x08\xdc\x6a\x86\xc2\xb4\xd7\xa5\x11\xdb\xa8\xa2\xb9\x9e\xba\x88\x06\x00\x71\xfe\x92\x2b\xa7\x25\xf0\xa9\xef\x2a\x22\xb0\x7e\xeb\x22\xaa\x86\x21\xf5\x5a\x4b\xb7\x58\xdc\x3f\x96\xd2\x33\x2e\xa5\x1e\xe7\x7a\x78\x4a\xb0\xb5\x32\x02\xd4\xe5\xb6\xf2\x6e\x66\x47\x74\x92\x02\xca\xcd\x0c\x63\xeb\xa9\x53\xcb\x2e\x7b\x08\xf6\x03\x8a\x3a\x0c\xa1\x3d\x69\x61\x54\xf2\x69\x0c\xad\x6f\x67\x67\xe2\xda\x97\x61\x2e\x9c\x58\xac\xaa\x54\x85\xe5\x20\x71\xf0\x50\xc2\xba\x9a\x17\x1c\xf9\xcd\xce\x36\x12\xa1\x8c\xd5\x52\xe6\x07\x26\x7f\xbc\x0d\x31\xb5\x95\xa8\x6c\x6c\x45\xc8\xe7\x60\x39\x1c\x1c\x07\xcc\x90\xc5\xf7\xf4\xf4\xc2\xd5\x35\xe7\xf8\x44\x9f\x04\x76\xb8\xb8\xbc\x38\x0b\xa1\x0a\xd3\x8b\xdb\xb3\xef\xcf\xae\x2b\xf1\xfc\xe7\x97\x93\x4a\x4c\xfe\xcd\xed\x75\x2d\x14\xff\xbb\xcb\xcb\xf3\xb3\x06\xe6\xe1\xec\x76\xfa\xa1\x52\xf8\xbb\xbb\xeb\xc9\xed\xf4\xb2\xf2\xde\x77\xd3\x8b\xc9\xf5\x7f\x84\xbf\x9c\x5d\x5f\x5f\x5e\xd7\xea\xbb\x3b\xdd\x8d\x9e\xa8\x74\xa3\xdd\xfc\xe3\x9d\xb3\x01\xb5\x6a\xeb\x36\xae\xa6\x5f\x3e\x60\x17\xf7\x44\x9e\xed\x5b\x8e\x36\x5c\x3f\x0e\xd3\x71\xe0\xc6\x30\x4d\x1d\xb4\xea\x9e\x3f\x5f\x74\x65\xe8\x32\x7e\x98\xd8\x33\xa7\xda\xfc\x39\x90\x80\x3b\x15\x40\x57\x4b\xcd\x70\x4b\xe9\xd9\x71\x68\x33\xf0\x60\xad\x78\x67\xbe\x32\x19\xbf\x78\x4b\x6d\x1d\xfb\xda\xe9\xa9\xbc\xf6\x30\x22\x3d\x17\x1b\xca\xae\x46\x07\x95\x59\xb2\x81\x24\xb6\x8a\x82\x7d\x18\xc2\xee\x4d\x37\xcc\xca\x09\x96\x63\x57\x62\xdf\xf6\xb0\xa5\xdd\xec\x7b\x43\xdb\x4f\x95\x34\xdb\x5e\xa3\x6a\x19\xd0\x6e\xa0\xcc\x1a\xd2\xee\x5b\xae\xef\x87\xb6\x9b\x2a\x69\xb6\x1b\xd4\xbe\x27\xb5\x1b\x0c\xde\x45\x3b\x8d\xce\x00\x21\x16\x16\x53\x6d\x9e\x8b\xf1\x77\xaf\x04\xf9\xb3\xfb\xb5\xd1\x6c\x80\x97\xbd\x5e\x66\xbc\xbf\x23\x03\x5a\xe3\xb6\x2b\xaf\xb1\xca\xdf\xc0\x53\xe8\xe1\x22\x17\xfc\x3e\x56\x8f\x34\x1f\x75\x64\x28\xeb\x25\xcd\xab\x03\x64\x64\xb8\x3d\x22\x8a\x9c\x3c\x50\x88\x52\xf3\xc5\x03\x4c\x2e\x21\x5e\x74\xd4\xc1\x82\xd4\xcb\x75\x22\x22\xa0\x7e\x92\x7e\x76\x66\x12\xb5\xf9\xb6\xf4\xcd\x66\x56\x4d\x8b\x88\x3a\x04\xba\xea\x74\x68\x74\xae\xeb\x60\x62\x29\x0e\xa8\xcc\x01\x4c\xb7\xc8\xe1\xce\x04\x03\x92\x48\x30\x26\xe7\xe6\xc2\x93\x8b\x28\xd1\x22\xc8\x18\xd7\x7a\x62\xff\x72\x58\x2a\x94\x82\x17\xad\x66\xd7\xde\xf6\x70\x1e\x15\x25\x4f\x19\x84\x2b\x11\x03\x23\xda\x2a\xf1\x97\x88\x4b\x0c\x8d\x29\xc4\x26\x83\xa8\xfe\x30\xa6\x63\x26\x7f\x06\xa0\x04\x4e\xc1\x2b\xcd\xbe\x07\xc8\x83\x7d\x99\x0e\xe1\x0d\x2f\xe0\x2c\xfe\x23\xd6\xe1\x9e\x8d\x67\xb2\x92\x81\x29\xf8\xaa\x92\x8c\x69\x3c\x93\x36\x5b\x47\xac\x22\x3d\x86\x1b\xdf\x58\xe5\xab\x63\xca\xa5\x6e\x16\xbb\xba\x5f\x28\x75\x7f\x2c\xe4\x31\xd8\xa4\x8a\x63\x5e\x16\xea\x18\xe0\x52\x38\xff\xfa\xd8\x26\x3d\xb6\x59\xa3\xf5\xf1\x3a\x79\x10\xf0\x7f\xe3\x75\xb1\x49\xff\x45\x67\xeb\x4f\x47\xab\x34\x3f\x32\xdf\x1e\x85\xdf\x1e\xd9\x6f\x8f\xec\xb7\x47\xe6\x33\xfc\xbf\x6c\x8b\xee\x1d\xf1\x89\x9b\xb3\x6c\x34\x93\x89\xd4\x22\x2f\x40\xfb\x79\xcc\x93\xc2\xa7\xba\xda\xb2\x57\xff\xf9\x9f\x6c\x9c\xf3\x47\x8c\x88\x7d\xc7\x0b\x7e\x85\xf6\xc5\xbf\xff\xfd\x15\x38\x54\x31\x8a\x29\xe3\xf9\x2f\xa5\x28\x66\x52\x0b\xb3\x09\xd9\xff\x9a\x49\xf0\xc0\x6e\xb6\xf3\x02\xed\xae\x68\x83\x8c\x35\xfb\x16\xcb\x9c\x22\x1b\x69\xac\x4d\x49\x1d\xe1\x04\x09\x4f\x5b\xb2\xf4\x77\x98\xe8\x7f\x49\xdf\xd1\xfb\x03\xb6\xf5\x2f\x69\x75\x57\xdb\x64\x4b\xfa\x97\x14\x0e\xd0\x54\x71\x0b\xd6\x62\x6e\xf1\xc2\x3d\x99\x1a\xd7\xb6\x47\x1a\xd0\x80\x17\x75\xd3\xb7\xef\x95\x1b\x64\x44\xb7\x96\xfb\x86\x18\x01\x5f\x81\xf7\x43\x80\xf7\x3c\x31\x3b\xe4\x06\x2d\xa1\xa0\xb9\x61\xcf\x41\x27\x25\xd7\xb9\x2b\x0f\x0d\x17\xfa\xeb\x93\xe3\xe3\x11\x5b\x69\xf8\xcf\xe2\x17\xf8\x0f\xa0\x87\x9e\x8b\xd4\xb7\x31\x98\x0e\x08\xd7\x9c\xe5\xfd\x33\xf1\x1c\x28\xba\xcf\xc1\x23\x5f\x5b\xa6\xdf\x95\x32\x4e\x85\x0f\x6d\xac\xb8\x44\x52\x65\x66\xd2\x4e\x54\x33\xf3\x10\xcc\xf1\x42\x44\xdc\x08\xbe\x46\xdd\x08\x2e\x55\xcb\x42\x48\xb4\x86\xe5\x3e\xdb\x23\x47\xcb\x15\xa8\xc5\x00\x85\xe4\x05\x41\xce\x05\xfc\x08\x95\x00\x31\xfb\xa8\xfe\x88\x6d\x55\x49\x1c\xe3\xc0\x9c\x1b\x8b\x28\x85\x44\x0e\x96\x3d\x88\xe5\xa2\x28\x73\xc9\x38\xcb\xb8\x8c\xb9\x86\x15\xb8\xcc\xc1\xdb\x99\x33\xde\x6c\xe8\x08\xe1\xb8\xaa\x2c\x80\x13\x0b\x91\x05\xe1\x48\x20\x09\x7c\xd0\xe6\x51\xd0\x08\x3c\x13\x80\x8b\xba\xf1\xe1\x78\x26\x6d\x3e\x42\xc2\xc2\xa1\xa5\x2c\x52\xd9\x96\x18\x8f\xea\x83\x9e\x58\xcb\x19\x0d\xf7\xc8\xe3\x4d\xea\xef\x8e\x58\x52\x75\xad\x01\xdf\x7c\x11\xa4\x78\xb7\x49\xf2\x5f\x0b\x19\xa9\x58\xe4\xfa\x8d\xd9\x86\x89\xbb\x77\xa0\xfe\x90\x68\x3f\x19\x20\xa5\xcc\xe1\x46\xd6\x42\x53\xbc\x4b\x30\x65\x46\xa7\xc2\x50\xde\xa6\xe7\xec\xdf\x2a\xbf\x75\x14\x4c\x5b\x7b\xe9\x9f\x9f\x15\x11\x13\xe2\x3a\xed\x9d\xf3\xe9\x26\x08\xdc\xb2\xa1\xc4\xc5\x42\x51\xc7\x21\xe5\xc4\xe6\xd3\x4e\x0a\xc8\x90\x99\x0b\x5d\xcc\x24\x9d\xc0\x23\xb6\x14\xdc\xe8\x79\x23\x16\xe9\x07\x14\xc6\x78\xdc\x17\x8f\xca\x63\x70\x6c\x7a\x1b\x00\xc3\x56\x0a\xf7\x46\x62\x7c\x8d\x53\x04\x36\x02\x0c\xba\x6e\xe8\x4e\x55\x81\xc1\x6a\x15\x88\x4f\x18\x07\x9b\x2d\xa5\x9e\x61\x2d\x4c\xd6\x03\x23\xb1\x45\x47\x31\xab\xb7\x03\x1f\x18\xc1\x83\xbd\x43\x18\x48\x20\x1c\x41\xe3\x26\x2c\x2d\xee\x33\xef\xc3\x0d\x29\xeb\xc1\x36\xd3\xb5\xa9\x76\x0c\x04\x34\xe0\x69\x76\x0b\xf3\xe9\x5e\x83\x95\x16\xb9\x4d\xe5\x82\x7d\x45\x82\xc9\x75\x92\xc7\x47\x19\xcf\x8b\xad\x5d\xbe\x69\xb2\x80\x0c\x10\x69\x72\x2f\xd8\x24\xcf\xd5\xe3\x73\x8f\x42\xa7\x68\xe9\xba\x61\x1f\x82\x64\x1f\x7a\xcb\x6f\xa5\x97\xad\x9b\x3b\x9e\x46\x65\xdb\x65\xf8\x68\xad\x27\x17\x45\xbe\x9d\x9b\x85\xb8\xc9\x3a\x25\x45\xaf\xa0\x89\xfe\x4a\xee\x30\x96\xdc\x9a\x09\xa3\x93\x25\xb7\x32\xab\xbf\x1d\x96\xdc\x16\x02\xdc\x26\x4b\xee\xf4\x62\x7a\x3b\x9d\x9c\x4f\xff\x4f\xad\xc4\x9f\x27\xd3\xdb\xe9\xc5\xf7\xf3\xf7\x97\xd7\xf3\xeb\xb3\x9b\xcb\xbb\xeb\xd3\xb3\xdd\xb4\x57\xcd\xd6\x7b\x15\xfc\x88\x85\xf5\x9c\xb0\xdb\x00\xa8\x81\xc1\x06\xa4\x7f\x53\x7e\x5c\x58\x55\x66\x33\x27\x72\x35\x82\x8d\x7a\xc2\xce\xf2\x7c\xba\xe1\x2b\x71\x55\xa6\x29\xc0\xa9\x30\xb2\xe7\x34\x17\x70\xf1\x1c\xb1\x2b\x15\x4f\x83\xef\x20\x1c\xb1\xb5\x1b\x50\x3f\x8f\xe3\x5c\x68\x8d\xd5\x8f\xa8\xfe\x00\x3c\xe4\x42\x1d\x09\x3c\xc7\x1f\x78\x92\x9a\xfb\xdb\x09\xfb\x8e\x47\xf7\x6a\xb9\xc4\xf0\x99\x91\x0b\x9c\x62\xbf\x94\xaa\xe0\x4c\x7c\x8a\x80\xea\xad\x7d\x9d\x9c\xab\xd5\xaf\x00\x55\xee\xe1\x9e\xea\xb8\xa4\x40\xaa\xbb\x79\xfb\x71\xde\x2e\x08\xa8\x97\x1f\xf0\xd3\xf7\xf8\x65\xbb\x81\xb2\x48\x9f\x21\x3c\xfe\x5c\xad\xda\x13\x0f\x81\x76\x4d\xd9\x92\xc8\x91\x10\x11\xbb\x88\x5a\x31\x9d\xc8\xfb\x99\xfc\x79\x2d\x24\x53\x65\x8e\x3f\xc1\x35\xdf\xa8\x99\x69\xa9\xd7\x02\xd2\x54\x8f\xd8\xa3\x60\x1b\xbe\x45\xb5\x19\xee\x04\x2e\x5b\x0a\x2c\x19\x38\x45\xcc\xd7\x69\x22\x8d\xb4\xc8\x12\x1b\x97\x50\x9f\xfa\xe7\xb8\x71\x59\xa2\x43\x7e\x38\x0f\xf1\xae\xf3\xb4\x82\xcf\x03\x53\x99\xc7\x4d\x5a\x80\x10\x49\x6e\x48\x2a\xab\xd4\x7d\x99\x79\x4a\xd4\x57\xd6\x39\x09\xc3\xfd\xa0\x92\x98\xc5\x65\x96\x26\x91\x93\xbb\x8f\x2a\xef\xe4\x7d\xc6\x00\x9a\xfe\xa7\x4e\x3d\x2c\x6c\x57\xc7\x5a\xa2\x73\x02\x24\xdd\x0e\x06\xe8\x17\xe6\xc0\x66\x89\x8c\xd2\x12\xd2\xcc\x95\x5a\xe4\x47\x2e\x75\xb4\x8b\xf5\xfb\xed\x93\x64\x7b\x12\xce\xc3\xc3\xda\xc2\xa0\xf3\x54\xad\x92\x88\xa7\x21\xb8\xd9\xa3\x22\x1c\x0b\xaf\xdd\xf6\x94\x4c\x18\xe2\x20\x6c\x83\x3a\x89\xb4\xb2\x5c\x00\x11\xf4\x1c\x44\xf9\x9c\xc4\xdd\x21\xed\x5e\x32\x73\x41\xc7\x76\x85\x1c\xb9\xd6\xbd\x60\x4f\x38\x5f\xb7\xcd\xc4\x06\x2a\x26\xa6\xf0\x67\xea\x51\x8a\x1c\x34\x58\x80\x7d\x98\x9e\x4a\x05\xba\x89\xcb\xce\xe6\xf0\xc9\x36\x3b\xe1\xd2\x01\xb1\x31\x72\x76\x95\x3c\x08\xf9\xf9\x49\xcd\x83\x0a\x22\x1e\xad\xc5\xdc\xea\xe5\xcf\x2d\xb2\xdc\x01\x30\x50\x58\xd9\x34\x29\xa1\x28\x75\xee\x4d\xb8\x3a\x61\x8b\x9b\xb2\x0b\x1d\x89\x3b\x22\xb2\x4c\x23\xe6\xb1\x88\xee\x3f\xbb\x68\xf6\x20\x2b\xdb\x10\xc6\xd9\x3b\x11\xdd\xb3\xbb\xeb\x29\x46\x03\x27\x05\x33\xa2\x40\xaf\x7d\xda\xa7\xce\xbb\x5b\xc1\x57\x2f\x40\x61\xd5\x37\x6f\x95\x4f\x55\xe0\xb2\xf5\x99\x06\x11\x20\x0a\xe2\x25\x8d\x90\xa4\x58\x1a\x00\x82\xf1\xc2\x66\x33\x02\x43\x3c\xd3\x1b\x48\x5e\x54\x16\x41\xc6\xbf\x94\x2f\x44\xda\x41\xdc\x99\xa9\x78\x6e\xfd\x24\x87\x82\x79\x1a\x65\x59\x3b\x06\x79\x1d\x6d\x1c\x03\x37\x1a\xeb\x2d\xbd\xc8\xee\xbf\xd1\x01\xbd\x86\x0a\xf9\xc3\xe1\x5e\xcf\x35\x84\x77\x2f\x93\x95\xf5\xb6\x25\x4b\x4a\xb1\x84\x01\xfd\x46\x0f\x06\x79\x69\x4a\xba\x52\x31\xc1\xf4\x1c\x17\x9e\xd1\x82\x04\x59\x4f\x3c\xae\x22\x6c\x82\xc5\x01\x42\xbd\x66\x47\x08\x1e\x33\xb5\x24\x6b\x62\x96\xa5\x09\x30\x43\xc7\x48\x42\x0f\xec\x19\xba\x8a\x8e\x0f\x4b\xb3\x8d\x0d\x48\x3e\xae\x2c\x10\xaf\x2b\x19\x2f\x08\x0c\x8c\x60\x98\x03\x1b\xdc\xfc\x81\x77\x93\xa9\xbd\x78\xc6\xb4\x8e\xf6\x38\x6f\x72\x95\x12\xb6\x42\xda\x47\xb6\x02\x3c\xd6\x6d\x40\x7e\xc4\xd3\xa8\x24\x3f\x19\xa4\xcb\xb7\x59\xf0\x77\x23\x08\xbd\xd7\xcf\x4c\x74\xd5\xea\x5f\x57\x32\x0f\xcd\xae\xe8\x02\xb4\x9e\x6a\x53\xd8\x6d\x5e\x5c\xa5\x6a\x01\x2b\xa7\x1b\x25\xb8\xe3\xc4\x32\xe2\x3a\x4f\xe2\x21\xfa\x8e\x1d\x93\x4b\xf7\xe9\xae\x06\x5e\x5a\xd3\x8f\xab\xc9\xae\x7b\x46\x89\x0c\x6a\xcc\x8d\xc3\x28\x10\x96\x94\x55\xb5\x7a\x3d\x29\x28\x8d\x07\x2c\x2b\x77\x3e\x75\xd8\x19\xaa\x7d\x39\x68\xa2\x9b\x4c\x31\x7b\xc6\xd2\x93\xcb\xec\x9e\xe4\x03\xe8\x3e\x50\x94\x39\xce\x8f\x6e\xcb\xa2\x8c\x45\x3c\x7f\x42\x1f\xce\xe8\xdb\x7e\x7d\x71\x23\x8d\xcd\x03\x1b\xa0\x3c\x32\xaa\x42\xcc\xf3\xd8\xf7\x63\x04\xfb\x3d\xe2\x19\x98\xe1\xc1\xad\xf1\xf0\x76\x6c\xeb\xb8\xf6\xd1\x45\x46\x5e\x62\xcc\x3f\xe2\xb7\x55\x4b\x0e\x9c\x7d\xeb\xc8\x2d\x52\x84\x77\x9b\x95\xe3\x97\x6b\x25\xee\xa6\xd7\xda\xad\xaf\x30\x2b\xc0\x0f\x59\x5c\x2f\x21\x3b\xca\x42\x79\x6f\x0f\xf4\x67\x0a\xb4\xc3\x61\x44\x1f\x08\xc8\x69\xdc\x81\x14\xb1\xea\xb7\x15\x42\x03\xf0\xc7\x83\x10\xd0\x59\x2e\xac\xdf\x70\x2b\x0a\xc7\xeb\x90\xda\xbc\x82\xe0\x16\x73\xbd\xae\x12\xdb\x58\xee\x0a\x47\x46\x06\x4e\x2c\x52\xf5\x23\xb5\xc9\x94\x04\x58\x12\x46\xa9\xcd\x24\x15\x6e\xb3\xc3\x3b\xcf\x5a\x25\xd4\x71\x44\x06\x4d\x0c\x9c\x11\x5a\xa5\x0f\xe4\x42\x0d\x92\x98\x40\x5e\x49\xd3\xc0\x53\x73\x37\x54\x39\x12\x6c\xd9\x93\x1d\x22\x01\x6a\x29\xd2\x73\xb1\x4a\x74\x21\xc2\xe8\xd0\xf0\xfb\x67\xcb\x66\x5b\x31\x9e\xec\x1a\xfa\xce\x6c\xb6\xfb\x6e\x41\x46\x3e\x0d\x68\xcf\x36\x13\xf1\xd4\x7d\xb7\x7b\x31\xd4\x02\xf8\xbd\x38\xac\x9c\x77\xb8\x06\xf0\xf6\xa7\x91\xea\x4b\xbb\xf4\x23\x6e\x92\x88\x84\x89\x7b\x40\xa3\x99\xa2\x55\xc9\x73\x2e\x0b\x21\xf4\x4c\x92\xe3\x19\x29\xeb\x42\x56\x96\x1a\x10\xd2\xdd\x6d\x22\xa5\x0b\x64\x80\x82\x4f\x96\x3c\x49\xcb\xbc\xd3\xdc\x80\xab\xf2\x49\xb4\x13\xbb\x46\xe9\x14\x8a\x65\x6d\x93\xe6\x02\x98\x83\x5d\xe4\x58\x53\xea\x6e\xe3\x6a\x7c\x6f\x47\x17\xec\xe1\xd2\x7f\xbe\x9d\xad\xb9\x23\xa6\xf9\x1b\x3d\xcf\xd4\x00\x89\xf7\xe3\x37\xfa\x4a\x75\x44\x83\xeb\x5f\x1a\x36\xd1\x1d\xf0\x89\x5f\xba\x12\xb2\x70\x7d\x0f\x9e\xc7\x7d\xa6\x98\x5e\x6c\x9c\x7b\xfd\x93\x9d\xb2\x0b\x56\xed\x9a\xcb\x38\x35\x2a\x2f\x2f\xea\xbc\xd7\x0e\xe7\x6d\xae\x44\x85\x15\x8e\xdd\x41\x7d\x10\x23\x33\x8f\x1a\x01\x96\xfb\xc6\xa9\x16\x99\xb9\x13\x4b\x59\xab\xa5\x1a\x2f\xd9\x16\xa7\xe3\x75\x18\x4a\x83\xec\x36\xec\xaf\xae\xbf\x9c\x85\x6d\xff\x4c\xea\x4b\x75\xaf\x2d\x93\xd5\x6f\xc0\x90\xf0\xa1\x79\x24\x44\x24\x73\xe8\xa0\x76\xd1\x0d\x07\x4a\x1d\x08\x24\x33\x52\x3b\x64\x1c\x9f\x49\x4a\x07\x8f\xe8\x02\x70\x2b\x23\xdf\x9a\x66\x6f\x5d\x74\xf1\xdb\xdf\x59\xb6\xad\x2d\x5b\xc2\xa2\x02\x4a\x3b\x15\x45\x65\x0e\xae\x7f\x32\x4f\x32\x81\x87\xb0\x1e\x44\x24\x03\xaa\x87\x03\x6c\xa1\x9e\xd8\xa6\x26\x39\x7b\x74\xa5\x53\xb7\x60\x86\xc4\xc4\xf6\xee\xd0\xa7\x7c\x65\xb9\x2e\x98\x2e\x44\xd6\x2a\x7e\x2b\xda\xe5\x36\x13\x13\x29\x55\x51\x8f\x4f\x19\xac\x5f\x72\x57\x4a\xcf\xad\x33\xe0\x30\x9a\x04\x26\xa3\x3f\xdc\x5c\x5e\xb0\x8c\x6f\x01\xfb\x58\x28\x86\xaf\x02\xe1\x68\x5d\x50\xed\x9b\x81\x6a\xe7\xab\x52\x05\xc7\xd4\x82\xa8\xdb\xfd\x13\x54\x63\x53\x59\x84\x35\x43\x4b\xd2\xc8\xac\x5c\xa5\x47\x59\xca\x65\x00\x6f\xd7\x63\x56\xab\x3e\xc4\x33\x38\xcf\x26\x21\xc6\xa0\x01\x60\xaf\xa0\xb5\x90\x97\xad\x00\x68\xe0\xdd\xb1\x0b\xea\x30\x08\x43\xa7\x8c\xd8\x09\xec\xfc\x80\x59\x60\x30\x27\x02\xb2\x67\x58\x58\x86\x43\xf6\x70\x0d\xa0\xdb\x4e\x06\x70\x1e\xa5\x5c\xeb\x9d\x28\x9d\x17\xa1\x92\x0f\xa2\x16\xf7\x8b\xaf\x6a\x3b\x11\x46\x08\xdc\x26\x78\x2f\x75\x8f\x81\x2d\xc1\x8a\x2e\x9f\xf4\x2d\xd0\xf7\x83\x6c\x10\x04\x7d\x20\xbe\x28\xf8\x1e\x99\x20\xef\xc5\xd6\x5a\xb8\x48\x54\xf1\x8d\x18\x39\x63\xab\xb3\x26\x06\xa0\xbf\x66\xc1\x33\x09\xa8\xd8\xf7\x61\xf3\xd8\x7b\xa5\x46\x88\xcf\xa4\xca\x39\x16\xcb\x43\x84\xd3\x4c\xbe\x57\x6a\xcc\xdd\x25\x96\xda\x4f\xe2\xa6\x5e\x21\xa1\xa2\x00\x73\x58\x9b\xce\xfe\x7b\xf3\x87\x44\x62\x7a\xc2\x64\x63\x2e\x50\x34\x4e\xb0\xa2\xa0\x41\x36\x1b\xbe\x7a\xd4\x2c\x46\x4a\x99\x32\xd1\x6b\x70\xbb\xa0\x9f\x13\xea\xa7\x23\x05\x01\x59\x39\x97\xda\xec\x61\x70\xd5\x88\x07\x41\xf6\xda\x0a\xc6\x60\xfa\xee\xdc\xc1\x96\x70\x5f\x52\xea\x8e\x8e\xdd\x16\x5c\x3a\x0e\xb9\x9c\x03\xdc\x7c\x00\xa1\x1d\x19\x38\x3f\xf0\x6c\x57\x30\xec\xc1\x25\xee\x9b\x25\x47\xa8\x55\xbf\x51\x41\x26\x73\xc8\x61\x58\x89\x88\x0d\x47\xef\x4e\x1e\x78\xe2\xb4\x72\xda\xef\x4f\xb9\xd3\xdb\xc0\x30\x50\x54\xec\x3f\x6e\x02\x6e\x4b\x07\x19\x74\x77\x41\x23\xd8\x21\x43\x1c\x90\xf2\xe1\x96\x1e\xb3\x1b\x21\xd8\x47\x18\x29\x53\xd9\x47\xca\x40\x0a\x28\xe8\x82\x27\xad\x09\xe2\xe0\xed\xa9\x5c\xaa\xc3\xe4\x7f\xbe\x6a\xa0\x6c\x0f\x1a\x95\xf6\x76\x1e\x8a\xe3\x05\x4b\xbf\x7c\x59\x5a\x91\x5e\x07\x43\x6d\xae\xaf\xbc\xbd\x89\x82\x8d\x6d\x4b\x8d\x4a\x06\x53\xfc\x14\xe2\xba\xda\x22\x31\xbd\x1c\x21\x19\xfb\xbd\x54\x8f\x12\xe5\x31\xd5\xc4\x5e\x9b\xfd\x07\x3a\x0b\xfa\x85\x50\x13\x2c\x51\x1a\xbe\x01\x76\xf8\x89\xfb\x9b\xdd\xa0\x0b\x1c\xdb\x0c\xa9\xc3\x34\xe8\xbb\x94\xf4\x0b\x0e\xf0\xd7\x93\x11\xfb\x6e\xc4\x4e\x47\x6c\x3c\x1e\xbf\x19\x31\xc1\xa3\xb5\x6d\x11\x7e\x82\xa2\xbf\xe0\x2b\x53\x36\xa5\xfd\x59\x06\x15\x40\x7a\x40\xa3\x9f\x58\x12\x44\xee\xdf\x0a\xac\x6a\xb6\x0b\x18\x9a\x4d\x71\x64\x04\x17\x8a\xd6\x2a\xf1\x8d\x02\xe4\xb9\x88\x54\x6e\xb1\xeb\xba\x50\xb9\xc5\xe1\x3e\xf0\x9c\x27\x12\x18\x2b\x78\x33\x0a\x81\x6a\x0e\x38\xeb\xc5\x27\xbe\x81\xfe\x27\xd2\xd1\xf6\x9a\x61\xba\x75\xed\x2f\xb6\x19\xf9\xd9\x1e\xf3\xa4\x28\x8c\x42\xa6\x67\xf2\x86\x9d\x7c\xcb\x26\x59\x96\x0a\x36\x61\xff\xc5\xbe\xe3\x92\x4b\xce\xbe\x63\xff\xc5\x4e\xb9\x2c\x78\xaa\xca\x4c\xb0\x53\xf6\x5f\x66\xd8\x4c\x79\x17\xca\x68\x40\xdb\x11\xe3\x4c\x96\x29\x2a\x7a\xaf\x2d\xc6\xf5\x8d\xeb\x17\xf7\xb3\xb3\x10\xc5\xa3\x10\x92\x69\xb5\xa1\xa3\xf0\x4f\xee\xf4\xd7\x89\x5c\xa5\xa2\xa0\xf5\x50\x45\x23\x63\x05\x47\xd0\xd3\x93\x99\x74\x76\xea\x3f\x99\x16\xff\x89\xfd\x17\xbb\x28\xd3\xd4\x34\xc9\x08\x1a\xb3\x90\x4e\x98\x8d\x0e\x13\x72\xfc\x98\xdc\x27\x99\x88\x13\x0e\xf1\x61\xe6\xaf\xe3\x5b\x98\xed\x79\xe9\xa9\x40\xc3\x3d\xed\xd2\xb1\x1d\x22\x7a\x5e\x84\x6b\xc2\x25\x0b\x0c\xb5\x95\x4e\x10\x4a\xf8\xe9\x70\x25\xd8\x13\x20\xd3\x7e\xa0\x3b\x0a\xa6\xd2\x0b\x1d\x94\xed\xf5\xbb\xac\x5f\x99\xf9\x57\x2b\xfd\x47\xaf\xec\x5f\xbb\xc6\xc3\xb7\x11\x94\x53\x9c\x1c\x1f\x9c\x09\x17\x19\x88\x25\xc4\x7d\xb7\x85\x94\x1f\xb6\x6c\xbc\x76\xa2\x7b\xdb\x5c\xa5\x51\x1b\x2d\xf8\x6a\xc4\x32\x97\x47\xca\x6e\x2a\xe7\xd8\xc6\x7d\x8c\x39\x13\x48\xd9\x7c\x6d\x01\x44\x66\x2d\x53\xfc\xe1\x71\xac\x36\x3c\x91\x6f\xa0\x0e\x4b\x9d\xb7\x67\xa0\x5a\xae\x2b\xfb\x47\xe8\x96\xef\x44\x33\x76\x53\xfb\x57\x95\x9d\x5a\x0a\xb7\xb6\xed\x70\x60\x0e\x33\x9f\xe1\xf4\x33\x5e\x87\x7e\x6a\x2c\xd1\xde\xb9\x0f\x28\xdf\x58\x85\x3d\x05\x74\x79\xcf\x20\xd7\xcb\xb7\xee\x32\x97\xfd\x54\x4d\xf1\x5a\x19\x62\x95\xf4\xca\x85\x5b\x6b\xec\x1d\xdd\xc4\x30\xee\xd9\x88\xc9\x24\x3d\x36\xa2\xf2\xf8\x42\x49\xc1\xb8\xd6\xc9\x0a\x59\xef\xc0\xa0\x86\x49\x64\xad\x52\x76\x5b\xbd\x32\x04\x22\x08\xf4\x33\xd3\x24\x44\x4c\x17\x46\x0a\x9b\x29\x48\xb7\x33\x69\xbe\x20\x8d\x00\xa2\xa7\x12\x47\x8e\x8e\xb5\x11\xf7\xb8\xad\x8b\x0e\xc4\xa0\xf0\x96\x05\xb6\x8b\x9a\xe1\x80\x05\x47\x3b\xf1\x00\x8f\xdb\x45\x40\x0c\x4a\xa5\x59\xd6\x28\x84\xd3\x2c\x44\xaa\xe4\xca\xac\x8a\x2e\x21\x0c\x52\xe0\x99\x9a\x80\x85\x75\xb6\xc0\x28\x2b\xf4\x0a\x4d\x89\xd1\x53\x92\xd8\x9b\xd4\x74\xb9\x30\x7a\x9c\xf3\xf6\x38\x6d\x84\x3a\xd7\xc5\x53\x71\x18\x6c\xe9\xce\xc8\x60\x95\x5b\xe0\x9c\xf3\x24\xa2\xe2\xe2\x39\x9c\xb0\x47\x5d\x08\x8d\x7c\x90\x29\xa7\xc3\xb3\x3d\x62\x2a\x47\xfa\x4e\xeb\xc1\x76\xfc\x5b\xcd\xda\xbb\xb7\xf4\xce\x68\x8f\x76\xdb\x27\xf9\x49\x1b\x7c\x21\x3d\x76\xc3\xaf\x19\xf8\xd1\x27\x1c\xe4\xfd\x64\x7a\x5e\x7b\xaf\x19\x0e\xd2\x12\x33\x72\x3b\xfd\x70\xf6\x6e\x7e\x79\x77\xdb\x78\xcf\x94\x46\x3f\xed\x89\x08\xe9\x1c\xbd\xe7\xc0\xc4\xff\x82\x39\xcc\xe6\x6a\x69\xe9\x01\xfa\x1f\xcf\x8d\x2c\x72\xfd\xa0\x97\x45\x70\xbb\x0e\xb3\xad\x35\x17\x4e\x27\xc9\x89\x9c\x93\xaf\xb5\x5f\x63\xeb\x03\x76\x29\xdf\xe3\xe7\x57\x2a\x4d\xa2\xdd\x48\x6e\x7b\x58\x1a\xad\xaa\x09\x8d\x5d\x08\x08\x6d\x20\x83\x2f\x35\x0a\xef\x67\x85\x88\x0a\x8f\x25\x68\x76\xee\xff\x69\xf4\xe8\x7e\x0b\x0c\xda\x61\xdd\xb0\x41\x72\x72\x87\x4e\x80\x93\x1d\x58\xa3\x21\x59\x0a\x6a\xb9\x60\xd9\x05\x99\x17\x71\xf2\x39\x55\x46\x1e\x8e\x87\xc7\xb5\x4a\xc9\x1e\x8b\x0c\xdc\x33\x99\x89\x3c\x52\x80\xba\x44\x72\x17\xc5\xa2\x75\x92\xc6\x3e\x23\xd9\x6b\x08\x53\x01\x30\xf9\x1b\x4a\xae\x2b\x1c\x7a\xc6\x16\xbf\xe3\xcc\xb7\xcb\xee\x1d\xee\xee\x83\x90\x67\xcf\x89\x3b\xdf\xb5\xec\x7f\x26\x7c\x34\x0e\x05\x71\xe6\xd5\x70\x10\xa0\xf6\x87\xed\x19\xe4\xd2\x31\x87\x3d\x25\x9b\x8a\xfc\xb5\xb9\xa8\xcd\x2b\x2d\xb3\xfa\x50\x02\x93\x3a\xda\xd1\x11\x04\xa8\x05\x34\x67\x23\x38\x6a\x82\x9e\xd7\x98\x26\x75\x26\x3d\xf2\xe3\x95\x0e\xb5\xc2\xd6\x79\x46\xeb\xbb\x45\xb6\x8f\xd8\xab\x4a\x47\x5f\x01\xd3\xb6\x54\x50\x1f\x79\xe7\x2b\x43\x03\xcb\x75\xc4\x92\x62\x26\xcd\x9d\xcd\xac\xcc\x5c\xa4\xe2\xc1\xb4\x2e\xf4\x0e\x11\x5e\xd1\x5a\x4e\x6c\xb7\x21\x38\x8a\x5b\x4e\x0d\x5a\x36\xb4\x09\xf3\x90\xb1\x19\xdd\xd2\xb1\xd0\x46\x6b\x85\x5c\x53\xe2\x93\xd9\x00\x09\x38\x3f\x11\xd8\x16\x0b\x69\xdb\x07\x78\x37\xcc\xf3\x3f\x93\xd3\x25\x10\x1b\x00\x9d\x42\x1c\xa3\x0d\xc2\x66\x1f\x72\xf4\x99\x09\x79\x83\x14\x59\x64\xec\x44\x50\x6e\x68\xdc\x49\xe2\x41\xe4\xdb\x02\x4c\xfa\x30\xae\x52\xf0\x62\xcd\x92\x62\x04\xbc\xa7\x56\x52\xce\x24\x8f\x63\x8a\x07\xc7\xe2\x82\xeb\x6c\xe7\x3c\xd3\xf3\x85\x7a\xd8\xa5\x56\x1f\x8a\xdc\xc5\x5d\x9d\xa5\x5c\xce\xf1\x04\xf9\x15\xb0\xbb\x41\xda\xee\x2e\x10\x47\xb9\x98\x3b\xae\xb6\x67\x69\xa7\x93\xf7\xd7\x16\xba\x4c\x57\x9b\x72\x61\x2b\x1a\x55\xa0\xd9\x0b\x4f\xeb\xe1\xac\x74\x84\x9b\xca\x99\xc5\x96\xf4\x97\x02\x1e\xd6\xcb\x6b\x18\x2b\xbb\x5a\xf7\xe1\x7a\xed\x0a\xf8\xad\x22\x2f\xfb\xcc\x7c\xed\x0c\xa9\x4f\xfb\x70\xd0\x5f\x43\x43\x7c\x12\xf0\x6f\x4f\xb3\x5e\x16\xfc\xd7\x69\xc5\x69\x82\x00\x6d\x6f\x03\xff\x3e\x85\x0e\xa0\x15\xd6\x19\xd0\xda\xd3\xb2\x87\xb7\x40\xd5\x82\x8f\x7f\x4e\x0f\x05\xc8\xa9\xbe\x76\x1a\x4f\x28\x02\xed\x1a\xb3\xa9\x64\x56\xdd\x1b\xb1\x57\xb8\xb0\xf4\x2b\x32\x40\x53\x6e\x7f\x02\xcb\xc4\xb4\x7b\x88\x82\xa1\x0e\x32\xc3\x40\x38\xbf\xdd\xd0\x0f\xb8\x93\xaf\xf7\x45\xc7\xe5\xbb\x04\x02\xf1\x9e\xc2\xb5\x82\x3e\xe4\x05\x16\x60\xe3\x48\x02\x53\x28\x75\x17\x7c\x19\xbe\xc3\xd6\xdb\xc9\xbe\xb3\x1f\x9a\x21\xca\x4a\x3a\x4f\xed\x73\xa6\xf2\x99\xb4\xa5\x91\x41\x5a\x63\x82\xc0\x7a\x51\x41\x5c\x10\xe9\xfc\xc1\x4a\x05\x28\x80\xcd\x09\x09\xa9\x46\x3d\xa9\x78\x5d\x0a\x00\x0a\x6a\xe1\x10\xa8\x90\x85\xc2\xd7\x66\x14\x0f\xb3\xc0\x37\x78\xcc\xd7\x89\x87\xd3\xd4\x0c\x4a\x52\x58\x9e\xe3\x20\x66\x4f\x97\xc0\xd6\xbd\x2c\x8d\x30\x0a\x28\xcd\x67\xd2\x0c\x1e\x5b\x26\x10\xbb\x41\xe3\x32\x93\x1f\x94\xb6\x14\x31\xda\x8f\x87\x05\x16\xd0\xb0\xbd\x72\xa9\x31\xe9\x87\x77\x70\x68\x93\xc7\x07\xc9\xde\xdc\xd1\x02\xc1\x9a\xc4\xf3\xb4\x55\x65\xee\x3b\x15\x71\x39\x93\x7f\x35\xc3\x03\xd7\x29\x2e\xed\xb4\xaa\x25\x6e\x61\x98\x41\x70\x95\x7d\xc4\x42\x5f\xff\xee\xcd\xc7\x37\x18\x5c\x55\x6a\xc8\x46\x3c\xaa\x1e\x20\x2e\xbb\x45\x99\xa6\x80\x43\xb0\x3d\x70\x0c\x4b\xbe\x8a\x9d\x38\x3c\xba\xd4\xcd\x65\x55\xc5\xe8\xb3\xd1\xfb\x99\xf5\x27\x2c\xe2\x45\xb4\x3e\xb2\xba\x1c\x89\x31\x7b\xfa\xd1\xf4\x61\x14\x94\xd1\xb4\x58\x6b\x82\x07\x73\xe1\xcc\x37\x8e\x72\xb6\xb2\x5e\x4c\x17\xc0\xfc\x7f\x5b\xcf\x76\xe6\x18\xb1\x71\x71\x22\x0e\xa8\xaa\xe7\xb9\xd7\x6d\xae\x51\x7f\xe3\x24\x1f\x89\xe4\x1b\x11\xb3\x57\x10\x06\xfc\xca\x4e\xfe\x4c\x66\x8b\x71\xba\x5d\x16\xc4\x5b\x68\x06\x65\x0c\x59\xf9\xf6\x9c\x72\xf3\xb8\x79\x4d\xda\x33\xd8\x9d\x17\xad\x76\x5d\xc7\x8d\x8d\xab\xa9\xbf\xc2\x82\x36\x2e\x37\x3a\x37\x55\x4c\x60\x35\x3d\x08\xd7\xf7\x23\xb6\xc8\xb9\x84\x84\x4a\x71\xa8\x54\xf9\xdd\x09\x97\x67\x24\x05\xb4\x71\x81\x92\xa7\x5b\x88\xff\x19\xcd\x24\x32\x28\x02\xd5\xfe\x36\x4a\x93\x88\xad\x72\x9e\xad\x6b\x7a\x90\x78\x10\xb2\x80\xbc\xdc\xd7\x82\xeb\xc3\xb0\x1a\x79\xbd\x04\xd6\xdb\x9b\x36\x91\x70\xfb\xe0\xb2\xc6\x79\x0d\xcd\xeb\x38\x5a\x00\x9f\x29\xe2\xf9\x30\xbe\xab\xbd\xac\xcc\x15\xae\x4f\x22\x9e\x03\xff\xb3\xe9\x1c\xb3\xb5\xee\x03\x3f\xe0\xb8\x12\x15\x93\x45\xf4\x1e\x0a\xd8\x70\xd4\x4e\x07\x11\xf4\x4e\xab\x5a\x24\xf7\x9c\x55\xde\x6e\x4e\x6e\x3f\xb4\x54\xd8\x30\x08\x27\x38\x46\x94\x37\x15\xc8\x3b\xd9\x1f\xcb\x85\x4a\x2d\xfb\xe9\xf4\x1d\x53\x39\x24\x1e\x2a\x14\xfd\x94\xc4\x5d\xda\x41\x22\x63\xf1\xe9\x20\x0a\xa2\xdd\x07\xbd\x55\x9b\x4d\x35\x41\x7e\x9b\x7a\x67\x41\x3a\xe5\xc2\x1c\xc2\x85\xbd\x19\x37\xde\xd2\x75\xa8\xf2\x24\x2d\xd6\x80\x1f\xc6\x10\x1d\x3f\xa8\x1b\xbe\x65\xd1\x9a\xcb\x55\x60\x9a\x00\x38\xa7\xc8\x54\x8e\x09\x7a\x1f\x80\xeb\x53\xe5\x96\xe2\x81\x88\x0b\x28\x4e\xc8\xb9\x31\x10\x9e\xaf\x2c\x3b\x01\x5f\xad\x72\xb1\x82\x30\xd6\x99\xac\x50\xaf\x00\xcf\xa9\xcd\x0d\x84\xf5\xec\x62\xae\x78\x1e\xfa\xa7\xae\xdb\x60\x91\x6f\x5d\xdc\x3f\x65\xb7\xf6\xfb\xb9\x3e\xac\x23\x96\x88\xf1\x88\x7d\xe5\x43\x12\x44\xa4\xa4\x23\x0e\xe8\x88\x1a\xaf\x99\xfc\xd9\x9e\xab\x43\x93\x27\xaa\xbd\xed\xf0\xac\x91\x23\xbb\x75\xd1\xec\x64\x5e\x28\x78\x51\x0e\x38\x83\x4e\x79\xc1\x53\xb5\x3a\x35\x1f\xdf\xe0\xb7\xbb\xd6\xf5\x29\xc6\x0b\x58\x8e\x3e\xf3\xbe\x39\x39\x4d\xdd\x9e\xc3\xbf\x6d\xac\xf7\x1a\x90\x53\xd5\x6d\x40\x7e\x0e\x55\xdd\x12\x31\xed\xb7\x21\xa7\x1d\xe4\x42\x3b\xfa\x34\xd4\x44\x6c\x51\xfd\x14\x98\xa4\xeb\xd7\xd8\x16\x09\x90\xe5\x2a\x2e\x23\x11\x9b\x9d\x0b\xf7\x21\xc4\x43\x39\x8e\xa3\x8a\x90\x6c\x3b\x68\x2b\x44\x6d\x70\xea\x7e\x2e\x9b\x43\x2f\x6e\x7c\x37\xfc\x77\x1d\xf6\x06\xab\xf1\xb5\x0d\x7a\xb8\x3f\x71\x9c\xf2\x81\xe7\x94\xab\xbe\xca\x68\xaf\xf2\x64\x95\x48\x5e\xa8\x9c\xbd\x76\x4c\x06\x6f\x5c\x1a\xbc\x6e\x0d\x61\xa0\x98\xa8\x0c\x11\x8a\x89\xcf\xaa\x78\xb4\x2d\x52\xf3\x96\x2e\xf8\x26\x0b\x39\xa2\xc1\x0a\x1c\x8c\x4c\x8a\x83\xe0\x74\x13\xb0\x9d\x26\xda\x47\xed\xce\x24\x79\x1c\x70\xde\x54\x1e\x26\x39\xe8\x3c\x9b\xb3\xb2\x98\x3f\x91\xf7\x0c\x3f\x1e\x66\x78\x22\x10\xc4\x07\x9e\xed\x66\x92\xe2\x64\x72\xc0\xb0\x45\x32\x47\x78\x4d\xa5\xba\x3e\x77\xa7\x11\x1a\xc8\x6c\x5d\x77\xdc\x5f\x9f\x5b\x47\x91\xbf\x0f\x56\x2e\x58\x30\x11\x48\xa9\x8b\x61\x60\x78\xb5\x77\x62\xcd\x9c\xe2\x96\x7e\xea\x34\x55\x65\xcc\x48\xa8\x11\x08\x20\x1f\xe3\xe9\x08\x1c\xd7\xe3\x71\x57\x58\xdb\xc0\xf4\xe6\x4e\xfe\xc0\x77\xed\x3b\x10\x9e\x75\x48\xe0\x9d\x5b\x9f\x46\xf6\xc5\xa6\x9e\x46\x1a\xe6\xde\x89\xe3\x41\x73\xef\xac\xe0\x40\xb8\x39\xcc\x40\x0a\xf7\xd1\x24\x4e\x61\xbf\x85\x0e\x84\x16\x4a\xf0\x8a\x63\x56\xdf\x1f\x5c\x9d\x65\xa1\xd8\x5d\x55\xc6\x73\x21\x8b\x39\xd4\x38\xac\x32\xa8\xe4\x0a\x3e\xaf\x28\x4c\xbd\x0c\xc1\x7f\xbe\x55\x68\xdf\xb7\xec\x5a\x7f\x61\x37\x64\xd3\x32\xf2\x2a\x01\x08\xb1\xbe\x67\xaf\x13\x40\x3c\x05\xbe\x50\x37\x71\x1d\xd3\x45\x1d\x7a\xc2\xe8\x05\x1d\xaa\x88\xf6\x5e\x1d\xf2\xad\x07\x57\x35\x94\x42\xe6\x3d\xe2\x04\x30\xa2\xd6\xfe\x16\x64\xdc\xb8\xa8\xfc\x0d\xec\xc8\x66\xfe\x52\xf6\x37\x91\x2b\x1f\xff\x85\xc6\xaa\xb0\xe0\x9d\xfa\xfa\xd3\x93\x85\xa3\x3e\x8e\x69\xaa\xc3\x3c\xad\xf0\x0b\x11\x98\xa1\x45\x61\xb1\xb5\xd7\x91\x0e\x17\x52\x26\xa2\x79\x47\x52\x9e\x5e\x4d\x09\x2e\x9e\x61\x92\x9d\xa4\x76\x98\xd9\x0d\x7a\x0c\xf6\x0a\x0a\xac\xda\xf0\x8c\xd0\x85\x04\x24\xaf\x3b\x6f\xc6\xd0\x89\x3f\xff\xe9\x2f\xe3\xa4\x23\xc4\x1b\x9a\x3e\x14\xac\xe5\x1a\xff\x3e\x4f\x84\x8c\xc1\x19\xcb\xe3\x66\xbe\x38\x59\xb1\xce\x57\xc4\xb3\x59\x86\xcf\x12\x0f\xde\x7e\xd4\xea\x39\x2e\xa2\xcf\xe0\xd1\xf7\x42\xd6\x6d\xdf\x8a\xbf\xaf\x4b\x95\xd0\xf3\x78\x2b\xf9\x26\x89\x3e\x6b\x1b\xb7\x89\x48\x63\x68\x22\xd5\xbe\xcf\x2b\x15\x8b\xe8\x7e\xa8\x4e\xf0\xe4\x6c\x17\x22\xba\x67\x3f\xdc\x7e\x38\xc7\xe4\xc6\x89\x9e\xc9\x0b\x5e\x24\x0f\xe2\x2e\x4f\x9d\x3b\x80\x40\xda\x79\x6a\xf7\x48\x95\x7d\x3d\x60\xfa\xb2\x54\xed\x56\x71\x08\x93\x63\x6c\xb6\x47\x8b\x32\xba\x17\xc5\x71\xce\x65\xac\x36\xd8\x8d\x63\x5d\x2e\x97\xc9\xa7\x71\xc1\xf3\x8e\x4c\x19\x68\x47\xf8\x15\xf5\x5c\x9f\xff\xac\xf0\x3a\x2f\xaa\xba\x8f\x10\xe6\x4d\x59\xf5\x2b\xca\x2d\x46\x25\xf2\x8d\x00\xaa\x53\x56\xcd\x32\x03\xa5\x60\xe4\x34\x24\x63\xd5\x9a\xe2\x27\x14\xa5\x7a\xff\x18\x28\xf7\x1f\x83\x56\x79\x17\x76\xd8\x28\x9f\xe0\x74\xc3\xef\xf1\x7e\xb8\xca\x85\xd6\x23\xa6\x15\xb4\x78\x26\x6d\x24\x82\x8d\x96\x03\xdc\x0b\x90\x25\xa7\x5b\x16\xa9\xcc\x41\xe6\xb1\x5f\x6b\xf5\x08\x76\xfa\x30\x4e\x18\x52\x78\x97\xb2\x48\x52\xc6\x97\x05\x19\xf1\x21\x33\x84\xcd\x04\xa7\xc7\x33\x09\xae\xd8\x08\xba\x0f\x10\x09\xe7\x7e\x71\x9d\xd0\x6c\xc9\xa3\x24\x4d\x0a\xe2\xab\x83\x10\x33\x6e\xfa\x6b\xce\x03\x33\x96\x39\xdf\xf2\xd4\x5f\xac\x78\x5a\xfa\xd0\xe8\x23\x2d\x76\xf0\xa1\x26\x7a\x8e\x06\x82\x97\xdb\xe0\x1e\x05\x98\x84\xce\x07\xe4\x8e\x9f\x98\xca\x2f\x6a\xa7\xe8\x3f\x85\xff\xad\xdc\xc3\x77\x69\x05\x07\x5c\xc8\x0f\x39\x1c\x9b\x57\x6e\x97\x3e\xdd\xeb\x19\x49\x6c\xd1\xc9\x15\x55\xdc\x07\x1f\xbb\xe3\x11\x7c\x26\x1d\x97\xfe\xb1\x4d\x7a\xd7\xac\x61\xc0\xe8\xb5\x2b\x89\x9f\xc9\x9c\xd1\x45\xe8\xdf\xa7\xf9\xd6\x1a\x7f\xa5\x54\x7a\xa8\x45\x9e\x28\x39\x12\x25\xe7\x90\x07\xfa\x90\xeb\x24\x2e\x00\x67\xd8\x9a\xbe\x73\x3e\x77\xc7\x90\x5f\xcd\x1e\x47\x70\x30\x6a\x02\x08\x32\x68\xc4\x0e\x9c\xba\xce\x5a\x40\x17\x03\xf1\xf6\x50\x06\xa2\xb5\xac\x6a\xdf\x74\x11\x04\xec\x2c\xdc\xb7\x11\x58\x84\x6b\x2d\x1c\x64\xac\xc3\xac\xcd\xb5\xaa\x9c\xe1\x2e\x64\x1b\x77\xe3\x18\xd4\x6d\xc7\x73\xc3\x25\x59\xfe\x48\x8b\x9f\xc9\x40\x63\x47\x46\x3c\x1b\xd0\xe0\x46\xad\xcd\x9e\x57\x59\x86\x07\xdb\xf3\x0e\x49\x29\xb1\x53\x72\xbe\x0b\x93\x43\x02\x16\x24\x52\x9b\x45\x22\x2d\x27\x05\x19\xb9\xe1\xaa\x31\xb1\x8c\xbd\xce\x21\x61\xaf\x0c\x98\x32\xa8\x36\xf6\x4e\xcd\x09\xc9\x8f\x43\x91\xb5\xef\x3a\x1e\xde\xef\x9e\x37\xfb\x45\x87\xa7\xb1\xde\x03\x73\x80\xa4\x8f\x7c\xab\x21\x81\xba\x30\x52\x71\x89\x86\xdd\x6a\xfb\x47\x81\xfa\x61\xd9\xa0\x67\x12\x46\x08\xd9\xc2\xac\x20\x35\x92\x15\x16\x60\x6a\x53\xc5\x7b\xa6\xb7\x57\xba\x7d\x70\x7e\x1d\x5f\x4d\xbe\xd3\x57\x83\x4e\xe8\xff\x1e\xee\x99\x1d\x46\xe0\x03\x6d\xd1\xc1\x31\x89\x1a\x23\xc1\x84\x20\x6c\xcc\xb9\xa8\x47\x6c\xc3\x13\x49\xdb\x00\xd3\x71\xc6\x62\x51\xae\x56\x9d\x26\xd2\xdf\xbe\xaf\xa5\xba\x4f\xfe\xc7\xdb\xc2\x77\x72\x15\x3e\x87\xb5\x78\x6a\x6b\x42\xf3\xb5\xb9\xf7\x7d\x1e\x03\xf1\xaf\x68\x8d\x6f\x75\x89\x35\x16\xd1\xf3\x58\xe3\xa7\x7d\xac\xf1\x16\xdb\x05\x01\x7e\x74\x9d\xb6\xf8\x9b\x7f\x98\xe9\x3f\x8f\x99\xbe\xd7\xa2\x40\x52\x9f\x79\x52\x55\xd0\x77\xb4\xf0\x89\xbc\x97\x8e\x0a\x1a\x5a\x85\xdc\x72\x46\xba\xc7\x9a\x2d\x78\xf4\x02\x44\x98\x70\x3a\x1e\x6e\x0f\xdc\x03\x7e\xb9\x51\x1b\xc1\xa0\x2a\x8d\x89\x9c\x18\x45\x31\x8e\x00\xad\x6a\x3a\xe8\x11\x23\x84\x47\x81\xe3\x14\x91\x2b\xb1\x57\xaa\x5f\x4b\xf1\xc8\xcc\x69\x35\x0a\xe1\x7b\xc1\xf4\x40\x86\xbf\x37\x46\x3b\xac\x60\xfd\x1d\x61\x47\x2e\x56\x3c\x8f\x21\xc2\x84\xb6\x64\xca\xa3\x7b\xf3\x6f\x68\x1f\xd5\x48\x10\x43\xcb\x15\x80\xb0\x57\x5f\x5a\x22\x23\xa4\x42\xb4\x9c\xee\xae\x7d\xf8\xb9\x66\x3c\xca\x95\x46\xa3\x91\x4b\x8c\x0d\xf1\xd5\xa0\xc0\x3e\x24\x71\xc9\x53\xac\xb1\xd3\xd2\x3e\x14\xbe\x56\x07\x1c\x05\x39\xec\x9a\x68\x36\x9a\x0e\x64\xa8\x82\x61\x1c\xcf\xe4\x3b\xe7\x30\x39\x61\x77\x5a\x10\xca\x4c\xdb\x2c\x00\x3b\x5b\xfa\x62\xea\x43\x03\x13\xd8\xa9\x43\xec\x18\x00\x0b\xb2\x0e\x06\x42\x77\x8f\xc4\x1e\x3a\xd5\x43\x26\x65\x30\x2d\xf4\x34\x48\xa4\xef\x87\x05\xef\x09\xb9\xe0\xf1\x36\xe4\x62\x4c\x24\x03\x2f\x1d\xe3\xf1\x26\x91\x66\x13\xd8\x64\xad\xee\xa4\xb1\x79\x1b\x10\x72\x0c\x39\xcd\xd2\xb4\x26\x04\x35\x93\xc2\x28\x97\x3c\x4f\xd2\x2d\xdc\x27\xb2\x5c\x1c\x05\xf5\x04\xf3\x43\x11\x4f\x90\x81\x82\x48\x64\x4a\x2d\x96\x65\x8a\xb7\x0e\xb8\x97\xbb\x0e\x90\x44\xba\x9b\x8e\x8c\xc2\x51\x50\x26\xa1\xa0\x62\xcc\xcf\xf9\x1c\xd1\x23\x0d\x6f\xe5\x30\x8f\x9b\xe7\x0a\xcd\x01\xe4\xbe\x56\x8f\x36\xd4\xed\x91\x7b\x2c\x73\xd7\xe9\xfa\x6c\x5e\x96\xdd\x7a\xa8\xbd\x01\x5a\x39\x15\x10\xfe\x39\xd7\x1a\x3d\x13\xb1\x93\x4d\x89\x84\xee\x50\x8a\x6b\x6f\xb9\x2e\x35\x46\xcc\x99\xb9\x84\xf3\xcb\x1a\x3a\xaa\x86\x6b\xe6\x7a\x97\x68\x25\xd9\xac\xfc\xf2\xcb\xaf\x05\xfb\x12\x42\x08\xe9\x3e\x82\xfe\x31\x60\x0b\xc5\xd2\x41\x64\xbb\x0a\x04\x52\x89\x36\x66\x84\xb5\x41\x54\x6d\xbc\x3e\x80\x3c\x79\xb4\x66\xba\x5c\x20\x82\x91\x93\x8b\x85\x4b\xc7\x3a\x7e\xae\x00\x8c\x88\x27\xbb\x6d\xfd\xff\x23\x0e\x05\x4c\xfa\x32\x93\x99\x42\x62\x7c\x80\x7e\x2e\x04\xdb\xf0\xfc\x1e\x72\xf8\xa2\x79\x1e\x12\x01\xbc\x4e\xc4\xb8\xea\x5e\x78\x53\x69\x0f\x39\x74\x90\xf0\x9a\xe5\xa5\x94\x36\x29\x19\x33\x8a\xa9\xb7\xf5\x8f\x66\x72\x51\x86\x77\xcf\x8a\xb3\xc0\x2f\x2d\x70\x18\x80\xb0\x55\xc0\x54\x42\x8d\xe2\xda\xb7\x6b\xcc\x7a\x78\x0d\x66\xf2\x99\xdd\x06\xfb\x0c\x7e\x57\xa4\x83\x59\x63\x5e\x10\xaf\x00\xdd\x0d\xf3\x66\xc3\x74\xe0\xb2\x07\x25\xe7\x0a\x92\x67\x8f\xd8\x0f\xc9\x83\x18\xb1\x9b\x8c\xe7\xf7\x23\xf6\x0e\xdd\x7f\x7f\x50\x8b\x36\x1b\x5e\x83\x50\xe2\x60\x3b\xde\xd3\xcc\x58\xbb\x68\x5e\xda\xb5\xff\x9f\x1b\xc4\x00\xac\xcb\xf7\xfd\xdf\x13\x91\xd7\xc1\xf5\xf1\x3f\xdd\x12\xb1\xc7\x4d\xfd\x0f\xf0\xda\xff\xc8\x5b\xf1\x6e\x9a\x8f\x7f\x0a\xff\x6b\xe5\x97\xd5\xb8\x40\xf7\x24\x29\xd7\x8a\x4a\xfb\x6d\x05\x36\x27\x71\xfd\x50\x6e\xc6\x37\xf7\xdb\x0a\x14\x3e\x1e\xbb\xd0\xf6\x01\xa0\x7b\xfa\xd4\x8e\xd7\x69\xaa\x74\x99\xef\xde\xfc\xd7\xd5\x56\xdb\xda\x5b\x88\x5e\x61\xb1\x6d\x16\x02\x58\x0b\xfa\xc2\x4f\xf0\xb5\xf9\x5f\xd5\x62\x0e\x58\xab\xc3\x76\x78\x5b\x71\x8e\x3e\x5a\x45\x95\xa6\xfa\x13\xf2\x26\x13\xc0\x77\xe5\x55\x51\xef\x10\xa8\xad\x30\x67\x1a\x99\x49\xcb\xb8\x8f\x11\xb3\x79\x2e\x80\x1a\x3c\x17\x90\xe8\x91\x11\xc3\x61\xba\x0d\x34\xa2\xe0\xe6\xe3\x41\x31\x61\x94\x1b\x04\xab\xd2\x7d\x6b\x21\x84\x74\xa3\x3d\x44\x95\x00\x1a\xec\xda\xe8\x13\xda\xed\x51\xd8\xc4\x0b\x1d\x49\x69\x1b\xdf\x05\x77\x41\x50\xb9\x57\xa2\x08\xa4\x79\x4d\xb5\xa8\x6c\xcd\x8a\x87\xea\x37\x85\xf8\x6f\xf5\x41\xd7\xc8\xb9\x2a\x06\x94\x5e\x3e\xbd\xe7\xb0\x97\x5f\xf1\x62\x8d\x17\xda\x8d\x2a\x04\xca\x4c\x64\x09\xc2\xf5\x82\x56\xe7\x45\xaa\x16\x90\x61\xb1\xd8\xc1\x20\x19\xd1\xd6\xee\x35\x74\xcd\x09\xeb\x23\x19\x8c\x34\x81\x48\xdb\x5c\x68\x20\x5c\x69\x7a\xa9\xfa\xe2\x93\x87\x5d\xba\x9b\xcd\x35\x42\xff\x5d\xe3\xb2\xdd\x4c\xc9\x61\xb6\x35\x80\x55\xcf\x9e\x10\x41\xd3\x48\x70\x42\x54\xd5\xe4\x06\x46\xb6\xda\x5a\x7f\x6d\x22\xff\x99\x9c\xe0\x93\xe0\x10\xe0\x3e\xc7\x96\xc3\x83\x52\xce\x66\xb7\xff\x30\x7c\x95\x4d\x42\x04\x22\x59\x08\x46\xde\x96\x09\x97\x81\x11\x44\x35\xca\x22\xc9\x05\x93\x80\x42\x98\x49\x5d\x2e\x8e\x3c\x31\x89\xb9\xc5\x3d\x00\x99\x8e\x16\x19\x87\xab\x0c\xf0\x15\x1d\xb5\x1c\xc3\x68\x99\xf4\xb9\x72\x2c\x7d\x20\x4f\x49\xf8\x43\xac\x24\x46\xc6\xbb\xbe\xbb\x72\xcc\x65\x0d\x6e\xd1\x16\xae\x84\x87\xdd\x2e\x79\x01\xd9\xbc\x20\x02\xf3\x1a\x51\x14\xbf\xf6\x01\x1e\x7a\x43\xfb\x1e\xdd\xe0\x4f\x9b\xc9\x7f\xb5\x67\x43\x37\xa8\x78\xc0\x4a\x37\x23\x63\x8e\xa8\x4e\xb0\x73\xa5\x6d\xf6\x0a\x19\x28\x81\xdd\x8d\x6a\x2c\xf9\xb6\x52\xb9\xc5\xb5\x84\x29\x5d\x14\x85\xcb\xc2\xd3\x87\x44\x07\x64\xef\x50\xdb\x8d\x10\xec\x24\x17\xcb\x93\x8f\xb9\x58\xce\xed\x4c\x8f\xa1\x43\x63\xd3\xa3\x26\xe5\x7b\xcf\xc5\xa1\x33\x25\xdb\xc9\x0f\xf7\x50\xa3\xd6\xba\x84\xe5\x04\x7d\x4a\x96\xcc\x67\xb7\x35\xfd\x01\x06\x08\x11\xd7\xb9\xe8\x1b\x2d\xfb\xec\xc7\x5c\x17\x12\xac\x07\xd4\xaa\x23\x09\xea\xff\xfc\xe3\xad\x32\x66\x7d\x8e\xb7\xdb\x2a\x64\xc6\x0a\x7b\x2e\xdd\x81\xd7\x8d\x0b\xfd\xbc\xe8\x74\x98\x40\x9d\xf1\x47\x49\x3c\x36\x83\x4c\x4f\xfd\x8e\xb5\x1a\x80\x28\x38\xd6\x1a\x18\x38\xbf\xcb\xa4\xb5\xf4\x25\x2e\x8f\xe6\x88\xf9\x1b\x34\x4f\xd3\x30\xa3\x86\xf7\xb4\xcd\xa4\x8f\x4b\x35\x5a\x6b\x9a\x5a\x13\x5e\x45\xdf\x70\x09\x8f\x75\xc1\x0b\x31\xb2\xa4\x2b\x44\x57\x48\xfe\xb0\xa3\x05\x87\xd4\xd6\x2e\x87\xda\xbe\xdd\xfc\x5c\x97\xc8\xdf\x58\x5c\xf4\x1e\xcf\x33\x56\x3b\xbf\x17\x0d\x38\xf3\xde\xb6\xb6\x7b\x3a\x02\x4a\x09\xd8\xcc\x56\xca\x46\x3c\xcf\x2d\xca\x9f\x6a\x65\x96\xee\x3c\xbc\x95\x74\xb4\x73\x2d\xa2\xfb\x4c\x25\x72\xb0\x2c\xaa\x50\x5c\xc0\x62\x2f\x98\x2f\xcd\xdd\x0e\x7b\x1d\x8e\x15\x7d\x12\x3b\xa2\x01\x5e\x61\xa1\xa1\x9e\x8c\x8d\x33\x97\x29\xbb\x7b\xd9\x3d\xb7\xfd\x42\xf8\xb3\xe1\x05\x6c\xb1\x2d\xfe\xa1\xda\xa9\xc2\x5b\x0c\x3b\x15\x26\x50\xde\x88\xfe\xea\x39\xd8\x9c\x55\x28\x0c\x5b\x87\x14\x4c\x90\xff\xb0\x0c\xfd\xc3\x32\xf4\xdf\xdc\x32\xf4\x39\xcd\x42\x80\x8d\x79\x49\x9b\xd0\x0e\x07\xf9\x01\xdb\xd1\xd5\x3a\x38\xc6\xb1\x55\x3b\x1e\x05\x49\xbf\x83\x48\xc7\x26\xd0\xdf\x12\x61\x98\xf1\x59\xf0\xe8\x5e\xc8\x4e\x1f\xbd\xa5\x2f\xea\xcc\xbf\xfa\xbc\x08\x96\x36\xf6\xa5\xe0\xeb\xdd\x50\x16\x0f\x75\x22\xd2\xe0\x36\x42\x10\xb3\x4f\x40\xf7\x34\x1d\x3f\x02\xd0\x98\xca\x1d\xb1\xb5\xa6\x28\x3c\x74\x46\x22\x4d\x12\x82\xa5\x6a\x54\xd0\x7d\x31\x71\xb6\xe2\x79\xa6\x54\xda\x0a\x8d\x7b\xd6\x01\x6c\x04\xca\xf4\x1d\xbc\x29\x2a\xa3\x3a\x04\x8c\xd9\x51\xf4\x41\x17\x3e\x44\x03\xe3\x31\x20\x13\x07\xac\xa6\xb8\x84\x58\x4a\x3f\x1c\x41\x7a\x45\xee\x0c\x2e\x84\x11\x5b\x88\x88\x43\xe2\x57\x0b\xde\x8b\xb8\x8b\x3e\x09\x49\x91\x1a\xe1\x20\xba\x59\x4f\x87\xd7\x12\xca\x9d\x27\x6d\x69\x37\x86\x6e\xae\x9a\x86\x60\xa1\xe5\xd8\x72\x8b\x24\xb1\xb4\x8b\xfb\x12\x1a\x5b\x8e\xe9\x39\x64\x5f\xec\x77\xc2\xb5\xca\x9d\x29\x15\x74\x0a\xe5\xf4\x17\xa4\x3f\x40\x38\xce\xa6\x27\x72\x67\x26\x27\x2e\xcf\xad\xc7\x7e\x39\xe4\x1e\xba\x4b\x11\xb3\xd8\x98\x1a\xe4\x72\xf4\x37\x97\x11\xd3\x65\xb4\x06\xb6\xca\xaa\x9c\x0a\xe5\x56\x73\xc7\x8e\x66\xd2\x5c\x88\xc0\xd4\xb2\xe1\x10\x17\xff\x68\x94\x55\x9d\xfc\x4d\x38\x78\x16\x91\x77\x85\x88\x2c\xbc\x38\x29\xd9\x8a\x5e\xb3\xc4\xa1\x08\xb0\xf0\x98\x92\x32\x8b\x79\x21\xc6\x33\x8f\xb6\x49\xd0\xd2\x69\x51\x1e\xa4\x32\xeb\xb0\x63\x21\x8e\xb1\x26\x69\xd3\x64\x29\xa2\x6d\xd4\xc8\x42\xb4\x9b\x26\xe2\x1f\xd7\xb6\xdf\xd6\xb5\x0d\x59\x76\x31\x66\x70\xc8\xd0\x52\x53\xaf\xfd\xe7\x87\x0d\xae\x60\x41\x4b\xf4\x80\x71\xfe\x8c\xd7\xce\x16\x1d\x78\x98\x3e\xdf\xfb\x1e\xb4\xfb\x38\xf3\x17\x5b\x7f\x58\x07\x14\x08\x0d\xb5\x30\x74\x2e\x16\xe1\xd2\x31\x0a\x6d\x6f\xb7\x7e\x37\xcb\xcc\x6f\x0a\x9c\xd4\xe7\xe2\x6a\x34\x6e\x07\x57\xba\xb0\x9a\xb6\x14\x78\xde\xed\xd0\xb8\x03\x56\x77\x5e\xbc\xd2\x6e\xd4\xab\x12\xd0\x62\xff\x27\x72\x7b\x50\x00\xe6\x36\x13\xf3\x32\x4f\x0f\x82\x1b\xdf\x5d\x9f\x1f\x3b\x6d\x03\x34\xe7\xce\xbc\x47\x45\x2d\x35\xb4\xcd\x49\x2c\x62\x82\x83\x46\x2a\x65\x8b\x72\xb9\x84\xfc\x25\x04\x0c\xb5\xc2\x08\x32\xd3\x97\xba\xb0\xe7\x09\x32\xcd\x70\x5d\xcc\xa4\x92\x82\xcd\xbe\x38\x9e\x7d\x61\x8e\xb2\x9c\x47\x85\xc8\x91\x64\x20\xe5\xba\x60\x5a\xac\x40\xd5\xa2\x4a\xef\xae\xcf\x21\x2a\xb1\x58\x63\x71\xee\xca\x8a\xf1\x9e\xc8\xf9\x0c\xb9\x7e\x80\xa0\x5a\x06\x19\xb7\xa0\xed\xaf\xb9\x66\x89\x9c\xc9\x8f\xa6\x88\xe3\x95\x52\xab\x54\x8c\xed\x84\x8c\xdf\x91\xe9\xf1\xe3\x1b\x6c\x01\x7c\x1e\xc2\xfa\xcd\x81\xc8\xa5\x92\x49\xc4\x53\x08\xc8\x99\x49\xd0\x9a\x47\xa6\x33\x60\x1a\x9d\x7d\x31\x9e\x7d\xc1\xc0\x7d\x5a\x30\x1e\x45\x22\x2b\x44\x8c\xa9\x4d\xa7\x92\x65\x80\x5f\x8c\xc4\x88\x15\x82\x6f\xb4\xa5\x74\x66\x99\xb9\x63\xc2\xd5\x90\x25\x92\x90\x4e\x8b\x44\xf2\x7c\x8b\x60\x26\x4c\x56\x4e\xc1\x1f\xdb\x99\x14\x9f\x80\xfe\x33\x01\x06\xd0\x52\x3b\x5a\x1a\x4a\x4c\x60\xba\x3c\x91\xdb\x31\xfb\x01\x19\x1a\x90\x02\xf5\xee\xfa\xdc\xd2\x1b\x51\x0c\xe8\x4c\xea\x68\x2d\x36\x82\x7d\x5c\x17\x45\xf6\x71\x84\xff\xd5\x1f\xc1\xe3\x28\x15\xc3\xa7\x23\x66\xa6\xc8\x28\xaa\x16\x2f\x9f\x6e\x21\x87\x6c\x99\x51\xc2\xf9\x99\x04\x2e\xf6\x3c\x44\xf7\x9a\xd1\x86\x1a\x83\x2b\x78\x05\x17\x6e\xa4\x38\x24\x77\x3c\x31\x83\xf3\xbf\xd8\x74\xe9\xab\x34\x03\x68\x73\x8b\xb9\x56\x81\x42\xa2\x21\x64\x6b\x6c\x3e\x98\x48\xf6\xc3\xed\xed\x15\xfb\xfe\xec\xd6\x2a\x3b\x77\xd7\xe7\xb8\x2e\x80\x4e\x85\x71\xf6\xe7\xfa\x14\xdf\x6e\x33\xf1\x97\x3f\xff\x65\x26\x99\xcd\x51\x2e\xed\x48\xe3\x8e\x1e\x21\x25\x2c\xe0\x9d\xc0\x31\x0b\x54\xce\x50\x1f\xa6\xdc\xa1\xe6\xe7\xa8\x9d\x3f\x92\xb5\x00\xce\xa8\x54\xa9\xfb\x32\x73\x66\xee\x50\x0f\x33\x15\xde\x5d\x9f\x43\xe9\x40\xa7\x54\xac\x21\x7f\x9a\x70\xd6\x17\x98\x78\x6e\x1b\x63\xfe\xfd\xa0\x92\x98\x71\xb9\x35\xdf\x62\xd1\xb0\x2c\x73\xb1\x54\xb9\x18\xd9\x37\x4d\x01\xbc\x48\x16\x49\x9a\x14\x5b\x90\x52\x36\xaf\x7d\x66\x39\xf2\x4d\x01\xe6\x36\x43\x00\x6f\xb3\xc0\x30\x8d\xed\xeb\x3b\x1d\x22\xc0\x61\xd2\x5c\x6e\x44\xbc\xe8\x98\x6f\x17\xb9\xe0\xf7\x66\x75\x53\x09\xe3\x37\x94\x33\x56\x9c\xe0\x19\xb3\x2c\x65\x84\x4b\xc3\xb4\x81\x56\x3f\xdd\x9c\xd2\x2d\xe3\x0f\x3c\xc1\x9c\xb2\xd6\x5d\xbe\x5c\x26\x51\xc2\x53\x92\x1c\x8b\x72\x09\x69\x63\xb8\xa6\x94\x45\x08\x3e\x34\x85\xc0\x2d\xc3\x26\xec\xc7\x05\xb5\x10\xab\x04\x01\xc7\x8f\x49\xb1\xc6\xb8\x82\x31\xce\x33\xcf\x12\x3d\x8e\xd4\x06\xf6\xdb\x0d\x2c\x25\x4d\x97\x5e\xc0\x81\xd7\xd6\x39\x7b\x6d\xa1\x76\x9b\xac\xd8\xd2\xda\x7b\xc3\x36\xc9\x6a\x5d\x40\x22\x17\xa8\x1d\x20\x11\xc9\x26\x4b\xe1\xd2\x47\x1e\x46\x8b\xf7\xd5\x62\xc3\x65\x91\x44\x5d\x3e\xa5\xd6\x94\xe0\xfd\x30\x9e\x8b\x6d\xb1\xdb\x8e\xf7\x81\x78\xf6\x39\x52\xe8\x07\x12\x99\xd5\x05\x32\xc9\x40\x48\x2f\x13\x10\xf8\xd7\x53\xce\xee\xbb\x42\x7d\x9c\xc8\xed\x47\x4f\x42\xca\x65\x90\xfb\x6a\x47\xed\x76\xff\xf3\x54\xd1\xac\x31\x3e\x93\x80\xea\x34\x02\x83\x92\xd1\xee\x3c\x63\xdc\x91\x62\x66\xf6\xca\x2e\x9a\x34\x59\x40\xdd\x24\x2b\x34\xd3\x65\x06\xf1\x04\x85\x62\x19\x8f\xee\x8f\x4b\x69\xfe\x63\x84\x21\x6e\x77\x1d\x92\x13\xcd\xa4\x5a\xb2\xb2\xc0\x8d\x63\x97\x30\x18\x45\x02\x53\x80\xbf\xa0\x6d\x44\xb1\x56\xb1\x8b\x0b\x33\x65\xc2\xf8\x99\x16\x9d\x11\xbd\xf4\xdb\x13\x76\x65\x2a\x34\x8b\x98\xea\xe6\xae\xfb\x89\x64\xa7\xff\xfa\xaf\xf0\xbe\x19\xdc\xf7\x4a\xb1\xa5\x52\xec\x5b\x36\x1e\x8f\xff\x1d\x7f\x33\x85\x72\xb9\xa5\xbf\xb8\xdc\x8e\x4d\x71\xef\x73\xb5\x79\xbd\x54\xea\x0d\xfd\x0e\x49\x9b\xcd\x3f\x92\x25\x7b\x6d\x5e\xba\x83\xaa\x6e\xd5\xeb\x59\xf9\xe5\x97\x5f\xfd\xde\xbc\xfa\x86\xfd\x27\xbe\x13\xbc\xfe\xf7\xb0\xa9\x5f\xed\x69\xea\x1f\xf8\x03\xef\xd3\x56\xf6\x2d\x9c\x35\xa6\x80\x9d\x6d\x4c\xf4\xeb\xf7\x4a\x8d\xe1\xf6\x1f\xb6\x0e\x8b\x35\x6f\x60\x2b\x82\xb7\xfe\x3d\x68\x36\xb3\xed\xfe\x7a\x4f\xbb\x11\x55\xef\x5a\x8e\xc5\xbf\x57\xea\xf5\x78\x6c\xe4\x16\x8d\x2b\xb6\xfa\xf5\x9b\xea\x40\x43\x07\x9a\xed\x37\x8f\xa7\xd8\xfc\x77\x67\x37\xa7\xd7\xd3\xab\xdb\xcb\xeb\x37\x27\xb6\x07\x7e\x06\x82\xef\x99\x4d\xad\xed\x1a\xfe\xbf\xf7\x34\xfc\x7b\x65\xdb\x0c\x8d\x3e\xf9\x96\xe1\x6c\x66\x8b\xf1\x7b\xa5\xfe\x73\x3c\x1e\xff\x9d\x1e\x73\xb9\x1d\x99\x83\xc9\xbc\x93\xa1\x28\xff\xc0\x73\xbd\xe6\xa9\xe9\x53\xd0\x06\xd7\x89\xd6\x12\x6d\x71\xc9\xb2\x56\xd8\x9d\xdc\xf8\xe2\xa0\x32\x98\x58\x78\xeb\x9f\xbf\x65\x32\x49\xfd\xf4\x05\x75\xc0\x3c\xdd\x02\xb5\x44\x74\xef\xb6\x8b\xcb\x11\xba\xd8\xb2\xac\xbe\x71\x31\xee\x6c\x6b\x33\x14\x18\x71\x3f\x93\xaf\x5a\x24\xfa\xb1\x51\xed\xc6\xf0\xc0\x1c\x50\xaf\x6c\xf6\x78\x7b\x2c\xb8\xcc\x5a\x38\xb2\xe0\x88\xc6\xdd\x2a\x29\x46\xad\x4d\x3f\x74\x07\x5e\x40\x56\x05\x6a\xe7\xab\xe3\x57\x14\x28\xe4\xab\xa8\x12\xc9\xcf\xbe\x58\x2a\x35\x5e\xf0\x1c\x5a\xf7\xe9\x78\x3b\xfe\xdb\xec\x0b\xec\x0f\x2a\x1f\xa8\x18\x41\xe1\xb3\x2f\xe0\x29\x2c\x87\x99\xfc\xc3\xcd\xe5\xc5\x4c\x7e\xfb\xed\xb7\xdf\xe2\x68\x99\xbf\x5b\x7c\x2f\xe6\xb8\x02\x71\x8b\x7a\x4a\xa9\x6d\x4a\x49\xb1\x2a\x53\x9e\xcf\x64\xbb\xbb\x26\x16\x5e\x68\x8e\xbc\xf3\x86\xd6\xd9\xc8\x66\xb7\x80\x24\x65\x56\xc6\xa1\x6d\xf2\xe3\xff\x6f\x9a\xfc\x91\x54\x44\x27\xe4\xc3\x21\x18\xdb\xc5\x7c\x62\x97\xaa\x19\x6c\xb3\x7e\xbd\x9e\xb5\x4c\x52\x41\x1b\xd7\x2e\xee\x2b\x91\x6b\x25\xfd\x9a\xa1\x0b\x01\x70\x9b\x81\x03\x80\x7d\xcb\xde\xfe\x7b\xed\xa9\x99\x07\xfb\xf0\xab\x8a\x24\x60\xcc\x17\x35\xfb\x02\x5a\x3d\xfb\xe2\x84\xcd\xbe\x68\x5b\x37\xd5\x86\x8d\xb1\x29\xb3\x2f\x46\xbe\x00\x68\xc6\x05\xdf\x60\x21\xe5\x97\x5f\x7e\x1d\x61\x13\x30\x74\x2d\x78\xd3\x34\xa9\xfb\xc5\xa0\x89\xd3\x9a\xeb\xcc\x0e\x84\x0d\x81\x7c\x14\x69\x7a\x74\x2f\xd5\x23\xe6\x19\x07\x3f\x11\x45\x29\x33\x5c\x1e\xd5\xc9\xa5\xdc\x64\xb5\x19\xb7\x41\x9b\xae\x1a\x97\xde\x0e\x26\x74\x26\x3f\xc2\xd2\xb1\x33\x4a\x74\x44\x40\x07\xea\x6a\x82\x4b\x0d\xad\x04\x1b\x63\x41\x0b\x61\x26\xa1\x18\x37\xe7\xec\x35\x00\xbf\xa8\x2b\x0d\xcd\xda\x5e\x9e\xfe\xf2\xe7\xbf\xbc\x39\x39\x64\x9e\xaa\xc5\x55\xa6\x0a\xfa\x83\x65\xbc\x1d\x7f\xf5\xf6\x2b\x3d\xfb\x82\x46\xbd\xfd\x8a\x7d\x9e\xe8\xe2\xa7\x9a\x06\xf6\x84\x64\xe7\x46\x71\x78\x29\xe7\x85\x6d\x2a\x36\xb3\xaf\xd3\xe2\xba\xea\x56\x50\x4b\x6b\xd6\x81\xcb\x99\x4d\x03\x6f\xda\x3d\x48\xbd\x73\xe3\x85\x97\x2d\xf6\x98\xf3\x2c\x13\xb9\xb5\x95\x37\xdc\x19\x90\x53\x1d\x6a\xb1\xa2\xbf\x4d\x98\x99\x65\x53\x2b\x1a\x5e\x83\xa1\x1b\xb7\xcf\xdc\x45\x99\xa6\x9d\x33\xb7\x3f\x59\xf2\xc5\xdd\xf9\xf9\xfc\xa7\xc9\xf9\xdd\x99\xed\x7e\x6b\xf2\xe1\xe0\xb5\xce\x31\x71\x2d\xa1\x31\x41\x5c\x55\x01\x58\xaa\x72\x23\x72\xcb\x14\xe6\x7b\x8d\x38\x92\x32\x4d\xab\x69\xb1\x67\xf2\x23\x95\x03\x62\xa0\x94\x89\x55\x53\x76\x0e\x5c\xb5\x7e\x78\xed\xa3\x29\xfc\x23\x7e\x7b\xc4\x7c\x27\x4e\xd8\x85\xab\xb5\x63\x5c\x89\x70\xe2\x80\xed\x80\xf1\xb6\x5d\xdb\xe1\xb9\x13\xff\x3f\x6d\x7b\xdc\x49\x48\xfa\x65\x24\x2f\xe6\xeb\x7f\x96\xdd\x81\x63\xf7\xb1\x0a\x05\x77\xe6\xd2\x18\xbd\x86\x50\xee\x08\xd3\xb5\xeb\x82\x38\x8b\x71\xcc\x66\x12\x05\xb1\x69\x53\xa1\xba\xdb\xc4\xa6\xe4\x41\x4a\xb9\x5c\x95\x7c\x25\xf4\x88\xd9\xca\x67\xd2\xde\x4e\xed\x5d\xc7\x01\x73\x80\x91\xb5\xb6\x84\x6a\x21\xc0\x89\x9c\x49\xea\x13\x9c\xb0\x54\x3c\x86\xa3\xfe\xe1\xc6\x75\x87\xe2\xbe\xb1\x20\xca\x38\x2f\x67\x12\x27\x17\x6d\x63\x16\x6c\x08\x6a\x47\xf3\x6c\xe2\x00\x0f\xc6\x7b\x5d\xcc\x0a\xb5\x02\xd8\xe3\x4c\x3a\x16\x2c\x04\x67\xd8\xfb\x9a\xcf\x0d\x8a\x4d\xda\x2f\x4f\xec\x64\xd8\x3d\x41\x6d\x6b\x5f\xf5\x07\x9f\x01\x66\xc3\xcd\x5b\xef\xf2\xbb\x97\xad\x17\x63\x3d\x01\x39\x3c\x10\x1c\x5d\xd4\x88\x40\x7d\xd6\xde\x1a\xdb\x2f\x7c\xa7\x33\x7a\x54\x95\x8b\x74\x40\x93\xf0\xfd\x9d\x8d\x42\x91\xbc\xbb\x51\x3d\x2c\xd2\xd7\xb5\xad\x65\x96\xe9\xae\x6a\x17\x4a\x75\xcc\xcb\x33\x62\x76\x2b\x8d\xa2\x0f\xf6\x0d\x46\x19\x15\x4f\x59\x2f\x3d\xf8\x80\xea\x43\x64\xa5\xcf\xae\x06\xa5\x89\x7e\x52\x73\xbc\xfe\xd4\xbb\x45\x4e\x43\xa0\xc3\x6e\x90\x84\xa5\x73\xae\x22\x60\x3b\xc4\xa4\xbd\xa6\x60\x78\x8b\x48\x50\xbc\x98\xcd\x33\x82\x4d\x64\xd6\xff\xc8\x2d\xa2\x91\x9f\xb9\x11\x34\x32\x2a\x73\x6d\xc4\x25\xc9\x3b\x92\xda\x2a\x67\x7c\x26\x2d\x1b\x8c\x15\xc7\x13\x6b\x0f\xce\xdd\xaf\xc8\xb1\x94\x61\xca\x3a\x70\x0a\x15\x60\x25\x27\x69\x38\x93\x0f\x3c\x4f\xb8\x04\x4c\xf3\x42\x43\xbe\x61\xb8\xd2\x6d\x19\x3d\x70\x04\x1c\x3a\x34\x32\xef\x91\x79\x35\x35\xa0\x72\xce\xff\x93\xf9\xdf\xdf\xff\xe9\xff\x06\x00\x00\xff\xff\xef\xf5\xd3\x34\x72\xf3\x06\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 453593, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 455538, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/flyteidl/gen/pb-java/flyteidl/service/Admin.java b/flyteidl/gen/pb-java/flyteidl/service/Admin.java index 9de7851811e..6fa0f34d5ba 100644 --- a/flyteidl/gen/pb-java/flyteidl/service/Admin.java +++ b/flyteidl/gen/pb-java/flyteidl/service/Admin.java @@ -38,7 +38,7 @@ public static void registerAllExtensions( "admin/task_execution.proto\032\034flyteidl/adm" + "in/version.proto\032\033flyteidl/admin/common." + "proto\032\'flyteidl/admin/description_entity" + - ".proto2\227v\n\014AdminService\022\216\001\n\nCreateTask\022!" + + ".proto2\214x\n\014AdminService\022\216\001\n\nCreateTask\022!" + ".flyteidl.admin.TaskCreateRequest\032\".flyt" + "eidl.admin.TaskCreateResponse\"9\202\323\344\223\0023\"\r/" + "api/v1/tasks:\001*Z\037\"\032/api/v1/tasks/org/{id" + @@ -70,355 +70,361 @@ public static void registerAllExtensions( ".project}/{id.domain}/{id.name}/{id.vers" + "ion}ZP\022N/api/v1/workflows/org/{id.org}/{" + "id.project}/{id.domain}/{id.name}/{id.ve" + - "rsion}\022\321\001\n\017ListWorkflowIds\0220.flyteidl.ad" + - "min.NamedEntityIdentifierListRequest\032).f" + - "lyteidl.admin.NamedEntityIdentifierList\"" + - "a\202\323\344\223\002[\022\'/api/v1/workflow_ids/{project}/" + - "{domain}Z0\022./api/v1/workflows/org/{org}/" + - "{project}/{domain}\022\300\002\n\rListWorkflows\022#.f" + - "lyteidl.admin.ResourceListRequest\032\034.flyt" + - "eidl.admin.WorkflowList\"\353\001\202\323\344\223\002\344\001\0224/api/" + - "v1/workflows/{id.project}/{id.domain}/{i" + - "d.name}ZC\022A/api/v1/workflows/org/{id.org" + - "}/{id.project}/{id.domain}/{id.name}Z,\022*" + + "rsion}\022\362\001\n\026GetDynamicNodeWorkflow\022-.flyt" + + "eidl.admin.GetDynamicNodeWorkflowRequest" + + "\032+.flyteidl.admin.DynamicNodeWorkflowRes" + + "ponse\"|\202\323\344\223\002v\022t/api/v1/dynamic_node_work" + + "flow/{id.execution_id.project}/{id.execu" + + "tion_id.domain}/{id.execution_id.name}/{" + + "id.node_id}\022\321\001\n\017ListWorkflowIds\0220.flytei" + + "dl.admin.NamedEntityIdentifierListReques" + + "t\032).flyteidl.admin.NamedEntityIdentifier" + + "List\"a\202\323\344\223\002[\022\'/api/v1/workflow_ids/{proj" + + "ect}/{domain}Z0\022./api/v1/workflows/org/{" + + "org}/{project}/{domain}\022\300\002\n\rListWorkflow" + + "s\022#.flyteidl.admin.ResourceListRequest\032\034" + + ".flyteidl.admin.WorkflowList\"\353\001\202\323\344\223\002\344\001\0224" + "/api/v1/workflows/{id.project}/{id.domai" + - "n}Z9\0227/api/v1/workflows/org/{id.org}/{id" + - ".project}/{id.domain}\022\256\001\n\020CreateLaunchPl" + - "an\022\'.flyteidl.admin.LaunchPlanCreateRequ" + - "est\032(.flyteidl.admin.LaunchPlanCreateRes" + - "ponse\"G\202\323\344\223\002A\"\024/api/v1/launch_plans:\001*Z&" + - "\"!/api/v1/launch_plans/org/{id.org}:\001*\022\362" + - "\001\n\rGetLaunchPlan\022 .flyteidl.admin.Object" + - "GetRequest\032\032.flyteidl.admin.LaunchPlan\"\242" + - "\001\202\323\344\223\002\233\001\022D/api/v1/launch_plans/{id.proje" + - "ct}/{id.domain}/{id.name}/{id.version}ZS" + - "\022Q/api/v1/launch_plans/org/{id.org}/{id." + + "n}/{id.name}ZC\022A/api/v1/workflows/org/{i" + + "d.org}/{id.project}/{id.domain}/{id.name" + + "}Z,\022*/api/v1/workflows/{id.project}/{id." + + "domain}Z9\0227/api/v1/workflows/org/{id.org" + + "}/{id.project}/{id.domain}\022\256\001\n\020CreateLau" + + "nchPlan\022\'.flyteidl.admin.LaunchPlanCreat" + + "eRequest\032(.flyteidl.admin.LaunchPlanCrea" + + "teResponse\"G\202\323\344\223\002A\"\024/api/v1/launch_plans" + + ":\001*Z&\"!/api/v1/launch_plans/org/{id.org}" + + ":\001*\022\362\001\n\rGetLaunchPlan\022 .flyteidl.admin.O" + + "bjectGetRequest\032\032.flyteidl.admin.LaunchP" + + "lan\"\242\001\202\323\344\223\002\233\001\022D/api/v1/launch_plans/{id." + "project}/{id.domain}/{id.name}/{id.versi" + - "on}\022\363\001\n\023GetActiveLaunchPlan\022\'.flyteidl.a" + - "dmin.ActiveLaunchPlanRequest\032\032.flyteidl." + - "admin.LaunchPlan\"\226\001\202\323\344\223\002\217\001\022>/api/v1/acti" + - "ve_launch_plans/{id.project}/{id.domain}" + - "/{id.name}ZM\022K/api/v1/active_launch_plan" + - "s/org/{id.org}/{id.project}/{id.domain}/" + - "{id.name}\022\330\001\n\025ListActiveLaunchPlans\022+.fl" + - "yteidl.admin.ActiveLaunchPlanListRequest" + - "\032\036.flyteidl.admin.LaunchPlanList\"r\202\323\344\223\002l" + - "\022./api/v1/active_launch_plans/{project}/" + - "{domain}Z:\0228/api/v1/active_launch_plans/" + - "org/{org}/{project}/{domain}\022\334\001\n\021ListLau" + - "nchPlanIds\0220.flyteidl.admin.NamedEntityI" + - "dentifierListRequest\032).flyteidl.admin.Na" + - "medEntityIdentifierList\"j\202\323\344\223\002d\022*/api/v1" + - "/launch_plan_ids/{project}/{domain}Z6\0224/" + - "api/v1/launch_plan_ids/org/{org}/{projec" + - "t}/{domain}\022\320\002\n\017ListLaunchPlans\022#.flytei" + - "dl.admin.ResourceListRequest\032\036.flyteidl." + - "admin.LaunchPlanList\"\367\001\202\323\344\223\002\360\001\0227/api/v1/" + - "launch_plans/{id.project}/{id.domain}/{i" + - "d.name}ZF\022D/api/v1/launch_plans/org/{id." + - "org}/{id.project}/{id.domain}/{id.name}Z" + - "/\022-/api/v1/launch_plans/{id.project}/{id" + - ".domain}Z<\022:/api/v1/launch_plans/org/{id" + - ".org}/{id.project}/{id.domain}\022\215\002\n\020Updat" + - "eLaunchPlan\022\'.flyteidl.admin.LaunchPlanU" + - "pdateRequest\032(.flyteidl.admin.LaunchPlan" + - "UpdateResponse\"\245\001\202\323\344\223\002\236\001\032D/api/v1/launch" + - "_plans/{id.project}/{id.domain}/{id.name" + - "}/{id.version}:\001*ZS\032Q/api/v1/launch_plan" + - "s/org/{id.org}/{id.project}/{id.domain}/" + - "{id.name}/{id.version}\022\244\001\n\017CreateExecuti" + - "on\022&.flyteidl.admin.ExecutionCreateReque" + - "st\032\'.flyteidl.admin.ExecutionCreateRespo" + - "nse\"@\202\323\344\223\002:\"\022/api/v1/executions:\001*Z!\032\034/a" + - "pi/v1/executions/org/{org}:\001*\022\275\001\n\021Relaun" + - "chExecution\022(.flyteidl.admin.ExecutionRe" + - "launchRequest\032\'.flyteidl.admin.Execution" + - "CreateResponse\"U\202\323\344\223\002O\"\033/api/v1/executio" + - "ns/relaunch:\001*Z-\"(/api/v1/executions/org" + - "/{id.org}/relaunch:\001*\022\271\001\n\020RecoverExecuti" + - "on\022\'.flyteidl.admin.ExecutionRecoverRequ" + - "est\032\'.flyteidl.admin.ExecutionCreateResp" + - "onse\"S\202\323\344\223\002M\"\032/api/v1/executions/recover" + - ":\001*Z,\"\'/api/v1/executions/org/{id.org}/r" + - "ecover:\001*\022\334\001\n\014GetExecution\022+.flyteidl.ad" + - "min.WorkflowExecutionGetRequest\032\031.flytei" + - "dl.admin.Execution\"\203\001\202\323\344\223\002}\0225/api/v1/exe" + - "cutions/{id.project}/{id.domain}/{id.nam" + - "e}ZD\022B/api/v1/executions/org/{id.org}/{i" + - "d.project}/{id.domain}/{id.name}\022\357\001\n\017Upd" + - "ateExecution\022&.flyteidl.admin.ExecutionU" + - "pdateRequest\032\'.flyteidl.admin.ExecutionU" + - "pdateResponse\"\212\001\202\323\344\223\002\203\001\0325/api/v1/executi" + - "ons/{id.project}/{id.domain}/{id.name}:\001" + - "*ZG\032B/api/v1/executions/org/{id.org}/{id" + - ".project}/{id.domain}/{id.name}:\001*\022\206\002\n\020G" + - "etExecutionData\022/.flyteidl.admin.Workflo" + - "wExecutionGetDataRequest\0320.flyteidl.admi" + - "n.WorkflowExecutionGetDataResponse\"\216\001\202\323\344" + - "\223\002\207\001\022:/api/v1/data/executions/{id.projec" + - "t}/{id.domain}/{id.name}ZI\022G/api/v1/data" + - "/executions/org/{id.org}/{id.project}/{i" + - "d.domain}/{id.name}\022\305\001\n\016ListExecutions\022#" + - ".flyteidl.admin.ResourceListRequest\032\035.fl" + - "yteidl.admin.ExecutionList\"o\202\323\344\223\002i\022+/api" + - "/v1/executions/{id.project}/{id.domain}Z" + - ":\0228/api/v1/executions/org/{id.org}/{id.p" + - "roject}/{id.domain}\022\370\001\n\022TerminateExecuti" + - "on\022).flyteidl.admin.ExecutionTerminateRe" + - "quest\032*.flyteidl.admin.ExecutionTerminat" + - "eResponse\"\212\001\202\323\344\223\002\203\001*5/api/v1/executions/" + - "{id.project}/{id.domain}/{id.name}:\001*ZG*" + - "B/api/v1/executions/org/{id.org}/{id.pro" + - "ject}/{id.domain}/{id.name}:\001*\022\342\002\n\020GetNo" + - "deExecution\022\'.flyteidl.admin.NodeExecuti" + - "onGetRequest\032\035.flyteidl.admin.NodeExecut" + - "ion\"\205\002\202\323\344\223\002\376\001\022n/api/v1/node_executions/{" + - "id.execution_id.project}/{id.execution_i" + - "d.domain}/{id.execution_id.name}/{id.nod" + - "e_id}Z\213\001\022\210\001/api/v1/node_executions/org/{" + - "id.execution_id.org}/{id.execution_id.pr" + - "oject}/{id.execution_id.domain}/{id.exec" + - "ution_id.name}/{id.node_id}\022\371\002\n\022ListNode" + - "Executions\022(.flyteidl.admin.NodeExecutio" + - "nListRequest\032!.flyteidl.admin.NodeExecut" + - "ionList\"\225\002\202\323\344\223\002\216\002\022s/api/v1/node_executio" + - "ns/{workflow_execution_id.project}/{work" + - "flow_execution_id.domain}/{workflow_exec" + - "ution_id.name}Z\226\001\022\223\001/api/v1/node_executi" + - "ons/org/{workflow_execution_id.org}/{wor" + - "kflow_execution_id.project}/{workflow_ex" + - "ecution_id.domain}/{workflow_execution_i" + - "d.name}\022\217\010\n\031ListNodeExecutionsForTask\022/." + - "flyteidl.admin.NodeExecutionForTaskListR" + - "equest\032!.flyteidl.admin.NodeExecutionLis" + - "t\"\235\007\202\323\344\223\002\226\007\022\251\003/api/v1/children/task_exec" + - "utions/{task_execution_id.node_execution" + - "_id.execution_id.project}/{task_executio" + - "n_id.node_execution_id.execution_id.doma" + - "in}/{task_execution_id.node_execution_id" + - ".execution_id.name}/{task_execution_id.n" + - "ode_execution_id.node_id}/{task_executio" + - "n_id.task_id.project}/{task_execution_id" + - ".task_id.domain}/{task_execution_id.task" + - "_id.name}/{task_execution_id.task_id.ver" + - "sion}/{task_execution_id.retry_attempt}Z" + - "\347\003\022\344\003/api/v1/children/task_executions/or" + - "g/{task_execution_id.node_execution_id.e" + - "xecution_id.org}/{task_execution_id.node" + - "_execution_id.execution_id.project}/{tas" + - "k_execution_id.node_execution_id.executi" + - "on_id.domain}/{task_execution_id.node_ex" + - "ecution_id.execution_id.name}/{task_exec" + - "ution_id.node_execution_id.node_id}/{tas" + - "k_execution_id.task_id.project}/{task_ex" + - "ecution_id.task_id.domain}/{task_executi" + - "on_id.task_id.name}/{task_execution_id.t" + - "ask_id.version}/{task_execution_id.retry" + - "_attempt}\022\203\003\n\024GetNodeExecutionData\022+.fly" + - "teidl.admin.NodeExecutionGetDataRequest\032" + - ",.flyteidl.admin.NodeExecutionGetDataRes" + - "ponse\"\217\002\202\323\344\223\002\210\002\022s/api/v1/data/node_execu" + - "tions/{id.execution_id.project}/{id.exec" + - "ution_id.domain}/{id.execution_id.name}/" + - "{id.node_id}Z\220\001\022\215\001/api/v1/data/node_exec" + - "utions/org/{id.execution_id.org}/{id.exe" + - "cution_id.project}/{id.execution_id.doma" + - "in}/{id.execution_id.name}/{id.node_id}\022" + - "\250\001\n\017RegisterProject\022&.flyteidl.admin.Pro" + - "jectRegisterRequest\032\'.flyteidl.admin.Pro" + - "jectRegisterResponse\"D\202\323\344\223\002>\"\020/api/v1/pr" + - "ojects:\001*Z\'\"\"/api/v1/projects/org/{proje" + - "ct.org}:\001*\022\227\001\n\rUpdateProject\022\027.flyteidl." + - "admin.Project\032%.flyteidl.admin.ProjectUp" + - "dateResponse\"F\202\323\344\223\002@\032\025/api/v1/projects/{" + - "id}:\001*Z$\032\037/api/v1/projects/org/{org}/{id" + - "}:\001*\022\204\001\n\014ListProjects\022\".flyteidl.admin.P" + - "rojectListRequest\032\030.flyteidl.admin.Proje" + - "cts\"6\202\323\344\223\0020\022\020/api/v1/projectsZ\034\022\032/api/v1" + - "/projects/org/{org}\022\325\001\n\023CreateWorkflowEv" + - "ent\022-.flyteidl.admin.WorkflowExecutionEv" + - "entRequest\032..flyteidl.admin.WorkflowExec" + - "utionEventResponse\"_\202\323\344\223\002Y\"\030/api/v1/even" + - "ts/workflows:\001*Z:\"5/api/v1/events/org/{e" + - "vent.execution_id.org}/workflows:\001*\022\304\001\n\017" + - "CreateNodeEvent\022).flyteidl.admin.NodeExe" + - "cutionEventRequest\032*.flyteidl.admin.Node" + - "ExecutionEventResponse\"Z\202\323\344\223\002T\"\024/api/v1/" + - "events/nodes:\001*Z9\"4/api/v1/events/org/{e" + - "vent.id.execution_id.org}/nodes:\001*\022\332\001\n\017C" + - "reateTaskEvent\022).flyteidl.admin.TaskExec" + - "utionEventRequest\032*.flyteidl.admin.TaskE" + - "xecutionEventResponse\"p\202\323\344\223\002j\"\024/api/v1/e" + - "vents/tasks:\001*ZO\"J/api/v1/events/org/{ev" + - "ent.parent_node_execution_id.execution_i" + - "d.org}/tasks:\001*\022\313\005\n\020GetTaskExecution\022\'.f" + - "lyteidl.admin.TaskExecutionGetRequest\032\035." + - "flyteidl.admin.TaskExecution\"\356\004\202\323\344\223\002\347\004\022\231" + - "\002/api/v1/task_executions/{id.node_execut" + - "ion_id.execution_id.project}/{id.node_ex" + - "ecution_id.execution_id.domain}/{id.node" + - "_execution_id.execution_id.name}/{id.nod" + - "e_execution_id.node_id}/{id.task_id.proj" + - "ect}/{id.task_id.domain}/{id.task_id.nam" + - "e}/{id.task_id.version}/{id.retry_attemp" + - "t}Z\310\002\022\305\002/api/v1/task_executions/org/{id." + - "node_execution_id.execution_id.org}/{id." + + "on}ZS\022Q/api/v1/launch_plans/org/{id.org}" + + "/{id.project}/{id.domain}/{id.name}/{id." + + "version}\022\363\001\n\023GetActiveLaunchPlan\022\'.flyte" + + "idl.admin.ActiveLaunchPlanRequest\032\032.flyt" + + "eidl.admin.LaunchPlan\"\226\001\202\323\344\223\002\217\001\022>/api/v1" + + "/active_launch_plans/{id.project}/{id.do" + + "main}/{id.name}ZM\022K/api/v1/active_launch" + + "_plans/org/{id.org}/{id.project}/{id.dom" + + "ain}/{id.name}\022\330\001\n\025ListActiveLaunchPlans" + + "\022+.flyteidl.admin.ActiveLaunchPlanListRe" + + "quest\032\036.flyteidl.admin.LaunchPlanList\"r\202" + + "\323\344\223\002l\022./api/v1/active_launch_plans/{proj" + + "ect}/{domain}Z:\0228/api/v1/active_launch_p" + + "lans/org/{org}/{project}/{domain}\022\334\001\n\021Li" + + "stLaunchPlanIds\0220.flyteidl.admin.NamedEn" + + "tityIdentifierListRequest\032).flyteidl.adm" + + "in.NamedEntityIdentifierList\"j\202\323\344\223\002d\022*/a" + + "pi/v1/launch_plan_ids/{project}/{domain}" + + "Z6\0224/api/v1/launch_plan_ids/org/{org}/{p" + + "roject}/{domain}\022\320\002\n\017ListLaunchPlans\022#.f" + + "lyteidl.admin.ResourceListRequest\032\036.flyt" + + "eidl.admin.LaunchPlanList\"\367\001\202\323\344\223\002\360\001\0227/ap" + + "i/v1/launch_plans/{id.project}/{id.domai" + + "n}/{id.name}ZF\022D/api/v1/launch_plans/org" + + "/{id.org}/{id.project}/{id.domain}/{id.n" + + "ame}Z/\022-/api/v1/launch_plans/{id.project" + + "}/{id.domain}Z<\022:/api/v1/launch_plans/or" + + "g/{id.org}/{id.project}/{id.domain}\022\215\002\n\020" + + "UpdateLaunchPlan\022\'.flyteidl.admin.Launch" + + "PlanUpdateRequest\032(.flyteidl.admin.Launc" + + "hPlanUpdateResponse\"\245\001\202\323\344\223\002\236\001\032D/api/v1/l" + + "aunch_plans/{id.project}/{id.domain}/{id" + + ".name}/{id.version}:\001*ZS\032Q/api/v1/launch" + + "_plans/org/{id.org}/{id.project}/{id.dom" + + "ain}/{id.name}/{id.version}\022\244\001\n\017CreateEx" + + "ecution\022&.flyteidl.admin.ExecutionCreate" + + "Request\032\'.flyteidl.admin.ExecutionCreate" + + "Response\"@\202\323\344\223\002:\"\022/api/v1/executions:\001*Z" + + "!\032\034/api/v1/executions/org/{org}:\001*\022\275\001\n\021R" + + "elaunchExecution\022(.flyteidl.admin.Execut" + + "ionRelaunchRequest\032\'.flyteidl.admin.Exec" + + "utionCreateResponse\"U\202\323\344\223\002O\"\033/api/v1/exe" + + "cutions/relaunch:\001*Z-\"(/api/v1/execution" + + "s/org/{id.org}/relaunch:\001*\022\271\001\n\020RecoverEx" + + "ecution\022\'.flyteidl.admin.ExecutionRecove" + + "rRequest\032\'.flyteidl.admin.ExecutionCreat" + + "eResponse\"S\202\323\344\223\002M\"\032/api/v1/executions/re" + + "cover:\001*Z,\"\'/api/v1/executions/org/{id.o" + + "rg}/recover:\001*\022\334\001\n\014GetExecution\022+.flytei" + + "dl.admin.WorkflowExecutionGetRequest\032\031.f" + + "lyteidl.admin.Execution\"\203\001\202\323\344\223\002}\0225/api/v" + + "1/executions/{id.project}/{id.domain}/{i" + + "d.name}ZD\022B/api/v1/executions/org/{id.or" + + "g}/{id.project}/{id.domain}/{id.name}\022\357\001" + + "\n\017UpdateExecution\022&.flyteidl.admin.Execu" + + "tionUpdateRequest\032\'.flyteidl.admin.Execu" + + "tionUpdateResponse\"\212\001\202\323\344\223\002\203\001\0325/api/v1/ex" + + "ecutions/{id.project}/{id.domain}/{id.na" + + "me}:\001*ZG\032B/api/v1/executions/org/{id.org" + + "}/{id.project}/{id.domain}/{id.name}:\001*\022" + + "\206\002\n\020GetExecutionData\022/.flyteidl.admin.Wo" + + "rkflowExecutionGetDataRequest\0320.flyteidl" + + ".admin.WorkflowExecutionGetDataResponse\"" + + "\216\001\202\323\344\223\002\207\001\022:/api/v1/data/executions/{id.p" + + "roject}/{id.domain}/{id.name}ZI\022G/api/v1" + + "/data/executions/org/{id.org}/{id.projec" + + "t}/{id.domain}/{id.name}\022\305\001\n\016ListExecuti" + + "ons\022#.flyteidl.admin.ResourceListRequest" + + "\032\035.flyteidl.admin.ExecutionList\"o\202\323\344\223\002i\022" + + "+/api/v1/executions/{id.project}/{id.dom" + + "ain}Z:\0228/api/v1/executions/org/{id.org}/" + + "{id.project}/{id.domain}\022\370\001\n\022TerminateEx" + + "ecution\022).flyteidl.admin.ExecutionTermin" + + "ateRequest\032*.flyteidl.admin.ExecutionTer" + + "minateResponse\"\212\001\202\323\344\223\002\203\001*5/api/v1/execut" + + "ions/{id.project}/{id.domain}/{id.name}:" + + "\001*ZG*B/api/v1/executions/org/{id.org}/{i" + + "d.project}/{id.domain}/{id.name}:\001*\022\342\002\n\020" + + "GetNodeExecution\022\'.flyteidl.admin.NodeEx" + + "ecutionGetRequest\032\035.flyteidl.admin.NodeE" + + "xecution\"\205\002\202\323\344\223\002\376\001\022n/api/v1/node_executi" + + "ons/{id.execution_id.project}/{id.execut" + + "ion_id.domain}/{id.execution_id.name}/{i" + + "d.node_id}Z\213\001\022\210\001/api/v1/node_executions/" + + "org/{id.execution_id.org}/{id.execution_" + + "id.project}/{id.execution_id.domain}/{id" + + ".execution_id.name}/{id.node_id}\022\371\002\n\022Lis" + + "tNodeExecutions\022(.flyteidl.admin.NodeExe" + + "cutionListRequest\032!.flyteidl.admin.NodeE" + + "xecutionList\"\225\002\202\323\344\223\002\216\002\022s/api/v1/node_exe" + + "cutions/{workflow_execution_id.project}/" + + "{workflow_execution_id.domain}/{workflow" + + "_execution_id.name}Z\226\001\022\223\001/api/v1/node_ex" + + "ecutions/org/{workflow_execution_id.org}" + + "/{workflow_execution_id.project}/{workfl" + + "ow_execution_id.domain}/{workflow_execut" + + "ion_id.name}\022\217\010\n\031ListNodeExecutionsForTa" + + "sk\022/.flyteidl.admin.NodeExecutionForTask" + + "ListRequest\032!.flyteidl.admin.NodeExecuti" + + "onList\"\235\007\202\323\344\223\002\226\007\022\251\003/api/v1/children/task" + + "_executions/{task_execution_id.node_exec" + + "ution_id.execution_id.project}/{task_exe" + + "cution_id.node_execution_id.execution_id" + + ".domain}/{task_execution_id.node_executi" + + "on_id.execution_id.name}/{task_execution" + + "_id.node_execution_id.node_id}/{task_exe" + + "cution_id.task_id.project}/{task_executi" + + "on_id.task_id.domain}/{task_execution_id" + + ".task_id.name}/{task_execution_id.task_i" + + "d.version}/{task_execution_id.retry_atte" + + "mpt}Z\347\003\022\344\003/api/v1/children/task_executio" + + "ns/org/{task_execution_id.node_execution" + + "_id.execution_id.org}/{task_execution_id" + + ".node_execution_id.execution_id.project}" + + "/{task_execution_id.node_execution_id.ex" + + "ecution_id.domain}/{task_execution_id.no" + + "de_execution_id.execution_id.name}/{task" + + "_execution_id.node_execution_id.node_id}" + + "/{task_execution_id.task_id.project}/{ta" + + "sk_execution_id.task_id.domain}/{task_ex" + + "ecution_id.task_id.name}/{task_execution" + + "_id.task_id.version}/{task_execution_id." + + "retry_attempt}\022\203\003\n\024GetNodeExecutionData\022" + + "+.flyteidl.admin.NodeExecutionGetDataReq" + + "uest\032,.flyteidl.admin.NodeExecutionGetDa" + + "taResponse\"\217\002\202\323\344\223\002\210\002\022s/api/v1/data/node_" + + "executions/{id.execution_id.project}/{id" + + ".execution_id.domain}/{id.execution_id.n" + + "ame}/{id.node_id}Z\220\001\022\215\001/api/v1/data/node" + + "_executions/org/{id.execution_id.org}/{i" + + "d.execution_id.project}/{id.execution_id" + + ".domain}/{id.execution_id.name}/{id.node" + + "_id}\022\250\001\n\017RegisterProject\022&.flyteidl.admi" + + "n.ProjectRegisterRequest\032\'.flyteidl.admi" + + "n.ProjectRegisterResponse\"D\202\323\344\223\002>\"\020/api/" + + "v1/projects:\001*Z\'\"\"/api/v1/projects/org/{" + + "project.org}:\001*\022\227\001\n\rUpdateProject\022\027.flyt" + + "eidl.admin.Project\032%.flyteidl.admin.Proj" + + "ectUpdateResponse\"F\202\323\344\223\002@\032\025/api/v1/proje" + + "cts/{id}:\001*Z$\032\037/api/v1/projects/org/{org" + + "}/{id}:\001*\022\204\001\n\014ListProjects\022\".flyteidl.ad" + + "min.ProjectListRequest\032\030.flyteidl.admin." + + "Projects\"6\202\323\344\223\0020\022\020/api/v1/projectsZ\034\022\032/a" + + "pi/v1/projects/org/{org}\022\325\001\n\023CreateWorkf" + + "lowEvent\022-.flyteidl.admin.WorkflowExecut" + + "ionEventRequest\032..flyteidl.admin.Workflo" + + "wExecutionEventResponse\"_\202\323\344\223\002Y\"\030/api/v1" + + "/events/workflows:\001*Z:\"5/api/v1/events/o" + + "rg/{event.execution_id.org}/workflows:\001*" + + "\022\304\001\n\017CreateNodeEvent\022).flyteidl.admin.No" + + "deExecutionEventRequest\032*.flyteidl.admin" + + ".NodeExecutionEventResponse\"Z\202\323\344\223\002T\"\024/ap" + + "i/v1/events/nodes:\001*Z9\"4/api/v1/events/o" + + "rg/{event.id.execution_id.org}/nodes:\001*\022" + + "\332\001\n\017CreateTaskEvent\022).flyteidl.admin.Tas" + + "kExecutionEventRequest\032*.flyteidl.admin." + + "TaskExecutionEventResponse\"p\202\323\344\223\002j\"\024/api" + + "/v1/events/tasks:\001*ZO\"J/api/v1/events/or" + + "g/{event.parent_node_execution_id.execut" + + "ion_id.org}/tasks:\001*\022\313\005\n\020GetTaskExecutio" + + "n\022\'.flyteidl.admin.TaskExecutionGetReque" + + "st\032\035.flyteidl.admin.TaskExecution\"\356\004\202\323\344\223" + + "\002\347\004\022\231\002/api/v1/task_executions/{id.node_e" + + "xecution_id.execution_id.project}/{id.no" + + "de_execution_id.execution_id.domain}/{id" + + ".node_execution_id.execution_id.name}/{i" + + "d.node_execution_id.node_id}/{id.task_id" + + ".project}/{id.task_id.domain}/{id.task_i" + + "d.name}/{id.task_id.version}/{id.retry_a" + + "ttempt}Z\310\002\022\305\002/api/v1/task_executions/org" + + "/{id.node_execution_id.execution_id.org}" + + "/{id.node_execution_id.execution_id.proj" + + "ect}/{id.node_execution_id.execution_id." + + "domain}/{id.node_execution_id.execution_" + + "id.name}/{id.node_execution_id.node_id}/" + + "{id.task_id.project}/{id.task_id.domain}" + + "/{id.task_id.name}/{id.task_id.version}/" + + "{id.retry_attempt}\022\361\003\n\022ListTaskExecution" + + "s\022(.flyteidl.admin.TaskExecutionListRequ" + + "est\032!.flyteidl.admin.TaskExecutionList\"\215" + + "\003\202\323\344\223\002\206\003\022\252\001/api/v1/task_executions/{node" + + "_execution_id.execution_id.project}/{nod" + + "e_execution_id.execution_id.domain}/{nod" + + "e_execution_id.execution_id.name}/{node_" + + "execution_id.node_id}Z\326\001\022\323\001/api/v1/task_" + + "executions/org/{node_execution_id.execut" + + "ion_id.org}/{node_execution_id.execution" + + "_id.project}/{node_execution_id.executio" + + "n_id.domain}/{node_execution_id.executio" + + "n_id.name}/{node_execution_id.node_id}\022\354" + + "\005\n\024GetTaskExecutionData\022+.flyteidl.admin" + + ".TaskExecutionGetDataRequest\032,.flyteidl." + + "admin.TaskExecutionGetDataResponse\"\370\004\202\323\344" + + "\223\002\361\004\022\236\002/api/v1/data/task_executions/{id." + "node_execution_id.execution_id.project}/" + "{id.node_execution_id.execution_id.domai" + "n}/{id.node_execution_id.execution_id.na" + "me}/{id.node_execution_id.node_id}/{id.t" + "ask_id.project}/{id.task_id.domain}/{id." + "task_id.name}/{id.task_id.version}/{id.r" + - "etry_attempt}\022\361\003\n\022ListTaskExecutions\022(.f" + - "lyteidl.admin.TaskExecutionListRequest\032!" + - ".flyteidl.admin.TaskExecutionList\"\215\003\202\323\344\223" + - "\002\206\003\022\252\001/api/v1/task_executions/{node_exec" + - "ution_id.execution_id.project}/{node_exe" + - "cution_id.execution_id.domain}/{node_exe" + - "cution_id.execution_id.name}/{node_execu" + - "tion_id.node_id}Z\326\001\022\323\001/api/v1/task_execu" + - "tions/org/{node_execution_id.execution_i" + - "d.org}/{node_execution_id.execution_id.p" + - "roject}/{node_execution_id.execution_id." + - "domain}/{node_execution_id.execution_id." + - "name}/{node_execution_id.node_id}\022\354\005\n\024Ge" + - "tTaskExecutionData\022+.flyteidl.admin.Task" + - "ExecutionGetDataRequest\032,.flyteidl.admin" + - ".TaskExecutionGetDataResponse\"\370\004\202\323\344\223\002\361\004\022" + - "\236\002/api/v1/data/task_executions/{id.node_" + - "execution_id.execution_id.project}/{id.n" + - "ode_execution_id.execution_id.domain}/{i" + - "d.node_execution_id.execution_id.name}/{" + - "id.node_execution_id.node_id}/{id.task_i" + - "d.project}/{id.task_id.domain}/{id.task_" + - "id.name}/{id.task_id.version}/{id.retry_" + - "attempt}Z\315\002\022\312\002/api/v1/data/task_executio" + - "ns/org/{id.node_execution_id.execution_i" + - "d.org}/{id.node_execution_id.execution_i" + - "d.project}/{id.node_execution_id.executi" + - "on_id.domain}/{id.node_execution_id.exec" + - "ution_id.name}/{id.node_execution_id.nod" + - "e_id}/{id.task_id.project}/{id.task_id.d" + - "omain}/{id.task_id.name}/{id.task_id.ver" + - "sion}/{id.retry_attempt}\022\313\002\n\035UpdateProje" + - "ctDomainAttributes\0224.flyteidl.admin.Proj" + - "ectDomainAttributesUpdateRequest\0325.flyte" + - "idl.admin.ProjectDomainAttributesUpdateR" + - "esponse\"\274\001\202\323\344\223\002\265\001\032J/api/v1/project_domai" + - "n_attributes/{attributes.project}/{attri" + - "butes.domain}:\001*Zd\032_/api/v1/project_doma" + - "in_attributes/org/{attributes.org}/{attr" + - "ibutes.project}/{attributes.domain}:\001*\022\203" + - "\002\n\032GetProjectDomainAttributes\0221.flyteidl" + - ".admin.ProjectDomainAttributesGetRequest" + - "\0322.flyteidl.admin.ProjectDomainAttribute" + - "sGetResponse\"~\202\323\344\223\002x\0224/api/v1/project_do" + - "main_attributes/{project}/{domain}Z@\022>/a" + + "etry_attempt}Z\315\002\022\312\002/api/v1/data/task_exe" + + "cutions/org/{id.node_execution_id.execut" + + "ion_id.org}/{id.node_execution_id.execut" + + "ion_id.project}/{id.node_execution_id.ex" + + "ecution_id.domain}/{id.node_execution_id" + + ".execution_id.name}/{id.node_execution_i" + + "d.node_id}/{id.task_id.project}/{id.task" + + "_id.domain}/{id.task_id.name}/{id.task_i" + + "d.version}/{id.retry_attempt}\022\313\002\n\035Update" + + "ProjectDomainAttributes\0224.flyteidl.admin" + + ".ProjectDomainAttributesUpdateRequest\0325." + + "flyteidl.admin.ProjectDomainAttributesUp" + + "dateResponse\"\274\001\202\323\344\223\002\265\001\032J/api/v1/project_" + + "domain_attributes/{attributes.project}/{" + + "attributes.domain}:\001*Zd\032_/api/v1/project" + + "_domain_attributes/org/{attributes.org}/" + + "{attributes.project}/{attributes.domain}" + + ":\001*\022\203\002\n\032GetProjectDomainAttributes\0221.fly" + + "teidl.admin.ProjectDomainAttributesGetRe" + + "quest\0322.flyteidl.admin.ProjectDomainAttr" + + "ibutesGetResponse\"~\202\323\344\223\002x\0224/api/v1/proje" + + "ct_domain_attributes/{project}/{domain}Z" + + "@\022>/api/v1/project_domain_attributes/org" + + "/{org}/{project}/{domain}\022\223\002\n\035DeleteProj" + + "ectDomainAttributes\0224.flyteidl.admin.Pro" + + "jectDomainAttributesDeleteRequest\0325.flyt" + + "eidl.admin.ProjectDomainAttributesDelete" + + "Response\"\204\001\202\323\344\223\002~*4/api/v1/project_domai" + + "n_attributes/{project}/{domain}:\001*ZC*>/a" + "pi/v1/project_domain_attributes/org/{org" + - "}/{project}/{domain}\022\223\002\n\035DeleteProjectDo" + - "mainAttributes\0224.flyteidl.admin.ProjectD" + - "omainAttributesDeleteRequest\0325.flyteidl." + - "admin.ProjectDomainAttributesDeleteRespo" + - "nse\"\204\001\202\323\344\223\002~*4/api/v1/project_domain_att" + - "ributes/{project}/{domain}:\001*ZC*>/api/v1" + - "/project_domain_attributes/org/{org}/{pr" + - "oject}/{domain}:\001*\022\212\002\n\027UpdateProjectAttr" + - "ibutes\022..flyteidl.admin.ProjectAttribute" + - "sUpdateRequest\032/.flyteidl.admin.ProjectA" + - "ttributesUpdateResponse\"\215\001\202\323\344\223\002\206\001\032//api/" + - "v1/project_attributes/{attributes.projec" + - "t}:\001*ZP\032K/api/v1/project_domain_attribut" + - "es/org/{attributes.org}/{attributes.proj" + - "ect}:\001*\022\330\001\n\024GetProjectAttributes\022+.flyte" + - "idl.admin.ProjectAttributesGetRequest\032,." + - "flyteidl.admin.ProjectAttributesGetRespo" + - "nse\"e\202\323\344\223\002_\022$/api/v1/project_attributes/" + - "{project}Z7\0225/api/v1/project_domain_attr" + - "ibutes/org/{org}/{project}\022\347\001\n\027DeletePro" + - "jectAttributes\022..flyteidl.admin.ProjectA" + - "ttributesDeleteRequest\032/.flyteidl.admin." + - "ProjectAttributesDeleteResponse\"k\202\323\344\223\002e*" + - "$/api/v1/project_attributes/{project}:\001*" + - "Z:*5/api/v1/project_domain_attributes/or" + - "g/{org}/{project}:\001*\022\334\002\n\030UpdateWorkflowA" + - "ttributes\022/.flyteidl.admin.WorkflowAttri" + - "butesUpdateRequest\0320.flyteidl.admin.Work" + - "flowAttributesUpdateResponse\"\334\001\202\323\344\223\002\325\001\032Z" + - "/api/v1/workflow_attributes/{attributes." + - "project}/{attributes.domain}/{attributes" + - ".workflow}:\001*Zt\032o/api/v1/workflow_attrib" + - "utes/org/{attributes.org}/{attributes.pr" + - "oject}/{attributes.domain}/{attributes.w" + - "orkflow}:\001*\022\200\002\n\025GetWorkflowAttributes\022,." + - "flyteidl.admin.WorkflowAttributesGetRequ" + - "est\032-.flyteidl.admin.WorkflowAttributesG" + - "etResponse\"\211\001\202\323\344\223\002\202\001\0229/api/v1/workflow_a" + - "ttributes/{project}/{domain}/{workflow}Z" + - "E\022C/api/v1/workflow_attributes/org/{org}" + - "/{project}/{domain}/{workflow}\022\217\002\n\030Delet" + - "eWorkflowAttributes\022/.flyteidl.admin.Wor" + - "kflowAttributesDeleteRequest\0320.flyteidl." + - "admin.WorkflowAttributesDeleteResponse\"\217" + - "\001\202\323\344\223\002\210\001*9/api/v1/workflow_attributes/{p" + - "roject}/{domain}/{workflow}:\001*ZH*C/api/v" + - "1/workflow_attributes/org/{org}/{project" + - "}/{domain}/{workflow}:\001*\022\312\001\n\027ListMatchab" + - "leAttributes\022..flyteidl.admin.ListMatcha" + - "bleAttributesRequest\032/.flyteidl.admin.Li" + - "stMatchableAttributesResponse\"N\202\323\344\223\002H\022\034/" + - "api/v1/matchable_attributesZ(\022&/api/v1/m" + - "atchable_attributes/org/{org}\022\350\001\n\021ListNa" + - "medEntities\022&.flyteidl.admin.NamedEntity" + - "ListRequest\032\037.flyteidl.admin.NamedEntity" + - "List\"\211\001\202\323\344\223\002\202\001\0229/api/v1/named_entities/{" + - "resource_type}/{project}/{domain}ZE\022C/ap" + - "i/v1/named_entities/{resource_type}/org/" + - "{org}/{project}/{domain}\022\203\002\n\016GetNamedEnt" + - "ity\022%.flyteidl.admin.NamedEntityGetReque" + - "st\032\033.flyteidl.admin.NamedEntity\"\254\001\202\323\344\223\002\245" + - "\001\022I/api/v1/named_entities/{resource_type" + - "}/{id.project}/{id.domain}/{id.name}ZX\022V" + - "/api/v1/named_entities/{resource_type}/o" + - "rg/{id.org}/{id.project}/{id.domain}/{id" + - ".name}\022\235\002\n\021UpdateNamedEntity\022(.flyteidl." + - "admin.NamedEntityUpdateRequest\032).flyteid" + - "l.admin.NamedEntityUpdateResponse\"\262\001\202\323\344\223" + - "\002\253\001\032I/api/v1/named_entities/{resource_ty" + - "pe}/{id.project}/{id.domain}/{id.name}:\001" + - "*Z[\032V/api/v1/named_entities/{resource_ty" + - "pe}/org/{id.org}/{id.project}/{id.domain" + - "}/{id.name}:\001*\022l\n\nGetVersion\022!.flyteidl." + - "admin.GetVersionRequest\032\".flyteidl.admin" + - ".GetVersionResponse\"\027\202\323\344\223\002\021\022\017/api/v1/ver" + - "sion\022\266\002\n\024GetDescriptionEntity\022 .flyteidl" + - ".admin.ObjectGetRequest\032!.flyteidl.admin" + - ".DescriptionEntity\"\330\001\202\323\344\223\002\321\001\022_/api/v1/de" + - "scription_entities/{id.resource_type}/{i" + - "d.project}/{id.domain}/{id.name}/{id.ver" + - "sion}Zn\022l/api/v1/description_entities/or" + - "g/{id.org}/{id.resource_type}/{id.projec" + - "t}/{id.domain}/{id.name}/{id.version}\022\310\003" + - "\n\027ListDescriptionEntities\022,.flyteidl.adm" + - "in.DescriptionEntityListRequest\032%.flytei" + - "dl.admin.DescriptionEntityList\"\327\002\202\323\344\223\002\320\002" + - "\022O/api/v1/description_entities/{resource" + + "}/{project}/{domain}:\001*\022\212\002\n\027UpdateProjec" + + "tAttributes\022..flyteidl.admin.ProjectAttr" + + "ibutesUpdateRequest\032/.flyteidl.admin.Pro" + + "jectAttributesUpdateResponse\"\215\001\202\323\344\223\002\206\001\032/" + + "/api/v1/project_attributes/{attributes.p" + + "roject}:\001*ZP\032K/api/v1/project_domain_att" + + "ributes/org/{attributes.org}/{attributes" + + ".project}:\001*\022\330\001\n\024GetProjectAttributes\022+." + + "flyteidl.admin.ProjectAttributesGetReque" + + "st\032,.flyteidl.admin.ProjectAttributesGet" + + "Response\"e\202\323\344\223\002_\022$/api/v1/project_attrib" + + "utes/{project}Z7\0225/api/v1/project_domain" + + "_attributes/org/{org}/{project}\022\347\001\n\027Dele" + + "teProjectAttributes\022..flyteidl.admin.Pro" + + "jectAttributesDeleteRequest\032/.flyteidl.a" + + "dmin.ProjectAttributesDeleteResponse\"k\202\323" + + "\344\223\002e*$/api/v1/project_attributes/{projec" + + "t}:\001*Z:*5/api/v1/project_domain_attribut" + + "es/org/{org}/{project}:\001*\022\334\002\n\030UpdateWork" + + "flowAttributes\022/.flyteidl.admin.Workflow" + + "AttributesUpdateRequest\0320.flyteidl.admin" + + ".WorkflowAttributesUpdateResponse\"\334\001\202\323\344\223" + + "\002\325\001\032Z/api/v1/workflow_attributes/{attrib" + + "utes.project}/{attributes.domain}/{attri" + + "butes.workflow}:\001*Zt\032o/api/v1/workflow_a" + + "ttributes/org/{attributes.org}/{attribut" + + "es.project}/{attributes.domain}/{attribu" + + "tes.workflow}:\001*\022\200\002\n\025GetWorkflowAttribut" + + "es\022,.flyteidl.admin.WorkflowAttributesGe" + + "tRequest\032-.flyteidl.admin.WorkflowAttrib" + + "utesGetResponse\"\211\001\202\323\344\223\002\202\001\0229/api/v1/workf" + + "low_attributes/{project}/{domain}/{workf" + + "low}ZE\022C/api/v1/workflow_attributes/org/" + + "{org}/{project}/{domain}/{workflow}\022\217\002\n\030" + + "DeleteWorkflowAttributes\022/.flyteidl.admi" + + "n.WorkflowAttributesDeleteRequest\0320.flyt" + + "eidl.admin.WorkflowAttributesDeleteRespo" + + "nse\"\217\001\202\323\344\223\002\210\001*9/api/v1/workflow_attribut" + + "es/{project}/{domain}/{workflow}:\001*ZH*C/" + + "api/v1/workflow_attributes/org/{org}/{pr" + + "oject}/{domain}/{workflow}:\001*\022\312\001\n\027ListMa" + + "tchableAttributes\022..flyteidl.admin.ListM" + + "atchableAttributesRequest\032/.flyteidl.adm" + + "in.ListMatchableAttributesResponse\"N\202\323\344\223" + + "\002H\022\034/api/v1/matchable_attributesZ(\022&/api" + + "/v1/matchable_attributes/org/{org}\022\350\001\n\021L" + + "istNamedEntities\022&.flyteidl.admin.NamedE" + + "ntityListRequest\032\037.flyteidl.admin.NamedE" + + "ntityList\"\211\001\202\323\344\223\002\202\001\0229/api/v1/named_entit" + + "ies/{resource_type}/{project}/{domain}ZE" + + "\022C/api/v1/named_entities/{resource_type}" + + "/org/{org}/{project}/{domain}\022\203\002\n\016GetNam" + + "edEntity\022%.flyteidl.admin.NamedEntityGet" + + "Request\032\033.flyteidl.admin.NamedEntity\"\254\001\202" + + "\323\344\223\002\245\001\022I/api/v1/named_entities/{resource" + "_type}/{id.project}/{id.domain}/{id.name" + - "}Z^\022\\/api/v1/description_entities/{resou" + - "rce_type}/org/{id.org}/{id.project}/{id." + - "domain}/{id.name}ZG\022E/api/v1/description" + - "_entities/{resource_type}/{id.project}/{" + - "id.domain}ZT\022R/api/v1/description_entiti" + - "es/{resource_type}/org/{id.org}/{id.proj" + - "ect}/{id.domain}\022\225\002\n\023GetExecutionMetrics" + - "\0222.flyteidl.admin.WorkflowExecutionGetMe" + - "tricsRequest\0323.flyteidl.admin.WorkflowEx" + - "ecutionGetMetricsResponse\"\224\001\202\323\344\223\002\215\001\022=/ap" + - "i/v1/metrics/executions/{id.project}/{id" + - ".domain}/{id.name}ZL\022J/api/v1/metrics/ex" + - "ecutions/org/{id.org}/{id.project}/{id.d" + - "omain}/{id.name}B?Z=github.com/flyteorg/" + - "flyte/flyteidl/gen/pb-go/flyteidl/servic" + - "eb\006proto3" + "}ZX\022V/api/v1/named_entities/{resource_ty" + + "pe}/org/{id.org}/{id.project}/{id.domain" + + "}/{id.name}\022\235\002\n\021UpdateNamedEntity\022(.flyt" + + "eidl.admin.NamedEntityUpdateRequest\032).fl" + + "yteidl.admin.NamedEntityUpdateResponse\"\262" + + "\001\202\323\344\223\002\253\001\032I/api/v1/named_entities/{resour" + + "ce_type}/{id.project}/{id.domain}/{id.na" + + "me}:\001*Z[\032V/api/v1/named_entities/{resour" + + "ce_type}/org/{id.org}/{id.project}/{id.d" + + "omain}/{id.name}:\001*\022l\n\nGetVersion\022!.flyt" + + "eidl.admin.GetVersionRequest\032\".flyteidl." + + "admin.GetVersionResponse\"\027\202\323\344\223\002\021\022\017/api/v" + + "1/version\022\266\002\n\024GetDescriptionEntity\022 .fly" + + "teidl.admin.ObjectGetRequest\032!.flyteidl." + + "admin.DescriptionEntity\"\330\001\202\323\344\223\002\321\001\022_/api/" + + "v1/description_entities/{id.resource_typ" + + "e}/{id.project}/{id.domain}/{id.name}/{i" + + "d.version}Zn\022l/api/v1/description_entiti" + + "es/org/{id.org}/{id.resource_type}/{id.p" + + "roject}/{id.domain}/{id.name}/{id.versio" + + "n}\022\310\003\n\027ListDescriptionEntities\022,.flyteid" + + "l.admin.DescriptionEntityListRequest\032%.f" + + "lyteidl.admin.DescriptionEntityList\"\327\002\202\323" + + "\344\223\002\320\002\022O/api/v1/description_entities/{res" + + "ource_type}/{id.project}/{id.domain}/{id" + + ".name}Z^\022\\/api/v1/description_entities/{" + + "resource_type}/org/{id.org}/{id.project}" + + "/{id.domain}/{id.name}ZG\022E/api/v1/descri" + + "ption_entities/{resource_type}/{id.proje" + + "ct}/{id.domain}ZT\022R/api/v1/description_e" + + "ntities/{resource_type}/org/{id.org}/{id" + + ".project}/{id.domain}\022\225\002\n\023GetExecutionMe" + + "trics\0222.flyteidl.admin.WorkflowExecution" + + "GetMetricsRequest\0323.flyteidl.admin.Workf" + + "lowExecutionGetMetricsResponse\"\224\001\202\323\344\223\002\215\001" + + "\022=/api/v1/metrics/executions/{id.project" + + "}/{id.domain}/{id.name}ZL\022J/api/v1/metri" + + "cs/executions/org/{id.org}/{id.project}/" + + "{id.domain}/{id.name}B?Z=github.com/flyt", + "eorg/flyte/flyteidl/gen/pb-go/flyteidl/s" + + "erviceb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-js/flyteidl.d.ts b/flyteidl/gen/pb-js/flyteidl.d.ts deleted file mode 100644 index 657f3e917a7..00000000000 --- a/flyteidl/gen/pb-js/flyteidl.d.ts +++ /dev/null @@ -1,26268 +0,0 @@ -import * as $protobuf from "protobufjs"; -/** Namespace flyteidl. */ -export namespace flyteidl { - - /** Namespace core. */ - namespace core { - - /** Properties of an ArtifactKey. */ - interface IArtifactKey { - - /** ArtifactKey project */ - project?: (string|null); - - /** ArtifactKey domain */ - domain?: (string|null); - - /** ArtifactKey name */ - name?: (string|null); - } - - /** Represents an ArtifactKey. */ - class ArtifactKey implements IArtifactKey { - - /** - * Constructs a new ArtifactKey. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IArtifactKey); - - /** ArtifactKey project. */ - public project: string; - - /** ArtifactKey domain. */ - public domain: string; - - /** ArtifactKey name. */ - public name: string; - - /** - * Creates a new ArtifactKey instance using the specified properties. - * @param [properties] Properties to set - * @returns ArtifactKey instance - */ - public static create(properties?: flyteidl.core.IArtifactKey): flyteidl.core.ArtifactKey; - - /** - * Encodes the specified ArtifactKey message. Does not implicitly {@link flyteidl.core.ArtifactKey.verify|verify} messages. - * @param message ArtifactKey message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IArtifactKey, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ArtifactKey message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ArtifactKey - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ArtifactKey; - - /** - * Verifies an ArtifactKey message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ArtifactBindingData. */ - interface IArtifactBindingData { - - /** ArtifactBindingData index */ - index?: (number|null); - - /** ArtifactBindingData partitionKey */ - partitionKey?: (string|null); - - /** ArtifactBindingData transform */ - transform?: (string|null); - } - - /** Represents an ArtifactBindingData. */ - class ArtifactBindingData implements IArtifactBindingData { - - /** - * Constructs a new ArtifactBindingData. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IArtifactBindingData); - - /** ArtifactBindingData index. */ - public index: number; - - /** ArtifactBindingData partitionKey. */ - public partitionKey: string; - - /** ArtifactBindingData transform. */ - public transform: string; - - /** - * Creates a new ArtifactBindingData instance using the specified properties. - * @param [properties] Properties to set - * @returns ArtifactBindingData instance - */ - public static create(properties?: flyteidl.core.IArtifactBindingData): flyteidl.core.ArtifactBindingData; - - /** - * Encodes the specified ArtifactBindingData message. Does not implicitly {@link flyteidl.core.ArtifactBindingData.verify|verify} messages. - * @param message ArtifactBindingData message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IArtifactBindingData, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ArtifactBindingData message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ArtifactBindingData - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ArtifactBindingData; - - /** - * Verifies an ArtifactBindingData message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an InputBindingData. */ - interface IInputBindingData { - - /** InputBindingData var */ - "var"?: (string|null); - } - - /** Represents an InputBindingData. */ - class InputBindingData implements IInputBindingData { - - /** - * Constructs a new InputBindingData. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IInputBindingData); - - /** InputBindingData var. */ - public var: string; - - /** - * Creates a new InputBindingData instance using the specified properties. - * @param [properties] Properties to set - * @returns InputBindingData instance - */ - public static create(properties?: flyteidl.core.IInputBindingData): flyteidl.core.InputBindingData; - - /** - * Encodes the specified InputBindingData message. Does not implicitly {@link flyteidl.core.InputBindingData.verify|verify} messages. - * @param message InputBindingData message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IInputBindingData, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an InputBindingData message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns InputBindingData - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.InputBindingData; - - /** - * Verifies an InputBindingData message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LabelValue. */ - interface ILabelValue { - - /** LabelValue staticValue */ - staticValue?: (string|null); - - /** LabelValue triggeredBinding */ - triggeredBinding?: (flyteidl.core.IArtifactBindingData|null); - - /** LabelValue inputBinding */ - inputBinding?: (flyteidl.core.IInputBindingData|null); - } - - /** Represents a LabelValue. */ - class LabelValue implements ILabelValue { - - /** - * Constructs a new LabelValue. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ILabelValue); - - /** LabelValue staticValue. */ - public staticValue: string; - - /** LabelValue triggeredBinding. */ - public triggeredBinding?: (flyteidl.core.IArtifactBindingData|null); - - /** LabelValue inputBinding. */ - public inputBinding?: (flyteidl.core.IInputBindingData|null); - - /** LabelValue value. */ - public value?: ("staticValue"|"triggeredBinding"|"inputBinding"); - - /** - * Creates a new LabelValue instance using the specified properties. - * @param [properties] Properties to set - * @returns LabelValue instance - */ - public static create(properties?: flyteidl.core.ILabelValue): flyteidl.core.LabelValue; - - /** - * Encodes the specified LabelValue message. Does not implicitly {@link flyteidl.core.LabelValue.verify|verify} messages. - * @param message LabelValue message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ILabelValue, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LabelValue message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LabelValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.LabelValue; - - /** - * Verifies a LabelValue message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Partitions. */ - interface IPartitions { - - /** Partitions value */ - value?: ({ [k: string]: flyteidl.core.ILabelValue }|null); - } - - /** Represents a Partitions. */ - class Partitions implements IPartitions { - - /** - * Constructs a new Partitions. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IPartitions); - - /** Partitions value. */ - public value: { [k: string]: flyteidl.core.ILabelValue }; - - /** - * Creates a new Partitions instance using the specified properties. - * @param [properties] Properties to set - * @returns Partitions instance - */ - public static create(properties?: flyteidl.core.IPartitions): flyteidl.core.Partitions; - - /** - * Encodes the specified Partitions message. Does not implicitly {@link flyteidl.core.Partitions.verify|verify} messages. - * @param message Partitions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IPartitions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Partitions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Partitions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Partitions; - - /** - * Verifies a Partitions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ArtifactID. */ - interface IArtifactID { - - /** ArtifactID artifactKey */ - artifactKey?: (flyteidl.core.IArtifactKey|null); - - /** ArtifactID version */ - version?: (string|null); - - /** ArtifactID partitions */ - partitions?: (flyteidl.core.IPartitions|null); - } - - /** Represents an ArtifactID. */ - class ArtifactID implements IArtifactID { - - /** - * Constructs a new ArtifactID. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IArtifactID); - - /** ArtifactID artifactKey. */ - public artifactKey?: (flyteidl.core.IArtifactKey|null); - - /** ArtifactID version. */ - public version: string; - - /** ArtifactID partitions. */ - public partitions?: (flyteidl.core.IPartitions|null); - - /** ArtifactID dimensions. */ - public dimensions?: "partitions"; - - /** - * Creates a new ArtifactID instance using the specified properties. - * @param [properties] Properties to set - * @returns ArtifactID instance - */ - public static create(properties?: flyteidl.core.IArtifactID): flyteidl.core.ArtifactID; - - /** - * Encodes the specified ArtifactID message. Does not implicitly {@link flyteidl.core.ArtifactID.verify|verify} messages. - * @param message ArtifactID message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IArtifactID, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ArtifactID message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ArtifactID - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ArtifactID; - - /** - * Verifies an ArtifactID message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ArtifactTag. */ - interface IArtifactTag { - - /** ArtifactTag artifactKey */ - artifactKey?: (flyteidl.core.IArtifactKey|null); - - /** ArtifactTag value */ - value?: (flyteidl.core.ILabelValue|null); - } - - /** Represents an ArtifactTag. */ - class ArtifactTag implements IArtifactTag { - - /** - * Constructs a new ArtifactTag. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IArtifactTag); - - /** ArtifactTag artifactKey. */ - public artifactKey?: (flyteidl.core.IArtifactKey|null); - - /** ArtifactTag value. */ - public value?: (flyteidl.core.ILabelValue|null); - - /** - * Creates a new ArtifactTag instance using the specified properties. - * @param [properties] Properties to set - * @returns ArtifactTag instance - */ - public static create(properties?: flyteidl.core.IArtifactTag): flyteidl.core.ArtifactTag; - - /** - * Encodes the specified ArtifactTag message. Does not implicitly {@link flyteidl.core.ArtifactTag.verify|verify} messages. - * @param message ArtifactTag message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IArtifactTag, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ArtifactTag message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ArtifactTag - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ArtifactTag; - - /** - * Verifies an ArtifactTag message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ArtifactQuery. */ - interface IArtifactQuery { - - /** ArtifactQuery artifactId */ - artifactId?: (flyteidl.core.IArtifactID|null); - - /** ArtifactQuery artifactTag */ - artifactTag?: (flyteidl.core.IArtifactTag|null); - - /** ArtifactQuery uri */ - uri?: (string|null); - - /** ArtifactQuery binding */ - binding?: (flyteidl.core.IArtifactBindingData|null); - } - - /** Represents an ArtifactQuery. */ - class ArtifactQuery implements IArtifactQuery { - - /** - * Constructs a new ArtifactQuery. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IArtifactQuery); - - /** ArtifactQuery artifactId. */ - public artifactId?: (flyteidl.core.IArtifactID|null); - - /** ArtifactQuery artifactTag. */ - public artifactTag?: (flyteidl.core.IArtifactTag|null); - - /** ArtifactQuery uri. */ - public uri: string; - - /** ArtifactQuery binding. */ - public binding?: (flyteidl.core.IArtifactBindingData|null); - - /** ArtifactQuery identifier. */ - public identifier?: ("artifactId"|"artifactTag"|"uri"|"binding"); - - /** - * Creates a new ArtifactQuery instance using the specified properties. - * @param [properties] Properties to set - * @returns ArtifactQuery instance - */ - public static create(properties?: flyteidl.core.IArtifactQuery): flyteidl.core.ArtifactQuery; - - /** - * Encodes the specified ArtifactQuery message. Does not implicitly {@link flyteidl.core.ArtifactQuery.verify|verify} messages. - * @param message ArtifactQuery message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IArtifactQuery, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ArtifactQuery message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ArtifactQuery - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ArtifactQuery; - - /** - * Verifies an ArtifactQuery message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Trigger. */ - interface ITrigger { - - /** Trigger triggerId */ - triggerId?: (flyteidl.core.IIdentifier|null); - - /** Trigger triggers */ - triggers?: (flyteidl.core.IArtifactID[]|null); - } - - /** Represents a Trigger. */ - class Trigger implements ITrigger { - - /** - * Constructs a new Trigger. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITrigger); - - /** Trigger triggerId. */ - public triggerId?: (flyteidl.core.IIdentifier|null); - - /** Trigger triggers. */ - public triggers: flyteidl.core.IArtifactID[]; - - /** - * Creates a new Trigger instance using the specified properties. - * @param [properties] Properties to set - * @returns Trigger instance - */ - public static create(properties?: flyteidl.core.ITrigger): flyteidl.core.Trigger; - - /** - * Encodes the specified Trigger message. Does not implicitly {@link flyteidl.core.Trigger.verify|verify} messages. - * @param message Trigger message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITrigger, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Trigger message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Trigger - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Trigger; - - /** - * Verifies a Trigger message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** ResourceType enum. */ - enum ResourceType { - UNSPECIFIED = 0, - TASK = 1, - WORKFLOW = 2, - LAUNCH_PLAN = 3, - DATASET = 4 - } - - /** Properties of an Identifier. */ - interface IIdentifier { - - /** Identifier resourceType */ - resourceType?: (flyteidl.core.ResourceType|null); - - /** Identifier project */ - project?: (string|null); - - /** Identifier domain */ - domain?: (string|null); - - /** Identifier name */ - name?: (string|null); - - /** Identifier version */ - version?: (string|null); - - /** Identifier org */ - org?: (string|null); - } - - /** Represents an Identifier. */ - class Identifier implements IIdentifier { - - /** - * Constructs a new Identifier. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IIdentifier); - - /** Identifier resourceType. */ - public resourceType: flyteidl.core.ResourceType; - - /** Identifier project. */ - public project: string; - - /** Identifier domain. */ - public domain: string; - - /** Identifier name. */ - public name: string; - - /** Identifier version. */ - public version: string; - - /** Identifier org. */ - public org: string; - - /** - * Creates a new Identifier instance using the specified properties. - * @param [properties] Properties to set - * @returns Identifier instance - */ - public static create(properties?: flyteidl.core.IIdentifier): flyteidl.core.Identifier; - - /** - * Encodes the specified Identifier message. Does not implicitly {@link flyteidl.core.Identifier.verify|verify} messages. - * @param message Identifier message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IIdentifier, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Identifier message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Identifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Identifier; - - /** - * Verifies an Identifier message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionIdentifier. */ - interface IWorkflowExecutionIdentifier { - - /** WorkflowExecutionIdentifier project */ - project?: (string|null); - - /** WorkflowExecutionIdentifier domain */ - domain?: (string|null); - - /** WorkflowExecutionIdentifier name */ - name?: (string|null); - - /** WorkflowExecutionIdentifier org */ - org?: (string|null); - } - - /** Represents a WorkflowExecutionIdentifier. */ - class WorkflowExecutionIdentifier implements IWorkflowExecutionIdentifier { - - /** - * Constructs a new WorkflowExecutionIdentifier. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IWorkflowExecutionIdentifier); - - /** WorkflowExecutionIdentifier project. */ - public project: string; - - /** WorkflowExecutionIdentifier domain. */ - public domain: string; - - /** WorkflowExecutionIdentifier name. */ - public name: string; - - /** WorkflowExecutionIdentifier org. */ - public org: string; - - /** - * Creates a new WorkflowExecutionIdentifier instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionIdentifier instance - */ - public static create(properties?: flyteidl.core.IWorkflowExecutionIdentifier): flyteidl.core.WorkflowExecutionIdentifier; - - /** - * Encodes the specified WorkflowExecutionIdentifier message. Does not implicitly {@link flyteidl.core.WorkflowExecutionIdentifier.verify|verify} messages. - * @param message WorkflowExecutionIdentifier message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IWorkflowExecutionIdentifier, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionIdentifier message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.WorkflowExecutionIdentifier; - - /** - * Verifies a WorkflowExecutionIdentifier message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionIdentifier. */ - interface INodeExecutionIdentifier { - - /** NodeExecutionIdentifier nodeId */ - nodeId?: (string|null); - - /** NodeExecutionIdentifier executionId */ - executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - } - - /** Represents a NodeExecutionIdentifier. */ - class NodeExecutionIdentifier implements INodeExecutionIdentifier { - - /** - * Constructs a new NodeExecutionIdentifier. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.INodeExecutionIdentifier); - - /** NodeExecutionIdentifier nodeId. */ - public nodeId: string; - - /** NodeExecutionIdentifier executionId. */ - public executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** - * Creates a new NodeExecutionIdentifier instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionIdentifier instance - */ - public static create(properties?: flyteidl.core.INodeExecutionIdentifier): flyteidl.core.NodeExecutionIdentifier; - - /** - * Encodes the specified NodeExecutionIdentifier message. Does not implicitly {@link flyteidl.core.NodeExecutionIdentifier.verify|verify} messages. - * @param message NodeExecutionIdentifier message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.INodeExecutionIdentifier, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionIdentifier message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.NodeExecutionIdentifier; - - /** - * Verifies a NodeExecutionIdentifier message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionIdentifier. */ - interface ITaskExecutionIdentifier { - - /** TaskExecutionIdentifier taskId */ - taskId?: (flyteidl.core.IIdentifier|null); - - /** TaskExecutionIdentifier nodeExecutionId */ - nodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** TaskExecutionIdentifier retryAttempt */ - retryAttempt?: (number|null); - } - - /** Represents a TaskExecutionIdentifier. */ - class TaskExecutionIdentifier implements ITaskExecutionIdentifier { - - /** - * Constructs a new TaskExecutionIdentifier. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITaskExecutionIdentifier); - - /** TaskExecutionIdentifier taskId. */ - public taskId?: (flyteidl.core.IIdentifier|null); - - /** TaskExecutionIdentifier nodeExecutionId. */ - public nodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** TaskExecutionIdentifier retryAttempt. */ - public retryAttempt: number; - - /** - * Creates a new TaskExecutionIdentifier instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionIdentifier instance - */ - public static create(properties?: flyteidl.core.ITaskExecutionIdentifier): flyteidl.core.TaskExecutionIdentifier; - - /** - * Encodes the specified TaskExecutionIdentifier message. Does not implicitly {@link flyteidl.core.TaskExecutionIdentifier.verify|verify} messages. - * @param message TaskExecutionIdentifier message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITaskExecutionIdentifier, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionIdentifier message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TaskExecutionIdentifier; - - /** - * Verifies a TaskExecutionIdentifier message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SignalIdentifier. */ - interface ISignalIdentifier { - - /** SignalIdentifier signalId */ - signalId?: (string|null); - - /** SignalIdentifier executionId */ - executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - } - - /** Represents a SignalIdentifier. */ - class SignalIdentifier implements ISignalIdentifier { - - /** - * Constructs a new SignalIdentifier. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISignalIdentifier); - - /** SignalIdentifier signalId. */ - public signalId: string; - - /** SignalIdentifier executionId. */ - public executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** - * Creates a new SignalIdentifier instance using the specified properties. - * @param [properties] Properties to set - * @returns SignalIdentifier instance - */ - public static create(properties?: flyteidl.core.ISignalIdentifier): flyteidl.core.SignalIdentifier; - - /** - * Encodes the specified SignalIdentifier message. Does not implicitly {@link flyteidl.core.SignalIdentifier.verify|verify} messages. - * @param message SignalIdentifier message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISignalIdentifier, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SignalIdentifier message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SignalIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.SignalIdentifier; - - /** - * Verifies a SignalIdentifier message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** CatalogCacheStatus enum. */ - enum CatalogCacheStatus { - CACHE_DISABLED = 0, - CACHE_MISS = 1, - CACHE_HIT = 2, - CACHE_POPULATED = 3, - CACHE_LOOKUP_FAILURE = 4, - CACHE_PUT_FAILURE = 5, - CACHE_SKIPPED = 6, - CACHE_EVICTED = 7 - } - - /** Properties of a CatalogArtifactTag. */ - interface ICatalogArtifactTag { - - /** CatalogArtifactTag artifactId */ - artifactId?: (string|null); - - /** CatalogArtifactTag name */ - name?: (string|null); - } - - /** Represents a CatalogArtifactTag. */ - class CatalogArtifactTag implements ICatalogArtifactTag { - - /** - * Constructs a new CatalogArtifactTag. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ICatalogArtifactTag); - - /** CatalogArtifactTag artifactId. */ - public artifactId: string; - - /** CatalogArtifactTag name. */ - public name: string; - - /** - * Creates a new CatalogArtifactTag instance using the specified properties. - * @param [properties] Properties to set - * @returns CatalogArtifactTag instance - */ - public static create(properties?: flyteidl.core.ICatalogArtifactTag): flyteidl.core.CatalogArtifactTag; - - /** - * Encodes the specified CatalogArtifactTag message. Does not implicitly {@link flyteidl.core.CatalogArtifactTag.verify|verify} messages. - * @param message CatalogArtifactTag message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ICatalogArtifactTag, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CatalogArtifactTag message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CatalogArtifactTag - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.CatalogArtifactTag; - - /** - * Verifies a CatalogArtifactTag message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CatalogMetadata. */ - interface ICatalogMetadata { - - /** CatalogMetadata datasetId */ - datasetId?: (flyteidl.core.IIdentifier|null); - - /** CatalogMetadata artifactTag */ - artifactTag?: (flyteidl.core.ICatalogArtifactTag|null); - - /** CatalogMetadata sourceTaskExecution */ - sourceTaskExecution?: (flyteidl.core.ITaskExecutionIdentifier|null); - } - - /** Represents a CatalogMetadata. */ - class CatalogMetadata implements ICatalogMetadata { - - /** - * Constructs a new CatalogMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ICatalogMetadata); - - /** CatalogMetadata datasetId. */ - public datasetId?: (flyteidl.core.IIdentifier|null); - - /** CatalogMetadata artifactTag. */ - public artifactTag?: (flyteidl.core.ICatalogArtifactTag|null); - - /** CatalogMetadata sourceTaskExecution. */ - public sourceTaskExecution?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** CatalogMetadata sourceExecution. */ - public sourceExecution?: "sourceTaskExecution"; - - /** - * Creates a new CatalogMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns CatalogMetadata instance - */ - public static create(properties?: flyteidl.core.ICatalogMetadata): flyteidl.core.CatalogMetadata; - - /** - * Encodes the specified CatalogMetadata message. Does not implicitly {@link flyteidl.core.CatalogMetadata.verify|verify} messages. - * @param message CatalogMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ICatalogMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CatalogMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CatalogMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.CatalogMetadata; - - /** - * Verifies a CatalogMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CatalogReservation. */ - interface ICatalogReservation { - } - - /** Represents a CatalogReservation. */ - class CatalogReservation implements ICatalogReservation { - - /** - * Constructs a new CatalogReservation. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ICatalogReservation); - - /** - * Creates a new CatalogReservation instance using the specified properties. - * @param [properties] Properties to set - * @returns CatalogReservation instance - */ - public static create(properties?: flyteidl.core.ICatalogReservation): flyteidl.core.CatalogReservation; - - /** - * Encodes the specified CatalogReservation message. Does not implicitly {@link flyteidl.core.CatalogReservation.verify|verify} messages. - * @param message CatalogReservation message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ICatalogReservation, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CatalogReservation message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CatalogReservation - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.CatalogReservation; - - /** - * Verifies a CatalogReservation message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace CatalogReservation { - - /** Status enum. */ - enum Status { - RESERVATION_DISABLED = 0, - RESERVATION_ACQUIRED = 1, - RESERVATION_EXISTS = 2, - RESERVATION_RELEASED = 3, - RESERVATION_FAILURE = 4 - } - } - - /** Properties of a ConnectionSet. */ - interface IConnectionSet { - - /** ConnectionSet downstream */ - downstream?: ({ [k: string]: flyteidl.core.ConnectionSet.IIdList }|null); - - /** ConnectionSet upstream */ - upstream?: ({ [k: string]: flyteidl.core.ConnectionSet.IIdList }|null); - } - - /** Represents a ConnectionSet. */ - class ConnectionSet implements IConnectionSet { - - /** - * Constructs a new ConnectionSet. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IConnectionSet); - - /** ConnectionSet downstream. */ - public downstream: { [k: string]: flyteidl.core.ConnectionSet.IIdList }; - - /** ConnectionSet upstream. */ - public upstream: { [k: string]: flyteidl.core.ConnectionSet.IIdList }; - - /** - * Creates a new ConnectionSet instance using the specified properties. - * @param [properties] Properties to set - * @returns ConnectionSet instance - */ - public static create(properties?: flyteidl.core.IConnectionSet): flyteidl.core.ConnectionSet; - - /** - * Encodes the specified ConnectionSet message. Does not implicitly {@link flyteidl.core.ConnectionSet.verify|verify} messages. - * @param message ConnectionSet message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IConnectionSet, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ConnectionSet message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ConnectionSet - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ConnectionSet; - - /** - * Verifies a ConnectionSet message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace ConnectionSet { - - /** Properties of an IdList. */ - interface IIdList { - - /** IdList ids */ - ids?: (string[]|null); - } - - /** Represents an IdList. */ - class IdList implements IIdList { - - /** - * Constructs a new IdList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ConnectionSet.IIdList); - - /** IdList ids. */ - public ids: string[]; - - /** - * Creates a new IdList instance using the specified properties. - * @param [properties] Properties to set - * @returns IdList instance - */ - public static create(properties?: flyteidl.core.ConnectionSet.IIdList): flyteidl.core.ConnectionSet.IdList; - - /** - * Encodes the specified IdList message. Does not implicitly {@link flyteidl.core.ConnectionSet.IdList.verify|verify} messages. - * @param message IdList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ConnectionSet.IIdList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an IdList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns IdList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ConnectionSet.IdList; - - /** - * Verifies an IdList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - - /** Properties of a CompiledWorkflow. */ - interface ICompiledWorkflow { - - /** CompiledWorkflow template */ - template?: (flyteidl.core.IWorkflowTemplate|null); - - /** CompiledWorkflow connections */ - connections?: (flyteidl.core.IConnectionSet|null); - } - - /** Represents a CompiledWorkflow. */ - class CompiledWorkflow implements ICompiledWorkflow { - - /** - * Constructs a new CompiledWorkflow. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ICompiledWorkflow); - - /** CompiledWorkflow template. */ - public template?: (flyteidl.core.IWorkflowTemplate|null); - - /** CompiledWorkflow connections. */ - public connections?: (flyteidl.core.IConnectionSet|null); - - /** - * Creates a new CompiledWorkflow instance using the specified properties. - * @param [properties] Properties to set - * @returns CompiledWorkflow instance - */ - public static create(properties?: flyteidl.core.ICompiledWorkflow): flyteidl.core.CompiledWorkflow; - - /** - * Encodes the specified CompiledWorkflow message. Does not implicitly {@link flyteidl.core.CompiledWorkflow.verify|verify} messages. - * @param message CompiledWorkflow message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ICompiledWorkflow, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CompiledWorkflow message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CompiledWorkflow - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.CompiledWorkflow; - - /** - * Verifies a CompiledWorkflow message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CompiledTask. */ - interface ICompiledTask { - - /** CompiledTask template */ - template?: (flyteidl.core.ITaskTemplate|null); - } - - /** Represents a CompiledTask. */ - class CompiledTask implements ICompiledTask { - - /** - * Constructs a new CompiledTask. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ICompiledTask); - - /** CompiledTask template. */ - public template?: (flyteidl.core.ITaskTemplate|null); - - /** - * Creates a new CompiledTask instance using the specified properties. - * @param [properties] Properties to set - * @returns CompiledTask instance - */ - public static create(properties?: flyteidl.core.ICompiledTask): flyteidl.core.CompiledTask; - - /** - * Encodes the specified CompiledTask message. Does not implicitly {@link flyteidl.core.CompiledTask.verify|verify} messages. - * @param message CompiledTask message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ICompiledTask, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CompiledTask message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CompiledTask - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.CompiledTask; - - /** - * Verifies a CompiledTask message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CompiledWorkflowClosure. */ - interface ICompiledWorkflowClosure { - - /** CompiledWorkflowClosure primary */ - primary?: (flyteidl.core.ICompiledWorkflow|null); - - /** CompiledWorkflowClosure subWorkflows */ - subWorkflows?: (flyteidl.core.ICompiledWorkflow[]|null); - - /** CompiledWorkflowClosure tasks */ - tasks?: (flyteidl.core.ICompiledTask[]|null); - } - - /** Represents a CompiledWorkflowClosure. */ - class CompiledWorkflowClosure implements ICompiledWorkflowClosure { - - /** - * Constructs a new CompiledWorkflowClosure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ICompiledWorkflowClosure); - - /** CompiledWorkflowClosure primary. */ - public primary?: (flyteidl.core.ICompiledWorkflow|null); - - /** CompiledWorkflowClosure subWorkflows. */ - public subWorkflows: flyteidl.core.ICompiledWorkflow[]; - - /** CompiledWorkflowClosure tasks. */ - public tasks: flyteidl.core.ICompiledTask[]; - - /** - * Creates a new CompiledWorkflowClosure instance using the specified properties. - * @param [properties] Properties to set - * @returns CompiledWorkflowClosure instance - */ - public static create(properties?: flyteidl.core.ICompiledWorkflowClosure): flyteidl.core.CompiledWorkflowClosure; - - /** - * Encodes the specified CompiledWorkflowClosure message. Does not implicitly {@link flyteidl.core.CompiledWorkflowClosure.verify|verify} messages. - * @param message CompiledWorkflowClosure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ICompiledWorkflowClosure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CompiledWorkflowClosure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CompiledWorkflowClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.CompiledWorkflowClosure; - - /** - * Verifies a CompiledWorkflowClosure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an IfBlock. */ - interface IIfBlock { - - /** IfBlock condition */ - condition?: (flyteidl.core.IBooleanExpression|null); - - /** IfBlock thenNode */ - thenNode?: (flyteidl.core.INode|null); - } - - /** Represents an IfBlock. */ - class IfBlock implements IIfBlock { - - /** - * Constructs a new IfBlock. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IIfBlock); - - /** IfBlock condition. */ - public condition?: (flyteidl.core.IBooleanExpression|null); - - /** IfBlock thenNode. */ - public thenNode?: (flyteidl.core.INode|null); - - /** - * Creates a new IfBlock instance using the specified properties. - * @param [properties] Properties to set - * @returns IfBlock instance - */ - public static create(properties?: flyteidl.core.IIfBlock): flyteidl.core.IfBlock; - - /** - * Encodes the specified IfBlock message. Does not implicitly {@link flyteidl.core.IfBlock.verify|verify} messages. - * @param message IfBlock message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IIfBlock, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an IfBlock message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns IfBlock - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.IfBlock; - - /** - * Verifies an IfBlock message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an IfElseBlock. */ - interface IIfElseBlock { - - /** IfElseBlock case */ - "case"?: (flyteidl.core.IIfBlock|null); - - /** IfElseBlock other */ - other?: (flyteidl.core.IIfBlock[]|null); - - /** IfElseBlock elseNode */ - elseNode?: (flyteidl.core.INode|null); - - /** IfElseBlock error */ - error?: (flyteidl.core.IError|null); - } - - /** Represents an IfElseBlock. */ - class IfElseBlock implements IIfElseBlock { - - /** - * Constructs a new IfElseBlock. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IIfElseBlock); - - /** IfElseBlock case. */ - public case?: (flyteidl.core.IIfBlock|null); - - /** IfElseBlock other. */ - public other: flyteidl.core.IIfBlock[]; - - /** IfElseBlock elseNode. */ - public elseNode?: (flyteidl.core.INode|null); - - /** IfElseBlock error. */ - public error?: (flyteidl.core.IError|null); - - /** IfElseBlock default. */ - public default_?: ("elseNode"|"error"); - - /** - * Creates a new IfElseBlock instance using the specified properties. - * @param [properties] Properties to set - * @returns IfElseBlock instance - */ - public static create(properties?: flyteidl.core.IIfElseBlock): flyteidl.core.IfElseBlock; - - /** - * Encodes the specified IfElseBlock message. Does not implicitly {@link flyteidl.core.IfElseBlock.verify|verify} messages. - * @param message IfElseBlock message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IIfElseBlock, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an IfElseBlock message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns IfElseBlock - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.IfElseBlock; - - /** - * Verifies an IfElseBlock message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a BranchNode. */ - interface IBranchNode { - - /** BranchNode ifElse */ - ifElse?: (flyteidl.core.IIfElseBlock|null); - } - - /** Represents a BranchNode. */ - class BranchNode implements IBranchNode { - - /** - * Constructs a new BranchNode. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBranchNode); - - /** BranchNode ifElse. */ - public ifElse?: (flyteidl.core.IIfElseBlock|null); - - /** - * Creates a new BranchNode instance using the specified properties. - * @param [properties] Properties to set - * @returns BranchNode instance - */ - public static create(properties?: flyteidl.core.IBranchNode): flyteidl.core.BranchNode; - - /** - * Encodes the specified BranchNode message. Does not implicitly {@link flyteidl.core.BranchNode.verify|verify} messages. - * @param message BranchNode message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBranchNode, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BranchNode message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BranchNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.BranchNode; - - /** - * Verifies a BranchNode message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskNode. */ - interface ITaskNode { - - /** TaskNode referenceId */ - referenceId?: (flyteidl.core.IIdentifier|null); - - /** TaskNode overrides */ - overrides?: (flyteidl.core.ITaskNodeOverrides|null); - } - - /** Represents a TaskNode. */ - class TaskNode implements ITaskNode { - - /** - * Constructs a new TaskNode. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITaskNode); - - /** TaskNode referenceId. */ - public referenceId?: (flyteidl.core.IIdentifier|null); - - /** TaskNode overrides. */ - public overrides?: (flyteidl.core.ITaskNodeOverrides|null); - - /** TaskNode reference. */ - public reference?: "referenceId"; - - /** - * Creates a new TaskNode instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskNode instance - */ - public static create(properties?: flyteidl.core.ITaskNode): flyteidl.core.TaskNode; - - /** - * Encodes the specified TaskNode message. Does not implicitly {@link flyteidl.core.TaskNode.verify|verify} messages. - * @param message TaskNode message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITaskNode, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskNode message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TaskNode; - - /** - * Verifies a TaskNode message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowNode. */ - interface IWorkflowNode { - - /** WorkflowNode launchplanRef */ - launchplanRef?: (flyteidl.core.IIdentifier|null); - - /** WorkflowNode subWorkflowRef */ - subWorkflowRef?: (flyteidl.core.IIdentifier|null); - } - - /** Represents a WorkflowNode. */ - class WorkflowNode implements IWorkflowNode { - - /** - * Constructs a new WorkflowNode. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IWorkflowNode); - - /** WorkflowNode launchplanRef. */ - public launchplanRef?: (flyteidl.core.IIdentifier|null); - - /** WorkflowNode subWorkflowRef. */ - public subWorkflowRef?: (flyteidl.core.IIdentifier|null); - - /** WorkflowNode reference. */ - public reference?: ("launchplanRef"|"subWorkflowRef"); - - /** - * Creates a new WorkflowNode instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowNode instance - */ - public static create(properties?: flyteidl.core.IWorkflowNode): flyteidl.core.WorkflowNode; - - /** - * Encodes the specified WorkflowNode message. Does not implicitly {@link flyteidl.core.WorkflowNode.verify|verify} messages. - * @param message WorkflowNode message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IWorkflowNode, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowNode message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.WorkflowNode; - - /** - * Verifies a WorkflowNode message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ApproveCondition. */ - interface IApproveCondition { - - /** ApproveCondition signalId */ - signalId?: (string|null); - } - - /** Represents an ApproveCondition. */ - class ApproveCondition implements IApproveCondition { - - /** - * Constructs a new ApproveCondition. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IApproveCondition); - - /** ApproveCondition signalId. */ - public signalId: string; - - /** - * Creates a new ApproveCondition instance using the specified properties. - * @param [properties] Properties to set - * @returns ApproveCondition instance - */ - public static create(properties?: flyteidl.core.IApproveCondition): flyteidl.core.ApproveCondition; - - /** - * Encodes the specified ApproveCondition message. Does not implicitly {@link flyteidl.core.ApproveCondition.verify|verify} messages. - * @param message ApproveCondition message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IApproveCondition, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ApproveCondition message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ApproveCondition - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ApproveCondition; - - /** - * Verifies an ApproveCondition message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SignalCondition. */ - interface ISignalCondition { - - /** SignalCondition signalId */ - signalId?: (string|null); - - /** SignalCondition type */ - type?: (flyteidl.core.ILiteralType|null); - - /** SignalCondition outputVariableName */ - outputVariableName?: (string|null); - } - - /** Represents a SignalCondition. */ - class SignalCondition implements ISignalCondition { - - /** - * Constructs a new SignalCondition. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISignalCondition); - - /** SignalCondition signalId. */ - public signalId: string; - - /** SignalCondition type. */ - public type?: (flyteidl.core.ILiteralType|null); - - /** SignalCondition outputVariableName. */ - public outputVariableName: string; - - /** - * Creates a new SignalCondition instance using the specified properties. - * @param [properties] Properties to set - * @returns SignalCondition instance - */ - public static create(properties?: flyteidl.core.ISignalCondition): flyteidl.core.SignalCondition; - - /** - * Encodes the specified SignalCondition message. Does not implicitly {@link flyteidl.core.SignalCondition.verify|verify} messages. - * @param message SignalCondition message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISignalCondition, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SignalCondition message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SignalCondition - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.SignalCondition; - - /** - * Verifies a SignalCondition message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SleepCondition. */ - interface ISleepCondition { - - /** SleepCondition duration */ - duration?: (google.protobuf.IDuration|null); - } - - /** Represents a SleepCondition. */ - class SleepCondition implements ISleepCondition { - - /** - * Constructs a new SleepCondition. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISleepCondition); - - /** SleepCondition duration. */ - public duration?: (google.protobuf.IDuration|null); - - /** - * Creates a new SleepCondition instance using the specified properties. - * @param [properties] Properties to set - * @returns SleepCondition instance - */ - public static create(properties?: flyteidl.core.ISleepCondition): flyteidl.core.SleepCondition; - - /** - * Encodes the specified SleepCondition message. Does not implicitly {@link flyteidl.core.SleepCondition.verify|verify} messages. - * @param message SleepCondition message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISleepCondition, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SleepCondition message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SleepCondition - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.SleepCondition; - - /** - * Verifies a SleepCondition message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GateNode. */ - interface IGateNode { - - /** GateNode approve */ - approve?: (flyteidl.core.IApproveCondition|null); - - /** GateNode signal */ - signal?: (flyteidl.core.ISignalCondition|null); - - /** GateNode sleep */ - sleep?: (flyteidl.core.ISleepCondition|null); - } - - /** Represents a GateNode. */ - class GateNode implements IGateNode { - - /** - * Constructs a new GateNode. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IGateNode); - - /** GateNode approve. */ - public approve?: (flyteidl.core.IApproveCondition|null); - - /** GateNode signal. */ - public signal?: (flyteidl.core.ISignalCondition|null); - - /** GateNode sleep. */ - public sleep?: (flyteidl.core.ISleepCondition|null); - - /** GateNode condition. */ - public condition?: ("approve"|"signal"|"sleep"); - - /** - * Creates a new GateNode instance using the specified properties. - * @param [properties] Properties to set - * @returns GateNode instance - */ - public static create(properties?: flyteidl.core.IGateNode): flyteidl.core.GateNode; - - /** - * Encodes the specified GateNode message. Does not implicitly {@link flyteidl.core.GateNode.verify|verify} messages. - * @param message GateNode message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IGateNode, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GateNode message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GateNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.GateNode; - - /** - * Verifies a GateNode message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ArrayNode. */ - interface IArrayNode { - - /** ArrayNode node */ - node?: (flyteidl.core.INode|null); - - /** ArrayNode parallelism */ - parallelism?: (number|null); - - /** ArrayNode minSuccesses */ - minSuccesses?: (number|null); - - /** ArrayNode minSuccessRatio */ - minSuccessRatio?: (number|null); - } - - /** Represents an ArrayNode. */ - class ArrayNode implements IArrayNode { - - /** - * Constructs a new ArrayNode. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IArrayNode); - - /** ArrayNode node. */ - public node?: (flyteidl.core.INode|null); - - /** ArrayNode parallelism. */ - public parallelism: number; - - /** ArrayNode minSuccesses. */ - public minSuccesses: number; - - /** ArrayNode minSuccessRatio. */ - public minSuccessRatio: number; - - /** ArrayNode successCriteria. */ - public successCriteria?: ("minSuccesses"|"minSuccessRatio"); - - /** - * Creates a new ArrayNode instance using the specified properties. - * @param [properties] Properties to set - * @returns ArrayNode instance - */ - public static create(properties?: flyteidl.core.IArrayNode): flyteidl.core.ArrayNode; - - /** - * Encodes the specified ArrayNode message. Does not implicitly {@link flyteidl.core.ArrayNode.verify|verify} messages. - * @param message ArrayNode message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IArrayNode, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ArrayNode message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ArrayNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ArrayNode; - - /** - * Verifies an ArrayNode message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeMetadata. */ - interface INodeMetadata { - - /** NodeMetadata name */ - name?: (string|null); - - /** NodeMetadata timeout */ - timeout?: (google.protobuf.IDuration|null); - - /** NodeMetadata retries */ - retries?: (flyteidl.core.IRetryStrategy|null); - - /** NodeMetadata interruptible */ - interruptible?: (boolean|null); - } - - /** Represents a NodeMetadata. */ - class NodeMetadata implements INodeMetadata { - - /** - * Constructs a new NodeMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.INodeMetadata); - - /** NodeMetadata name. */ - public name: string; - - /** NodeMetadata timeout. */ - public timeout?: (google.protobuf.IDuration|null); - - /** NodeMetadata retries. */ - public retries?: (flyteidl.core.IRetryStrategy|null); - - /** NodeMetadata interruptible. */ - public interruptible: boolean; - - /** NodeMetadata interruptibleValue. */ - public interruptibleValue?: "interruptible"; - - /** - * Creates a new NodeMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeMetadata instance - */ - public static create(properties?: flyteidl.core.INodeMetadata): flyteidl.core.NodeMetadata; - - /** - * Encodes the specified NodeMetadata message. Does not implicitly {@link flyteidl.core.NodeMetadata.verify|verify} messages. - * @param message NodeMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.INodeMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.NodeMetadata; - - /** - * Verifies a NodeMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Alias. */ - interface IAlias { - - /** Alias var */ - "var"?: (string|null); - - /** Alias alias */ - alias?: (string|null); - } - - /** Represents an Alias. */ - class Alias implements IAlias { - - /** - * Constructs a new Alias. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IAlias); - - /** Alias var. */ - public var: string; - - /** Alias alias. */ - public alias: string; - - /** - * Creates a new Alias instance using the specified properties. - * @param [properties] Properties to set - * @returns Alias instance - */ - public static create(properties?: flyteidl.core.IAlias): flyteidl.core.Alias; - - /** - * Encodes the specified Alias message. Does not implicitly {@link flyteidl.core.Alias.verify|verify} messages. - * @param message Alias message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IAlias, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Alias message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Alias - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Alias; - - /** - * Verifies an Alias message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Node. */ - interface INode { - - /** Node id */ - id?: (string|null); - - /** Node metadata */ - metadata?: (flyteidl.core.INodeMetadata|null); - - /** Node inputs */ - inputs?: (flyteidl.core.IBinding[]|null); - - /** Node upstreamNodeIds */ - upstreamNodeIds?: (string[]|null); - - /** Node outputAliases */ - outputAliases?: (flyteidl.core.IAlias[]|null); - - /** Node taskNode */ - taskNode?: (flyteidl.core.ITaskNode|null); - - /** Node workflowNode */ - workflowNode?: (flyteidl.core.IWorkflowNode|null); - - /** Node branchNode */ - branchNode?: (flyteidl.core.IBranchNode|null); - - /** Node gateNode */ - gateNode?: (flyteidl.core.IGateNode|null); - - /** Node arrayNode */ - arrayNode?: (flyteidl.core.IArrayNode|null); - } - - /** Represents a Node. */ - class Node implements INode { - - /** - * Constructs a new Node. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.INode); - - /** Node id. */ - public id: string; - - /** Node metadata. */ - public metadata?: (flyteidl.core.INodeMetadata|null); - - /** Node inputs. */ - public inputs: flyteidl.core.IBinding[]; - - /** Node upstreamNodeIds. */ - public upstreamNodeIds: string[]; - - /** Node outputAliases. */ - public outputAliases: flyteidl.core.IAlias[]; - - /** Node taskNode. */ - public taskNode?: (flyteidl.core.ITaskNode|null); - - /** Node workflowNode. */ - public workflowNode?: (flyteidl.core.IWorkflowNode|null); - - /** Node branchNode. */ - public branchNode?: (flyteidl.core.IBranchNode|null); - - /** Node gateNode. */ - public gateNode?: (flyteidl.core.IGateNode|null); - - /** Node arrayNode. */ - public arrayNode?: (flyteidl.core.IArrayNode|null); - - /** Node target. */ - public target?: ("taskNode"|"workflowNode"|"branchNode"|"gateNode"|"arrayNode"); - - /** - * Creates a new Node instance using the specified properties. - * @param [properties] Properties to set - * @returns Node instance - */ - public static create(properties?: flyteidl.core.INode): flyteidl.core.Node; - - /** - * Encodes the specified Node message. Does not implicitly {@link flyteidl.core.Node.verify|verify} messages. - * @param message Node message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.INode, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Node message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Node - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Node; - - /** - * Verifies a Node message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowMetadata. */ - interface IWorkflowMetadata { - - /** WorkflowMetadata qualityOfService */ - qualityOfService?: (flyteidl.core.IQualityOfService|null); - - /** WorkflowMetadata onFailure */ - onFailure?: (flyteidl.core.WorkflowMetadata.OnFailurePolicy|null); - - /** WorkflowMetadata tags */ - tags?: ({ [k: string]: string }|null); - } - - /** Represents a WorkflowMetadata. */ - class WorkflowMetadata implements IWorkflowMetadata { - - /** - * Constructs a new WorkflowMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IWorkflowMetadata); - - /** WorkflowMetadata qualityOfService. */ - public qualityOfService?: (flyteidl.core.IQualityOfService|null); - - /** WorkflowMetadata onFailure. */ - public onFailure: flyteidl.core.WorkflowMetadata.OnFailurePolicy; - - /** WorkflowMetadata tags. */ - public tags: { [k: string]: string }; - - /** - * Creates a new WorkflowMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowMetadata instance - */ - public static create(properties?: flyteidl.core.IWorkflowMetadata): flyteidl.core.WorkflowMetadata; - - /** - * Encodes the specified WorkflowMetadata message. Does not implicitly {@link flyteidl.core.WorkflowMetadata.verify|verify} messages. - * @param message WorkflowMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IWorkflowMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.WorkflowMetadata; - - /** - * Verifies a WorkflowMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace WorkflowMetadata { - - /** OnFailurePolicy enum. */ - enum OnFailurePolicy { - FAIL_IMMEDIATELY = 0, - FAIL_AFTER_EXECUTABLE_NODES_COMPLETE = 1 - } - } - - /** Properties of a WorkflowMetadataDefaults. */ - interface IWorkflowMetadataDefaults { - - /** WorkflowMetadataDefaults interruptible */ - interruptible?: (boolean|null); - } - - /** Represents a WorkflowMetadataDefaults. */ - class WorkflowMetadataDefaults implements IWorkflowMetadataDefaults { - - /** - * Constructs a new WorkflowMetadataDefaults. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IWorkflowMetadataDefaults); - - /** WorkflowMetadataDefaults interruptible. */ - public interruptible: boolean; - - /** - * Creates a new WorkflowMetadataDefaults instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowMetadataDefaults instance - */ - public static create(properties?: flyteidl.core.IWorkflowMetadataDefaults): flyteidl.core.WorkflowMetadataDefaults; - - /** - * Encodes the specified WorkflowMetadataDefaults message. Does not implicitly {@link flyteidl.core.WorkflowMetadataDefaults.verify|verify} messages. - * @param message WorkflowMetadataDefaults message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IWorkflowMetadataDefaults, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowMetadataDefaults message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowMetadataDefaults - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.WorkflowMetadataDefaults; - - /** - * Verifies a WorkflowMetadataDefaults message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowTemplate. */ - interface IWorkflowTemplate { - - /** WorkflowTemplate id */ - id?: (flyteidl.core.IIdentifier|null); - - /** WorkflowTemplate metadata */ - metadata?: (flyteidl.core.IWorkflowMetadata|null); - - /** WorkflowTemplate interface */ - "interface"?: (flyteidl.core.ITypedInterface|null); - - /** WorkflowTemplate nodes */ - nodes?: (flyteidl.core.INode[]|null); - - /** WorkflowTemplate outputs */ - outputs?: (flyteidl.core.IBinding[]|null); - - /** WorkflowTemplate failureNode */ - failureNode?: (flyteidl.core.INode|null); - - /** WorkflowTemplate metadataDefaults */ - metadataDefaults?: (flyteidl.core.IWorkflowMetadataDefaults|null); - } - - /** Represents a WorkflowTemplate. */ - class WorkflowTemplate implements IWorkflowTemplate { - - /** - * Constructs a new WorkflowTemplate. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IWorkflowTemplate); - - /** WorkflowTemplate id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** WorkflowTemplate metadata. */ - public metadata?: (flyteidl.core.IWorkflowMetadata|null); - - /** WorkflowTemplate interface. */ - public interface?: (flyteidl.core.ITypedInterface|null); - - /** WorkflowTemplate nodes. */ - public nodes: flyteidl.core.INode[]; - - /** WorkflowTemplate outputs. */ - public outputs: flyteidl.core.IBinding[]; - - /** WorkflowTemplate failureNode. */ - public failureNode?: (flyteidl.core.INode|null); - - /** WorkflowTemplate metadataDefaults. */ - public metadataDefaults?: (flyteidl.core.IWorkflowMetadataDefaults|null); - - /** - * Creates a new WorkflowTemplate instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowTemplate instance - */ - public static create(properties?: flyteidl.core.IWorkflowTemplate): flyteidl.core.WorkflowTemplate; - - /** - * Encodes the specified WorkflowTemplate message. Does not implicitly {@link flyteidl.core.WorkflowTemplate.verify|verify} messages. - * @param message WorkflowTemplate message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IWorkflowTemplate, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowTemplate message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowTemplate - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.WorkflowTemplate; - - /** - * Verifies a WorkflowTemplate message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskNodeOverrides. */ - interface ITaskNodeOverrides { - - /** TaskNodeOverrides resources */ - resources?: (flyteidl.core.IResources|null); - - /** TaskNodeOverrides extendedResources */ - extendedResources?: (flyteidl.core.IExtendedResources|null); - } - - /** Represents a TaskNodeOverrides. */ - class TaskNodeOverrides implements ITaskNodeOverrides { - - /** - * Constructs a new TaskNodeOverrides. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITaskNodeOverrides); - - /** TaskNodeOverrides resources. */ - public resources?: (flyteidl.core.IResources|null); - - /** TaskNodeOverrides extendedResources. */ - public extendedResources?: (flyteidl.core.IExtendedResources|null); - - /** - * Creates a new TaskNodeOverrides instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskNodeOverrides instance - */ - public static create(properties?: flyteidl.core.ITaskNodeOverrides): flyteidl.core.TaskNodeOverrides; - - /** - * Encodes the specified TaskNodeOverrides message. Does not implicitly {@link flyteidl.core.TaskNodeOverrides.verify|verify} messages. - * @param message TaskNodeOverrides message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITaskNodeOverrides, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskNodeOverrides message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskNodeOverrides - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TaskNodeOverrides; - - /** - * Verifies a TaskNodeOverrides message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ComparisonExpression. */ - interface IComparisonExpression { - - /** ComparisonExpression operator */ - operator?: (flyteidl.core.ComparisonExpression.Operator|null); - - /** ComparisonExpression leftValue */ - leftValue?: (flyteidl.core.IOperand|null); - - /** ComparisonExpression rightValue */ - rightValue?: (flyteidl.core.IOperand|null); - } - - /** Represents a ComparisonExpression. */ - class ComparisonExpression implements IComparisonExpression { - - /** - * Constructs a new ComparisonExpression. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IComparisonExpression); - - /** ComparisonExpression operator. */ - public operator: flyteidl.core.ComparisonExpression.Operator; - - /** ComparisonExpression leftValue. */ - public leftValue?: (flyteidl.core.IOperand|null); - - /** ComparisonExpression rightValue. */ - public rightValue?: (flyteidl.core.IOperand|null); - - /** - * Creates a new ComparisonExpression instance using the specified properties. - * @param [properties] Properties to set - * @returns ComparisonExpression instance - */ - public static create(properties?: flyteidl.core.IComparisonExpression): flyteidl.core.ComparisonExpression; - - /** - * Encodes the specified ComparisonExpression message. Does not implicitly {@link flyteidl.core.ComparisonExpression.verify|verify} messages. - * @param message ComparisonExpression message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IComparisonExpression, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ComparisonExpression message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ComparisonExpression - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ComparisonExpression; - - /** - * Verifies a ComparisonExpression message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace ComparisonExpression { - - /** Operator enum. */ - enum Operator { - EQ = 0, - NEQ = 1, - GT = 2, - GTE = 3, - LT = 4, - LTE = 5 - } - } - - /** Properties of an Operand. */ - interface IOperand { - - /** Operand primitive */ - primitive?: (flyteidl.core.IPrimitive|null); - - /** Operand var */ - "var"?: (string|null); - - /** Operand scalar */ - scalar?: (flyteidl.core.IScalar|null); - } - - /** Represents an Operand. */ - class Operand implements IOperand { - - /** - * Constructs a new Operand. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IOperand); - - /** Operand primitive. */ - public primitive?: (flyteidl.core.IPrimitive|null); - - /** Operand var. */ - public var: string; - - /** Operand scalar. */ - public scalar?: (flyteidl.core.IScalar|null); - - /** Operand val. */ - public val?: ("primitive"|"var"|"scalar"); - - /** - * Creates a new Operand instance using the specified properties. - * @param [properties] Properties to set - * @returns Operand instance - */ - public static create(properties?: flyteidl.core.IOperand): flyteidl.core.Operand; - - /** - * Encodes the specified Operand message. Does not implicitly {@link flyteidl.core.Operand.verify|verify} messages. - * @param message Operand message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IOperand, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Operand message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Operand - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Operand; - - /** - * Verifies an Operand message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a BooleanExpression. */ - interface IBooleanExpression { - - /** BooleanExpression conjunction */ - conjunction?: (flyteidl.core.IConjunctionExpression|null); - - /** BooleanExpression comparison */ - comparison?: (flyteidl.core.IComparisonExpression|null); - } - - /** Represents a BooleanExpression. */ - class BooleanExpression implements IBooleanExpression { - - /** - * Constructs a new BooleanExpression. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBooleanExpression); - - /** BooleanExpression conjunction. */ - public conjunction?: (flyteidl.core.IConjunctionExpression|null); - - /** BooleanExpression comparison. */ - public comparison?: (flyteidl.core.IComparisonExpression|null); - - /** BooleanExpression expr. */ - public expr?: ("conjunction"|"comparison"); - - /** - * Creates a new BooleanExpression instance using the specified properties. - * @param [properties] Properties to set - * @returns BooleanExpression instance - */ - public static create(properties?: flyteidl.core.IBooleanExpression): flyteidl.core.BooleanExpression; - - /** - * Encodes the specified BooleanExpression message. Does not implicitly {@link flyteidl.core.BooleanExpression.verify|verify} messages. - * @param message BooleanExpression message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBooleanExpression, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BooleanExpression message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BooleanExpression - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.BooleanExpression; - - /** - * Verifies a BooleanExpression message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ConjunctionExpression. */ - interface IConjunctionExpression { - - /** ConjunctionExpression operator */ - operator?: (flyteidl.core.ConjunctionExpression.LogicalOperator|null); - - /** ConjunctionExpression leftExpression */ - leftExpression?: (flyteidl.core.IBooleanExpression|null); - - /** ConjunctionExpression rightExpression */ - rightExpression?: (flyteidl.core.IBooleanExpression|null); - } - - /** Represents a ConjunctionExpression. */ - class ConjunctionExpression implements IConjunctionExpression { - - /** - * Constructs a new ConjunctionExpression. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IConjunctionExpression); - - /** ConjunctionExpression operator. */ - public operator: flyteidl.core.ConjunctionExpression.LogicalOperator; - - /** ConjunctionExpression leftExpression. */ - public leftExpression?: (flyteidl.core.IBooleanExpression|null); - - /** ConjunctionExpression rightExpression. */ - public rightExpression?: (flyteidl.core.IBooleanExpression|null); - - /** - * Creates a new ConjunctionExpression instance using the specified properties. - * @param [properties] Properties to set - * @returns ConjunctionExpression instance - */ - public static create(properties?: flyteidl.core.IConjunctionExpression): flyteidl.core.ConjunctionExpression; - - /** - * Encodes the specified ConjunctionExpression message. Does not implicitly {@link flyteidl.core.ConjunctionExpression.verify|verify} messages. - * @param message ConjunctionExpression message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IConjunctionExpression, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ConjunctionExpression message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ConjunctionExpression - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ConjunctionExpression; - - /** - * Verifies a ConjunctionExpression message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace ConjunctionExpression { - - /** LogicalOperator enum. */ - enum LogicalOperator { - AND = 0, - OR = 1 - } - } - - /** Properties of a Primitive. */ - interface IPrimitive { - - /** Primitive integer */ - integer?: (Long|null); - - /** Primitive floatValue */ - floatValue?: (number|null); - - /** Primitive stringValue */ - stringValue?: (string|null); - - /** Primitive boolean */ - boolean?: (boolean|null); - - /** Primitive datetime */ - datetime?: (google.protobuf.ITimestamp|null); - - /** Primitive duration */ - duration?: (google.protobuf.IDuration|null); - } - - /** Represents a Primitive. */ - class Primitive implements IPrimitive { - - /** - * Constructs a new Primitive. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IPrimitive); - - /** Primitive integer. */ - public integer: Long; - - /** Primitive floatValue. */ - public floatValue: number; - - /** Primitive stringValue. */ - public stringValue: string; - - /** Primitive boolean. */ - public boolean: boolean; - - /** Primitive datetime. */ - public datetime?: (google.protobuf.ITimestamp|null); - - /** Primitive duration. */ - public duration?: (google.protobuf.IDuration|null); - - /** Primitive value. */ - public value?: ("integer"|"floatValue"|"stringValue"|"boolean"|"datetime"|"duration"); - - /** - * Creates a new Primitive instance using the specified properties. - * @param [properties] Properties to set - * @returns Primitive instance - */ - public static create(properties?: flyteidl.core.IPrimitive): flyteidl.core.Primitive; - - /** - * Encodes the specified Primitive message. Does not implicitly {@link flyteidl.core.Primitive.verify|verify} messages. - * @param message Primitive message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IPrimitive, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Primitive message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Primitive - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Primitive; - - /** - * Verifies a Primitive message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Void. */ - interface IVoid { - } - - /** Represents a Void. */ - class Void implements IVoid { - - /** - * Constructs a new Void. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IVoid); - - /** - * Creates a new Void instance using the specified properties. - * @param [properties] Properties to set - * @returns Void instance - */ - public static create(properties?: flyteidl.core.IVoid): flyteidl.core.Void; - - /** - * Encodes the specified Void message. Does not implicitly {@link flyteidl.core.Void.verify|verify} messages. - * @param message Void message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IVoid, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Void message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Void - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Void; - - /** - * Verifies a Void message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Blob. */ - interface IBlob { - - /** Blob metadata */ - metadata?: (flyteidl.core.IBlobMetadata|null); - - /** Blob uri */ - uri?: (string|null); - } - - /** Represents a Blob. */ - class Blob implements IBlob { - - /** - * Constructs a new Blob. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBlob); - - /** Blob metadata. */ - public metadata?: (flyteidl.core.IBlobMetadata|null); - - /** Blob uri. */ - public uri: string; - - /** - * Creates a new Blob instance using the specified properties. - * @param [properties] Properties to set - * @returns Blob instance - */ - public static create(properties?: flyteidl.core.IBlob): flyteidl.core.Blob; - - /** - * Encodes the specified Blob message. Does not implicitly {@link flyteidl.core.Blob.verify|verify} messages. - * @param message Blob message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBlob, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Blob message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Blob - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Blob; - - /** - * Verifies a Blob message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a BlobMetadata. */ - interface IBlobMetadata { - - /** BlobMetadata type */ - type?: (flyteidl.core.IBlobType|null); - } - - /** Represents a BlobMetadata. */ - class BlobMetadata implements IBlobMetadata { - - /** - * Constructs a new BlobMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBlobMetadata); - - /** BlobMetadata type. */ - public type?: (flyteidl.core.IBlobType|null); - - /** - * Creates a new BlobMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns BlobMetadata instance - */ - public static create(properties?: flyteidl.core.IBlobMetadata): flyteidl.core.BlobMetadata; - - /** - * Encodes the specified BlobMetadata message. Does not implicitly {@link flyteidl.core.BlobMetadata.verify|verify} messages. - * @param message BlobMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBlobMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BlobMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BlobMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.BlobMetadata; - - /** - * Verifies a BlobMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Binary. */ - interface IBinary { - - /** Binary value */ - value?: (Uint8Array|null); - - /** Binary tag */ - tag?: (string|null); - } - - /** Represents a Binary. */ - class Binary implements IBinary { - - /** - * Constructs a new Binary. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBinary); - - /** Binary value. */ - public value: Uint8Array; - - /** Binary tag. */ - public tag: string; - - /** - * Creates a new Binary instance using the specified properties. - * @param [properties] Properties to set - * @returns Binary instance - */ - public static create(properties?: flyteidl.core.IBinary): flyteidl.core.Binary; - - /** - * Encodes the specified Binary message. Does not implicitly {@link flyteidl.core.Binary.verify|verify} messages. - * @param message Binary message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBinary, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Binary message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Binary - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Binary; - - /** - * Verifies a Binary message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Schema. */ - interface ISchema { - - /** Schema uri */ - uri?: (string|null); - - /** Schema type */ - type?: (flyteidl.core.ISchemaType|null); - } - - /** Represents a Schema. */ - class Schema implements ISchema { - - /** - * Constructs a new Schema. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISchema); - - /** Schema uri. */ - public uri: string; - - /** Schema type. */ - public type?: (flyteidl.core.ISchemaType|null); - - /** - * Creates a new Schema instance using the specified properties. - * @param [properties] Properties to set - * @returns Schema instance - */ - public static create(properties?: flyteidl.core.ISchema): flyteidl.core.Schema; - - /** - * Encodes the specified Schema message. Does not implicitly {@link flyteidl.core.Schema.verify|verify} messages. - * @param message Schema message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISchema, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Schema message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Schema - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Schema; - - /** - * Verifies a Schema message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Union. */ - interface IUnion { - - /** Union value */ - value?: (flyteidl.core.ILiteral|null); - - /** Union type */ - type?: (flyteidl.core.ILiteralType|null); - } - - /** Represents an Union. */ - class Union implements IUnion { - - /** - * Constructs a new Union. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IUnion); - - /** Union value. */ - public value?: (flyteidl.core.ILiteral|null); - - /** Union type. */ - public type?: (flyteidl.core.ILiteralType|null); - - /** - * Creates a new Union instance using the specified properties. - * @param [properties] Properties to set - * @returns Union instance - */ - public static create(properties?: flyteidl.core.IUnion): flyteidl.core.Union; - - /** - * Encodes the specified Union message. Does not implicitly {@link flyteidl.core.Union.verify|verify} messages. - * @param message Union message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IUnion, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Union message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Union - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Union; - - /** - * Verifies an Union message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a StructuredDatasetMetadata. */ - interface IStructuredDatasetMetadata { - - /** StructuredDatasetMetadata structuredDatasetType */ - structuredDatasetType?: (flyteidl.core.IStructuredDatasetType|null); - } - - /** Represents a StructuredDatasetMetadata. */ - class StructuredDatasetMetadata implements IStructuredDatasetMetadata { - - /** - * Constructs a new StructuredDatasetMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IStructuredDatasetMetadata); - - /** StructuredDatasetMetadata structuredDatasetType. */ - public structuredDatasetType?: (flyteidl.core.IStructuredDatasetType|null); - - /** - * Creates a new StructuredDatasetMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns StructuredDatasetMetadata instance - */ - public static create(properties?: flyteidl.core.IStructuredDatasetMetadata): flyteidl.core.StructuredDatasetMetadata; - - /** - * Encodes the specified StructuredDatasetMetadata message. Does not implicitly {@link flyteidl.core.StructuredDatasetMetadata.verify|verify} messages. - * @param message StructuredDatasetMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IStructuredDatasetMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a StructuredDatasetMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns StructuredDatasetMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.StructuredDatasetMetadata; - - /** - * Verifies a StructuredDatasetMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a StructuredDataset. */ - interface IStructuredDataset { - - /** StructuredDataset uri */ - uri?: (string|null); - - /** StructuredDataset metadata */ - metadata?: (flyteidl.core.IStructuredDatasetMetadata|null); - } - - /** Represents a StructuredDataset. */ - class StructuredDataset implements IStructuredDataset { - - /** - * Constructs a new StructuredDataset. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IStructuredDataset); - - /** StructuredDataset uri. */ - public uri: string; - - /** StructuredDataset metadata. */ - public metadata?: (flyteidl.core.IStructuredDatasetMetadata|null); - - /** - * Creates a new StructuredDataset instance using the specified properties. - * @param [properties] Properties to set - * @returns StructuredDataset instance - */ - public static create(properties?: flyteidl.core.IStructuredDataset): flyteidl.core.StructuredDataset; - - /** - * Encodes the specified StructuredDataset message. Does not implicitly {@link flyteidl.core.StructuredDataset.verify|verify} messages. - * @param message StructuredDataset message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IStructuredDataset, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a StructuredDataset message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns StructuredDataset - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.StructuredDataset; - - /** - * Verifies a StructuredDataset message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Scalar. */ - interface IScalar { - - /** Scalar primitive */ - primitive?: (flyteidl.core.IPrimitive|null); - - /** Scalar blob */ - blob?: (flyteidl.core.IBlob|null); - - /** Scalar binary */ - binary?: (flyteidl.core.IBinary|null); - - /** Scalar schema */ - schema?: (flyteidl.core.ISchema|null); - - /** Scalar noneType */ - noneType?: (flyteidl.core.IVoid|null); - - /** Scalar error */ - error?: (flyteidl.core.IError|null); - - /** Scalar generic */ - generic?: (google.protobuf.IStruct|null); - - /** Scalar structuredDataset */ - structuredDataset?: (flyteidl.core.IStructuredDataset|null); - - /** Scalar union */ - union?: (flyteidl.core.IUnion|null); - } - - /** Represents a Scalar. */ - class Scalar implements IScalar { - - /** - * Constructs a new Scalar. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IScalar); - - /** Scalar primitive. */ - public primitive?: (flyteidl.core.IPrimitive|null); - - /** Scalar blob. */ - public blob?: (flyteidl.core.IBlob|null); - - /** Scalar binary. */ - public binary?: (flyteidl.core.IBinary|null); - - /** Scalar schema. */ - public schema?: (flyteidl.core.ISchema|null); - - /** Scalar noneType. */ - public noneType?: (flyteidl.core.IVoid|null); - - /** Scalar error. */ - public error?: (flyteidl.core.IError|null); - - /** Scalar generic. */ - public generic?: (google.protobuf.IStruct|null); - - /** Scalar structuredDataset. */ - public structuredDataset?: (flyteidl.core.IStructuredDataset|null); - - /** Scalar union. */ - public union?: (flyteidl.core.IUnion|null); - - /** Scalar value. */ - public value?: ("primitive"|"blob"|"binary"|"schema"|"noneType"|"error"|"generic"|"structuredDataset"|"union"); - - /** - * Creates a new Scalar instance using the specified properties. - * @param [properties] Properties to set - * @returns Scalar instance - */ - public static create(properties?: flyteidl.core.IScalar): flyteidl.core.Scalar; - - /** - * Encodes the specified Scalar message. Does not implicitly {@link flyteidl.core.Scalar.verify|verify} messages. - * @param message Scalar message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IScalar, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Scalar message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Scalar - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Scalar; - - /** - * Verifies a Scalar message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Literal. */ - interface ILiteral { - - /** Literal scalar */ - scalar?: (flyteidl.core.IScalar|null); - - /** Literal collection */ - collection?: (flyteidl.core.ILiteralCollection|null); - - /** Literal map */ - map?: (flyteidl.core.ILiteralMap|null); - - /** Literal hash */ - hash?: (string|null); - - /** Literal metadata */ - metadata?: ({ [k: string]: string }|null); - } - - /** Represents a Literal. */ - class Literal implements ILiteral { - - /** - * Constructs a new Literal. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ILiteral); - - /** Literal scalar. */ - public scalar?: (flyteidl.core.IScalar|null); - - /** Literal collection. */ - public collection?: (flyteidl.core.ILiteralCollection|null); - - /** Literal map. */ - public map?: (flyteidl.core.ILiteralMap|null); - - /** Literal hash. */ - public hash: string; - - /** Literal metadata. */ - public metadata: { [k: string]: string }; - - /** Literal value. */ - public value?: ("scalar"|"collection"|"map"); - - /** - * Creates a new Literal instance using the specified properties. - * @param [properties] Properties to set - * @returns Literal instance - */ - public static create(properties?: flyteidl.core.ILiteral): flyteidl.core.Literal; - - /** - * Encodes the specified Literal message. Does not implicitly {@link flyteidl.core.Literal.verify|verify} messages. - * @param message Literal message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ILiteral, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Literal message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Literal - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Literal; - - /** - * Verifies a Literal message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LiteralCollection. */ - interface ILiteralCollection { - - /** LiteralCollection literals */ - literals?: (flyteidl.core.ILiteral[]|null); - } - - /** Represents a LiteralCollection. */ - class LiteralCollection implements ILiteralCollection { - - /** - * Constructs a new LiteralCollection. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ILiteralCollection); - - /** LiteralCollection literals. */ - public literals: flyteidl.core.ILiteral[]; - - /** - * Creates a new LiteralCollection instance using the specified properties. - * @param [properties] Properties to set - * @returns LiteralCollection instance - */ - public static create(properties?: flyteidl.core.ILiteralCollection): flyteidl.core.LiteralCollection; - - /** - * Encodes the specified LiteralCollection message. Does not implicitly {@link flyteidl.core.LiteralCollection.verify|verify} messages. - * @param message LiteralCollection message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ILiteralCollection, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LiteralCollection message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LiteralCollection - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.LiteralCollection; - - /** - * Verifies a LiteralCollection message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LiteralMap. */ - interface ILiteralMap { - - /** LiteralMap literals */ - literals?: ({ [k: string]: flyteidl.core.ILiteral }|null); - } - - /** Represents a LiteralMap. */ - class LiteralMap implements ILiteralMap { - - /** - * Constructs a new LiteralMap. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ILiteralMap); - - /** LiteralMap literals. */ - public literals: { [k: string]: flyteidl.core.ILiteral }; - - /** - * Creates a new LiteralMap instance using the specified properties. - * @param [properties] Properties to set - * @returns LiteralMap instance - */ - public static create(properties?: flyteidl.core.ILiteralMap): flyteidl.core.LiteralMap; - - /** - * Encodes the specified LiteralMap message. Does not implicitly {@link flyteidl.core.LiteralMap.verify|verify} messages. - * @param message LiteralMap message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ILiteralMap, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LiteralMap message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LiteralMap - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.LiteralMap; - - /** - * Verifies a LiteralMap message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a BindingDataCollection. */ - interface IBindingDataCollection { - - /** BindingDataCollection bindings */ - bindings?: (flyteidl.core.IBindingData[]|null); - } - - /** Represents a BindingDataCollection. */ - class BindingDataCollection implements IBindingDataCollection { - - /** - * Constructs a new BindingDataCollection. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBindingDataCollection); - - /** BindingDataCollection bindings. */ - public bindings: flyteidl.core.IBindingData[]; - - /** - * Creates a new BindingDataCollection instance using the specified properties. - * @param [properties] Properties to set - * @returns BindingDataCollection instance - */ - public static create(properties?: flyteidl.core.IBindingDataCollection): flyteidl.core.BindingDataCollection; - - /** - * Encodes the specified BindingDataCollection message. Does not implicitly {@link flyteidl.core.BindingDataCollection.verify|verify} messages. - * @param message BindingDataCollection message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBindingDataCollection, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BindingDataCollection message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BindingDataCollection - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.BindingDataCollection; - - /** - * Verifies a BindingDataCollection message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a BindingDataMap. */ - interface IBindingDataMap { - - /** BindingDataMap bindings */ - bindings?: ({ [k: string]: flyteidl.core.IBindingData }|null); - } - - /** Represents a BindingDataMap. */ - class BindingDataMap implements IBindingDataMap { - - /** - * Constructs a new BindingDataMap. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBindingDataMap); - - /** BindingDataMap bindings. */ - public bindings: { [k: string]: flyteidl.core.IBindingData }; - - /** - * Creates a new BindingDataMap instance using the specified properties. - * @param [properties] Properties to set - * @returns BindingDataMap instance - */ - public static create(properties?: flyteidl.core.IBindingDataMap): flyteidl.core.BindingDataMap; - - /** - * Encodes the specified BindingDataMap message. Does not implicitly {@link flyteidl.core.BindingDataMap.verify|verify} messages. - * @param message BindingDataMap message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBindingDataMap, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BindingDataMap message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BindingDataMap - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.BindingDataMap; - - /** - * Verifies a BindingDataMap message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an UnionInfo. */ - interface IUnionInfo { - - /** UnionInfo targetType */ - targetType?: (flyteidl.core.ILiteralType|null); - } - - /** Represents an UnionInfo. */ - class UnionInfo implements IUnionInfo { - - /** - * Constructs a new UnionInfo. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IUnionInfo); - - /** UnionInfo targetType. */ - public targetType?: (flyteidl.core.ILiteralType|null); - - /** - * Creates a new UnionInfo instance using the specified properties. - * @param [properties] Properties to set - * @returns UnionInfo instance - */ - public static create(properties?: flyteidl.core.IUnionInfo): flyteidl.core.UnionInfo; - - /** - * Encodes the specified UnionInfo message. Does not implicitly {@link flyteidl.core.UnionInfo.verify|verify} messages. - * @param message UnionInfo message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IUnionInfo, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an UnionInfo message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns UnionInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.UnionInfo; - - /** - * Verifies an UnionInfo message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a BindingData. */ - interface IBindingData { - - /** BindingData scalar */ - scalar?: (flyteidl.core.IScalar|null); - - /** BindingData collection */ - collection?: (flyteidl.core.IBindingDataCollection|null); - - /** BindingData promise */ - promise?: (flyteidl.core.IOutputReference|null); - - /** BindingData map */ - map?: (flyteidl.core.IBindingDataMap|null); - - /** BindingData union */ - union?: (flyteidl.core.IUnionInfo|null); - } - - /** Represents a BindingData. */ - class BindingData implements IBindingData { - - /** - * Constructs a new BindingData. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBindingData); - - /** BindingData scalar. */ - public scalar?: (flyteidl.core.IScalar|null); - - /** BindingData collection. */ - public collection?: (flyteidl.core.IBindingDataCollection|null); - - /** BindingData promise. */ - public promise?: (flyteidl.core.IOutputReference|null); - - /** BindingData map. */ - public map?: (flyteidl.core.IBindingDataMap|null); - - /** BindingData union. */ - public union?: (flyteidl.core.IUnionInfo|null); - - /** BindingData value. */ - public value?: ("scalar"|"collection"|"promise"|"map"); - - /** - * Creates a new BindingData instance using the specified properties. - * @param [properties] Properties to set - * @returns BindingData instance - */ - public static create(properties?: flyteidl.core.IBindingData): flyteidl.core.BindingData; - - /** - * Encodes the specified BindingData message. Does not implicitly {@link flyteidl.core.BindingData.verify|verify} messages. - * @param message BindingData message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBindingData, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BindingData message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BindingData - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.BindingData; - - /** - * Verifies a BindingData message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Binding. */ - interface IBinding { - - /** Binding var */ - "var"?: (string|null); - - /** Binding binding */ - binding?: (flyteidl.core.IBindingData|null); - } - - /** Represents a Binding. */ - class Binding implements IBinding { - - /** - * Constructs a new Binding. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBinding); - - /** Binding var. */ - public var: string; - - /** Binding binding. */ - public binding?: (flyteidl.core.IBindingData|null); - - /** - * Creates a new Binding instance using the specified properties. - * @param [properties] Properties to set - * @returns Binding instance - */ - public static create(properties?: flyteidl.core.IBinding): flyteidl.core.Binding; - - /** - * Encodes the specified Binding message. Does not implicitly {@link flyteidl.core.Binding.verify|verify} messages. - * @param message Binding message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBinding, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Binding message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Binding - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Binding; - - /** - * Verifies a Binding message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a KeyValuePair. */ - interface IKeyValuePair { - - /** KeyValuePair key */ - key?: (string|null); - - /** KeyValuePair value */ - value?: (string|null); - } - - /** Represents a KeyValuePair. */ - class KeyValuePair implements IKeyValuePair { - - /** - * Constructs a new KeyValuePair. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IKeyValuePair); - - /** KeyValuePair key. */ - public key: string; - - /** KeyValuePair value. */ - public value: string; - - /** - * Creates a new KeyValuePair instance using the specified properties. - * @param [properties] Properties to set - * @returns KeyValuePair instance - */ - public static create(properties?: flyteidl.core.IKeyValuePair): flyteidl.core.KeyValuePair; - - /** - * Encodes the specified KeyValuePair message. Does not implicitly {@link flyteidl.core.KeyValuePair.verify|verify} messages. - * @param message KeyValuePair message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IKeyValuePair, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a KeyValuePair message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns KeyValuePair - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.KeyValuePair; - - /** - * Verifies a KeyValuePair message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a RetryStrategy. */ - interface IRetryStrategy { - - /** RetryStrategy retries */ - retries?: (number|null); - } - - /** Represents a RetryStrategy. */ - class RetryStrategy implements IRetryStrategy { - - /** - * Constructs a new RetryStrategy. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IRetryStrategy); - - /** RetryStrategy retries. */ - public retries: number; - - /** - * Creates a new RetryStrategy instance using the specified properties. - * @param [properties] Properties to set - * @returns RetryStrategy instance - */ - public static create(properties?: flyteidl.core.IRetryStrategy): flyteidl.core.RetryStrategy; - - /** - * Encodes the specified RetryStrategy message. Does not implicitly {@link flyteidl.core.RetryStrategy.verify|verify} messages. - * @param message RetryStrategy message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IRetryStrategy, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a RetryStrategy message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns RetryStrategy - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.RetryStrategy; - - /** - * Verifies a RetryStrategy message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** SimpleType enum. */ - enum SimpleType { - NONE = 0, - INTEGER = 1, - FLOAT = 2, - STRING = 3, - BOOLEAN = 4, - DATETIME = 5, - DURATION = 6, - BINARY = 7, - ERROR = 8, - STRUCT = 9 - } - - /** Properties of a SchemaType. */ - interface ISchemaType { - - /** SchemaType columns */ - columns?: (flyteidl.core.SchemaType.ISchemaColumn[]|null); - } - - /** Represents a SchemaType. */ - class SchemaType implements ISchemaType { - - /** - * Constructs a new SchemaType. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISchemaType); - - /** SchemaType columns. */ - public columns: flyteidl.core.SchemaType.ISchemaColumn[]; - - /** - * Creates a new SchemaType instance using the specified properties. - * @param [properties] Properties to set - * @returns SchemaType instance - */ - public static create(properties?: flyteidl.core.ISchemaType): flyteidl.core.SchemaType; - - /** - * Encodes the specified SchemaType message. Does not implicitly {@link flyteidl.core.SchemaType.verify|verify} messages. - * @param message SchemaType message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISchemaType, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SchemaType message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SchemaType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.SchemaType; - - /** - * Verifies a SchemaType message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace SchemaType { - - /** Properties of a SchemaColumn. */ - interface ISchemaColumn { - - /** SchemaColumn name */ - name?: (string|null); - - /** SchemaColumn type */ - type?: (flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType|null); - } - - /** Represents a SchemaColumn. */ - class SchemaColumn implements ISchemaColumn { - - /** - * Constructs a new SchemaColumn. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.SchemaType.ISchemaColumn); - - /** SchemaColumn name. */ - public name: string; - - /** SchemaColumn type. */ - public type: flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType; - - /** - * Creates a new SchemaColumn instance using the specified properties. - * @param [properties] Properties to set - * @returns SchemaColumn instance - */ - public static create(properties?: flyteidl.core.SchemaType.ISchemaColumn): flyteidl.core.SchemaType.SchemaColumn; - - /** - * Encodes the specified SchemaColumn message. Does not implicitly {@link flyteidl.core.SchemaType.SchemaColumn.verify|verify} messages. - * @param message SchemaColumn message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.SchemaType.ISchemaColumn, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SchemaColumn message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SchemaColumn - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.SchemaType.SchemaColumn; - - /** - * Verifies a SchemaColumn message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace SchemaColumn { - - /** SchemaColumnType enum. */ - enum SchemaColumnType { - INTEGER = 0, - FLOAT = 1, - STRING = 2, - BOOLEAN = 3, - DATETIME = 4, - DURATION = 5 - } - } - } - - /** Properties of a StructuredDatasetType. */ - interface IStructuredDatasetType { - - /** StructuredDatasetType columns */ - columns?: (flyteidl.core.StructuredDatasetType.IDatasetColumn[]|null); - - /** StructuredDatasetType format */ - format?: (string|null); - - /** StructuredDatasetType externalSchemaType */ - externalSchemaType?: (string|null); - - /** StructuredDatasetType externalSchemaBytes */ - externalSchemaBytes?: (Uint8Array|null); - } - - /** Represents a StructuredDatasetType. */ - class StructuredDatasetType implements IStructuredDatasetType { - - /** - * Constructs a new StructuredDatasetType. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IStructuredDatasetType); - - /** StructuredDatasetType columns. */ - public columns: flyteidl.core.StructuredDatasetType.IDatasetColumn[]; - - /** StructuredDatasetType format. */ - public format: string; - - /** StructuredDatasetType externalSchemaType. */ - public externalSchemaType: string; - - /** StructuredDatasetType externalSchemaBytes. */ - public externalSchemaBytes: Uint8Array; - - /** - * Creates a new StructuredDatasetType instance using the specified properties. - * @param [properties] Properties to set - * @returns StructuredDatasetType instance - */ - public static create(properties?: flyteidl.core.IStructuredDatasetType): flyteidl.core.StructuredDatasetType; - - /** - * Encodes the specified StructuredDatasetType message. Does not implicitly {@link flyteidl.core.StructuredDatasetType.verify|verify} messages. - * @param message StructuredDatasetType message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IStructuredDatasetType, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a StructuredDatasetType message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns StructuredDatasetType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.StructuredDatasetType; - - /** - * Verifies a StructuredDatasetType message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace StructuredDatasetType { - - /** Properties of a DatasetColumn. */ - interface IDatasetColumn { - - /** DatasetColumn name */ - name?: (string|null); - - /** DatasetColumn literalType */ - literalType?: (flyteidl.core.ILiteralType|null); - } - - /** Represents a DatasetColumn. */ - class DatasetColumn implements IDatasetColumn { - - /** - * Constructs a new DatasetColumn. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.StructuredDatasetType.IDatasetColumn); - - /** DatasetColumn name. */ - public name: string; - - /** DatasetColumn literalType. */ - public literalType?: (flyteidl.core.ILiteralType|null); - - /** - * Creates a new DatasetColumn instance using the specified properties. - * @param [properties] Properties to set - * @returns DatasetColumn instance - */ - public static create(properties?: flyteidl.core.StructuredDatasetType.IDatasetColumn): flyteidl.core.StructuredDatasetType.DatasetColumn; - - /** - * Encodes the specified DatasetColumn message. Does not implicitly {@link flyteidl.core.StructuredDatasetType.DatasetColumn.verify|verify} messages. - * @param message DatasetColumn message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.StructuredDatasetType.IDatasetColumn, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DatasetColumn message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DatasetColumn - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.StructuredDatasetType.DatasetColumn; - - /** - * Verifies a DatasetColumn message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - - /** Properties of a BlobType. */ - interface IBlobType { - - /** BlobType format */ - format?: (string|null); - - /** BlobType dimensionality */ - dimensionality?: (flyteidl.core.BlobType.BlobDimensionality|null); - } - - /** Represents a BlobType. */ - class BlobType implements IBlobType { - - /** - * Constructs a new BlobType. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IBlobType); - - /** BlobType format. */ - public format: string; - - /** BlobType dimensionality. */ - public dimensionality: flyteidl.core.BlobType.BlobDimensionality; - - /** - * Creates a new BlobType instance using the specified properties. - * @param [properties] Properties to set - * @returns BlobType instance - */ - public static create(properties?: flyteidl.core.IBlobType): flyteidl.core.BlobType; - - /** - * Encodes the specified BlobType message. Does not implicitly {@link flyteidl.core.BlobType.verify|verify} messages. - * @param message BlobType message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IBlobType, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BlobType message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BlobType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.BlobType; - - /** - * Verifies a BlobType message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace BlobType { - - /** BlobDimensionality enum. */ - enum BlobDimensionality { - SINGLE = 0, - MULTIPART = 1 - } - } - - /** Properties of an EnumType. */ - interface IEnumType { - - /** EnumType values */ - values?: (string[]|null); - } - - /** Represents an EnumType. */ - class EnumType implements IEnumType { - - /** - * Constructs a new EnumType. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IEnumType); - - /** EnumType values. */ - public values: string[]; - - /** - * Creates a new EnumType instance using the specified properties. - * @param [properties] Properties to set - * @returns EnumType instance - */ - public static create(properties?: flyteidl.core.IEnumType): flyteidl.core.EnumType; - - /** - * Encodes the specified EnumType message. Does not implicitly {@link flyteidl.core.EnumType.verify|verify} messages. - * @param message EnumType message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IEnumType, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EnumType message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EnumType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.EnumType; - - /** - * Verifies an EnumType message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an UnionType. */ - interface IUnionType { - - /** UnionType variants */ - variants?: (flyteidl.core.ILiteralType[]|null); - } - - /** Represents an UnionType. */ - class UnionType implements IUnionType { - - /** - * Constructs a new UnionType. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IUnionType); - - /** UnionType variants. */ - public variants: flyteidl.core.ILiteralType[]; - - /** - * Creates a new UnionType instance using the specified properties. - * @param [properties] Properties to set - * @returns UnionType instance - */ - public static create(properties?: flyteidl.core.IUnionType): flyteidl.core.UnionType; - - /** - * Encodes the specified UnionType message. Does not implicitly {@link flyteidl.core.UnionType.verify|verify} messages. - * @param message UnionType message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IUnionType, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an UnionType message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns UnionType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.UnionType; - - /** - * Verifies an UnionType message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TypeStructure. */ - interface ITypeStructure { - - /** TypeStructure tag */ - tag?: (string|null); - - /** TypeStructure dataclassType */ - dataclassType?: ({ [k: string]: flyteidl.core.ILiteralType }|null); - } - - /** Represents a TypeStructure. */ - class TypeStructure implements ITypeStructure { - - /** - * Constructs a new TypeStructure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITypeStructure); - - /** TypeStructure tag. */ - public tag: string; - - /** TypeStructure dataclassType. */ - public dataclassType: { [k: string]: flyteidl.core.ILiteralType }; - - /** - * Creates a new TypeStructure instance using the specified properties. - * @param [properties] Properties to set - * @returns TypeStructure instance - */ - public static create(properties?: flyteidl.core.ITypeStructure): flyteidl.core.TypeStructure; - - /** - * Encodes the specified TypeStructure message. Does not implicitly {@link flyteidl.core.TypeStructure.verify|verify} messages. - * @param message TypeStructure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITypeStructure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TypeStructure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TypeStructure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TypeStructure; - - /** - * Verifies a TypeStructure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TypeAnnotation. */ - interface ITypeAnnotation { - - /** TypeAnnotation annotations */ - annotations?: (google.protobuf.IStruct|null); - } - - /** Represents a TypeAnnotation. */ - class TypeAnnotation implements ITypeAnnotation { - - /** - * Constructs a new TypeAnnotation. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITypeAnnotation); - - /** TypeAnnotation annotations. */ - public annotations?: (google.protobuf.IStruct|null); - - /** - * Creates a new TypeAnnotation instance using the specified properties. - * @param [properties] Properties to set - * @returns TypeAnnotation instance - */ - public static create(properties?: flyteidl.core.ITypeAnnotation): flyteidl.core.TypeAnnotation; - - /** - * Encodes the specified TypeAnnotation message. Does not implicitly {@link flyteidl.core.TypeAnnotation.verify|verify} messages. - * @param message TypeAnnotation message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITypeAnnotation, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TypeAnnotation message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TypeAnnotation - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TypeAnnotation; - - /** - * Verifies a TypeAnnotation message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LiteralType. */ - interface ILiteralType { - - /** LiteralType simple */ - simple?: (flyteidl.core.SimpleType|null); - - /** LiteralType schema */ - schema?: (flyteidl.core.ISchemaType|null); - - /** LiteralType collectionType */ - collectionType?: (flyteidl.core.ILiteralType|null); - - /** LiteralType mapValueType */ - mapValueType?: (flyteidl.core.ILiteralType|null); - - /** LiteralType blob */ - blob?: (flyteidl.core.IBlobType|null); - - /** LiteralType enumType */ - enumType?: (flyteidl.core.IEnumType|null); - - /** LiteralType structuredDatasetType */ - structuredDatasetType?: (flyteidl.core.IStructuredDatasetType|null); - - /** LiteralType unionType */ - unionType?: (flyteidl.core.IUnionType|null); - - /** LiteralType metadata */ - metadata?: (google.protobuf.IStruct|null); - - /** LiteralType annotation */ - annotation?: (flyteidl.core.ITypeAnnotation|null); - - /** LiteralType structure */ - structure?: (flyteidl.core.ITypeStructure|null); - } - - /** Represents a LiteralType. */ - class LiteralType implements ILiteralType { - - /** - * Constructs a new LiteralType. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ILiteralType); - - /** LiteralType simple. */ - public simple: flyteidl.core.SimpleType; - - /** LiteralType schema. */ - public schema?: (flyteidl.core.ISchemaType|null); - - /** LiteralType collectionType. */ - public collectionType?: (flyteidl.core.ILiteralType|null); - - /** LiteralType mapValueType. */ - public mapValueType?: (flyteidl.core.ILiteralType|null); - - /** LiteralType blob. */ - public blob?: (flyteidl.core.IBlobType|null); - - /** LiteralType enumType. */ - public enumType?: (flyteidl.core.IEnumType|null); - - /** LiteralType structuredDatasetType. */ - public structuredDatasetType?: (flyteidl.core.IStructuredDatasetType|null); - - /** LiteralType unionType. */ - public unionType?: (flyteidl.core.IUnionType|null); - - /** LiteralType metadata. */ - public metadata?: (google.protobuf.IStruct|null); - - /** LiteralType annotation. */ - public annotation?: (flyteidl.core.ITypeAnnotation|null); - - /** LiteralType structure. */ - public structure?: (flyteidl.core.ITypeStructure|null); - - /** LiteralType type. */ - public type?: ("simple"|"schema"|"collectionType"|"mapValueType"|"blob"|"enumType"|"structuredDatasetType"|"unionType"); - - /** - * Creates a new LiteralType instance using the specified properties. - * @param [properties] Properties to set - * @returns LiteralType instance - */ - public static create(properties?: flyteidl.core.ILiteralType): flyteidl.core.LiteralType; - - /** - * Encodes the specified LiteralType message. Does not implicitly {@link flyteidl.core.LiteralType.verify|verify} messages. - * @param message LiteralType message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ILiteralType, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LiteralType message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LiteralType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.LiteralType; - - /** - * Verifies a LiteralType message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an OutputReference. */ - interface IOutputReference { - - /** OutputReference nodeId */ - nodeId?: (string|null); - - /** OutputReference var */ - "var"?: (string|null); - - /** OutputReference attrPath */ - attrPath?: (flyteidl.core.IPromiseAttribute[]|null); - } - - /** Represents an OutputReference. */ - class OutputReference implements IOutputReference { - - /** - * Constructs a new OutputReference. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IOutputReference); - - /** OutputReference nodeId. */ - public nodeId: string; - - /** OutputReference var. */ - public var: string; - - /** OutputReference attrPath. */ - public attrPath: flyteidl.core.IPromiseAttribute[]; - - /** - * Creates a new OutputReference instance using the specified properties. - * @param [properties] Properties to set - * @returns OutputReference instance - */ - public static create(properties?: flyteidl.core.IOutputReference): flyteidl.core.OutputReference; - - /** - * Encodes the specified OutputReference message. Does not implicitly {@link flyteidl.core.OutputReference.verify|verify} messages. - * @param message OutputReference message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IOutputReference, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an OutputReference message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns OutputReference - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.OutputReference; - - /** - * Verifies an OutputReference message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a PromiseAttribute. */ - interface IPromiseAttribute { - - /** PromiseAttribute stringValue */ - stringValue?: (string|null); - - /** PromiseAttribute intValue */ - intValue?: (number|null); - } - - /** Represents a PromiseAttribute. */ - class PromiseAttribute implements IPromiseAttribute { - - /** - * Constructs a new PromiseAttribute. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IPromiseAttribute); - - /** PromiseAttribute stringValue. */ - public stringValue: string; - - /** PromiseAttribute intValue. */ - public intValue: number; - - /** PromiseAttribute value. */ - public value?: ("stringValue"|"intValue"); - - /** - * Creates a new PromiseAttribute instance using the specified properties. - * @param [properties] Properties to set - * @returns PromiseAttribute instance - */ - public static create(properties?: flyteidl.core.IPromiseAttribute): flyteidl.core.PromiseAttribute; - - /** - * Encodes the specified PromiseAttribute message. Does not implicitly {@link flyteidl.core.PromiseAttribute.verify|verify} messages. - * @param message PromiseAttribute message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IPromiseAttribute, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a PromiseAttribute message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns PromiseAttribute - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.PromiseAttribute; - - /** - * Verifies a PromiseAttribute message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Error. */ - interface IError { - - /** Error failedNodeId */ - failedNodeId?: (string|null); - - /** Error message */ - message?: (string|null); - } - - /** Represents an Error. */ - class Error implements IError { - - /** - * Constructs a new Error. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IError); - - /** Error failedNodeId. */ - public failedNodeId: string; - - /** Error message. */ - public message: string; - - /** - * Creates a new Error instance using the specified properties. - * @param [properties] Properties to set - * @returns Error instance - */ - public static create(properties?: flyteidl.core.IError): flyteidl.core.Error; - - /** - * Encodes the specified Error message. Does not implicitly {@link flyteidl.core.Error.verify|verify} messages. - * @param message Error message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IError, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Error message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Error - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Error; - - /** - * Verifies an Error message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecution. */ - interface IWorkflowExecution { - } - - /** Represents a WorkflowExecution. */ - class WorkflowExecution implements IWorkflowExecution { - - /** - * Constructs a new WorkflowExecution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IWorkflowExecution); - - /** - * Creates a new WorkflowExecution instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecution instance - */ - public static create(properties?: flyteidl.core.IWorkflowExecution): flyteidl.core.WorkflowExecution; - - /** - * Encodes the specified WorkflowExecution message. Does not implicitly {@link flyteidl.core.WorkflowExecution.verify|verify} messages. - * @param message WorkflowExecution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IWorkflowExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.WorkflowExecution; - - /** - * Verifies a WorkflowExecution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace WorkflowExecution { - - /** Phase enum. */ - enum Phase { - UNDEFINED = 0, - QUEUED = 1, - RUNNING = 2, - SUCCEEDING = 3, - SUCCEEDED = 4, - FAILING = 5, - FAILED = 6, - ABORTED = 7, - TIMED_OUT = 8, - ABORTING = 9 - } - } - - /** Properties of a NodeExecution. */ - interface INodeExecution { - } - - /** Represents a NodeExecution. */ - class NodeExecution implements INodeExecution { - - /** - * Constructs a new NodeExecution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.INodeExecution); - - /** - * Creates a new NodeExecution instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecution instance - */ - public static create(properties?: flyteidl.core.INodeExecution): flyteidl.core.NodeExecution; - - /** - * Encodes the specified NodeExecution message. Does not implicitly {@link flyteidl.core.NodeExecution.verify|verify} messages. - * @param message NodeExecution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.INodeExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.NodeExecution; - - /** - * Verifies a NodeExecution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace NodeExecution { - - /** Phase enum. */ - enum Phase { - UNDEFINED = 0, - QUEUED = 1, - RUNNING = 2, - SUCCEEDED = 3, - FAILING = 4, - FAILED = 5, - ABORTED = 6, - SKIPPED = 7, - TIMED_OUT = 8, - DYNAMIC_RUNNING = 9, - RECOVERED = 10 - } - } - - /** Properties of a TaskExecution. */ - interface ITaskExecution { - } - - /** Represents a TaskExecution. */ - class TaskExecution implements ITaskExecution { - - /** - * Constructs a new TaskExecution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITaskExecution); - - /** - * Creates a new TaskExecution instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecution instance - */ - public static create(properties?: flyteidl.core.ITaskExecution): flyteidl.core.TaskExecution; - - /** - * Encodes the specified TaskExecution message. Does not implicitly {@link flyteidl.core.TaskExecution.verify|verify} messages. - * @param message TaskExecution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITaskExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TaskExecution; - - /** - * Verifies a TaskExecution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace TaskExecution { - - /** Phase enum. */ - enum Phase { - UNDEFINED = 0, - QUEUED = 1, - RUNNING = 2, - SUCCEEDED = 3, - ABORTED = 4, - FAILED = 5, - INITIALIZING = 6, - WAITING_FOR_RESOURCES = 7 - } - } - - /** Properties of an ExecutionError. */ - interface IExecutionError { - - /** ExecutionError code */ - code?: (string|null); - - /** ExecutionError message */ - message?: (string|null); - - /** ExecutionError errorUri */ - errorUri?: (string|null); - - /** ExecutionError kind */ - kind?: (flyteidl.core.ExecutionError.ErrorKind|null); - } - - /** Represents an ExecutionError. */ - class ExecutionError implements IExecutionError { - - /** - * Constructs a new ExecutionError. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IExecutionError); - - /** ExecutionError code. */ - public code: string; - - /** ExecutionError message. */ - public message: string; - - /** ExecutionError errorUri. */ - public errorUri: string; - - /** ExecutionError kind. */ - public kind: flyteidl.core.ExecutionError.ErrorKind; - - /** - * Creates a new ExecutionError instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionError instance - */ - public static create(properties?: flyteidl.core.IExecutionError): flyteidl.core.ExecutionError; - - /** - * Encodes the specified ExecutionError message. Does not implicitly {@link flyteidl.core.ExecutionError.verify|verify} messages. - * @param message ExecutionError message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IExecutionError, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionError message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionError - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ExecutionError; - - /** - * Verifies an ExecutionError message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace ExecutionError { - - /** ErrorKind enum. */ - enum ErrorKind { - UNKNOWN = 0, - USER = 1, - SYSTEM = 2 - } - } - - /** Properties of a TaskLog. */ - interface ITaskLog { - - /** TaskLog uri */ - uri?: (string|null); - - /** TaskLog name */ - name?: (string|null); - - /** TaskLog messageFormat */ - messageFormat?: (flyteidl.core.TaskLog.MessageFormat|null); - - /** TaskLog ttl */ - ttl?: (google.protobuf.IDuration|null); - } - - /** Represents a TaskLog. */ - class TaskLog implements ITaskLog { - - /** - * Constructs a new TaskLog. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITaskLog); - - /** TaskLog uri. */ - public uri: string; - - /** TaskLog name. */ - public name: string; - - /** TaskLog messageFormat. */ - public messageFormat: flyteidl.core.TaskLog.MessageFormat; - - /** TaskLog ttl. */ - public ttl?: (google.protobuf.IDuration|null); - - /** - * Creates a new TaskLog instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskLog instance - */ - public static create(properties?: flyteidl.core.ITaskLog): flyteidl.core.TaskLog; - - /** - * Encodes the specified TaskLog message. Does not implicitly {@link flyteidl.core.TaskLog.verify|verify} messages. - * @param message TaskLog message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITaskLog, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskLog message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskLog - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TaskLog; - - /** - * Verifies a TaskLog message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace TaskLog { - - /** MessageFormat enum. */ - enum MessageFormat { - UNKNOWN = 0, - CSV = 1, - JSON = 2 - } - } - - /** Properties of a QualityOfServiceSpec. */ - interface IQualityOfServiceSpec { - - /** QualityOfServiceSpec queueingBudget */ - queueingBudget?: (google.protobuf.IDuration|null); - } - - /** Represents a QualityOfServiceSpec. */ - class QualityOfServiceSpec implements IQualityOfServiceSpec { - - /** - * Constructs a new QualityOfServiceSpec. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IQualityOfServiceSpec); - - /** QualityOfServiceSpec queueingBudget. */ - public queueingBudget?: (google.protobuf.IDuration|null); - - /** - * Creates a new QualityOfServiceSpec instance using the specified properties. - * @param [properties] Properties to set - * @returns QualityOfServiceSpec instance - */ - public static create(properties?: flyteidl.core.IQualityOfServiceSpec): flyteidl.core.QualityOfServiceSpec; - - /** - * Encodes the specified QualityOfServiceSpec message. Does not implicitly {@link flyteidl.core.QualityOfServiceSpec.verify|verify} messages. - * @param message QualityOfServiceSpec message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IQualityOfServiceSpec, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a QualityOfServiceSpec message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns QualityOfServiceSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.QualityOfServiceSpec; - - /** - * Verifies a QualityOfServiceSpec message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a QualityOfService. */ - interface IQualityOfService { - - /** QualityOfService tier */ - tier?: (flyteidl.core.QualityOfService.Tier|null); - - /** QualityOfService spec */ - spec?: (flyteidl.core.IQualityOfServiceSpec|null); - } - - /** Represents a QualityOfService. */ - class QualityOfService implements IQualityOfService { - - /** - * Constructs a new QualityOfService. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IQualityOfService); - - /** QualityOfService tier. */ - public tier: flyteidl.core.QualityOfService.Tier; - - /** QualityOfService spec. */ - public spec?: (flyteidl.core.IQualityOfServiceSpec|null); - - /** QualityOfService designation. */ - public designation?: ("tier"|"spec"); - - /** - * Creates a new QualityOfService instance using the specified properties. - * @param [properties] Properties to set - * @returns QualityOfService instance - */ - public static create(properties?: flyteidl.core.IQualityOfService): flyteidl.core.QualityOfService; - - /** - * Encodes the specified QualityOfService message. Does not implicitly {@link flyteidl.core.QualityOfService.verify|verify} messages. - * @param message QualityOfService message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IQualityOfService, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a QualityOfService message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns QualityOfService - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.QualityOfService; - - /** - * Verifies a QualityOfService message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace QualityOfService { - - /** Tier enum. */ - enum Tier { - UNDEFINED = 0, - HIGH = 1, - MEDIUM = 2, - LOW = 3 - } - } - - /** Properties of a Variable. */ - interface IVariable { - - /** Variable type */ - type?: (flyteidl.core.ILiteralType|null); - - /** Variable description */ - description?: (string|null); - - /** Variable artifactPartialId */ - artifactPartialId?: (flyteidl.core.IArtifactID|null); - - /** Variable artifactTag */ - artifactTag?: (flyteidl.core.IArtifactTag|null); - } - - /** Represents a Variable. */ - class Variable implements IVariable { - - /** - * Constructs a new Variable. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IVariable); - - /** Variable type. */ - public type?: (flyteidl.core.ILiteralType|null); - - /** Variable description. */ - public description: string; - - /** Variable artifactPartialId. */ - public artifactPartialId?: (flyteidl.core.IArtifactID|null); - - /** Variable artifactTag. */ - public artifactTag?: (flyteidl.core.IArtifactTag|null); - - /** - * Creates a new Variable instance using the specified properties. - * @param [properties] Properties to set - * @returns Variable instance - */ - public static create(properties?: flyteidl.core.IVariable): flyteidl.core.Variable; - - /** - * Encodes the specified Variable message. Does not implicitly {@link flyteidl.core.Variable.verify|verify} messages. - * @param message Variable message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IVariable, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Variable message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Variable - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Variable; - - /** - * Verifies a Variable message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a VariableMap. */ - interface IVariableMap { - - /** VariableMap variables */ - variables?: ({ [k: string]: flyteidl.core.IVariable }|null); - } - - /** Represents a VariableMap. */ - class VariableMap implements IVariableMap { - - /** - * Constructs a new VariableMap. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IVariableMap); - - /** VariableMap variables. */ - public variables: { [k: string]: flyteidl.core.IVariable }; - - /** - * Creates a new VariableMap instance using the specified properties. - * @param [properties] Properties to set - * @returns VariableMap instance - */ - public static create(properties?: flyteidl.core.IVariableMap): flyteidl.core.VariableMap; - - /** - * Encodes the specified VariableMap message. Does not implicitly {@link flyteidl.core.VariableMap.verify|verify} messages. - * @param message VariableMap message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IVariableMap, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a VariableMap message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns VariableMap - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.VariableMap; - - /** - * Verifies a VariableMap message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TypedInterface. */ - interface ITypedInterface { - - /** TypedInterface inputs */ - inputs?: (flyteidl.core.IVariableMap|null); - - /** TypedInterface outputs */ - outputs?: (flyteidl.core.IVariableMap|null); - } - - /** Represents a TypedInterface. */ - class TypedInterface implements ITypedInterface { - - /** - * Constructs a new TypedInterface. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITypedInterface); - - /** TypedInterface inputs. */ - public inputs?: (flyteidl.core.IVariableMap|null); - - /** TypedInterface outputs. */ - public outputs?: (flyteidl.core.IVariableMap|null); - - /** - * Creates a new TypedInterface instance using the specified properties. - * @param [properties] Properties to set - * @returns TypedInterface instance - */ - public static create(properties?: flyteidl.core.ITypedInterface): flyteidl.core.TypedInterface; - - /** - * Encodes the specified TypedInterface message. Does not implicitly {@link flyteidl.core.TypedInterface.verify|verify} messages. - * @param message TypedInterface message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITypedInterface, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TypedInterface message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TypedInterface - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TypedInterface; - - /** - * Verifies a TypedInterface message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Parameter. */ - interface IParameter { - - /** Parameter var */ - "var"?: (flyteidl.core.IVariable|null); - - /** Parameter default */ - "default"?: (flyteidl.core.ILiteral|null); - - /** Parameter required */ - required?: (boolean|null); - - /** Parameter artifactQuery */ - artifactQuery?: (flyteidl.core.IArtifactQuery|null); - - /** Parameter artifactId */ - artifactId?: (flyteidl.core.IArtifactID|null); - } - - /** Represents a Parameter. */ - class Parameter implements IParameter { - - /** - * Constructs a new Parameter. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IParameter); - - /** Parameter var. */ - public var?: (flyteidl.core.IVariable|null); - - /** Parameter default. */ - public default?: (flyteidl.core.ILiteral|null); - - /** Parameter required. */ - public required: boolean; - - /** Parameter artifactQuery. */ - public artifactQuery?: (flyteidl.core.IArtifactQuery|null); - - /** Parameter artifactId. */ - public artifactId?: (flyteidl.core.IArtifactID|null); - - /** Parameter behavior. */ - public behavior?: ("default"|"required"|"artifactQuery"|"artifactId"); - - /** - * Creates a new Parameter instance using the specified properties. - * @param [properties] Properties to set - * @returns Parameter instance - */ - public static create(properties?: flyteidl.core.IParameter): flyteidl.core.Parameter; - - /** - * Encodes the specified Parameter message. Does not implicitly {@link flyteidl.core.Parameter.verify|verify} messages. - * @param message Parameter message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IParameter, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Parameter message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Parameter - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Parameter; - - /** - * Verifies a Parameter message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ParameterMap. */ - interface IParameterMap { - - /** ParameterMap parameters */ - parameters?: ({ [k: string]: flyteidl.core.IParameter }|null); - } - - /** Represents a ParameterMap. */ - class ParameterMap implements IParameterMap { - - /** - * Constructs a new ParameterMap. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IParameterMap); - - /** ParameterMap parameters. */ - public parameters: { [k: string]: flyteidl.core.IParameter }; - - /** - * Creates a new ParameterMap instance using the specified properties. - * @param [properties] Properties to set - * @returns ParameterMap instance - */ - public static create(properties?: flyteidl.core.IParameterMap): flyteidl.core.ParameterMap; - - /** - * Encodes the specified ParameterMap message. Does not implicitly {@link flyteidl.core.ParameterMap.verify|verify} messages. - * @param message ParameterMap message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IParameterMap, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ParameterMap message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ParameterMap - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ParameterMap; - - /** - * Verifies a ParameterMap message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Resources. */ - interface IResources { - - /** Resources requests */ - requests?: (flyteidl.core.Resources.IResourceEntry[]|null); - - /** Resources limits */ - limits?: (flyteidl.core.Resources.IResourceEntry[]|null); - } - - /** Represents a Resources. */ - class Resources implements IResources { - - /** - * Constructs a new Resources. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IResources); - - /** Resources requests. */ - public requests: flyteidl.core.Resources.IResourceEntry[]; - - /** Resources limits. */ - public limits: flyteidl.core.Resources.IResourceEntry[]; - - /** - * Creates a new Resources instance using the specified properties. - * @param [properties] Properties to set - * @returns Resources instance - */ - public static create(properties?: flyteidl.core.IResources): flyteidl.core.Resources; - - /** - * Encodes the specified Resources message. Does not implicitly {@link flyteidl.core.Resources.verify|verify} messages. - * @param message Resources message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IResources, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Resources message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Resources - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Resources; - - /** - * Verifies a Resources message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace Resources { - - /** ResourceName enum. */ - enum ResourceName { - UNKNOWN = 0, - CPU = 1, - GPU = 2, - MEMORY = 3, - STORAGE = 4, - EPHEMERAL_STORAGE = 5 - } - - /** Properties of a ResourceEntry. */ - interface IResourceEntry { - - /** ResourceEntry name */ - name?: (flyteidl.core.Resources.ResourceName|null); - - /** ResourceEntry value */ - value?: (string|null); - } - - /** Represents a ResourceEntry. */ - class ResourceEntry implements IResourceEntry { - - /** - * Constructs a new ResourceEntry. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.Resources.IResourceEntry); - - /** ResourceEntry name. */ - public name: flyteidl.core.Resources.ResourceName; - - /** ResourceEntry value. */ - public value: string; - - /** - * Creates a new ResourceEntry instance using the specified properties. - * @param [properties] Properties to set - * @returns ResourceEntry instance - */ - public static create(properties?: flyteidl.core.Resources.IResourceEntry): flyteidl.core.Resources.ResourceEntry; - - /** - * Encodes the specified ResourceEntry message. Does not implicitly {@link flyteidl.core.Resources.ResourceEntry.verify|verify} messages. - * @param message ResourceEntry message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.Resources.IResourceEntry, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ResourceEntry message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ResourceEntry - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Resources.ResourceEntry; - - /** - * Verifies a ResourceEntry message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - - /** Properties of a GPUAccelerator. */ - interface IGPUAccelerator { - - /** GPUAccelerator device */ - device?: (string|null); - - /** GPUAccelerator unpartitioned */ - unpartitioned?: (boolean|null); - - /** GPUAccelerator partitionSize */ - partitionSize?: (string|null); - } - - /** Represents a GPUAccelerator. */ - class GPUAccelerator implements IGPUAccelerator { - - /** - * Constructs a new GPUAccelerator. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IGPUAccelerator); - - /** GPUAccelerator device. */ - public device: string; - - /** GPUAccelerator unpartitioned. */ - public unpartitioned: boolean; - - /** GPUAccelerator partitionSize. */ - public partitionSize: string; - - /** GPUAccelerator partitionSizeValue. */ - public partitionSizeValue?: ("unpartitioned"|"partitionSize"); - - /** - * Creates a new GPUAccelerator instance using the specified properties. - * @param [properties] Properties to set - * @returns GPUAccelerator instance - */ - public static create(properties?: flyteidl.core.IGPUAccelerator): flyteidl.core.GPUAccelerator; - - /** - * Encodes the specified GPUAccelerator message. Does not implicitly {@link flyteidl.core.GPUAccelerator.verify|verify} messages. - * @param message GPUAccelerator message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IGPUAccelerator, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GPUAccelerator message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GPUAccelerator - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.GPUAccelerator; - - /** - * Verifies a GPUAccelerator message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExtendedResources. */ - interface IExtendedResources { - - /** ExtendedResources gpuAccelerator */ - gpuAccelerator?: (flyteidl.core.IGPUAccelerator|null); - } - - /** Represents an ExtendedResources. */ - class ExtendedResources implements IExtendedResources { - - /** - * Constructs a new ExtendedResources. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IExtendedResources); - - /** ExtendedResources gpuAccelerator. */ - public gpuAccelerator?: (flyteidl.core.IGPUAccelerator|null); - - /** - * Creates a new ExtendedResources instance using the specified properties. - * @param [properties] Properties to set - * @returns ExtendedResources instance - */ - public static create(properties?: flyteidl.core.IExtendedResources): flyteidl.core.ExtendedResources; - - /** - * Encodes the specified ExtendedResources message. Does not implicitly {@link flyteidl.core.ExtendedResources.verify|verify} messages. - * @param message ExtendedResources message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IExtendedResources, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExtendedResources message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExtendedResources - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ExtendedResources; - - /** - * Verifies an ExtendedResources message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a RuntimeMetadata. */ - interface IRuntimeMetadata { - - /** RuntimeMetadata type */ - type?: (flyteidl.core.RuntimeMetadata.RuntimeType|null); - - /** RuntimeMetadata version */ - version?: (string|null); - - /** RuntimeMetadata flavor */ - flavor?: (string|null); - } - - /** Represents a RuntimeMetadata. */ - class RuntimeMetadata implements IRuntimeMetadata { - - /** - * Constructs a new RuntimeMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IRuntimeMetadata); - - /** RuntimeMetadata type. */ - public type: flyteidl.core.RuntimeMetadata.RuntimeType; - - /** RuntimeMetadata version. */ - public version: string; - - /** RuntimeMetadata flavor. */ - public flavor: string; - - /** - * Creates a new RuntimeMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns RuntimeMetadata instance - */ - public static create(properties?: flyteidl.core.IRuntimeMetadata): flyteidl.core.RuntimeMetadata; - - /** - * Encodes the specified RuntimeMetadata message. Does not implicitly {@link flyteidl.core.RuntimeMetadata.verify|verify} messages. - * @param message RuntimeMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IRuntimeMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a RuntimeMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns RuntimeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.RuntimeMetadata; - - /** - * Verifies a RuntimeMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace RuntimeMetadata { - - /** RuntimeType enum. */ - enum RuntimeType { - OTHER = 0, - FLYTE_SDK = 1 - } - } - - /** Properties of a TaskMetadata. */ - interface ITaskMetadata { - - /** TaskMetadata discoverable */ - discoverable?: (boolean|null); - - /** TaskMetadata runtime */ - runtime?: (flyteidl.core.IRuntimeMetadata|null); - - /** TaskMetadata timeout */ - timeout?: (google.protobuf.IDuration|null); - - /** TaskMetadata retries */ - retries?: (flyteidl.core.IRetryStrategy|null); - - /** TaskMetadata discoveryVersion */ - discoveryVersion?: (string|null); - - /** TaskMetadata deprecatedErrorMessage */ - deprecatedErrorMessage?: (string|null); - - /** TaskMetadata interruptible */ - interruptible?: (boolean|null); - - /** TaskMetadata cacheSerializable */ - cacheSerializable?: (boolean|null); - - /** TaskMetadata generatesDeck */ - generatesDeck?: (boolean|null); - - /** TaskMetadata tags */ - tags?: ({ [k: string]: string }|null); - - /** TaskMetadata podTemplateName */ - podTemplateName?: (string|null); - - /** TaskMetadata cacheIgnoreInputVars */ - cacheIgnoreInputVars?: (string[]|null); - } - - /** Represents a TaskMetadata. */ - class TaskMetadata implements ITaskMetadata { - - /** - * Constructs a new TaskMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITaskMetadata); - - /** TaskMetadata discoverable. */ - public discoverable: boolean; - - /** TaskMetadata runtime. */ - public runtime?: (flyteidl.core.IRuntimeMetadata|null); - - /** TaskMetadata timeout. */ - public timeout?: (google.protobuf.IDuration|null); - - /** TaskMetadata retries. */ - public retries?: (flyteidl.core.IRetryStrategy|null); - - /** TaskMetadata discoveryVersion. */ - public discoveryVersion: string; - - /** TaskMetadata deprecatedErrorMessage. */ - public deprecatedErrorMessage: string; - - /** TaskMetadata interruptible. */ - public interruptible: boolean; - - /** TaskMetadata cacheSerializable. */ - public cacheSerializable: boolean; - - /** TaskMetadata generatesDeck. */ - public generatesDeck: boolean; - - /** TaskMetadata tags. */ - public tags: { [k: string]: string }; - - /** TaskMetadata podTemplateName. */ - public podTemplateName: string; - - /** TaskMetadata cacheIgnoreInputVars. */ - public cacheIgnoreInputVars: string[]; - - /** TaskMetadata interruptibleValue. */ - public interruptibleValue?: "interruptible"; - - /** - * Creates a new TaskMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskMetadata instance - */ - public static create(properties?: flyteidl.core.ITaskMetadata): flyteidl.core.TaskMetadata; - - /** - * Encodes the specified TaskMetadata message. Does not implicitly {@link flyteidl.core.TaskMetadata.verify|verify} messages. - * @param message TaskMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITaskMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TaskMetadata; - - /** - * Verifies a TaskMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskTemplate. */ - interface ITaskTemplate { - - /** TaskTemplate id */ - id?: (flyteidl.core.IIdentifier|null); - - /** TaskTemplate type */ - type?: (string|null); - - /** TaskTemplate metadata */ - metadata?: (flyteidl.core.ITaskMetadata|null); - - /** TaskTemplate interface */ - "interface"?: (flyteidl.core.ITypedInterface|null); - - /** TaskTemplate custom */ - custom?: (google.protobuf.IStruct|null); - - /** TaskTemplate container */ - container?: (flyteidl.core.IContainer|null); - - /** TaskTemplate k8sPod */ - k8sPod?: (flyteidl.core.IK8sPod|null); - - /** TaskTemplate sql */ - sql?: (flyteidl.core.ISql|null); - - /** TaskTemplate taskTypeVersion */ - taskTypeVersion?: (number|null); - - /** TaskTemplate securityContext */ - securityContext?: (flyteidl.core.ISecurityContext|null); - - /** TaskTemplate extendedResources */ - extendedResources?: (flyteidl.core.IExtendedResources|null); - - /** TaskTemplate config */ - config?: ({ [k: string]: string }|null); - } - - /** Represents a TaskTemplate. */ - class TaskTemplate implements ITaskTemplate { - - /** - * Constructs a new TaskTemplate. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ITaskTemplate); - - /** TaskTemplate id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** TaskTemplate type. */ - public type: string; - - /** TaskTemplate metadata. */ - public metadata?: (flyteidl.core.ITaskMetadata|null); - - /** TaskTemplate interface. */ - public interface?: (flyteidl.core.ITypedInterface|null); - - /** TaskTemplate custom. */ - public custom?: (google.protobuf.IStruct|null); - - /** TaskTemplate container. */ - public container?: (flyteidl.core.IContainer|null); - - /** TaskTemplate k8sPod. */ - public k8sPod?: (flyteidl.core.IK8sPod|null); - - /** TaskTemplate sql. */ - public sql?: (flyteidl.core.ISql|null); - - /** TaskTemplate taskTypeVersion. */ - public taskTypeVersion: number; - - /** TaskTemplate securityContext. */ - public securityContext?: (flyteidl.core.ISecurityContext|null); - - /** TaskTemplate extendedResources. */ - public extendedResources?: (flyteidl.core.IExtendedResources|null); - - /** TaskTemplate config. */ - public config: { [k: string]: string }; - - /** TaskTemplate target. */ - public target?: ("container"|"k8sPod"|"sql"); - - /** - * Creates a new TaskTemplate instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskTemplate instance - */ - public static create(properties?: flyteidl.core.ITaskTemplate): flyteidl.core.TaskTemplate; - - /** - * Encodes the specified TaskTemplate message. Does not implicitly {@link flyteidl.core.TaskTemplate.verify|verify} messages. - * @param message TaskTemplate message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ITaskTemplate, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskTemplate message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskTemplate - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.TaskTemplate; - - /** - * Verifies a TaskTemplate message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ContainerPort. */ - interface IContainerPort { - - /** ContainerPort containerPort */ - containerPort?: (number|null); - } - - /** Represents a ContainerPort. */ - class ContainerPort implements IContainerPort { - - /** - * Constructs a new ContainerPort. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IContainerPort); - - /** ContainerPort containerPort. */ - public containerPort: number; - - /** - * Creates a new ContainerPort instance using the specified properties. - * @param [properties] Properties to set - * @returns ContainerPort instance - */ - public static create(properties?: flyteidl.core.IContainerPort): flyteidl.core.ContainerPort; - - /** - * Encodes the specified ContainerPort message. Does not implicitly {@link flyteidl.core.ContainerPort.verify|verify} messages. - * @param message ContainerPort message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IContainerPort, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ContainerPort message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ContainerPort - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ContainerPort; - - /** - * Verifies a ContainerPort message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Container. */ - interface IContainer { - - /** Container image */ - image?: (string|null); - - /** Container command */ - command?: (string[]|null); - - /** Container args */ - args?: (string[]|null); - - /** Container resources */ - resources?: (flyteidl.core.IResources|null); - - /** Container env */ - env?: (flyteidl.core.IKeyValuePair[]|null); - - /** Container config */ - config?: (flyteidl.core.IKeyValuePair[]|null); - - /** Container ports */ - ports?: (flyteidl.core.IContainerPort[]|null); - - /** Container dataConfig */ - dataConfig?: (flyteidl.core.IDataLoadingConfig|null); - - /** Container architecture */ - architecture?: (flyteidl.core.Container.Architecture|null); - } - - /** Represents a Container. */ - class Container implements IContainer { - - /** - * Constructs a new Container. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IContainer); - - /** Container image. */ - public image: string; - - /** Container command. */ - public command: string[]; - - /** Container args. */ - public args: string[]; - - /** Container resources. */ - public resources?: (flyteidl.core.IResources|null); - - /** Container env. */ - public env: flyteidl.core.IKeyValuePair[]; - - /** Container config. */ - public config: flyteidl.core.IKeyValuePair[]; - - /** Container ports. */ - public ports: flyteidl.core.IContainerPort[]; - - /** Container dataConfig. */ - public dataConfig?: (flyteidl.core.IDataLoadingConfig|null); - - /** Container architecture. */ - public architecture: flyteidl.core.Container.Architecture; - - /** - * Creates a new Container instance using the specified properties. - * @param [properties] Properties to set - * @returns Container instance - */ - public static create(properties?: flyteidl.core.IContainer): flyteidl.core.Container; - - /** - * Encodes the specified Container message. Does not implicitly {@link flyteidl.core.Container.verify|verify} messages. - * @param message Container message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IContainer, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Container message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Container - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Container; - - /** - * Verifies a Container message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace Container { - - /** Architecture enum. */ - enum Architecture { - UNKNOWN = 0, - AMD64 = 1, - ARM64 = 2, - ARM_V6 = 3, - ARM_V7 = 4 - } - } - - /** Properties of a IOStrategy. */ - interface IIOStrategy { - - /** IOStrategy downloadMode */ - downloadMode?: (flyteidl.core.IOStrategy.DownloadMode|null); - - /** IOStrategy uploadMode */ - uploadMode?: (flyteidl.core.IOStrategy.UploadMode|null); - } - - /** Represents a IOStrategy. */ - class IOStrategy implements IIOStrategy { - - /** - * Constructs a new IOStrategy. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IIOStrategy); - - /** IOStrategy downloadMode. */ - public downloadMode: flyteidl.core.IOStrategy.DownloadMode; - - /** IOStrategy uploadMode. */ - public uploadMode: flyteidl.core.IOStrategy.UploadMode; - - /** - * Creates a new IOStrategy instance using the specified properties. - * @param [properties] Properties to set - * @returns IOStrategy instance - */ - public static create(properties?: flyteidl.core.IIOStrategy): flyteidl.core.IOStrategy; - - /** - * Encodes the specified IOStrategy message. Does not implicitly {@link flyteidl.core.IOStrategy.verify|verify} messages. - * @param message IOStrategy message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IIOStrategy, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a IOStrategy message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns IOStrategy - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.IOStrategy; - - /** - * Verifies a IOStrategy message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace IOStrategy { - - /** DownloadMode enum. */ - enum DownloadMode { - DOWNLOAD_EAGER = 0, - DOWNLOAD_STREAM = 1, - DO_NOT_DOWNLOAD = 2 - } - - /** UploadMode enum. */ - enum UploadMode { - UPLOAD_ON_EXIT = 0, - UPLOAD_EAGER = 1, - DO_NOT_UPLOAD = 2 - } - } - - /** Properties of a DataLoadingConfig. */ - interface IDataLoadingConfig { - - /** DataLoadingConfig enabled */ - enabled?: (boolean|null); - - /** DataLoadingConfig inputPath */ - inputPath?: (string|null); - - /** DataLoadingConfig outputPath */ - outputPath?: (string|null); - - /** DataLoadingConfig format */ - format?: (flyteidl.core.DataLoadingConfig.LiteralMapFormat|null); - - /** DataLoadingConfig ioStrategy */ - ioStrategy?: (flyteidl.core.IIOStrategy|null); - } - - /** Represents a DataLoadingConfig. */ - class DataLoadingConfig implements IDataLoadingConfig { - - /** - * Constructs a new DataLoadingConfig. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IDataLoadingConfig); - - /** DataLoadingConfig enabled. */ - public enabled: boolean; - - /** DataLoadingConfig inputPath. */ - public inputPath: string; - - /** DataLoadingConfig outputPath. */ - public outputPath: string; - - /** DataLoadingConfig format. */ - public format: flyteidl.core.DataLoadingConfig.LiteralMapFormat; - - /** DataLoadingConfig ioStrategy. */ - public ioStrategy?: (flyteidl.core.IIOStrategy|null); - - /** - * Creates a new DataLoadingConfig instance using the specified properties. - * @param [properties] Properties to set - * @returns DataLoadingConfig instance - */ - public static create(properties?: flyteidl.core.IDataLoadingConfig): flyteidl.core.DataLoadingConfig; - - /** - * Encodes the specified DataLoadingConfig message. Does not implicitly {@link flyteidl.core.DataLoadingConfig.verify|verify} messages. - * @param message DataLoadingConfig message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IDataLoadingConfig, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DataLoadingConfig message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DataLoadingConfig - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.DataLoadingConfig; - - /** - * Verifies a DataLoadingConfig message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace DataLoadingConfig { - - /** LiteralMapFormat enum. */ - enum LiteralMapFormat { - JSON = 0, - YAML = 1, - PROTO = 2 - } - } - - /** Properties of a K8sPod. */ - interface IK8sPod { - - /** K8sPod metadata */ - metadata?: (flyteidl.core.IK8sObjectMetadata|null); - - /** K8sPod podSpec */ - podSpec?: (google.protobuf.IStruct|null); - - /** K8sPod dataConfig */ - dataConfig?: (flyteidl.core.IDataLoadingConfig|null); - } - - /** Represents a K8sPod. */ - class K8sPod implements IK8sPod { - - /** - * Constructs a new K8sPod. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IK8sPod); - - /** K8sPod metadata. */ - public metadata?: (flyteidl.core.IK8sObjectMetadata|null); - - /** K8sPod podSpec. */ - public podSpec?: (google.protobuf.IStruct|null); - - /** K8sPod dataConfig. */ - public dataConfig?: (flyteidl.core.IDataLoadingConfig|null); - - /** - * Creates a new K8sPod instance using the specified properties. - * @param [properties] Properties to set - * @returns K8sPod instance - */ - public static create(properties?: flyteidl.core.IK8sPod): flyteidl.core.K8sPod; - - /** - * Encodes the specified K8sPod message. Does not implicitly {@link flyteidl.core.K8sPod.verify|verify} messages. - * @param message K8sPod message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IK8sPod, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a K8sPod message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns K8sPod - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.K8sPod; - - /** - * Verifies a K8sPod message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a K8sObjectMetadata. */ - interface IK8sObjectMetadata { - - /** K8sObjectMetadata labels */ - labels?: ({ [k: string]: string }|null); - - /** K8sObjectMetadata annotations */ - annotations?: ({ [k: string]: string }|null); - } - - /** Represents a K8sObjectMetadata. */ - class K8sObjectMetadata implements IK8sObjectMetadata { - - /** - * Constructs a new K8sObjectMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IK8sObjectMetadata); - - /** K8sObjectMetadata labels. */ - public labels: { [k: string]: string }; - - /** K8sObjectMetadata annotations. */ - public annotations: { [k: string]: string }; - - /** - * Creates a new K8sObjectMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns K8sObjectMetadata instance - */ - public static create(properties?: flyteidl.core.IK8sObjectMetadata): flyteidl.core.K8sObjectMetadata; - - /** - * Encodes the specified K8sObjectMetadata message. Does not implicitly {@link flyteidl.core.K8sObjectMetadata.verify|verify} messages. - * @param message K8sObjectMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IK8sObjectMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a K8sObjectMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns K8sObjectMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.K8sObjectMetadata; - - /** - * Verifies a K8sObjectMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Sql. */ - interface ISql { - - /** Sql statement */ - statement?: (string|null); - - /** Sql dialect */ - dialect?: (flyteidl.core.Sql.Dialect|null); - } - - /** Represents a Sql. */ - class Sql implements ISql { - - /** - * Constructs a new Sql. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISql); - - /** Sql statement. */ - public statement: string; - - /** Sql dialect. */ - public dialect: flyteidl.core.Sql.Dialect; - - /** - * Creates a new Sql instance using the specified properties. - * @param [properties] Properties to set - * @returns Sql instance - */ - public static create(properties?: flyteidl.core.ISql): flyteidl.core.Sql; - - /** - * Encodes the specified Sql message. Does not implicitly {@link flyteidl.core.Sql.verify|verify} messages. - * @param message Sql message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISql, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Sql message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Sql - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Sql; - - /** - * Verifies a Sql message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace Sql { - - /** Dialect enum. */ - enum Dialect { - UNDEFINED = 0, - ANSI = 1, - HIVE = 2, - OTHER = 3 - } - } - - /** Properties of a Secret. */ - interface ISecret { - - /** Secret group */ - group?: (string|null); - - /** Secret groupVersion */ - groupVersion?: (string|null); - - /** Secret key */ - key?: (string|null); - - /** Secret mountRequirement */ - mountRequirement?: (flyteidl.core.Secret.MountType|null); - } - - /** Represents a Secret. */ - class Secret implements ISecret { - - /** - * Constructs a new Secret. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISecret); - - /** Secret group. */ - public group: string; - - /** Secret groupVersion. */ - public groupVersion: string; - - /** Secret key. */ - public key: string; - - /** Secret mountRequirement. */ - public mountRequirement: flyteidl.core.Secret.MountType; - - /** - * Creates a new Secret instance using the specified properties. - * @param [properties] Properties to set - * @returns Secret instance - */ - public static create(properties?: flyteidl.core.ISecret): flyteidl.core.Secret; - - /** - * Encodes the specified Secret message. Does not implicitly {@link flyteidl.core.Secret.verify|verify} messages. - * @param message Secret message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISecret, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Secret message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Secret - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Secret; - - /** - * Verifies a Secret message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace Secret { - - /** MountType enum. */ - enum MountType { - ANY = 0, - ENV_VAR = 1, - FILE = 2 - } - } - - /** Properties of a OAuth2Client. */ - interface IOAuth2Client { - - /** OAuth2Client clientId */ - clientId?: (string|null); - - /** OAuth2Client clientSecret */ - clientSecret?: (flyteidl.core.ISecret|null); - } - - /** Represents a OAuth2Client. */ - class OAuth2Client implements IOAuth2Client { - - /** - * Constructs a new OAuth2Client. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IOAuth2Client); - - /** OAuth2Client clientId. */ - public clientId: string; - - /** OAuth2Client clientSecret. */ - public clientSecret?: (flyteidl.core.ISecret|null); - - /** - * Creates a new OAuth2Client instance using the specified properties. - * @param [properties] Properties to set - * @returns OAuth2Client instance - */ - public static create(properties?: flyteidl.core.IOAuth2Client): flyteidl.core.OAuth2Client; - - /** - * Encodes the specified OAuth2Client message. Does not implicitly {@link flyteidl.core.OAuth2Client.verify|verify} messages. - * @param message OAuth2Client message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IOAuth2Client, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a OAuth2Client message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns OAuth2Client - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.OAuth2Client; - - /** - * Verifies a OAuth2Client message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Identity. */ - interface IIdentity { - - /** Identity iamRole */ - iamRole?: (string|null); - - /** Identity k8sServiceAccount */ - k8sServiceAccount?: (string|null); - - /** Identity oauth2Client */ - oauth2Client?: (flyteidl.core.IOAuth2Client|null); - - /** Identity executionIdentity */ - executionIdentity?: (string|null); - } - - /** Represents an Identity. */ - class Identity implements IIdentity { - - /** - * Constructs a new Identity. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IIdentity); - - /** Identity iamRole. */ - public iamRole: string; - - /** Identity k8sServiceAccount. */ - public k8sServiceAccount: string; - - /** Identity oauth2Client. */ - public oauth2Client?: (flyteidl.core.IOAuth2Client|null); - - /** Identity executionIdentity. */ - public executionIdentity: string; - - /** - * Creates a new Identity instance using the specified properties. - * @param [properties] Properties to set - * @returns Identity instance - */ - public static create(properties?: flyteidl.core.IIdentity): flyteidl.core.Identity; - - /** - * Encodes the specified Identity message. Does not implicitly {@link flyteidl.core.Identity.verify|verify} messages. - * @param message Identity message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IIdentity, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Identity message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Identity - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Identity; - - /** - * Verifies an Identity message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a OAuth2TokenRequest. */ - interface IOAuth2TokenRequest { - - /** OAuth2TokenRequest name */ - name?: (string|null); - - /** OAuth2TokenRequest type */ - type?: (flyteidl.core.OAuth2TokenRequest.Type|null); - - /** OAuth2TokenRequest client */ - client?: (flyteidl.core.IOAuth2Client|null); - - /** OAuth2TokenRequest idpDiscoveryEndpoint */ - idpDiscoveryEndpoint?: (string|null); - - /** OAuth2TokenRequest tokenEndpoint */ - tokenEndpoint?: (string|null); - } - - /** Represents a OAuth2TokenRequest. */ - class OAuth2TokenRequest implements IOAuth2TokenRequest { - - /** - * Constructs a new OAuth2TokenRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IOAuth2TokenRequest); - - /** OAuth2TokenRequest name. */ - public name: string; - - /** OAuth2TokenRequest type. */ - public type: flyteidl.core.OAuth2TokenRequest.Type; - - /** OAuth2TokenRequest client. */ - public client?: (flyteidl.core.IOAuth2Client|null); - - /** OAuth2TokenRequest idpDiscoveryEndpoint. */ - public idpDiscoveryEndpoint: string; - - /** OAuth2TokenRequest tokenEndpoint. */ - public tokenEndpoint: string; - - /** - * Creates a new OAuth2TokenRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns OAuth2TokenRequest instance - */ - public static create(properties?: flyteidl.core.IOAuth2TokenRequest): flyteidl.core.OAuth2TokenRequest; - - /** - * Encodes the specified OAuth2TokenRequest message. Does not implicitly {@link flyteidl.core.OAuth2TokenRequest.verify|verify} messages. - * @param message OAuth2TokenRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IOAuth2TokenRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a OAuth2TokenRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns OAuth2TokenRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.OAuth2TokenRequest; - - /** - * Verifies a OAuth2TokenRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace OAuth2TokenRequest { - - /** Type enum. */ - enum Type { - CLIENT_CREDENTIALS = 0 - } - } - - /** Properties of a SecurityContext. */ - interface ISecurityContext { - - /** SecurityContext runAs */ - runAs?: (flyteidl.core.IIdentity|null); - - /** SecurityContext secrets */ - secrets?: (flyteidl.core.ISecret[]|null); - - /** SecurityContext tokens */ - tokens?: (flyteidl.core.IOAuth2TokenRequest[]|null); - } - - /** Represents a SecurityContext. */ - class SecurityContext implements ISecurityContext { - - /** - * Constructs a new SecurityContext. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISecurityContext); - - /** SecurityContext runAs. */ - public runAs?: (flyteidl.core.IIdentity|null); - - /** SecurityContext secrets. */ - public secrets: flyteidl.core.ISecret[]; - - /** SecurityContext tokens. */ - public tokens: flyteidl.core.IOAuth2TokenRequest[]; - - /** - * Creates a new SecurityContext instance using the specified properties. - * @param [properties] Properties to set - * @returns SecurityContext instance - */ - public static create(properties?: flyteidl.core.ISecurityContext): flyteidl.core.SecurityContext; - - /** - * Encodes the specified SecurityContext message. Does not implicitly {@link flyteidl.core.SecurityContext.verify|verify} messages. - * @param message SecurityContext message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISecurityContext, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SecurityContext message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SecurityContext - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.SecurityContext; - - /** - * Verifies a SecurityContext message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DynamicJobSpec. */ - interface IDynamicJobSpec { - - /** DynamicJobSpec nodes */ - nodes?: (flyteidl.core.INode[]|null); - - /** DynamicJobSpec minSuccesses */ - minSuccesses?: (Long|null); - - /** DynamicJobSpec outputs */ - outputs?: (flyteidl.core.IBinding[]|null); - - /** DynamicJobSpec tasks */ - tasks?: (flyteidl.core.ITaskTemplate[]|null); - - /** DynamicJobSpec subworkflows */ - subworkflows?: (flyteidl.core.IWorkflowTemplate[]|null); - } - - /** Represents a DynamicJobSpec. */ - class DynamicJobSpec implements IDynamicJobSpec { - - /** - * Constructs a new DynamicJobSpec. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IDynamicJobSpec); - - /** DynamicJobSpec nodes. */ - public nodes: flyteidl.core.INode[]; - - /** DynamicJobSpec minSuccesses. */ - public minSuccesses: Long; - - /** DynamicJobSpec outputs. */ - public outputs: flyteidl.core.IBinding[]; - - /** DynamicJobSpec tasks. */ - public tasks: flyteidl.core.ITaskTemplate[]; - - /** DynamicJobSpec subworkflows. */ - public subworkflows: flyteidl.core.IWorkflowTemplate[]; - - /** - * Creates a new DynamicJobSpec instance using the specified properties. - * @param [properties] Properties to set - * @returns DynamicJobSpec instance - */ - public static create(properties?: flyteidl.core.IDynamicJobSpec): flyteidl.core.DynamicJobSpec; - - /** - * Encodes the specified DynamicJobSpec message. Does not implicitly {@link flyteidl.core.DynamicJobSpec.verify|verify} messages. - * @param message DynamicJobSpec message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IDynamicJobSpec, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DynamicJobSpec message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DynamicJobSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.DynamicJobSpec; - - /** - * Verifies a DynamicJobSpec message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ContainerError. */ - interface IContainerError { - - /** ContainerError code */ - code?: (string|null); - - /** ContainerError message */ - message?: (string|null); - - /** ContainerError kind */ - kind?: (flyteidl.core.ContainerError.Kind|null); - - /** ContainerError origin */ - origin?: (flyteidl.core.ExecutionError.ErrorKind|null); - } - - /** Represents a ContainerError. */ - class ContainerError implements IContainerError { - - /** - * Constructs a new ContainerError. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IContainerError); - - /** ContainerError code. */ - public code: string; - - /** ContainerError message. */ - public message: string; - - /** ContainerError kind. */ - public kind: flyteidl.core.ContainerError.Kind; - - /** ContainerError origin. */ - public origin: flyteidl.core.ExecutionError.ErrorKind; - - /** - * Creates a new ContainerError instance using the specified properties. - * @param [properties] Properties to set - * @returns ContainerError instance - */ - public static create(properties?: flyteidl.core.IContainerError): flyteidl.core.ContainerError; - - /** - * Encodes the specified ContainerError message. Does not implicitly {@link flyteidl.core.ContainerError.verify|verify} messages. - * @param message ContainerError message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IContainerError, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ContainerError message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ContainerError - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ContainerError; - - /** - * Verifies a ContainerError message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace ContainerError { - - /** Kind enum. */ - enum Kind { - NON_RECOVERABLE = 0, - RECOVERABLE = 1 - } - } - - /** Properties of an ErrorDocument. */ - interface IErrorDocument { - - /** ErrorDocument error */ - error?: (flyteidl.core.IContainerError|null); - } - - /** Represents an ErrorDocument. */ - class ErrorDocument implements IErrorDocument { - - /** - * Constructs a new ErrorDocument. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IErrorDocument); - - /** ErrorDocument error. */ - public error?: (flyteidl.core.IContainerError|null); - - /** - * Creates a new ErrorDocument instance using the specified properties. - * @param [properties] Properties to set - * @returns ErrorDocument instance - */ - public static create(properties?: flyteidl.core.IErrorDocument): flyteidl.core.ErrorDocument; - - /** - * Encodes the specified ErrorDocument message. Does not implicitly {@link flyteidl.core.ErrorDocument.verify|verify} messages. - * @param message ErrorDocument message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IErrorDocument, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ErrorDocument message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ErrorDocument - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ErrorDocument; - - /** - * Verifies an ErrorDocument message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Span. */ - interface ISpan { - - /** Span startTime */ - startTime?: (google.protobuf.ITimestamp|null); - - /** Span endTime */ - endTime?: (google.protobuf.ITimestamp|null); - - /** Span workflowId */ - workflowId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** Span nodeId */ - nodeId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** Span taskId */ - taskId?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** Span operationId */ - operationId?: (string|null); - - /** Span spans */ - spans?: (flyteidl.core.ISpan[]|null); - } - - /** Represents a Span. */ - class Span implements ISpan { - - /** - * Constructs a new Span. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.ISpan); - - /** Span startTime. */ - public startTime?: (google.protobuf.ITimestamp|null); - - /** Span endTime. */ - public endTime?: (google.protobuf.ITimestamp|null); - - /** Span workflowId. */ - public workflowId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** Span nodeId. */ - public nodeId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** Span taskId. */ - public taskId?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** Span operationId. */ - public operationId: string; - - /** Span spans. */ - public spans: flyteidl.core.ISpan[]; - - /** Span id. */ - public id?: ("workflowId"|"nodeId"|"taskId"|"operationId"); - - /** - * Creates a new Span instance using the specified properties. - * @param [properties] Properties to set - * @returns Span instance - */ - public static create(properties?: flyteidl.core.ISpan): flyteidl.core.Span; - - /** - * Encodes the specified Span message. Does not implicitly {@link flyteidl.core.Span.verify|verify} messages. - * @param message Span message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.ISpan, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Span message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Span - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Span; - - /** - * Verifies a Span message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionMetricResult. */ - interface IExecutionMetricResult { - - /** ExecutionMetricResult metric */ - metric?: (string|null); - - /** ExecutionMetricResult data */ - data?: (google.protobuf.IStruct|null); - } - - /** Represents an ExecutionMetricResult. */ - class ExecutionMetricResult implements IExecutionMetricResult { - - /** - * Constructs a new ExecutionMetricResult. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IExecutionMetricResult); - - /** ExecutionMetricResult metric. */ - public metric: string; - - /** ExecutionMetricResult data. */ - public data?: (google.protobuf.IStruct|null); - - /** - * Creates a new ExecutionMetricResult instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionMetricResult instance - */ - public static create(properties?: flyteidl.core.IExecutionMetricResult): flyteidl.core.ExecutionMetricResult; - - /** - * Encodes the specified ExecutionMetricResult message. Does not implicitly {@link flyteidl.core.ExecutionMetricResult.verify|verify} messages. - * @param message ExecutionMetricResult message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IExecutionMetricResult, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionMetricResult message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionMetricResult - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.ExecutionMetricResult; - - /** - * Verifies an ExecutionMetricResult message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowClosure. */ - interface IWorkflowClosure { - - /** WorkflowClosure workflow */ - workflow?: (flyteidl.core.IWorkflowTemplate|null); - - /** WorkflowClosure tasks */ - tasks?: (flyteidl.core.ITaskTemplate[]|null); - } - - /** Represents a WorkflowClosure. */ - class WorkflowClosure implements IWorkflowClosure { - - /** - * Constructs a new WorkflowClosure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.core.IWorkflowClosure); - - /** WorkflowClosure workflow. */ - public workflow?: (flyteidl.core.IWorkflowTemplate|null); - - /** WorkflowClosure tasks. */ - public tasks: flyteidl.core.ITaskTemplate[]; - - /** - * Creates a new WorkflowClosure instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowClosure instance - */ - public static create(properties?: flyteidl.core.IWorkflowClosure): flyteidl.core.WorkflowClosure; - - /** - * Encodes the specified WorkflowClosure message. Does not implicitly {@link flyteidl.core.WorkflowClosure.verify|verify} messages. - * @param message WorkflowClosure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.core.IWorkflowClosure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowClosure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.WorkflowClosure; - - /** - * Verifies a WorkflowClosure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - - /** Namespace event. */ - namespace event { - - /** Properties of a CloudEventWorkflowExecution. */ - interface ICloudEventWorkflowExecution { - - /** CloudEventWorkflowExecution rawEvent */ - rawEvent?: (flyteidl.event.IWorkflowExecutionEvent|null); - - /** CloudEventWorkflowExecution outputInterface */ - outputInterface?: (flyteidl.core.ITypedInterface|null); - - /** CloudEventWorkflowExecution artifactIds */ - artifactIds?: (flyteidl.core.IArtifactID[]|null); - - /** CloudEventWorkflowExecution referenceExecution */ - referenceExecution?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** CloudEventWorkflowExecution principal */ - principal?: (string|null); - - /** CloudEventWorkflowExecution launchPlanId */ - launchPlanId?: (flyteidl.core.IIdentifier|null); - } - - /** Represents a CloudEventWorkflowExecution. */ - class CloudEventWorkflowExecution implements ICloudEventWorkflowExecution { - - /** - * Constructs a new CloudEventWorkflowExecution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.ICloudEventWorkflowExecution); - - /** CloudEventWorkflowExecution rawEvent. */ - public rawEvent?: (flyteidl.event.IWorkflowExecutionEvent|null); - - /** CloudEventWorkflowExecution outputInterface. */ - public outputInterface?: (flyteidl.core.ITypedInterface|null); - - /** CloudEventWorkflowExecution artifactIds. */ - public artifactIds: flyteidl.core.IArtifactID[]; - - /** CloudEventWorkflowExecution referenceExecution. */ - public referenceExecution?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** CloudEventWorkflowExecution principal. */ - public principal: string; - - /** CloudEventWorkflowExecution launchPlanId. */ - public launchPlanId?: (flyteidl.core.IIdentifier|null); - - /** - * Creates a new CloudEventWorkflowExecution instance using the specified properties. - * @param [properties] Properties to set - * @returns CloudEventWorkflowExecution instance - */ - public static create(properties?: flyteidl.event.ICloudEventWorkflowExecution): flyteidl.event.CloudEventWorkflowExecution; - - /** - * Encodes the specified CloudEventWorkflowExecution message. Does not implicitly {@link flyteidl.event.CloudEventWorkflowExecution.verify|verify} messages. - * @param message CloudEventWorkflowExecution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.ICloudEventWorkflowExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CloudEventWorkflowExecution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CloudEventWorkflowExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.CloudEventWorkflowExecution; - - /** - * Verifies a CloudEventWorkflowExecution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CloudEventNodeExecution. */ - interface ICloudEventNodeExecution { - - /** CloudEventNodeExecution rawEvent */ - rawEvent?: (flyteidl.event.INodeExecutionEvent|null); - - /** CloudEventNodeExecution taskExecId */ - taskExecId?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** CloudEventNodeExecution outputInterface */ - outputInterface?: (flyteidl.core.ITypedInterface|null); - - /** CloudEventNodeExecution artifactIds */ - artifactIds?: (flyteidl.core.IArtifactID[]|null); - - /** CloudEventNodeExecution principal */ - principal?: (string|null); - - /** CloudEventNodeExecution launchPlanId */ - launchPlanId?: (flyteidl.core.IIdentifier|null); - } - - /** Represents a CloudEventNodeExecution. */ - class CloudEventNodeExecution implements ICloudEventNodeExecution { - - /** - * Constructs a new CloudEventNodeExecution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.ICloudEventNodeExecution); - - /** CloudEventNodeExecution rawEvent. */ - public rawEvent?: (flyteidl.event.INodeExecutionEvent|null); - - /** CloudEventNodeExecution taskExecId. */ - public taskExecId?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** CloudEventNodeExecution outputInterface. */ - public outputInterface?: (flyteidl.core.ITypedInterface|null); - - /** CloudEventNodeExecution artifactIds. */ - public artifactIds: flyteidl.core.IArtifactID[]; - - /** CloudEventNodeExecution principal. */ - public principal: string; - - /** CloudEventNodeExecution launchPlanId. */ - public launchPlanId?: (flyteidl.core.IIdentifier|null); - - /** - * Creates a new CloudEventNodeExecution instance using the specified properties. - * @param [properties] Properties to set - * @returns CloudEventNodeExecution instance - */ - public static create(properties?: flyteidl.event.ICloudEventNodeExecution): flyteidl.event.CloudEventNodeExecution; - - /** - * Encodes the specified CloudEventNodeExecution message. Does not implicitly {@link flyteidl.event.CloudEventNodeExecution.verify|verify} messages. - * @param message CloudEventNodeExecution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.ICloudEventNodeExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CloudEventNodeExecution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CloudEventNodeExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.CloudEventNodeExecution; - - /** - * Verifies a CloudEventNodeExecution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CloudEventTaskExecution. */ - interface ICloudEventTaskExecution { - - /** CloudEventTaskExecution rawEvent */ - rawEvent?: (flyteidl.event.ITaskExecutionEvent|null); - } - - /** Represents a CloudEventTaskExecution. */ - class CloudEventTaskExecution implements ICloudEventTaskExecution { - - /** - * Constructs a new CloudEventTaskExecution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.ICloudEventTaskExecution); - - /** CloudEventTaskExecution rawEvent. */ - public rawEvent?: (flyteidl.event.ITaskExecutionEvent|null); - - /** - * Creates a new CloudEventTaskExecution instance using the specified properties. - * @param [properties] Properties to set - * @returns CloudEventTaskExecution instance - */ - public static create(properties?: flyteidl.event.ICloudEventTaskExecution): flyteidl.event.CloudEventTaskExecution; - - /** - * Encodes the specified CloudEventTaskExecution message. Does not implicitly {@link flyteidl.event.CloudEventTaskExecution.verify|verify} messages. - * @param message CloudEventTaskExecution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.ICloudEventTaskExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CloudEventTaskExecution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CloudEventTaskExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.CloudEventTaskExecution; - - /** - * Verifies a CloudEventTaskExecution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CloudEventExecutionStart. */ - interface ICloudEventExecutionStart { - - /** CloudEventExecutionStart executionId */ - executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** CloudEventExecutionStart launchPlanId */ - launchPlanId?: (flyteidl.core.IIdentifier|null); - - /** CloudEventExecutionStart workflowId */ - workflowId?: (flyteidl.core.IIdentifier|null); - - /** CloudEventExecutionStart artifactIds */ - artifactIds?: (flyteidl.core.IArtifactID[]|null); - - /** CloudEventExecutionStart artifactTrackers */ - artifactTrackers?: (string[]|null); - - /** CloudEventExecutionStart principal */ - principal?: (string|null); - } - - /** Represents a CloudEventExecutionStart. */ - class CloudEventExecutionStart implements ICloudEventExecutionStart { - - /** - * Constructs a new CloudEventExecutionStart. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.ICloudEventExecutionStart); - - /** CloudEventExecutionStart executionId. */ - public executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** CloudEventExecutionStart launchPlanId. */ - public launchPlanId?: (flyteidl.core.IIdentifier|null); - - /** CloudEventExecutionStart workflowId. */ - public workflowId?: (flyteidl.core.IIdentifier|null); - - /** CloudEventExecutionStart artifactIds. */ - public artifactIds: flyteidl.core.IArtifactID[]; - - /** CloudEventExecutionStart artifactTrackers. */ - public artifactTrackers: string[]; - - /** CloudEventExecutionStart principal. */ - public principal: string; - - /** - * Creates a new CloudEventExecutionStart instance using the specified properties. - * @param [properties] Properties to set - * @returns CloudEventExecutionStart instance - */ - public static create(properties?: flyteidl.event.ICloudEventExecutionStart): flyteidl.event.CloudEventExecutionStart; - - /** - * Encodes the specified CloudEventExecutionStart message. Does not implicitly {@link flyteidl.event.CloudEventExecutionStart.verify|verify} messages. - * @param message CloudEventExecutionStart message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.ICloudEventExecutionStart, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CloudEventExecutionStart message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CloudEventExecutionStart - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.CloudEventExecutionStart; - - /** - * Verifies a CloudEventExecutionStart message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionEvent. */ - interface IWorkflowExecutionEvent { - - /** WorkflowExecutionEvent executionId */ - executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** WorkflowExecutionEvent producerId */ - producerId?: (string|null); - - /** WorkflowExecutionEvent phase */ - phase?: (flyteidl.core.WorkflowExecution.Phase|null); - - /** WorkflowExecutionEvent occurredAt */ - occurredAt?: (google.protobuf.ITimestamp|null); - - /** WorkflowExecutionEvent outputUri */ - outputUri?: (string|null); - - /** WorkflowExecutionEvent error */ - error?: (flyteidl.core.IExecutionError|null); - - /** WorkflowExecutionEvent outputData */ - outputData?: (flyteidl.core.ILiteralMap|null); - } - - /** Represents a WorkflowExecutionEvent. */ - class WorkflowExecutionEvent implements IWorkflowExecutionEvent { - - /** - * Constructs a new WorkflowExecutionEvent. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.IWorkflowExecutionEvent); - - /** WorkflowExecutionEvent executionId. */ - public executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** WorkflowExecutionEvent producerId. */ - public producerId: string; - - /** WorkflowExecutionEvent phase. */ - public phase: flyteidl.core.WorkflowExecution.Phase; - - /** WorkflowExecutionEvent occurredAt. */ - public occurredAt?: (google.protobuf.ITimestamp|null); - - /** WorkflowExecutionEvent outputUri. */ - public outputUri: string; - - /** WorkflowExecutionEvent error. */ - public error?: (flyteidl.core.IExecutionError|null); - - /** WorkflowExecutionEvent outputData. */ - public outputData?: (flyteidl.core.ILiteralMap|null); - - /** WorkflowExecutionEvent outputResult. */ - public outputResult?: ("outputUri"|"error"|"outputData"); - - /** - * Creates a new WorkflowExecutionEvent instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionEvent instance - */ - public static create(properties?: flyteidl.event.IWorkflowExecutionEvent): flyteidl.event.WorkflowExecutionEvent; - - /** - * Encodes the specified WorkflowExecutionEvent message. Does not implicitly {@link flyteidl.event.WorkflowExecutionEvent.verify|verify} messages. - * @param message WorkflowExecutionEvent message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.IWorkflowExecutionEvent, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionEvent message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionEvent - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.WorkflowExecutionEvent; - - /** - * Verifies a WorkflowExecutionEvent message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionEvent. */ - interface INodeExecutionEvent { - - /** NodeExecutionEvent id */ - id?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** NodeExecutionEvent producerId */ - producerId?: (string|null); - - /** NodeExecutionEvent phase */ - phase?: (flyteidl.core.NodeExecution.Phase|null); - - /** NodeExecutionEvent occurredAt */ - occurredAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionEvent inputUri */ - inputUri?: (string|null); - - /** NodeExecutionEvent inputData */ - inputData?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionEvent outputUri */ - outputUri?: (string|null); - - /** NodeExecutionEvent error */ - error?: (flyteidl.core.IExecutionError|null); - - /** NodeExecutionEvent outputData */ - outputData?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionEvent workflowNodeMetadata */ - workflowNodeMetadata?: (flyteidl.event.IWorkflowNodeMetadata|null); - - /** NodeExecutionEvent taskNodeMetadata */ - taskNodeMetadata?: (flyteidl.event.ITaskNodeMetadata|null); - - /** NodeExecutionEvent parentTaskMetadata */ - parentTaskMetadata?: (flyteidl.event.IParentTaskExecutionMetadata|null); - - /** NodeExecutionEvent parentNodeMetadata */ - parentNodeMetadata?: (flyteidl.event.IParentNodeExecutionMetadata|null); - - /** NodeExecutionEvent retryGroup */ - retryGroup?: (string|null); - - /** NodeExecutionEvent specNodeId */ - specNodeId?: (string|null); - - /** NodeExecutionEvent nodeName */ - nodeName?: (string|null); - - /** NodeExecutionEvent eventVersion */ - eventVersion?: (number|null); - - /** NodeExecutionEvent isParent */ - isParent?: (boolean|null); - - /** NodeExecutionEvent isDynamic */ - isDynamic?: (boolean|null); - - /** NodeExecutionEvent deckUri */ - deckUri?: (string|null); - - /** NodeExecutionEvent reportedAt */ - reportedAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionEvent isArray */ - isArray?: (boolean|null); - } - - /** Represents a NodeExecutionEvent. */ - class NodeExecutionEvent implements INodeExecutionEvent { - - /** - * Constructs a new NodeExecutionEvent. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.INodeExecutionEvent); - - /** NodeExecutionEvent id. */ - public id?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** NodeExecutionEvent producerId. */ - public producerId: string; - - /** NodeExecutionEvent phase. */ - public phase: flyteidl.core.NodeExecution.Phase; - - /** NodeExecutionEvent occurredAt. */ - public occurredAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionEvent inputUri. */ - public inputUri: string; - - /** NodeExecutionEvent inputData. */ - public inputData?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionEvent outputUri. */ - public outputUri: string; - - /** NodeExecutionEvent error. */ - public error?: (flyteidl.core.IExecutionError|null); - - /** NodeExecutionEvent outputData. */ - public outputData?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionEvent workflowNodeMetadata. */ - public workflowNodeMetadata?: (flyteidl.event.IWorkflowNodeMetadata|null); - - /** NodeExecutionEvent taskNodeMetadata. */ - public taskNodeMetadata?: (flyteidl.event.ITaskNodeMetadata|null); - - /** NodeExecutionEvent parentTaskMetadata. */ - public parentTaskMetadata?: (flyteidl.event.IParentTaskExecutionMetadata|null); - - /** NodeExecutionEvent parentNodeMetadata. */ - public parentNodeMetadata?: (flyteidl.event.IParentNodeExecutionMetadata|null); - - /** NodeExecutionEvent retryGroup. */ - public retryGroup: string; - - /** NodeExecutionEvent specNodeId. */ - public specNodeId: string; - - /** NodeExecutionEvent nodeName. */ - public nodeName: string; - - /** NodeExecutionEvent eventVersion. */ - public eventVersion: number; - - /** NodeExecutionEvent isParent. */ - public isParent: boolean; - - /** NodeExecutionEvent isDynamic. */ - public isDynamic: boolean; - - /** NodeExecutionEvent deckUri. */ - public deckUri: string; - - /** NodeExecutionEvent reportedAt. */ - public reportedAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionEvent isArray. */ - public isArray: boolean; - - /** NodeExecutionEvent inputValue. */ - public inputValue?: ("inputUri"|"inputData"); - - /** NodeExecutionEvent outputResult. */ - public outputResult?: ("outputUri"|"error"|"outputData"); - - /** NodeExecutionEvent targetMetadata. */ - public targetMetadata?: ("workflowNodeMetadata"|"taskNodeMetadata"); - - /** - * Creates a new NodeExecutionEvent instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionEvent instance - */ - public static create(properties?: flyteidl.event.INodeExecutionEvent): flyteidl.event.NodeExecutionEvent; - - /** - * Encodes the specified NodeExecutionEvent message. Does not implicitly {@link flyteidl.event.NodeExecutionEvent.verify|verify} messages. - * @param message NodeExecutionEvent message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.INodeExecutionEvent, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionEvent message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionEvent - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.NodeExecutionEvent; - - /** - * Verifies a NodeExecutionEvent message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowNodeMetadata. */ - interface IWorkflowNodeMetadata { - - /** WorkflowNodeMetadata executionId */ - executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - } - - /** Represents a WorkflowNodeMetadata. */ - class WorkflowNodeMetadata implements IWorkflowNodeMetadata { - - /** - * Constructs a new WorkflowNodeMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.IWorkflowNodeMetadata); - - /** WorkflowNodeMetadata executionId. */ - public executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** - * Creates a new WorkflowNodeMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowNodeMetadata instance - */ - public static create(properties?: flyteidl.event.IWorkflowNodeMetadata): flyteidl.event.WorkflowNodeMetadata; - - /** - * Encodes the specified WorkflowNodeMetadata message. Does not implicitly {@link flyteidl.event.WorkflowNodeMetadata.verify|verify} messages. - * @param message WorkflowNodeMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.IWorkflowNodeMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowNodeMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.WorkflowNodeMetadata; - - /** - * Verifies a WorkflowNodeMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskNodeMetadata. */ - interface ITaskNodeMetadata { - - /** TaskNodeMetadata cacheStatus */ - cacheStatus?: (flyteidl.core.CatalogCacheStatus|null); - - /** TaskNodeMetadata catalogKey */ - catalogKey?: (flyteidl.core.ICatalogMetadata|null); - - /** TaskNodeMetadata reservationStatus */ - reservationStatus?: (flyteidl.core.CatalogReservation.Status|null); - - /** TaskNodeMetadata checkpointUri */ - checkpointUri?: (string|null); - - /** TaskNodeMetadata dynamicWorkflow */ - dynamicWorkflow?: (flyteidl.event.IDynamicWorkflowNodeMetadata|null); - } - - /** Represents a TaskNodeMetadata. */ - class TaskNodeMetadata implements ITaskNodeMetadata { - - /** - * Constructs a new TaskNodeMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.ITaskNodeMetadata); - - /** TaskNodeMetadata cacheStatus. */ - public cacheStatus: flyteidl.core.CatalogCacheStatus; - - /** TaskNodeMetadata catalogKey. */ - public catalogKey?: (flyteidl.core.ICatalogMetadata|null); - - /** TaskNodeMetadata reservationStatus. */ - public reservationStatus: flyteidl.core.CatalogReservation.Status; - - /** TaskNodeMetadata checkpointUri. */ - public checkpointUri: string; - - /** TaskNodeMetadata dynamicWorkflow. */ - public dynamicWorkflow?: (flyteidl.event.IDynamicWorkflowNodeMetadata|null); - - /** - * Creates a new TaskNodeMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskNodeMetadata instance - */ - public static create(properties?: flyteidl.event.ITaskNodeMetadata): flyteidl.event.TaskNodeMetadata; - - /** - * Encodes the specified TaskNodeMetadata message. Does not implicitly {@link flyteidl.event.TaskNodeMetadata.verify|verify} messages. - * @param message TaskNodeMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.ITaskNodeMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskNodeMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.TaskNodeMetadata; - - /** - * Verifies a TaskNodeMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DynamicWorkflowNodeMetadata. */ - interface IDynamicWorkflowNodeMetadata { - - /** DynamicWorkflowNodeMetadata id */ - id?: (flyteidl.core.IIdentifier|null); - - /** DynamicWorkflowNodeMetadata compiledWorkflow */ - compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null); - - /** DynamicWorkflowNodeMetadata dynamicJobSpecUri */ - dynamicJobSpecUri?: (string|null); - } - - /** Represents a DynamicWorkflowNodeMetadata. */ - class DynamicWorkflowNodeMetadata implements IDynamicWorkflowNodeMetadata { - - /** - * Constructs a new DynamicWorkflowNodeMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.IDynamicWorkflowNodeMetadata); - - /** DynamicWorkflowNodeMetadata id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** DynamicWorkflowNodeMetadata compiledWorkflow. */ - public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null); - - /** DynamicWorkflowNodeMetadata dynamicJobSpecUri. */ - public dynamicJobSpecUri: string; - - /** - * Creates a new DynamicWorkflowNodeMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns DynamicWorkflowNodeMetadata instance - */ - public static create(properties?: flyteidl.event.IDynamicWorkflowNodeMetadata): flyteidl.event.DynamicWorkflowNodeMetadata; - - /** - * Encodes the specified DynamicWorkflowNodeMetadata message. Does not implicitly {@link flyteidl.event.DynamicWorkflowNodeMetadata.verify|verify} messages. - * @param message DynamicWorkflowNodeMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.IDynamicWorkflowNodeMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DynamicWorkflowNodeMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DynamicWorkflowNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.DynamicWorkflowNodeMetadata; - - /** - * Verifies a DynamicWorkflowNodeMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ParentTaskExecutionMetadata. */ - interface IParentTaskExecutionMetadata { - - /** ParentTaskExecutionMetadata id */ - id?: (flyteidl.core.ITaskExecutionIdentifier|null); - } - - /** Represents a ParentTaskExecutionMetadata. */ - class ParentTaskExecutionMetadata implements IParentTaskExecutionMetadata { - - /** - * Constructs a new ParentTaskExecutionMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.IParentTaskExecutionMetadata); - - /** ParentTaskExecutionMetadata id. */ - public id?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** - * Creates a new ParentTaskExecutionMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns ParentTaskExecutionMetadata instance - */ - public static create(properties?: flyteidl.event.IParentTaskExecutionMetadata): flyteidl.event.ParentTaskExecutionMetadata; - - /** - * Encodes the specified ParentTaskExecutionMetadata message. Does not implicitly {@link flyteidl.event.ParentTaskExecutionMetadata.verify|verify} messages. - * @param message ParentTaskExecutionMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.IParentTaskExecutionMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ParentTaskExecutionMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ParentTaskExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.ParentTaskExecutionMetadata; - - /** - * Verifies a ParentTaskExecutionMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ParentNodeExecutionMetadata. */ - interface IParentNodeExecutionMetadata { - - /** ParentNodeExecutionMetadata nodeId */ - nodeId?: (string|null); - } - - /** Represents a ParentNodeExecutionMetadata. */ - class ParentNodeExecutionMetadata implements IParentNodeExecutionMetadata { - - /** - * Constructs a new ParentNodeExecutionMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.IParentNodeExecutionMetadata); - - /** ParentNodeExecutionMetadata nodeId. */ - public nodeId: string; - - /** - * Creates a new ParentNodeExecutionMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns ParentNodeExecutionMetadata instance - */ - public static create(properties?: flyteidl.event.IParentNodeExecutionMetadata): flyteidl.event.ParentNodeExecutionMetadata; - - /** - * Encodes the specified ParentNodeExecutionMetadata message. Does not implicitly {@link flyteidl.event.ParentNodeExecutionMetadata.verify|verify} messages. - * @param message ParentNodeExecutionMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.IParentNodeExecutionMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ParentNodeExecutionMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ParentNodeExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.ParentNodeExecutionMetadata; - - /** - * Verifies a ParentNodeExecutionMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EventReason. */ - interface IEventReason { - - /** EventReason reason */ - reason?: (string|null); - - /** EventReason occurredAt */ - occurredAt?: (google.protobuf.ITimestamp|null); - } - - /** Represents an EventReason. */ - class EventReason implements IEventReason { - - /** - * Constructs a new EventReason. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.IEventReason); - - /** EventReason reason. */ - public reason: string; - - /** EventReason occurredAt. */ - public occurredAt?: (google.protobuf.ITimestamp|null); - - /** - * Creates a new EventReason instance using the specified properties. - * @param [properties] Properties to set - * @returns EventReason instance - */ - public static create(properties?: flyteidl.event.IEventReason): flyteidl.event.EventReason; - - /** - * Encodes the specified EventReason message. Does not implicitly {@link flyteidl.event.EventReason.verify|verify} messages. - * @param message EventReason message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.IEventReason, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EventReason message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EventReason - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.EventReason; - - /** - * Verifies an EventReason message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionEvent. */ - interface ITaskExecutionEvent { - - /** TaskExecutionEvent taskId */ - taskId?: (flyteidl.core.IIdentifier|null); - - /** TaskExecutionEvent parentNodeExecutionId */ - parentNodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** TaskExecutionEvent retryAttempt */ - retryAttempt?: (number|null); - - /** TaskExecutionEvent phase */ - phase?: (flyteidl.core.TaskExecution.Phase|null); - - /** TaskExecutionEvent producerId */ - producerId?: (string|null); - - /** TaskExecutionEvent logs */ - logs?: (flyteidl.core.ITaskLog[]|null); - - /** TaskExecutionEvent occurredAt */ - occurredAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionEvent inputUri */ - inputUri?: (string|null); - - /** TaskExecutionEvent inputData */ - inputData?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionEvent outputUri */ - outputUri?: (string|null); - - /** TaskExecutionEvent error */ - error?: (flyteidl.core.IExecutionError|null); - - /** TaskExecutionEvent outputData */ - outputData?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionEvent customInfo */ - customInfo?: (google.protobuf.IStruct|null); - - /** TaskExecutionEvent phaseVersion */ - phaseVersion?: (number|null); - - /** TaskExecutionEvent reason */ - reason?: (string|null); - - /** TaskExecutionEvent reasons */ - reasons?: (flyteidl.event.IEventReason[]|null); - - /** TaskExecutionEvent taskType */ - taskType?: (string|null); - - /** TaskExecutionEvent metadata */ - metadata?: (flyteidl.event.ITaskExecutionMetadata|null); - - /** TaskExecutionEvent eventVersion */ - eventVersion?: (number|null); - - /** TaskExecutionEvent reportedAt */ - reportedAt?: (google.protobuf.ITimestamp|null); - } - - /** Represents a TaskExecutionEvent. */ - class TaskExecutionEvent implements ITaskExecutionEvent { - - /** - * Constructs a new TaskExecutionEvent. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.ITaskExecutionEvent); - - /** TaskExecutionEvent taskId. */ - public taskId?: (flyteidl.core.IIdentifier|null); - - /** TaskExecutionEvent parentNodeExecutionId. */ - public parentNodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** TaskExecutionEvent retryAttempt. */ - public retryAttempt: number; - - /** TaskExecutionEvent phase. */ - public phase: flyteidl.core.TaskExecution.Phase; - - /** TaskExecutionEvent producerId. */ - public producerId: string; - - /** TaskExecutionEvent logs. */ - public logs: flyteidl.core.ITaskLog[]; - - /** TaskExecutionEvent occurredAt. */ - public occurredAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionEvent inputUri. */ - public inputUri: string; - - /** TaskExecutionEvent inputData. */ - public inputData?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionEvent outputUri. */ - public outputUri: string; - - /** TaskExecutionEvent error. */ - public error?: (flyteidl.core.IExecutionError|null); - - /** TaskExecutionEvent outputData. */ - public outputData?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionEvent customInfo. */ - public customInfo?: (google.protobuf.IStruct|null); - - /** TaskExecutionEvent phaseVersion. */ - public phaseVersion: number; - - /** TaskExecutionEvent reason. */ - public reason: string; - - /** TaskExecutionEvent reasons. */ - public reasons: flyteidl.event.IEventReason[]; - - /** TaskExecutionEvent taskType. */ - public taskType: string; - - /** TaskExecutionEvent metadata. */ - public metadata?: (flyteidl.event.ITaskExecutionMetadata|null); - - /** TaskExecutionEvent eventVersion. */ - public eventVersion: number; - - /** TaskExecutionEvent reportedAt. */ - public reportedAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionEvent inputValue. */ - public inputValue?: ("inputUri"|"inputData"); - - /** TaskExecutionEvent outputResult. */ - public outputResult?: ("outputUri"|"error"|"outputData"); - - /** - * Creates a new TaskExecutionEvent instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionEvent instance - */ - public static create(properties?: flyteidl.event.ITaskExecutionEvent): flyteidl.event.TaskExecutionEvent; - - /** - * Encodes the specified TaskExecutionEvent message. Does not implicitly {@link flyteidl.event.TaskExecutionEvent.verify|verify} messages. - * @param message TaskExecutionEvent message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.ITaskExecutionEvent, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionEvent message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionEvent - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.TaskExecutionEvent; - - /** - * Verifies a TaskExecutionEvent message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExternalResourceInfo. */ - interface IExternalResourceInfo { - - /** ExternalResourceInfo externalId */ - externalId?: (string|null); - - /** ExternalResourceInfo index */ - index?: (number|null); - - /** ExternalResourceInfo retryAttempt */ - retryAttempt?: (number|null); - - /** ExternalResourceInfo phase */ - phase?: (flyteidl.core.TaskExecution.Phase|null); - - /** ExternalResourceInfo cacheStatus */ - cacheStatus?: (flyteidl.core.CatalogCacheStatus|null); - - /** ExternalResourceInfo logs */ - logs?: (flyteidl.core.ITaskLog[]|null); - } - - /** Represents an ExternalResourceInfo. */ - class ExternalResourceInfo implements IExternalResourceInfo { - - /** - * Constructs a new ExternalResourceInfo. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.IExternalResourceInfo); - - /** ExternalResourceInfo externalId. */ - public externalId: string; - - /** ExternalResourceInfo index. */ - public index: number; - - /** ExternalResourceInfo retryAttempt. */ - public retryAttempt: number; - - /** ExternalResourceInfo phase. */ - public phase: flyteidl.core.TaskExecution.Phase; - - /** ExternalResourceInfo cacheStatus. */ - public cacheStatus: flyteidl.core.CatalogCacheStatus; - - /** ExternalResourceInfo logs. */ - public logs: flyteidl.core.ITaskLog[]; - - /** - * Creates a new ExternalResourceInfo instance using the specified properties. - * @param [properties] Properties to set - * @returns ExternalResourceInfo instance - */ - public static create(properties?: flyteidl.event.IExternalResourceInfo): flyteidl.event.ExternalResourceInfo; - - /** - * Encodes the specified ExternalResourceInfo message. Does not implicitly {@link flyteidl.event.ExternalResourceInfo.verify|verify} messages. - * @param message ExternalResourceInfo message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.IExternalResourceInfo, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExternalResourceInfo message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExternalResourceInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.ExternalResourceInfo; - - /** - * Verifies an ExternalResourceInfo message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ResourcePoolInfo. */ - interface IResourcePoolInfo { - - /** ResourcePoolInfo allocationToken */ - allocationToken?: (string|null); - - /** ResourcePoolInfo namespace */ - namespace?: (string|null); - } - - /** Represents a ResourcePoolInfo. */ - class ResourcePoolInfo implements IResourcePoolInfo { - - /** - * Constructs a new ResourcePoolInfo. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.IResourcePoolInfo); - - /** ResourcePoolInfo allocationToken. */ - public allocationToken: string; - - /** ResourcePoolInfo namespace. */ - public namespace: string; - - /** - * Creates a new ResourcePoolInfo instance using the specified properties. - * @param [properties] Properties to set - * @returns ResourcePoolInfo instance - */ - public static create(properties?: flyteidl.event.IResourcePoolInfo): flyteidl.event.ResourcePoolInfo; - - /** - * Encodes the specified ResourcePoolInfo message. Does not implicitly {@link flyteidl.event.ResourcePoolInfo.verify|verify} messages. - * @param message ResourcePoolInfo message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.IResourcePoolInfo, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ResourcePoolInfo message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ResourcePoolInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.ResourcePoolInfo; - - /** - * Verifies a ResourcePoolInfo message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionMetadata. */ - interface ITaskExecutionMetadata { - - /** TaskExecutionMetadata generatedName */ - generatedName?: (string|null); - - /** TaskExecutionMetadata externalResources */ - externalResources?: (flyteidl.event.IExternalResourceInfo[]|null); - - /** TaskExecutionMetadata resourcePoolInfo */ - resourcePoolInfo?: (flyteidl.event.IResourcePoolInfo[]|null); - - /** TaskExecutionMetadata pluginIdentifier */ - pluginIdentifier?: (string|null); - - /** TaskExecutionMetadata instanceClass */ - instanceClass?: (flyteidl.event.TaskExecutionMetadata.InstanceClass|null); - } - - /** Represents a TaskExecutionMetadata. */ - class TaskExecutionMetadata implements ITaskExecutionMetadata { - - /** - * Constructs a new TaskExecutionMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.event.ITaskExecutionMetadata); - - /** TaskExecutionMetadata generatedName. */ - public generatedName: string; - - /** TaskExecutionMetadata externalResources. */ - public externalResources: flyteidl.event.IExternalResourceInfo[]; - - /** TaskExecutionMetadata resourcePoolInfo. */ - public resourcePoolInfo: flyteidl.event.IResourcePoolInfo[]; - - /** TaskExecutionMetadata pluginIdentifier. */ - public pluginIdentifier: string; - - /** TaskExecutionMetadata instanceClass. */ - public instanceClass: flyteidl.event.TaskExecutionMetadata.InstanceClass; - - /** - * Creates a new TaskExecutionMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionMetadata instance - */ - public static create(properties?: flyteidl.event.ITaskExecutionMetadata): flyteidl.event.TaskExecutionMetadata; - - /** - * Encodes the specified TaskExecutionMetadata message. Does not implicitly {@link flyteidl.event.TaskExecutionMetadata.verify|verify} messages. - * @param message TaskExecutionMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.event.ITaskExecutionMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.event.TaskExecutionMetadata; - - /** - * Verifies a TaskExecutionMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace TaskExecutionMetadata { - - /** InstanceClass enum. */ - enum InstanceClass { - DEFAULT = 0, - INTERRUPTIBLE = 1 - } - } - } - - /** Namespace admin. */ - namespace admin { - - /** State enum. */ - enum State { - RETRYABLE_FAILURE = 0, - PERMANENT_FAILURE = 1, - PENDING = 2, - RUNNING = 3, - SUCCEEDED = 4 - } - - /** Properties of a TaskExecutionMetadata. */ - interface ITaskExecutionMetadata { - - /** TaskExecutionMetadata taskExecutionId */ - taskExecutionId?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** TaskExecutionMetadata namespace */ - namespace?: (string|null); - - /** TaskExecutionMetadata labels */ - labels?: ({ [k: string]: string }|null); - - /** TaskExecutionMetadata annotations */ - annotations?: ({ [k: string]: string }|null); - - /** TaskExecutionMetadata k8sServiceAccount */ - k8sServiceAccount?: (string|null); - - /** TaskExecutionMetadata environmentVariables */ - environmentVariables?: ({ [k: string]: string }|null); - } - - /** Represents a TaskExecutionMetadata. */ - class TaskExecutionMetadata implements ITaskExecutionMetadata { - - /** - * Constructs a new TaskExecutionMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionMetadata); - - /** TaskExecutionMetadata taskExecutionId. */ - public taskExecutionId?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** TaskExecutionMetadata namespace. */ - public namespace: string; - - /** TaskExecutionMetadata labels. */ - public labels: { [k: string]: string }; - - /** TaskExecutionMetadata annotations. */ - public annotations: { [k: string]: string }; - - /** TaskExecutionMetadata k8sServiceAccount. */ - public k8sServiceAccount: string; - - /** TaskExecutionMetadata environmentVariables. */ - public environmentVariables: { [k: string]: string }; - - /** - * Creates a new TaskExecutionMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionMetadata instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionMetadata): flyteidl.admin.TaskExecutionMetadata; - - /** - * Encodes the specified TaskExecutionMetadata message. Does not implicitly {@link flyteidl.admin.TaskExecutionMetadata.verify|verify} messages. - * @param message TaskExecutionMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionMetadata; - - /** - * Verifies a TaskExecutionMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CreateTaskRequest. */ - interface ICreateTaskRequest { - - /** CreateTaskRequest inputs */ - inputs?: (flyteidl.core.ILiteralMap|null); - - /** CreateTaskRequest template */ - template?: (flyteidl.core.ITaskTemplate|null); - - /** CreateTaskRequest outputPrefix */ - outputPrefix?: (string|null); - - /** CreateTaskRequest taskExecutionMetadata */ - taskExecutionMetadata?: (flyteidl.admin.ITaskExecutionMetadata|null); - } - - /** Represents a CreateTaskRequest. */ - class CreateTaskRequest implements ICreateTaskRequest { - - /** - * Constructs a new CreateTaskRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ICreateTaskRequest); - - /** CreateTaskRequest inputs. */ - public inputs?: (flyteidl.core.ILiteralMap|null); - - /** CreateTaskRequest template. */ - public template?: (flyteidl.core.ITaskTemplate|null); - - /** CreateTaskRequest outputPrefix. */ - public outputPrefix: string; - - /** CreateTaskRequest taskExecutionMetadata. */ - public taskExecutionMetadata?: (flyteidl.admin.ITaskExecutionMetadata|null); - - /** - * Creates a new CreateTaskRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateTaskRequest instance - */ - public static create(properties?: flyteidl.admin.ICreateTaskRequest): flyteidl.admin.CreateTaskRequest; - - /** - * Encodes the specified CreateTaskRequest message. Does not implicitly {@link flyteidl.admin.CreateTaskRequest.verify|verify} messages. - * @param message CreateTaskRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ICreateTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateTaskRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateTaskRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.CreateTaskRequest; - - /** - * Verifies a CreateTaskRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CreateTaskResponse. */ - interface ICreateTaskResponse { - - /** CreateTaskResponse resourceMeta */ - resourceMeta?: (Uint8Array|null); - - /** CreateTaskResponse resource */ - resource?: (flyteidl.admin.IResource|null); - } - - /** Represents a CreateTaskResponse. */ - class CreateTaskResponse implements ICreateTaskResponse { - - /** - * Constructs a new CreateTaskResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ICreateTaskResponse); - - /** CreateTaskResponse resourceMeta. */ - public resourceMeta: Uint8Array; - - /** CreateTaskResponse resource. */ - public resource?: (flyteidl.admin.IResource|null); - - /** CreateTaskResponse res. */ - public res?: ("resourceMeta"|"resource"); - - /** - * Creates a new CreateTaskResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateTaskResponse instance - */ - public static create(properties?: flyteidl.admin.ICreateTaskResponse): flyteidl.admin.CreateTaskResponse; - - /** - * Encodes the specified CreateTaskResponse message. Does not implicitly {@link flyteidl.admin.CreateTaskResponse.verify|verify} messages. - * @param message CreateTaskResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ICreateTaskResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateTaskResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateTaskResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.CreateTaskResponse; - - /** - * Verifies a CreateTaskResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetTaskRequest. */ - interface IGetTaskRequest { - - /** GetTaskRequest taskType */ - taskType?: (string|null); - - /** GetTaskRequest resourceMeta */ - resourceMeta?: (Uint8Array|null); - } - - /** Represents a GetTaskRequest. */ - class GetTaskRequest implements IGetTaskRequest { - - /** - * Constructs a new GetTaskRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetTaskRequest); - - /** GetTaskRequest taskType. */ - public taskType: string; - - /** GetTaskRequest resourceMeta. */ - public resourceMeta: Uint8Array; - - /** - * Creates a new GetTaskRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns GetTaskRequest instance - */ - public static create(properties?: flyteidl.admin.IGetTaskRequest): flyteidl.admin.GetTaskRequest; - - /** - * Encodes the specified GetTaskRequest message. Does not implicitly {@link flyteidl.admin.GetTaskRequest.verify|verify} messages. - * @param message GetTaskRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetTaskRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetTaskRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetTaskRequest; - - /** - * Verifies a GetTaskRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetTaskResponse. */ - interface IGetTaskResponse { - - /** GetTaskResponse resource */ - resource?: (flyteidl.admin.IResource|null); - - /** GetTaskResponse logLinks */ - logLinks?: (flyteidl.core.ITaskLog[]|null); - } - - /** Represents a GetTaskResponse. */ - class GetTaskResponse implements IGetTaskResponse { - - /** - * Constructs a new GetTaskResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetTaskResponse); - - /** GetTaskResponse resource. */ - public resource?: (flyteidl.admin.IResource|null); - - /** GetTaskResponse logLinks. */ - public logLinks: flyteidl.core.ITaskLog[]; - - /** - * Creates a new GetTaskResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns GetTaskResponse instance - */ - public static create(properties?: flyteidl.admin.IGetTaskResponse): flyteidl.admin.GetTaskResponse; - - /** - * Encodes the specified GetTaskResponse message. Does not implicitly {@link flyteidl.admin.GetTaskResponse.verify|verify} messages. - * @param message GetTaskResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetTaskResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetTaskResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetTaskResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetTaskResponse; - - /** - * Verifies a GetTaskResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Resource. */ - interface IResource { - - /** Resource state */ - state?: (flyteidl.admin.State|null); - - /** Resource outputs */ - outputs?: (flyteidl.core.ILiteralMap|null); - - /** Resource message */ - message?: (string|null); - - /** Resource logLinks */ - logLinks?: (flyteidl.core.ITaskLog[]|null); - } - - /** Represents a Resource. */ - class Resource implements IResource { - - /** - * Constructs a new Resource. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IResource); - - /** Resource state. */ - public state: flyteidl.admin.State; - - /** Resource outputs. */ - public outputs?: (flyteidl.core.ILiteralMap|null); - - /** Resource message. */ - public message: string; - - /** Resource logLinks. */ - public logLinks: flyteidl.core.ITaskLog[]; - - /** - * Creates a new Resource instance using the specified properties. - * @param [properties] Properties to set - * @returns Resource instance - */ - public static create(properties?: flyteidl.admin.IResource): flyteidl.admin.Resource; - - /** - * Encodes the specified Resource message. Does not implicitly {@link flyteidl.admin.Resource.verify|verify} messages. - * @param message Resource message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IResource, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Resource message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Resource - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Resource; - - /** - * Verifies a Resource message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DeleteTaskRequest. */ - interface IDeleteTaskRequest { - - /** DeleteTaskRequest taskType */ - taskType?: (string|null); - - /** DeleteTaskRequest resourceMeta */ - resourceMeta?: (Uint8Array|null); - } - - /** Represents a DeleteTaskRequest. */ - class DeleteTaskRequest implements IDeleteTaskRequest { - - /** - * Constructs a new DeleteTaskRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDeleteTaskRequest); - - /** DeleteTaskRequest taskType. */ - public taskType: string; - - /** DeleteTaskRequest resourceMeta. */ - public resourceMeta: Uint8Array; - - /** - * Creates a new DeleteTaskRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns DeleteTaskRequest instance - */ - public static create(properties?: flyteidl.admin.IDeleteTaskRequest): flyteidl.admin.DeleteTaskRequest; - - /** - * Encodes the specified DeleteTaskRequest message. Does not implicitly {@link flyteidl.admin.DeleteTaskRequest.verify|verify} messages. - * @param message DeleteTaskRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDeleteTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DeleteTaskRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DeleteTaskRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DeleteTaskRequest; - - /** - * Verifies a DeleteTaskRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DeleteTaskResponse. */ - interface IDeleteTaskResponse { - } - - /** Represents a DeleteTaskResponse. */ - class DeleteTaskResponse implements IDeleteTaskResponse { - - /** - * Constructs a new DeleteTaskResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDeleteTaskResponse); - - /** - * Creates a new DeleteTaskResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns DeleteTaskResponse instance - */ - public static create(properties?: flyteidl.admin.IDeleteTaskResponse): flyteidl.admin.DeleteTaskResponse; - - /** - * Encodes the specified DeleteTaskResponse message. Does not implicitly {@link flyteidl.admin.DeleteTaskResponse.verify|verify} messages. - * @param message DeleteTaskResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDeleteTaskResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DeleteTaskResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DeleteTaskResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DeleteTaskResponse; - - /** - * Verifies a DeleteTaskResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Agent. */ - interface IAgent { - - /** Agent name */ - name?: (string|null); - - /** Agent supportedTaskTypes */ - supportedTaskTypes?: (string[]|null); - } - - /** Represents an Agent. */ - class Agent implements IAgent { - - /** - * Constructs a new Agent. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IAgent); - - /** Agent name. */ - public name: string; - - /** Agent supportedTaskTypes. */ - public supportedTaskTypes: string[]; - - /** - * Creates a new Agent instance using the specified properties. - * @param [properties] Properties to set - * @returns Agent instance - */ - public static create(properties?: flyteidl.admin.IAgent): flyteidl.admin.Agent; - - /** - * Encodes the specified Agent message. Does not implicitly {@link flyteidl.admin.Agent.verify|verify} messages. - * @param message Agent message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IAgent, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Agent message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Agent - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Agent; - - /** - * Verifies an Agent message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetAgentRequest. */ - interface IGetAgentRequest { - - /** GetAgentRequest name */ - name?: (string|null); - } - - /** Represents a GetAgentRequest. */ - class GetAgentRequest implements IGetAgentRequest { - - /** - * Constructs a new GetAgentRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetAgentRequest); - - /** GetAgentRequest name. */ - public name: string; - - /** - * Creates a new GetAgentRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns GetAgentRequest instance - */ - public static create(properties?: flyteidl.admin.IGetAgentRequest): flyteidl.admin.GetAgentRequest; - - /** - * Encodes the specified GetAgentRequest message. Does not implicitly {@link flyteidl.admin.GetAgentRequest.verify|verify} messages. - * @param message GetAgentRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetAgentRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetAgentRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetAgentRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetAgentRequest; - - /** - * Verifies a GetAgentRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetAgentResponse. */ - interface IGetAgentResponse { - - /** GetAgentResponse agent */ - agent?: (flyteidl.admin.IAgent|null); - } - - /** Represents a GetAgentResponse. */ - class GetAgentResponse implements IGetAgentResponse { - - /** - * Constructs a new GetAgentResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetAgentResponse); - - /** GetAgentResponse agent. */ - public agent?: (flyteidl.admin.IAgent|null); - - /** - * Creates a new GetAgentResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns GetAgentResponse instance - */ - public static create(properties?: flyteidl.admin.IGetAgentResponse): flyteidl.admin.GetAgentResponse; - - /** - * Encodes the specified GetAgentResponse message. Does not implicitly {@link flyteidl.admin.GetAgentResponse.verify|verify} messages. - * @param message GetAgentResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetAgentResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetAgentResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetAgentResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetAgentResponse; - - /** - * Verifies a GetAgentResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ListAgentsRequest. */ - interface IListAgentsRequest { - } - - /** Represents a ListAgentsRequest. */ - class ListAgentsRequest implements IListAgentsRequest { - - /** - * Constructs a new ListAgentsRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IListAgentsRequest); - - /** - * Creates a new ListAgentsRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ListAgentsRequest instance - */ - public static create(properties?: flyteidl.admin.IListAgentsRequest): flyteidl.admin.ListAgentsRequest; - - /** - * Encodes the specified ListAgentsRequest message. Does not implicitly {@link flyteidl.admin.ListAgentsRequest.verify|verify} messages. - * @param message ListAgentsRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IListAgentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ListAgentsRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ListAgentsRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ListAgentsRequest; - - /** - * Verifies a ListAgentsRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ListAgentsResponse. */ - interface IListAgentsResponse { - - /** ListAgentsResponse agents */ - agents?: (flyteidl.admin.IAgent[]|null); - } - - /** Represents a ListAgentsResponse. */ - class ListAgentsResponse implements IListAgentsResponse { - - /** - * Constructs a new ListAgentsResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IListAgentsResponse); - - /** ListAgentsResponse agents. */ - public agents: flyteidl.admin.IAgent[]; - - /** - * Creates a new ListAgentsResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ListAgentsResponse instance - */ - public static create(properties?: flyteidl.admin.IListAgentsResponse): flyteidl.admin.ListAgentsResponse; - - /** - * Encodes the specified ListAgentsResponse message. Does not implicitly {@link flyteidl.admin.ListAgentsResponse.verify|verify} messages. - * @param message ListAgentsResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IListAgentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ListAgentsResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ListAgentsResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ListAgentsResponse; - - /** - * Verifies a ListAgentsResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetTaskMetricsRequest. */ - interface IGetTaskMetricsRequest { - - /** GetTaskMetricsRequest taskType */ - taskType?: (string|null); - - /** GetTaskMetricsRequest resourceMeta */ - resourceMeta?: (Uint8Array|null); - - /** GetTaskMetricsRequest queries */ - queries?: (string[]|null); - - /** GetTaskMetricsRequest startTime */ - startTime?: (google.protobuf.ITimestamp|null); - - /** GetTaskMetricsRequest endTime */ - endTime?: (google.protobuf.ITimestamp|null); - - /** GetTaskMetricsRequest step */ - step?: (google.protobuf.IDuration|null); - } - - /** Represents a GetTaskMetricsRequest. */ - class GetTaskMetricsRequest implements IGetTaskMetricsRequest { - - /** - * Constructs a new GetTaskMetricsRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetTaskMetricsRequest); - - /** GetTaskMetricsRequest taskType. */ - public taskType: string; - - /** GetTaskMetricsRequest resourceMeta. */ - public resourceMeta: Uint8Array; - - /** GetTaskMetricsRequest queries. */ - public queries: string[]; - - /** GetTaskMetricsRequest startTime. */ - public startTime?: (google.protobuf.ITimestamp|null); - - /** GetTaskMetricsRequest endTime. */ - public endTime?: (google.protobuf.ITimestamp|null); - - /** GetTaskMetricsRequest step. */ - public step?: (google.protobuf.IDuration|null); - - /** - * Creates a new GetTaskMetricsRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns GetTaskMetricsRequest instance - */ - public static create(properties?: flyteidl.admin.IGetTaskMetricsRequest): flyteidl.admin.GetTaskMetricsRequest; - - /** - * Encodes the specified GetTaskMetricsRequest message. Does not implicitly {@link flyteidl.admin.GetTaskMetricsRequest.verify|verify} messages. - * @param message GetTaskMetricsRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetTaskMetricsRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetTaskMetricsRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetTaskMetricsRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetTaskMetricsRequest; - - /** - * Verifies a GetTaskMetricsRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetTaskMetricsResponse. */ - interface IGetTaskMetricsResponse { - - /** GetTaskMetricsResponse results */ - results?: (flyteidl.core.IExecutionMetricResult[]|null); - } - - /** Represents a GetTaskMetricsResponse. */ - class GetTaskMetricsResponse implements IGetTaskMetricsResponse { - - /** - * Constructs a new GetTaskMetricsResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetTaskMetricsResponse); - - /** GetTaskMetricsResponse results. */ - public results: flyteidl.core.IExecutionMetricResult[]; - - /** - * Creates a new GetTaskMetricsResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns GetTaskMetricsResponse instance - */ - public static create(properties?: flyteidl.admin.IGetTaskMetricsResponse): flyteidl.admin.GetTaskMetricsResponse; - - /** - * Encodes the specified GetTaskMetricsResponse message. Does not implicitly {@link flyteidl.admin.GetTaskMetricsResponse.verify|verify} messages. - * @param message GetTaskMetricsResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetTaskMetricsResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetTaskMetricsResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetTaskMetricsResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetTaskMetricsResponse; - - /** - * Verifies a GetTaskMetricsResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetTaskLogsRequest. */ - interface IGetTaskLogsRequest { - - /** GetTaskLogsRequest taskType */ - taskType?: (string|null); - - /** GetTaskLogsRequest resourceMeta */ - resourceMeta?: (Uint8Array|null); - - /** GetTaskLogsRequest lines */ - lines?: (Long|null); - - /** GetTaskLogsRequest token */ - token?: (string|null); - } - - /** Represents a GetTaskLogsRequest. */ - class GetTaskLogsRequest implements IGetTaskLogsRequest { - - /** - * Constructs a new GetTaskLogsRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetTaskLogsRequest); - - /** GetTaskLogsRequest taskType. */ - public taskType: string; - - /** GetTaskLogsRequest resourceMeta. */ - public resourceMeta: Uint8Array; - - /** GetTaskLogsRequest lines. */ - public lines: Long; - - /** GetTaskLogsRequest token. */ - public token: string; - - /** - * Creates a new GetTaskLogsRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns GetTaskLogsRequest instance - */ - public static create(properties?: flyteidl.admin.IGetTaskLogsRequest): flyteidl.admin.GetTaskLogsRequest; - - /** - * Encodes the specified GetTaskLogsRequest message. Does not implicitly {@link flyteidl.admin.GetTaskLogsRequest.verify|verify} messages. - * @param message GetTaskLogsRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetTaskLogsRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetTaskLogsRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetTaskLogsRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetTaskLogsRequest; - - /** - * Verifies a GetTaskLogsRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetTaskLogsResponse. */ - interface IGetTaskLogsResponse { - - /** GetTaskLogsResponse results */ - results?: (string[]|null); - - /** GetTaskLogsResponse token */ - token?: (string|null); - } - - /** Represents a GetTaskLogsResponse. */ - class GetTaskLogsResponse implements IGetTaskLogsResponse { - - /** - * Constructs a new GetTaskLogsResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetTaskLogsResponse); - - /** GetTaskLogsResponse results. */ - public results: string[]; - - /** GetTaskLogsResponse token. */ - public token: string; - - /** - * Creates a new GetTaskLogsResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns GetTaskLogsResponse instance - */ - public static create(properties?: flyteidl.admin.IGetTaskLogsResponse): flyteidl.admin.GetTaskLogsResponse; - - /** - * Encodes the specified GetTaskLogsResponse message. Does not implicitly {@link flyteidl.admin.GetTaskLogsResponse.verify|verify} messages. - * @param message GetTaskLogsResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetTaskLogsResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetTaskLogsResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetTaskLogsResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetTaskLogsResponse; - - /** - * Verifies a GetTaskLogsResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ClusterAssignment. */ - interface IClusterAssignment { - - /** ClusterAssignment clusterPoolName */ - clusterPoolName?: (string|null); - } - - /** Represents a ClusterAssignment. */ - class ClusterAssignment implements IClusterAssignment { - - /** - * Constructs a new ClusterAssignment. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IClusterAssignment); - - /** ClusterAssignment clusterPoolName. */ - public clusterPoolName: string; - - /** - * Creates a new ClusterAssignment instance using the specified properties. - * @param [properties] Properties to set - * @returns ClusterAssignment instance - */ - public static create(properties?: flyteidl.admin.IClusterAssignment): flyteidl.admin.ClusterAssignment; - - /** - * Encodes the specified ClusterAssignment message. Does not implicitly {@link flyteidl.admin.ClusterAssignment.verify|verify} messages. - * @param message ClusterAssignment message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IClusterAssignment, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ClusterAssignment message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ClusterAssignment - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ClusterAssignment; - - /** - * Verifies a ClusterAssignment message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NamedEntityIdentifier. */ - interface INamedEntityIdentifier { - - /** NamedEntityIdentifier project */ - project?: (string|null); - - /** NamedEntityIdentifier domain */ - domain?: (string|null); - - /** NamedEntityIdentifier name */ - name?: (string|null); - - /** NamedEntityIdentifier org */ - org?: (string|null); - } - - /** Represents a NamedEntityIdentifier. */ - class NamedEntityIdentifier implements INamedEntityIdentifier { - - /** - * Constructs a new NamedEntityIdentifier. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityIdentifier); - - /** NamedEntityIdentifier project. */ - public project: string; - - /** NamedEntityIdentifier domain. */ - public domain: string; - - /** NamedEntityIdentifier name. */ - public name: string; - - /** NamedEntityIdentifier org. */ - public org: string; - - /** - * Creates a new NamedEntityIdentifier instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityIdentifier instance - */ - public static create(properties?: flyteidl.admin.INamedEntityIdentifier): flyteidl.admin.NamedEntityIdentifier; - - /** - * Encodes the specified NamedEntityIdentifier message. Does not implicitly {@link flyteidl.admin.NamedEntityIdentifier.verify|verify} messages. - * @param message NamedEntityIdentifier message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityIdentifier, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityIdentifier message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityIdentifier; - - /** - * Verifies a NamedEntityIdentifier message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** NamedEntityState enum. */ - enum NamedEntityState { - NAMED_ENTITY_ACTIVE = 0, - NAMED_ENTITY_ARCHIVED = 1, - SYSTEM_GENERATED = 2 - } - - /** Properties of a NamedEntityMetadata. */ - interface INamedEntityMetadata { - - /** NamedEntityMetadata description */ - description?: (string|null); - - /** NamedEntityMetadata state */ - state?: (flyteidl.admin.NamedEntityState|null); - } - - /** Represents a NamedEntityMetadata. */ - class NamedEntityMetadata implements INamedEntityMetadata { - - /** - * Constructs a new NamedEntityMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityMetadata); - - /** NamedEntityMetadata description. */ - public description: string; - - /** NamedEntityMetadata state. */ - public state: flyteidl.admin.NamedEntityState; - - /** - * Creates a new NamedEntityMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityMetadata instance - */ - public static create(properties?: flyteidl.admin.INamedEntityMetadata): flyteidl.admin.NamedEntityMetadata; - - /** - * Encodes the specified NamedEntityMetadata message. Does not implicitly {@link flyteidl.admin.NamedEntityMetadata.verify|verify} messages. - * @param message NamedEntityMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityMetadata; - - /** - * Verifies a NamedEntityMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NamedEntity. */ - interface INamedEntity { - - /** NamedEntity resourceType */ - resourceType?: (flyteidl.core.ResourceType|null); - - /** NamedEntity id */ - id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** NamedEntity metadata */ - metadata?: (flyteidl.admin.INamedEntityMetadata|null); - } - - /** Represents a NamedEntity. */ - class NamedEntity implements INamedEntity { - - /** - * Constructs a new NamedEntity. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntity); - - /** NamedEntity resourceType. */ - public resourceType: flyteidl.core.ResourceType; - - /** NamedEntity id. */ - public id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** NamedEntity metadata. */ - public metadata?: (flyteidl.admin.INamedEntityMetadata|null); - - /** - * Creates a new NamedEntity instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntity instance - */ - public static create(properties?: flyteidl.admin.INamedEntity): flyteidl.admin.NamedEntity; - - /** - * Encodes the specified NamedEntity message. Does not implicitly {@link flyteidl.admin.NamedEntity.verify|verify} messages. - * @param message NamedEntity message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntity, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntity message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntity - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntity; - - /** - * Verifies a NamedEntity message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Sort. */ - interface ISort { - - /** Sort key */ - key?: (string|null); - - /** Sort direction */ - direction?: (flyteidl.admin.Sort.Direction|null); - } - - /** Represents a Sort. */ - class Sort implements ISort { - - /** - * Constructs a new Sort. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISort); - - /** Sort key. */ - public key: string; - - /** Sort direction. */ - public direction: flyteidl.admin.Sort.Direction; - - /** - * Creates a new Sort instance using the specified properties. - * @param [properties] Properties to set - * @returns Sort instance - */ - public static create(properties?: flyteidl.admin.ISort): flyteidl.admin.Sort; - - /** - * Encodes the specified Sort message. Does not implicitly {@link flyteidl.admin.Sort.verify|verify} messages. - * @param message Sort message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISort, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Sort message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Sort - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Sort; - - /** - * Verifies a Sort message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace Sort { - - /** Direction enum. */ - enum Direction { - DESCENDING = 0, - ASCENDING = 1 - } - } - - /** Properties of a NamedEntityIdentifierListRequest. */ - interface INamedEntityIdentifierListRequest { - - /** NamedEntityIdentifierListRequest project */ - project?: (string|null); - - /** NamedEntityIdentifierListRequest domain */ - domain?: (string|null); - - /** NamedEntityIdentifierListRequest limit */ - limit?: (number|null); - - /** NamedEntityIdentifierListRequest token */ - token?: (string|null); - - /** NamedEntityIdentifierListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - - /** NamedEntityIdentifierListRequest filters */ - filters?: (string|null); - - /** NamedEntityIdentifierListRequest org */ - org?: (string|null); - } - - /** Represents a NamedEntityIdentifierListRequest. */ - class NamedEntityIdentifierListRequest implements INamedEntityIdentifierListRequest { - - /** - * Constructs a new NamedEntityIdentifierListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityIdentifierListRequest); - - /** NamedEntityIdentifierListRequest project. */ - public project: string; - - /** NamedEntityIdentifierListRequest domain. */ - public domain: string; - - /** NamedEntityIdentifierListRequest limit. */ - public limit: number; - - /** NamedEntityIdentifierListRequest token. */ - public token: string; - - /** NamedEntityIdentifierListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** NamedEntityIdentifierListRequest filters. */ - public filters: string; - - /** NamedEntityIdentifierListRequest org. */ - public org: string; - - /** - * Creates a new NamedEntityIdentifierListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityIdentifierListRequest instance - */ - public static create(properties?: flyteidl.admin.INamedEntityIdentifierListRequest): flyteidl.admin.NamedEntityIdentifierListRequest; - - /** - * Encodes the specified NamedEntityIdentifierListRequest message. Does not implicitly {@link flyteidl.admin.NamedEntityIdentifierListRequest.verify|verify} messages. - * @param message NamedEntityIdentifierListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityIdentifierListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityIdentifierListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityIdentifierListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityIdentifierListRequest; - - /** - * Verifies a NamedEntityIdentifierListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NamedEntityListRequest. */ - interface INamedEntityListRequest { - - /** NamedEntityListRequest resourceType */ - resourceType?: (flyteidl.core.ResourceType|null); - - /** NamedEntityListRequest project */ - project?: (string|null); - - /** NamedEntityListRequest domain */ - domain?: (string|null); - - /** NamedEntityListRequest limit */ - limit?: (number|null); - - /** NamedEntityListRequest token */ - token?: (string|null); - - /** NamedEntityListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - - /** NamedEntityListRequest filters */ - filters?: (string|null); - - /** NamedEntityListRequest org */ - org?: (string|null); - } - - /** Represents a NamedEntityListRequest. */ - class NamedEntityListRequest implements INamedEntityListRequest { - - /** - * Constructs a new NamedEntityListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityListRequest); - - /** NamedEntityListRequest resourceType. */ - public resourceType: flyteidl.core.ResourceType; - - /** NamedEntityListRequest project. */ - public project: string; - - /** NamedEntityListRequest domain. */ - public domain: string; - - /** NamedEntityListRequest limit. */ - public limit: number; - - /** NamedEntityListRequest token. */ - public token: string; - - /** NamedEntityListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** NamedEntityListRequest filters. */ - public filters: string; - - /** NamedEntityListRequest org. */ - public org: string; - - /** - * Creates a new NamedEntityListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityListRequest instance - */ - public static create(properties?: flyteidl.admin.INamedEntityListRequest): flyteidl.admin.NamedEntityListRequest; - - /** - * Encodes the specified NamedEntityListRequest message. Does not implicitly {@link flyteidl.admin.NamedEntityListRequest.verify|verify} messages. - * @param message NamedEntityListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityListRequest; - - /** - * Verifies a NamedEntityListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NamedEntityIdentifierList. */ - interface INamedEntityIdentifierList { - - /** NamedEntityIdentifierList entities */ - entities?: (flyteidl.admin.INamedEntityIdentifier[]|null); - - /** NamedEntityIdentifierList token */ - token?: (string|null); - } - - /** Represents a NamedEntityIdentifierList. */ - class NamedEntityIdentifierList implements INamedEntityIdentifierList { - - /** - * Constructs a new NamedEntityIdentifierList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityIdentifierList); - - /** NamedEntityIdentifierList entities. */ - public entities: flyteidl.admin.INamedEntityIdentifier[]; - - /** NamedEntityIdentifierList token. */ - public token: string; - - /** - * Creates a new NamedEntityIdentifierList instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityIdentifierList instance - */ - public static create(properties?: flyteidl.admin.INamedEntityIdentifierList): flyteidl.admin.NamedEntityIdentifierList; - - /** - * Encodes the specified NamedEntityIdentifierList message. Does not implicitly {@link flyteidl.admin.NamedEntityIdentifierList.verify|verify} messages. - * @param message NamedEntityIdentifierList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityIdentifierList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityIdentifierList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityIdentifierList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityIdentifierList; - - /** - * Verifies a NamedEntityIdentifierList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NamedEntityList. */ - interface INamedEntityList { - - /** NamedEntityList entities */ - entities?: (flyteidl.admin.INamedEntity[]|null); - - /** NamedEntityList token */ - token?: (string|null); - } - - /** Represents a NamedEntityList. */ - class NamedEntityList implements INamedEntityList { - - /** - * Constructs a new NamedEntityList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityList); - - /** NamedEntityList entities. */ - public entities: flyteidl.admin.INamedEntity[]; - - /** NamedEntityList token. */ - public token: string; - - /** - * Creates a new NamedEntityList instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityList instance - */ - public static create(properties?: flyteidl.admin.INamedEntityList): flyteidl.admin.NamedEntityList; - - /** - * Encodes the specified NamedEntityList message. Does not implicitly {@link flyteidl.admin.NamedEntityList.verify|verify} messages. - * @param message NamedEntityList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityList; - - /** - * Verifies a NamedEntityList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NamedEntityGetRequest. */ - interface INamedEntityGetRequest { - - /** NamedEntityGetRequest resourceType */ - resourceType?: (flyteidl.core.ResourceType|null); - - /** NamedEntityGetRequest id */ - id?: (flyteidl.admin.INamedEntityIdentifier|null); - } - - /** Represents a NamedEntityGetRequest. */ - class NamedEntityGetRequest implements INamedEntityGetRequest { - - /** - * Constructs a new NamedEntityGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityGetRequest); - - /** NamedEntityGetRequest resourceType. */ - public resourceType: flyteidl.core.ResourceType; - - /** NamedEntityGetRequest id. */ - public id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** - * Creates a new NamedEntityGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityGetRequest instance - */ - public static create(properties?: flyteidl.admin.INamedEntityGetRequest): flyteidl.admin.NamedEntityGetRequest; - - /** - * Encodes the specified NamedEntityGetRequest message. Does not implicitly {@link flyteidl.admin.NamedEntityGetRequest.verify|verify} messages. - * @param message NamedEntityGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityGetRequest; - - /** - * Verifies a NamedEntityGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NamedEntityUpdateRequest. */ - interface INamedEntityUpdateRequest { - - /** NamedEntityUpdateRequest resourceType */ - resourceType?: (flyteidl.core.ResourceType|null); - - /** NamedEntityUpdateRequest id */ - id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** NamedEntityUpdateRequest metadata */ - metadata?: (flyteidl.admin.INamedEntityMetadata|null); - } - - /** Represents a NamedEntityUpdateRequest. */ - class NamedEntityUpdateRequest implements INamedEntityUpdateRequest { - - /** - * Constructs a new NamedEntityUpdateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityUpdateRequest); - - /** NamedEntityUpdateRequest resourceType. */ - public resourceType: flyteidl.core.ResourceType; - - /** NamedEntityUpdateRequest id. */ - public id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** NamedEntityUpdateRequest metadata. */ - public metadata?: (flyteidl.admin.INamedEntityMetadata|null); - - /** - * Creates a new NamedEntityUpdateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityUpdateRequest instance - */ - public static create(properties?: flyteidl.admin.INamedEntityUpdateRequest): flyteidl.admin.NamedEntityUpdateRequest; - - /** - * Encodes the specified NamedEntityUpdateRequest message. Does not implicitly {@link flyteidl.admin.NamedEntityUpdateRequest.verify|verify} messages. - * @param message NamedEntityUpdateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityUpdateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityUpdateRequest; - - /** - * Verifies a NamedEntityUpdateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NamedEntityUpdateResponse. */ - interface INamedEntityUpdateResponse { - } - - /** Represents a NamedEntityUpdateResponse. */ - class NamedEntityUpdateResponse implements INamedEntityUpdateResponse { - - /** - * Constructs a new NamedEntityUpdateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INamedEntityUpdateResponse); - - /** - * Creates a new NamedEntityUpdateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns NamedEntityUpdateResponse instance - */ - public static create(properties?: flyteidl.admin.INamedEntityUpdateResponse): flyteidl.admin.NamedEntityUpdateResponse; - - /** - * Encodes the specified NamedEntityUpdateResponse message. Does not implicitly {@link flyteidl.admin.NamedEntityUpdateResponse.verify|verify} messages. - * @param message NamedEntityUpdateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INamedEntityUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamedEntityUpdateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamedEntityUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NamedEntityUpdateResponse; - - /** - * Verifies a NamedEntityUpdateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ObjectGetRequest. */ - interface IObjectGetRequest { - - /** ObjectGetRequest id */ - id?: (flyteidl.core.IIdentifier|null); - } - - /** Represents an ObjectGetRequest. */ - class ObjectGetRequest implements IObjectGetRequest { - - /** - * Constructs a new ObjectGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IObjectGetRequest); - - /** ObjectGetRequest id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** - * Creates a new ObjectGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ObjectGetRequest instance - */ - public static create(properties?: flyteidl.admin.IObjectGetRequest): flyteidl.admin.ObjectGetRequest; - - /** - * Encodes the specified ObjectGetRequest message. Does not implicitly {@link flyteidl.admin.ObjectGetRequest.verify|verify} messages. - * @param message ObjectGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IObjectGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ObjectGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ObjectGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ObjectGetRequest; - - /** - * Verifies an ObjectGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ResourceListRequest. */ - interface IResourceListRequest { - - /** ResourceListRequest id */ - id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** ResourceListRequest limit */ - limit?: (number|null); - - /** ResourceListRequest token */ - token?: (string|null); - - /** ResourceListRequest filters */ - filters?: (string|null); - - /** ResourceListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - } - - /** Represents a ResourceListRequest. */ - class ResourceListRequest implements IResourceListRequest { - - /** - * Constructs a new ResourceListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IResourceListRequest); - - /** ResourceListRequest id. */ - public id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** ResourceListRequest limit. */ - public limit: number; - - /** ResourceListRequest token. */ - public token: string; - - /** ResourceListRequest filters. */ - public filters: string; - - /** ResourceListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** - * Creates a new ResourceListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ResourceListRequest instance - */ - public static create(properties?: flyteidl.admin.IResourceListRequest): flyteidl.admin.ResourceListRequest; - - /** - * Encodes the specified ResourceListRequest message. Does not implicitly {@link flyteidl.admin.ResourceListRequest.verify|verify} messages. - * @param message ResourceListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IResourceListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ResourceListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ResourceListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ResourceListRequest; - - /** - * Verifies a ResourceListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EmailNotification. */ - interface IEmailNotification { - - /** EmailNotification recipientsEmail */ - recipientsEmail?: (string[]|null); - } - - /** Represents an EmailNotification. */ - class EmailNotification implements IEmailNotification { - - /** - * Constructs a new EmailNotification. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IEmailNotification); - - /** EmailNotification recipientsEmail. */ - public recipientsEmail: string[]; - - /** - * Creates a new EmailNotification instance using the specified properties. - * @param [properties] Properties to set - * @returns EmailNotification instance - */ - public static create(properties?: flyteidl.admin.IEmailNotification): flyteidl.admin.EmailNotification; - - /** - * Encodes the specified EmailNotification message. Does not implicitly {@link flyteidl.admin.EmailNotification.verify|verify} messages. - * @param message EmailNotification message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IEmailNotification, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EmailNotification message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EmailNotification - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.EmailNotification; - - /** - * Verifies an EmailNotification message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a PagerDutyNotification. */ - interface IPagerDutyNotification { - - /** PagerDutyNotification recipientsEmail */ - recipientsEmail?: (string[]|null); - } - - /** Represents a PagerDutyNotification. */ - class PagerDutyNotification implements IPagerDutyNotification { - - /** - * Constructs a new PagerDutyNotification. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IPagerDutyNotification); - - /** PagerDutyNotification recipientsEmail. */ - public recipientsEmail: string[]; - - /** - * Creates a new PagerDutyNotification instance using the specified properties. - * @param [properties] Properties to set - * @returns PagerDutyNotification instance - */ - public static create(properties?: flyteidl.admin.IPagerDutyNotification): flyteidl.admin.PagerDutyNotification; - - /** - * Encodes the specified PagerDutyNotification message. Does not implicitly {@link flyteidl.admin.PagerDutyNotification.verify|verify} messages. - * @param message PagerDutyNotification message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IPagerDutyNotification, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a PagerDutyNotification message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns PagerDutyNotification - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.PagerDutyNotification; - - /** - * Verifies a PagerDutyNotification message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SlackNotification. */ - interface ISlackNotification { - - /** SlackNotification recipientsEmail */ - recipientsEmail?: (string[]|null); - } - - /** Represents a SlackNotification. */ - class SlackNotification implements ISlackNotification { - - /** - * Constructs a new SlackNotification. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISlackNotification); - - /** SlackNotification recipientsEmail. */ - public recipientsEmail: string[]; - - /** - * Creates a new SlackNotification instance using the specified properties. - * @param [properties] Properties to set - * @returns SlackNotification instance - */ - public static create(properties?: flyteidl.admin.ISlackNotification): flyteidl.admin.SlackNotification; - - /** - * Encodes the specified SlackNotification message. Does not implicitly {@link flyteidl.admin.SlackNotification.verify|verify} messages. - * @param message SlackNotification message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISlackNotification, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SlackNotification message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SlackNotification - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SlackNotification; - - /** - * Verifies a SlackNotification message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Notification. */ - interface INotification { - - /** Notification phases */ - phases?: (flyteidl.core.WorkflowExecution.Phase[]|null); - - /** Notification email */ - email?: (flyteidl.admin.IEmailNotification|null); - - /** Notification pagerDuty */ - pagerDuty?: (flyteidl.admin.IPagerDutyNotification|null); - - /** Notification slack */ - slack?: (flyteidl.admin.ISlackNotification|null); - } - - /** Represents a Notification. */ - class Notification implements INotification { - - /** - * Constructs a new Notification. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INotification); - - /** Notification phases. */ - public phases: flyteidl.core.WorkflowExecution.Phase[]; - - /** Notification email. */ - public email?: (flyteidl.admin.IEmailNotification|null); - - /** Notification pagerDuty. */ - public pagerDuty?: (flyteidl.admin.IPagerDutyNotification|null); - - /** Notification slack. */ - public slack?: (flyteidl.admin.ISlackNotification|null); - - /** Notification type. */ - public type?: ("email"|"pagerDuty"|"slack"); - - /** - * Creates a new Notification instance using the specified properties. - * @param [properties] Properties to set - * @returns Notification instance - */ - public static create(properties?: flyteidl.admin.INotification): flyteidl.admin.Notification; - - /** - * Encodes the specified Notification message. Does not implicitly {@link flyteidl.admin.Notification.verify|verify} messages. - * @param message Notification message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INotification, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Notification message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Notification - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Notification; - - /** - * Verifies a Notification message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an UrlBlob. */ - interface IUrlBlob { - - /** UrlBlob url */ - url?: (string|null); - - /** UrlBlob bytes */ - bytes?: (Long|null); - } - - /** Represents an UrlBlob. */ - class UrlBlob implements IUrlBlob { - - /** - * Constructs a new UrlBlob. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IUrlBlob); - - /** UrlBlob url. */ - public url: string; - - /** UrlBlob bytes. */ - public bytes: Long; - - /** - * Creates a new UrlBlob instance using the specified properties. - * @param [properties] Properties to set - * @returns UrlBlob instance - */ - public static create(properties?: flyteidl.admin.IUrlBlob): flyteidl.admin.UrlBlob; - - /** - * Encodes the specified UrlBlob message. Does not implicitly {@link flyteidl.admin.UrlBlob.verify|verify} messages. - * @param message UrlBlob message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IUrlBlob, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an UrlBlob message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns UrlBlob - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.UrlBlob; - - /** - * Verifies an UrlBlob message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Labels. */ - interface ILabels { - - /** Labels values */ - values?: ({ [k: string]: string }|null); - } - - /** Represents a Labels. */ - class Labels implements ILabels { - - /** - * Constructs a new Labels. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILabels); - - /** Labels values. */ - public values: { [k: string]: string }; - - /** - * Creates a new Labels instance using the specified properties. - * @param [properties] Properties to set - * @returns Labels instance - */ - public static create(properties?: flyteidl.admin.ILabels): flyteidl.admin.Labels; - - /** - * Encodes the specified Labels message. Does not implicitly {@link flyteidl.admin.Labels.verify|verify} messages. - * @param message Labels message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILabels, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Labels message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Labels - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Labels; - - /** - * Verifies a Labels message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Annotations. */ - interface IAnnotations { - - /** Annotations values */ - values?: ({ [k: string]: string }|null); - } - - /** Represents an Annotations. */ - class Annotations implements IAnnotations { - - /** - * Constructs a new Annotations. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IAnnotations); - - /** Annotations values. */ - public values: { [k: string]: string }; - - /** - * Creates a new Annotations instance using the specified properties. - * @param [properties] Properties to set - * @returns Annotations instance - */ - public static create(properties?: flyteidl.admin.IAnnotations): flyteidl.admin.Annotations; - - /** - * Encodes the specified Annotations message. Does not implicitly {@link flyteidl.admin.Annotations.verify|verify} messages. - * @param message Annotations message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IAnnotations, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Annotations message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Annotations - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Annotations; - - /** - * Verifies an Annotations message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Envs. */ - interface IEnvs { - - /** Envs values */ - values?: (flyteidl.core.IKeyValuePair[]|null); - } - - /** Represents an Envs. */ - class Envs implements IEnvs { - - /** - * Constructs a new Envs. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IEnvs); - - /** Envs values. */ - public values: flyteidl.core.IKeyValuePair[]; - - /** - * Creates a new Envs instance using the specified properties. - * @param [properties] Properties to set - * @returns Envs instance - */ - public static create(properties?: flyteidl.admin.IEnvs): flyteidl.admin.Envs; - - /** - * Encodes the specified Envs message. Does not implicitly {@link flyteidl.admin.Envs.verify|verify} messages. - * @param message Envs message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IEnvs, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Envs message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Envs - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Envs; - - /** - * Verifies an Envs message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an AuthRole. */ - interface IAuthRole { - - /** AuthRole assumableIamRole */ - assumableIamRole?: (string|null); - - /** AuthRole kubernetesServiceAccount */ - kubernetesServiceAccount?: (string|null); - } - - /** Represents an AuthRole. */ - class AuthRole implements IAuthRole { - - /** - * Constructs a new AuthRole. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IAuthRole); - - /** AuthRole assumableIamRole. */ - public assumableIamRole: string; - - /** AuthRole kubernetesServiceAccount. */ - public kubernetesServiceAccount: string; - - /** - * Creates a new AuthRole instance using the specified properties. - * @param [properties] Properties to set - * @returns AuthRole instance - */ - public static create(properties?: flyteidl.admin.IAuthRole): flyteidl.admin.AuthRole; - - /** - * Encodes the specified AuthRole message. Does not implicitly {@link flyteidl.admin.AuthRole.verify|verify} messages. - * @param message AuthRole message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IAuthRole, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an AuthRole message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns AuthRole - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.AuthRole; - - /** - * Verifies an AuthRole message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a RawOutputDataConfig. */ - interface IRawOutputDataConfig { - - /** RawOutputDataConfig outputLocationPrefix */ - outputLocationPrefix?: (string|null); - } - - /** Represents a RawOutputDataConfig. */ - class RawOutputDataConfig implements IRawOutputDataConfig { - - /** - * Constructs a new RawOutputDataConfig. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IRawOutputDataConfig); - - /** RawOutputDataConfig outputLocationPrefix. */ - public outputLocationPrefix: string; - - /** - * Creates a new RawOutputDataConfig instance using the specified properties. - * @param [properties] Properties to set - * @returns RawOutputDataConfig instance - */ - public static create(properties?: flyteidl.admin.IRawOutputDataConfig): flyteidl.admin.RawOutputDataConfig; - - /** - * Encodes the specified RawOutputDataConfig message. Does not implicitly {@link flyteidl.admin.RawOutputDataConfig.verify|verify} messages. - * @param message RawOutputDataConfig message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IRawOutputDataConfig, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a RawOutputDataConfig message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns RawOutputDataConfig - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.RawOutputDataConfig; - - /** - * Verifies a RawOutputDataConfig message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a FlyteURLs. */ - interface IFlyteURLs { - - /** FlyteURLs inputs */ - inputs?: (string|null); - - /** FlyteURLs outputs */ - outputs?: (string|null); - - /** FlyteURLs deck */ - deck?: (string|null); - } - - /** Represents a FlyteURLs. */ - class FlyteURLs implements IFlyteURLs { - - /** - * Constructs a new FlyteURLs. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IFlyteURLs); - - /** FlyteURLs inputs. */ - public inputs: string; - - /** FlyteURLs outputs. */ - public outputs: string; - - /** FlyteURLs deck. */ - public deck: string; - - /** - * Creates a new FlyteURLs instance using the specified properties. - * @param [properties] Properties to set - * @returns FlyteURLs instance - */ - public static create(properties?: flyteidl.admin.IFlyteURLs): flyteidl.admin.FlyteURLs; - - /** - * Encodes the specified FlyteURLs message. Does not implicitly {@link flyteidl.admin.FlyteURLs.verify|verify} messages. - * @param message FlyteURLs message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IFlyteURLs, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a FlyteURLs message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns FlyteURLs - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.FlyteURLs; - - /** - * Verifies a FlyteURLs message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DescriptionEntity. */ - interface IDescriptionEntity { - - /** DescriptionEntity id */ - id?: (flyteidl.core.IIdentifier|null); - - /** DescriptionEntity shortDescription */ - shortDescription?: (string|null); - - /** DescriptionEntity longDescription */ - longDescription?: (flyteidl.admin.IDescription|null); - - /** DescriptionEntity sourceCode */ - sourceCode?: (flyteidl.admin.ISourceCode|null); - - /** DescriptionEntity tags */ - tags?: (string[]|null); - } - - /** Represents a DescriptionEntity. */ - class DescriptionEntity implements IDescriptionEntity { - - /** - * Constructs a new DescriptionEntity. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDescriptionEntity); - - /** DescriptionEntity id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** DescriptionEntity shortDescription. */ - public shortDescription: string; - - /** DescriptionEntity longDescription. */ - public longDescription?: (flyteidl.admin.IDescription|null); - - /** DescriptionEntity sourceCode. */ - public sourceCode?: (flyteidl.admin.ISourceCode|null); - - /** DescriptionEntity tags. */ - public tags: string[]; - - /** - * Creates a new DescriptionEntity instance using the specified properties. - * @param [properties] Properties to set - * @returns DescriptionEntity instance - */ - public static create(properties?: flyteidl.admin.IDescriptionEntity): flyteidl.admin.DescriptionEntity; - - /** - * Encodes the specified DescriptionEntity message. Does not implicitly {@link flyteidl.admin.DescriptionEntity.verify|verify} messages. - * @param message DescriptionEntity message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDescriptionEntity, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DescriptionEntity message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DescriptionEntity - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DescriptionEntity; - - /** - * Verifies a DescriptionEntity message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** DescriptionFormat enum. */ - enum DescriptionFormat { - DESCRIPTION_FORMAT_UNKNOWN = 0, - DESCRIPTION_FORMAT_MARKDOWN = 1, - DESCRIPTION_FORMAT_HTML = 2, - DESCRIPTION_FORMAT_RST = 3 - } - - /** Properties of a Description. */ - interface IDescription { - - /** Description value */ - value?: (string|null); - - /** Description uri */ - uri?: (string|null); - - /** Description format */ - format?: (flyteidl.admin.DescriptionFormat|null); - - /** Description iconLink */ - iconLink?: (string|null); - } - - /** Represents a Description. */ - class Description implements IDescription { - - /** - * Constructs a new Description. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDescription); - - /** Description value. */ - public value: string; - - /** Description uri. */ - public uri: string; - - /** Description format. */ - public format: flyteidl.admin.DescriptionFormat; - - /** Description iconLink. */ - public iconLink: string; - - /** Description content. */ - public content?: ("value"|"uri"); - - /** - * Creates a new Description instance using the specified properties. - * @param [properties] Properties to set - * @returns Description instance - */ - public static create(properties?: flyteidl.admin.IDescription): flyteidl.admin.Description; - - /** - * Encodes the specified Description message. Does not implicitly {@link flyteidl.admin.Description.verify|verify} messages. - * @param message Description message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDescription, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Description message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Description - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Description; - - /** - * Verifies a Description message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SourceCode. */ - interface ISourceCode { - - /** SourceCode link */ - link?: (string|null); - } - - /** Represents a SourceCode. */ - class SourceCode implements ISourceCode { - - /** - * Constructs a new SourceCode. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISourceCode); - - /** SourceCode link. */ - public link: string; - - /** - * Creates a new SourceCode instance using the specified properties. - * @param [properties] Properties to set - * @returns SourceCode instance - */ - public static create(properties?: flyteidl.admin.ISourceCode): flyteidl.admin.SourceCode; - - /** - * Encodes the specified SourceCode message. Does not implicitly {@link flyteidl.admin.SourceCode.verify|verify} messages. - * @param message SourceCode message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISourceCode, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SourceCode message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SourceCode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SourceCode; - - /** - * Verifies a SourceCode message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DescriptionEntityList. */ - interface IDescriptionEntityList { - - /** DescriptionEntityList descriptionEntities */ - descriptionEntities?: (flyteidl.admin.IDescriptionEntity[]|null); - - /** DescriptionEntityList token */ - token?: (string|null); - } - - /** Represents a DescriptionEntityList. */ - class DescriptionEntityList implements IDescriptionEntityList { - - /** - * Constructs a new DescriptionEntityList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDescriptionEntityList); - - /** DescriptionEntityList descriptionEntities. */ - public descriptionEntities: flyteidl.admin.IDescriptionEntity[]; - - /** DescriptionEntityList token. */ - public token: string; - - /** - * Creates a new DescriptionEntityList instance using the specified properties. - * @param [properties] Properties to set - * @returns DescriptionEntityList instance - */ - public static create(properties?: flyteidl.admin.IDescriptionEntityList): flyteidl.admin.DescriptionEntityList; - - /** - * Encodes the specified DescriptionEntityList message. Does not implicitly {@link flyteidl.admin.DescriptionEntityList.verify|verify} messages. - * @param message DescriptionEntityList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDescriptionEntityList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DescriptionEntityList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DescriptionEntityList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DescriptionEntityList; - - /** - * Verifies a DescriptionEntityList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DescriptionEntityListRequest. */ - interface IDescriptionEntityListRequest { - - /** DescriptionEntityListRequest resourceType */ - resourceType?: (flyteidl.core.ResourceType|null); - - /** DescriptionEntityListRequest id */ - id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** DescriptionEntityListRequest limit */ - limit?: (number|null); - - /** DescriptionEntityListRequest token */ - token?: (string|null); - - /** DescriptionEntityListRequest filters */ - filters?: (string|null); - - /** DescriptionEntityListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - } - - /** Represents a DescriptionEntityListRequest. */ - class DescriptionEntityListRequest implements IDescriptionEntityListRequest { - - /** - * Constructs a new DescriptionEntityListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDescriptionEntityListRequest); - - /** DescriptionEntityListRequest resourceType. */ - public resourceType: flyteidl.core.ResourceType; - - /** DescriptionEntityListRequest id. */ - public id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** DescriptionEntityListRequest limit. */ - public limit: number; - - /** DescriptionEntityListRequest token. */ - public token: string; - - /** DescriptionEntityListRequest filters. */ - public filters: string; - - /** DescriptionEntityListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** - * Creates a new DescriptionEntityListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns DescriptionEntityListRequest instance - */ - public static create(properties?: flyteidl.admin.IDescriptionEntityListRequest): flyteidl.admin.DescriptionEntityListRequest; - - /** - * Encodes the specified DescriptionEntityListRequest message. Does not implicitly {@link flyteidl.admin.DescriptionEntityListRequest.verify|verify} messages. - * @param message DescriptionEntityListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDescriptionEntityListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DescriptionEntityListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DescriptionEntityListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DescriptionEntityListRequest; - - /** - * Verifies a DescriptionEntityListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EventErrorAlreadyInTerminalState. */ - interface IEventErrorAlreadyInTerminalState { - - /** EventErrorAlreadyInTerminalState currentPhase */ - currentPhase?: (string|null); - } - - /** Represents an EventErrorAlreadyInTerminalState. */ - class EventErrorAlreadyInTerminalState implements IEventErrorAlreadyInTerminalState { - - /** - * Constructs a new EventErrorAlreadyInTerminalState. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IEventErrorAlreadyInTerminalState); - - /** EventErrorAlreadyInTerminalState currentPhase. */ - public currentPhase: string; - - /** - * Creates a new EventErrorAlreadyInTerminalState instance using the specified properties. - * @param [properties] Properties to set - * @returns EventErrorAlreadyInTerminalState instance - */ - public static create(properties?: flyteidl.admin.IEventErrorAlreadyInTerminalState): flyteidl.admin.EventErrorAlreadyInTerminalState; - - /** - * Encodes the specified EventErrorAlreadyInTerminalState message. Does not implicitly {@link flyteidl.admin.EventErrorAlreadyInTerminalState.verify|verify} messages. - * @param message EventErrorAlreadyInTerminalState message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IEventErrorAlreadyInTerminalState, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EventErrorAlreadyInTerminalState message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EventErrorAlreadyInTerminalState - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.EventErrorAlreadyInTerminalState; - - /** - * Verifies an EventErrorAlreadyInTerminalState message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EventErrorIncompatibleCluster. */ - interface IEventErrorIncompatibleCluster { - - /** EventErrorIncompatibleCluster cluster */ - cluster?: (string|null); - } - - /** Represents an EventErrorIncompatibleCluster. */ - class EventErrorIncompatibleCluster implements IEventErrorIncompatibleCluster { - - /** - * Constructs a new EventErrorIncompatibleCluster. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IEventErrorIncompatibleCluster); - - /** EventErrorIncompatibleCluster cluster. */ - public cluster: string; - - /** - * Creates a new EventErrorIncompatibleCluster instance using the specified properties. - * @param [properties] Properties to set - * @returns EventErrorIncompatibleCluster instance - */ - public static create(properties?: flyteidl.admin.IEventErrorIncompatibleCluster): flyteidl.admin.EventErrorIncompatibleCluster; - - /** - * Encodes the specified EventErrorIncompatibleCluster message. Does not implicitly {@link flyteidl.admin.EventErrorIncompatibleCluster.verify|verify} messages. - * @param message EventErrorIncompatibleCluster message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IEventErrorIncompatibleCluster, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EventErrorIncompatibleCluster message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EventErrorIncompatibleCluster - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.EventErrorIncompatibleCluster; - - /** - * Verifies an EventErrorIncompatibleCluster message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EventFailureReason. */ - interface IEventFailureReason { - - /** EventFailureReason alreadyInTerminalState */ - alreadyInTerminalState?: (flyteidl.admin.IEventErrorAlreadyInTerminalState|null); - - /** EventFailureReason incompatibleCluster */ - incompatibleCluster?: (flyteidl.admin.IEventErrorIncompatibleCluster|null); - } - - /** Represents an EventFailureReason. */ - class EventFailureReason implements IEventFailureReason { - - /** - * Constructs a new EventFailureReason. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IEventFailureReason); - - /** EventFailureReason alreadyInTerminalState. */ - public alreadyInTerminalState?: (flyteidl.admin.IEventErrorAlreadyInTerminalState|null); - - /** EventFailureReason incompatibleCluster. */ - public incompatibleCluster?: (flyteidl.admin.IEventErrorIncompatibleCluster|null); - - /** EventFailureReason reason. */ - public reason?: ("alreadyInTerminalState"|"incompatibleCluster"); - - /** - * Creates a new EventFailureReason instance using the specified properties. - * @param [properties] Properties to set - * @returns EventFailureReason instance - */ - public static create(properties?: flyteidl.admin.IEventFailureReason): flyteidl.admin.EventFailureReason; - - /** - * Encodes the specified EventFailureReason message. Does not implicitly {@link flyteidl.admin.EventFailureReason.verify|verify} messages. - * @param message EventFailureReason message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IEventFailureReason, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EventFailureReason message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EventFailureReason - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.EventFailureReason; - - /** - * Verifies an EventFailureReason message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionEventRequest. */ - interface IWorkflowExecutionEventRequest { - - /** WorkflowExecutionEventRequest requestId */ - requestId?: (string|null); - - /** WorkflowExecutionEventRequest event */ - event?: (flyteidl.event.IWorkflowExecutionEvent|null); - } - - /** Represents a WorkflowExecutionEventRequest. */ - class WorkflowExecutionEventRequest implements IWorkflowExecutionEventRequest { - - /** - * Constructs a new WorkflowExecutionEventRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowExecutionEventRequest); - - /** WorkflowExecutionEventRequest requestId. */ - public requestId: string; - - /** WorkflowExecutionEventRequest event. */ - public event?: (flyteidl.event.IWorkflowExecutionEvent|null); - - /** - * Creates a new WorkflowExecutionEventRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionEventRequest instance - */ - public static create(properties?: flyteidl.admin.IWorkflowExecutionEventRequest): flyteidl.admin.WorkflowExecutionEventRequest; - - /** - * Encodes the specified WorkflowExecutionEventRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionEventRequest.verify|verify} messages. - * @param message WorkflowExecutionEventRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowExecutionEventRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionEventRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionEventRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionEventRequest; - - /** - * Verifies a WorkflowExecutionEventRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionEventResponse. */ - interface IWorkflowExecutionEventResponse { - } - - /** Represents a WorkflowExecutionEventResponse. */ - class WorkflowExecutionEventResponse implements IWorkflowExecutionEventResponse { - - /** - * Constructs a new WorkflowExecutionEventResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowExecutionEventResponse); - - /** - * Creates a new WorkflowExecutionEventResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionEventResponse instance - */ - public static create(properties?: flyteidl.admin.IWorkflowExecutionEventResponse): flyteidl.admin.WorkflowExecutionEventResponse; - - /** - * Encodes the specified WorkflowExecutionEventResponse message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionEventResponse.verify|verify} messages. - * @param message WorkflowExecutionEventResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowExecutionEventResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionEventResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionEventResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionEventResponse; - - /** - * Verifies a WorkflowExecutionEventResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionEventRequest. */ - interface INodeExecutionEventRequest { - - /** NodeExecutionEventRequest requestId */ - requestId?: (string|null); - - /** NodeExecutionEventRequest event */ - event?: (flyteidl.event.INodeExecutionEvent|null); - } - - /** Represents a NodeExecutionEventRequest. */ - class NodeExecutionEventRequest implements INodeExecutionEventRequest { - - /** - * Constructs a new NodeExecutionEventRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionEventRequest); - - /** NodeExecutionEventRequest requestId. */ - public requestId: string; - - /** NodeExecutionEventRequest event. */ - public event?: (flyteidl.event.INodeExecutionEvent|null); - - /** - * Creates a new NodeExecutionEventRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionEventRequest instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionEventRequest): flyteidl.admin.NodeExecutionEventRequest; - - /** - * Encodes the specified NodeExecutionEventRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionEventRequest.verify|verify} messages. - * @param message NodeExecutionEventRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionEventRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionEventRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionEventRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionEventRequest; - - /** - * Verifies a NodeExecutionEventRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionEventResponse. */ - interface INodeExecutionEventResponse { - } - - /** Represents a NodeExecutionEventResponse. */ - class NodeExecutionEventResponse implements INodeExecutionEventResponse { - - /** - * Constructs a new NodeExecutionEventResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionEventResponse); - - /** - * Creates a new NodeExecutionEventResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionEventResponse instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionEventResponse): flyteidl.admin.NodeExecutionEventResponse; - - /** - * Encodes the specified NodeExecutionEventResponse message. Does not implicitly {@link flyteidl.admin.NodeExecutionEventResponse.verify|verify} messages. - * @param message NodeExecutionEventResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionEventResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionEventResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionEventResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionEventResponse; - - /** - * Verifies a NodeExecutionEventResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionEventRequest. */ - interface ITaskExecutionEventRequest { - - /** TaskExecutionEventRequest requestId */ - requestId?: (string|null); - - /** TaskExecutionEventRequest event */ - event?: (flyteidl.event.ITaskExecutionEvent|null); - } - - /** Represents a TaskExecutionEventRequest. */ - class TaskExecutionEventRequest implements ITaskExecutionEventRequest { - - /** - * Constructs a new TaskExecutionEventRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionEventRequest); - - /** TaskExecutionEventRequest requestId. */ - public requestId: string; - - /** TaskExecutionEventRequest event. */ - public event?: (flyteidl.event.ITaskExecutionEvent|null); - - /** - * Creates a new TaskExecutionEventRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionEventRequest instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionEventRequest): flyteidl.admin.TaskExecutionEventRequest; - - /** - * Encodes the specified TaskExecutionEventRequest message. Does not implicitly {@link flyteidl.admin.TaskExecutionEventRequest.verify|verify} messages. - * @param message TaskExecutionEventRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionEventRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionEventRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionEventRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionEventRequest; - - /** - * Verifies a TaskExecutionEventRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionEventResponse. */ - interface ITaskExecutionEventResponse { - } - - /** Represents a TaskExecutionEventResponse. */ - class TaskExecutionEventResponse implements ITaskExecutionEventResponse { - - /** - * Constructs a new TaskExecutionEventResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionEventResponse); - - /** - * Creates a new TaskExecutionEventResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionEventResponse instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionEventResponse): flyteidl.admin.TaskExecutionEventResponse; - - /** - * Encodes the specified TaskExecutionEventResponse message. Does not implicitly {@link flyteidl.admin.TaskExecutionEventResponse.verify|verify} messages. - * @param message TaskExecutionEventResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionEventResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionEventResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionEventResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionEventResponse; - - /** - * Verifies a TaskExecutionEventResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionCreateRequest. */ - interface IExecutionCreateRequest { - - /** ExecutionCreateRequest project */ - project?: (string|null); - - /** ExecutionCreateRequest domain */ - domain?: (string|null); - - /** ExecutionCreateRequest name */ - name?: (string|null); - - /** ExecutionCreateRequest spec */ - spec?: (flyteidl.admin.IExecutionSpec|null); - - /** ExecutionCreateRequest inputs */ - inputs?: (flyteidl.core.ILiteralMap|null); - - /** ExecutionCreateRequest org */ - org?: (string|null); - } - - /** Represents an ExecutionCreateRequest. */ - class ExecutionCreateRequest implements IExecutionCreateRequest { - - /** - * Constructs a new ExecutionCreateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionCreateRequest); - - /** ExecutionCreateRequest project. */ - public project: string; - - /** ExecutionCreateRequest domain. */ - public domain: string; - - /** ExecutionCreateRequest name. */ - public name: string; - - /** ExecutionCreateRequest spec. */ - public spec?: (flyteidl.admin.IExecutionSpec|null); - - /** ExecutionCreateRequest inputs. */ - public inputs?: (flyteidl.core.ILiteralMap|null); - - /** ExecutionCreateRequest org. */ - public org: string; - - /** - * Creates a new ExecutionCreateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionCreateRequest instance - */ - public static create(properties?: flyteidl.admin.IExecutionCreateRequest): flyteidl.admin.ExecutionCreateRequest; - - /** - * Encodes the specified ExecutionCreateRequest message. Does not implicitly {@link flyteidl.admin.ExecutionCreateRequest.verify|verify} messages. - * @param message ExecutionCreateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionCreateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionCreateRequest; - - /** - * Verifies an ExecutionCreateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionRelaunchRequest. */ - interface IExecutionRelaunchRequest { - - /** ExecutionRelaunchRequest id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionRelaunchRequest name */ - name?: (string|null); - - /** ExecutionRelaunchRequest overwriteCache */ - overwriteCache?: (boolean|null); - } - - /** Represents an ExecutionRelaunchRequest. */ - class ExecutionRelaunchRequest implements IExecutionRelaunchRequest { - - /** - * Constructs a new ExecutionRelaunchRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionRelaunchRequest); - - /** ExecutionRelaunchRequest id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionRelaunchRequest name. */ - public name: string; - - /** ExecutionRelaunchRequest overwriteCache. */ - public overwriteCache: boolean; - - /** - * Creates a new ExecutionRelaunchRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionRelaunchRequest instance - */ - public static create(properties?: flyteidl.admin.IExecutionRelaunchRequest): flyteidl.admin.ExecutionRelaunchRequest; - - /** - * Encodes the specified ExecutionRelaunchRequest message. Does not implicitly {@link flyteidl.admin.ExecutionRelaunchRequest.verify|verify} messages. - * @param message ExecutionRelaunchRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionRelaunchRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionRelaunchRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionRelaunchRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionRelaunchRequest; - - /** - * Verifies an ExecutionRelaunchRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionRecoverRequest. */ - interface IExecutionRecoverRequest { - - /** ExecutionRecoverRequest id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionRecoverRequest name */ - name?: (string|null); - - /** ExecutionRecoverRequest metadata */ - metadata?: (flyteidl.admin.IExecutionMetadata|null); - } - - /** Represents an ExecutionRecoverRequest. */ - class ExecutionRecoverRequest implements IExecutionRecoverRequest { - - /** - * Constructs a new ExecutionRecoverRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionRecoverRequest); - - /** ExecutionRecoverRequest id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionRecoverRequest name. */ - public name: string; - - /** ExecutionRecoverRequest metadata. */ - public metadata?: (flyteidl.admin.IExecutionMetadata|null); - - /** - * Creates a new ExecutionRecoverRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionRecoverRequest instance - */ - public static create(properties?: flyteidl.admin.IExecutionRecoverRequest): flyteidl.admin.ExecutionRecoverRequest; - - /** - * Encodes the specified ExecutionRecoverRequest message. Does not implicitly {@link flyteidl.admin.ExecutionRecoverRequest.verify|verify} messages. - * @param message ExecutionRecoverRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionRecoverRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionRecoverRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionRecoverRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionRecoverRequest; - - /** - * Verifies an ExecutionRecoverRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionCreateResponse. */ - interface IExecutionCreateResponse { - - /** ExecutionCreateResponse id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - } - - /** Represents an ExecutionCreateResponse. */ - class ExecutionCreateResponse implements IExecutionCreateResponse { - - /** - * Constructs a new ExecutionCreateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionCreateResponse); - - /** ExecutionCreateResponse id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** - * Creates a new ExecutionCreateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionCreateResponse instance - */ - public static create(properties?: flyteidl.admin.IExecutionCreateResponse): flyteidl.admin.ExecutionCreateResponse; - - /** - * Encodes the specified ExecutionCreateResponse message. Does not implicitly {@link flyteidl.admin.ExecutionCreateResponse.verify|verify} messages. - * @param message ExecutionCreateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionCreateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionCreateResponse; - - /** - * Verifies an ExecutionCreateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionGetRequest. */ - interface IWorkflowExecutionGetRequest { - - /** WorkflowExecutionGetRequest id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - } - - /** Represents a WorkflowExecutionGetRequest. */ - class WorkflowExecutionGetRequest implements IWorkflowExecutionGetRequest { - - /** - * Constructs a new WorkflowExecutionGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowExecutionGetRequest); - - /** WorkflowExecutionGetRequest id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** - * Creates a new WorkflowExecutionGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionGetRequest instance - */ - public static create(properties?: flyteidl.admin.IWorkflowExecutionGetRequest): flyteidl.admin.WorkflowExecutionGetRequest; - - /** - * Encodes the specified WorkflowExecutionGetRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetRequest.verify|verify} messages. - * @param message WorkflowExecutionGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowExecutionGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetRequest; - - /** - * Verifies a WorkflowExecutionGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Execution. */ - interface IExecution { - - /** Execution id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** Execution spec */ - spec?: (flyteidl.admin.IExecutionSpec|null); - - /** Execution closure */ - closure?: (flyteidl.admin.IExecutionClosure|null); - } - - /** Represents an Execution. */ - class Execution implements IExecution { - - /** - * Constructs a new Execution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecution); - - /** Execution id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** Execution spec. */ - public spec?: (flyteidl.admin.IExecutionSpec|null); - - /** Execution closure. */ - public closure?: (flyteidl.admin.IExecutionClosure|null); - - /** - * Creates a new Execution instance using the specified properties. - * @param [properties] Properties to set - * @returns Execution instance - */ - public static create(properties?: flyteidl.admin.IExecution): flyteidl.admin.Execution; - - /** - * Encodes the specified Execution message. Does not implicitly {@link flyteidl.admin.Execution.verify|verify} messages. - * @param message Execution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Execution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Execution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Execution; - - /** - * Verifies an Execution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionList. */ - interface IExecutionList { - - /** ExecutionList executions */ - executions?: (flyteidl.admin.IExecution[]|null); - - /** ExecutionList token */ - token?: (string|null); - } - - /** Represents an ExecutionList. */ - class ExecutionList implements IExecutionList { - - /** - * Constructs a new ExecutionList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionList); - - /** ExecutionList executions. */ - public executions: flyteidl.admin.IExecution[]; - - /** ExecutionList token. */ - public token: string; - - /** - * Creates a new ExecutionList instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionList instance - */ - public static create(properties?: flyteidl.admin.IExecutionList): flyteidl.admin.ExecutionList; - - /** - * Encodes the specified ExecutionList message. Does not implicitly {@link flyteidl.admin.ExecutionList.verify|verify} messages. - * @param message ExecutionList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionList; - - /** - * Verifies an ExecutionList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LiteralMapBlob. */ - interface ILiteralMapBlob { - - /** LiteralMapBlob values */ - values?: (flyteidl.core.ILiteralMap|null); - - /** LiteralMapBlob uri */ - uri?: (string|null); - } - - /** Represents a LiteralMapBlob. */ - class LiteralMapBlob implements ILiteralMapBlob { - - /** - * Constructs a new LiteralMapBlob. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILiteralMapBlob); - - /** LiteralMapBlob values. */ - public values?: (flyteidl.core.ILiteralMap|null); - - /** LiteralMapBlob uri. */ - public uri: string; - - /** LiteralMapBlob data. */ - public data?: ("values"|"uri"); - - /** - * Creates a new LiteralMapBlob instance using the specified properties. - * @param [properties] Properties to set - * @returns LiteralMapBlob instance - */ - public static create(properties?: flyteidl.admin.ILiteralMapBlob): flyteidl.admin.LiteralMapBlob; - - /** - * Encodes the specified LiteralMapBlob message. Does not implicitly {@link flyteidl.admin.LiteralMapBlob.verify|verify} messages. - * @param message LiteralMapBlob message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILiteralMapBlob, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LiteralMapBlob message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LiteralMapBlob - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LiteralMapBlob; - - /** - * Verifies a LiteralMapBlob message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an AbortMetadata. */ - interface IAbortMetadata { - - /** AbortMetadata cause */ - cause?: (string|null); - - /** AbortMetadata principal */ - principal?: (string|null); - } - - /** Represents an AbortMetadata. */ - class AbortMetadata implements IAbortMetadata { - - /** - * Constructs a new AbortMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IAbortMetadata); - - /** AbortMetadata cause. */ - public cause: string; - - /** AbortMetadata principal. */ - public principal: string; - - /** - * Creates a new AbortMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns AbortMetadata instance - */ - public static create(properties?: flyteidl.admin.IAbortMetadata): flyteidl.admin.AbortMetadata; - - /** - * Encodes the specified AbortMetadata message. Does not implicitly {@link flyteidl.admin.AbortMetadata.verify|verify} messages. - * @param message AbortMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IAbortMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an AbortMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns AbortMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.AbortMetadata; - - /** - * Verifies an AbortMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionClosure. */ - interface IExecutionClosure { - - /** ExecutionClosure outputs */ - outputs?: (flyteidl.admin.ILiteralMapBlob|null); - - /** ExecutionClosure error */ - error?: (flyteidl.core.IExecutionError|null); - - /** ExecutionClosure abortCause */ - abortCause?: (string|null); - - /** ExecutionClosure abortMetadata */ - abortMetadata?: (flyteidl.admin.IAbortMetadata|null); - - /** ExecutionClosure outputData */ - outputData?: (flyteidl.core.ILiteralMap|null); - - /** ExecutionClosure computedInputs */ - computedInputs?: (flyteidl.core.ILiteralMap|null); - - /** ExecutionClosure phase */ - phase?: (flyteidl.core.WorkflowExecution.Phase|null); - - /** ExecutionClosure startedAt */ - startedAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionClosure duration */ - duration?: (google.protobuf.IDuration|null); - - /** ExecutionClosure createdAt */ - createdAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionClosure updatedAt */ - updatedAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionClosure notifications */ - notifications?: (flyteidl.admin.INotification[]|null); - - /** ExecutionClosure workflowId */ - workflowId?: (flyteidl.core.IIdentifier|null); - - /** ExecutionClosure stateChangeDetails */ - stateChangeDetails?: (flyteidl.admin.IExecutionStateChangeDetails|null); - } - - /** Represents an ExecutionClosure. */ - class ExecutionClosure implements IExecutionClosure { - - /** - * Constructs a new ExecutionClosure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionClosure); - - /** ExecutionClosure outputs. */ - public outputs?: (flyteidl.admin.ILiteralMapBlob|null); - - /** ExecutionClosure error. */ - public error?: (flyteidl.core.IExecutionError|null); - - /** ExecutionClosure abortCause. */ - public abortCause: string; - - /** ExecutionClosure abortMetadata. */ - public abortMetadata?: (flyteidl.admin.IAbortMetadata|null); - - /** ExecutionClosure outputData. */ - public outputData?: (flyteidl.core.ILiteralMap|null); - - /** ExecutionClosure computedInputs. */ - public computedInputs?: (flyteidl.core.ILiteralMap|null); - - /** ExecutionClosure phase. */ - public phase: flyteidl.core.WorkflowExecution.Phase; - - /** ExecutionClosure startedAt. */ - public startedAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionClosure duration. */ - public duration?: (google.protobuf.IDuration|null); - - /** ExecutionClosure createdAt. */ - public createdAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionClosure updatedAt. */ - public updatedAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionClosure notifications. */ - public notifications: flyteidl.admin.INotification[]; - - /** ExecutionClosure workflowId. */ - public workflowId?: (flyteidl.core.IIdentifier|null); - - /** ExecutionClosure stateChangeDetails. */ - public stateChangeDetails?: (flyteidl.admin.IExecutionStateChangeDetails|null); - - /** ExecutionClosure outputResult. */ - public outputResult?: ("outputs"|"error"|"abortCause"|"abortMetadata"|"outputData"); - - /** - * Creates a new ExecutionClosure instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionClosure instance - */ - public static create(properties?: flyteidl.admin.IExecutionClosure): flyteidl.admin.ExecutionClosure; - - /** - * Encodes the specified ExecutionClosure message. Does not implicitly {@link flyteidl.admin.ExecutionClosure.verify|verify} messages. - * @param message ExecutionClosure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionClosure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionClosure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionClosure; - - /** - * Verifies an ExecutionClosure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SystemMetadata. */ - interface ISystemMetadata { - - /** SystemMetadata executionCluster */ - executionCluster?: (string|null); - - /** SystemMetadata namespace */ - namespace?: (string|null); - } - - /** Represents a SystemMetadata. */ - class SystemMetadata implements ISystemMetadata { - - /** - * Constructs a new SystemMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISystemMetadata); - - /** SystemMetadata executionCluster. */ - public executionCluster: string; - - /** SystemMetadata namespace. */ - public namespace: string; - - /** - * Creates a new SystemMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns SystemMetadata instance - */ - public static create(properties?: flyteidl.admin.ISystemMetadata): flyteidl.admin.SystemMetadata; - - /** - * Encodes the specified SystemMetadata message. Does not implicitly {@link flyteidl.admin.SystemMetadata.verify|verify} messages. - * @param message SystemMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISystemMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SystemMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SystemMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SystemMetadata; - - /** - * Verifies a SystemMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionMetadata. */ - interface IExecutionMetadata { - - /** ExecutionMetadata mode */ - mode?: (flyteidl.admin.ExecutionMetadata.ExecutionMode|null); - - /** ExecutionMetadata principal */ - principal?: (string|null); - - /** ExecutionMetadata nesting */ - nesting?: (number|null); - - /** ExecutionMetadata scheduledAt */ - scheduledAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionMetadata parentNodeExecution */ - parentNodeExecution?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** ExecutionMetadata referenceExecution */ - referenceExecution?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionMetadata systemMetadata */ - systemMetadata?: (flyteidl.admin.ISystemMetadata|null); - - /** ExecutionMetadata artifactIds */ - artifactIds?: (flyteidl.core.IArtifactID[]|null); - } - - /** Represents an ExecutionMetadata. */ - class ExecutionMetadata implements IExecutionMetadata { - - /** - * Constructs a new ExecutionMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionMetadata); - - /** ExecutionMetadata mode. */ - public mode: flyteidl.admin.ExecutionMetadata.ExecutionMode; - - /** ExecutionMetadata principal. */ - public principal: string; - - /** ExecutionMetadata nesting. */ - public nesting: number; - - /** ExecutionMetadata scheduledAt. */ - public scheduledAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionMetadata parentNodeExecution. */ - public parentNodeExecution?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** ExecutionMetadata referenceExecution. */ - public referenceExecution?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionMetadata systemMetadata. */ - public systemMetadata?: (flyteidl.admin.ISystemMetadata|null); - - /** ExecutionMetadata artifactIds. */ - public artifactIds: flyteidl.core.IArtifactID[]; - - /** - * Creates a new ExecutionMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionMetadata instance - */ - public static create(properties?: flyteidl.admin.IExecutionMetadata): flyteidl.admin.ExecutionMetadata; - - /** - * Encodes the specified ExecutionMetadata message. Does not implicitly {@link flyteidl.admin.ExecutionMetadata.verify|verify} messages. - * @param message ExecutionMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionMetadata; - - /** - * Verifies an ExecutionMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace ExecutionMetadata { - - /** ExecutionMode enum. */ - enum ExecutionMode { - MANUAL = 0, - SCHEDULED = 1, - SYSTEM = 2, - RELAUNCH = 3, - CHILD_WORKFLOW = 4, - RECOVERED = 5 - } - } - - /** Properties of a NotificationList. */ - interface INotificationList { - - /** NotificationList notifications */ - notifications?: (flyteidl.admin.INotification[]|null); - } - - /** Represents a NotificationList. */ - class NotificationList implements INotificationList { - - /** - * Constructs a new NotificationList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INotificationList); - - /** NotificationList notifications. */ - public notifications: flyteidl.admin.INotification[]; - - /** - * Creates a new NotificationList instance using the specified properties. - * @param [properties] Properties to set - * @returns NotificationList instance - */ - public static create(properties?: flyteidl.admin.INotificationList): flyteidl.admin.NotificationList; - - /** - * Encodes the specified NotificationList message. Does not implicitly {@link flyteidl.admin.NotificationList.verify|verify} messages. - * @param message NotificationList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INotificationList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NotificationList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NotificationList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NotificationList; - - /** - * Verifies a NotificationList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionSpec. */ - interface IExecutionSpec { - - /** ExecutionSpec launchPlan */ - launchPlan?: (flyteidl.core.IIdentifier|null); - - /** ExecutionSpec inputs */ - inputs?: (flyteidl.core.ILiteralMap|null); - - /** ExecutionSpec metadata */ - metadata?: (flyteidl.admin.IExecutionMetadata|null); - - /** ExecutionSpec notifications */ - notifications?: (flyteidl.admin.INotificationList|null); - - /** ExecutionSpec disableAll */ - disableAll?: (boolean|null); - - /** ExecutionSpec labels */ - labels?: (flyteidl.admin.ILabels|null); - - /** ExecutionSpec annotations */ - annotations?: (flyteidl.admin.IAnnotations|null); - - /** ExecutionSpec securityContext */ - securityContext?: (flyteidl.core.ISecurityContext|null); - - /** ExecutionSpec authRole */ - authRole?: (flyteidl.admin.IAuthRole|null); - - /** ExecutionSpec qualityOfService */ - qualityOfService?: (flyteidl.core.IQualityOfService|null); - - /** ExecutionSpec maxParallelism */ - maxParallelism?: (number|null); - - /** ExecutionSpec rawOutputDataConfig */ - rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null); - - /** ExecutionSpec clusterAssignment */ - clusterAssignment?: (flyteidl.admin.IClusterAssignment|null); - - /** ExecutionSpec interruptible */ - interruptible?: (google.protobuf.IBoolValue|null); - - /** ExecutionSpec overwriteCache */ - overwriteCache?: (boolean|null); - - /** ExecutionSpec envs */ - envs?: (flyteidl.admin.IEnvs|null); - - /** ExecutionSpec tags */ - tags?: (string[]|null); - } - - /** Represents an ExecutionSpec. */ - class ExecutionSpec implements IExecutionSpec { - - /** - * Constructs a new ExecutionSpec. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionSpec); - - /** ExecutionSpec launchPlan. */ - public launchPlan?: (flyteidl.core.IIdentifier|null); - - /** ExecutionSpec inputs. */ - public inputs?: (flyteidl.core.ILiteralMap|null); - - /** ExecutionSpec metadata. */ - public metadata?: (flyteidl.admin.IExecutionMetadata|null); - - /** ExecutionSpec notifications. */ - public notifications?: (flyteidl.admin.INotificationList|null); - - /** ExecutionSpec disableAll. */ - public disableAll: boolean; - - /** ExecutionSpec labels. */ - public labels?: (flyteidl.admin.ILabels|null); - - /** ExecutionSpec annotations. */ - public annotations?: (flyteidl.admin.IAnnotations|null); - - /** ExecutionSpec securityContext. */ - public securityContext?: (flyteidl.core.ISecurityContext|null); - - /** ExecutionSpec authRole. */ - public authRole?: (flyteidl.admin.IAuthRole|null); - - /** ExecutionSpec qualityOfService. */ - public qualityOfService?: (flyteidl.core.IQualityOfService|null); - - /** ExecutionSpec maxParallelism. */ - public maxParallelism: number; - - /** ExecutionSpec rawOutputDataConfig. */ - public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null); - - /** ExecutionSpec clusterAssignment. */ - public clusterAssignment?: (flyteidl.admin.IClusterAssignment|null); - - /** ExecutionSpec interruptible. */ - public interruptible?: (google.protobuf.IBoolValue|null); - - /** ExecutionSpec overwriteCache. */ - public overwriteCache: boolean; - - /** ExecutionSpec envs. */ - public envs?: (flyteidl.admin.IEnvs|null); - - /** ExecutionSpec tags. */ - public tags: string[]; - - /** ExecutionSpec notificationOverrides. */ - public notificationOverrides?: ("notifications"|"disableAll"); - - /** - * Creates a new ExecutionSpec instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionSpec instance - */ - public static create(properties?: flyteidl.admin.IExecutionSpec): flyteidl.admin.ExecutionSpec; - - /** - * Encodes the specified ExecutionSpec message. Does not implicitly {@link flyteidl.admin.ExecutionSpec.verify|verify} messages. - * @param message ExecutionSpec message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionSpec, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionSpec message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionSpec; - - /** - * Verifies an ExecutionSpec message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionTerminateRequest. */ - interface IExecutionTerminateRequest { - - /** ExecutionTerminateRequest id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionTerminateRequest cause */ - cause?: (string|null); - } - - /** Represents an ExecutionTerminateRequest. */ - class ExecutionTerminateRequest implements IExecutionTerminateRequest { - - /** - * Constructs a new ExecutionTerminateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionTerminateRequest); - - /** ExecutionTerminateRequest id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionTerminateRequest cause. */ - public cause: string; - - /** - * Creates a new ExecutionTerminateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionTerminateRequest instance - */ - public static create(properties?: flyteidl.admin.IExecutionTerminateRequest): flyteidl.admin.ExecutionTerminateRequest; - - /** - * Encodes the specified ExecutionTerminateRequest message. Does not implicitly {@link flyteidl.admin.ExecutionTerminateRequest.verify|verify} messages. - * @param message ExecutionTerminateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionTerminateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionTerminateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionTerminateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionTerminateRequest; - - /** - * Verifies an ExecutionTerminateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionTerminateResponse. */ - interface IExecutionTerminateResponse { - } - - /** Represents an ExecutionTerminateResponse. */ - class ExecutionTerminateResponse implements IExecutionTerminateResponse { - - /** - * Constructs a new ExecutionTerminateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionTerminateResponse); - - /** - * Creates a new ExecutionTerminateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionTerminateResponse instance - */ - public static create(properties?: flyteidl.admin.IExecutionTerminateResponse): flyteidl.admin.ExecutionTerminateResponse; - - /** - * Encodes the specified ExecutionTerminateResponse message. Does not implicitly {@link flyteidl.admin.ExecutionTerminateResponse.verify|verify} messages. - * @param message ExecutionTerminateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionTerminateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionTerminateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionTerminateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionTerminateResponse; - - /** - * Verifies an ExecutionTerminateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionGetDataRequest. */ - interface IWorkflowExecutionGetDataRequest { - - /** WorkflowExecutionGetDataRequest id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - } - - /** Represents a WorkflowExecutionGetDataRequest. */ - class WorkflowExecutionGetDataRequest implements IWorkflowExecutionGetDataRequest { - - /** - * Constructs a new WorkflowExecutionGetDataRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowExecutionGetDataRequest); - - /** WorkflowExecutionGetDataRequest id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** - * Creates a new WorkflowExecutionGetDataRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionGetDataRequest instance - */ - public static create(properties?: flyteidl.admin.IWorkflowExecutionGetDataRequest): flyteidl.admin.WorkflowExecutionGetDataRequest; - - /** - * Encodes the specified WorkflowExecutionGetDataRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetDataRequest.verify|verify} messages. - * @param message WorkflowExecutionGetDataRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowExecutionGetDataRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionGetDataRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionGetDataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetDataRequest; - - /** - * Verifies a WorkflowExecutionGetDataRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionGetDataResponse. */ - interface IWorkflowExecutionGetDataResponse { - - /** WorkflowExecutionGetDataResponse outputs */ - outputs?: (flyteidl.admin.IUrlBlob|null); - - /** WorkflowExecutionGetDataResponse inputs */ - inputs?: (flyteidl.admin.IUrlBlob|null); - - /** WorkflowExecutionGetDataResponse fullInputs */ - fullInputs?: (flyteidl.core.ILiteralMap|null); - - /** WorkflowExecutionGetDataResponse fullOutputs */ - fullOutputs?: (flyteidl.core.ILiteralMap|null); - } - - /** Represents a WorkflowExecutionGetDataResponse. */ - class WorkflowExecutionGetDataResponse implements IWorkflowExecutionGetDataResponse { - - /** - * Constructs a new WorkflowExecutionGetDataResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowExecutionGetDataResponse); - - /** WorkflowExecutionGetDataResponse outputs. */ - public outputs?: (flyteidl.admin.IUrlBlob|null); - - /** WorkflowExecutionGetDataResponse inputs. */ - public inputs?: (flyteidl.admin.IUrlBlob|null); - - /** WorkflowExecutionGetDataResponse fullInputs. */ - public fullInputs?: (flyteidl.core.ILiteralMap|null); - - /** WorkflowExecutionGetDataResponse fullOutputs. */ - public fullOutputs?: (flyteidl.core.ILiteralMap|null); - - /** - * Creates a new WorkflowExecutionGetDataResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionGetDataResponse instance - */ - public static create(properties?: flyteidl.admin.IWorkflowExecutionGetDataResponse): flyteidl.admin.WorkflowExecutionGetDataResponse; - - /** - * Encodes the specified WorkflowExecutionGetDataResponse message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetDataResponse.verify|verify} messages. - * @param message WorkflowExecutionGetDataResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowExecutionGetDataResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionGetDataResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionGetDataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetDataResponse; - - /** - * Verifies a WorkflowExecutionGetDataResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** ExecutionState enum. */ - enum ExecutionState { - EXECUTION_ACTIVE = 0, - EXECUTION_ARCHIVED = 1 - } - - /** Properties of an ExecutionUpdateRequest. */ - interface IExecutionUpdateRequest { - - /** ExecutionUpdateRequest id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionUpdateRequest state */ - state?: (flyteidl.admin.ExecutionState|null); - } - - /** Represents an ExecutionUpdateRequest. */ - class ExecutionUpdateRequest implements IExecutionUpdateRequest { - - /** - * Constructs a new ExecutionUpdateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionUpdateRequest); - - /** ExecutionUpdateRequest id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** ExecutionUpdateRequest state. */ - public state: flyteidl.admin.ExecutionState; - - /** - * Creates a new ExecutionUpdateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionUpdateRequest instance - */ - public static create(properties?: flyteidl.admin.IExecutionUpdateRequest): flyteidl.admin.ExecutionUpdateRequest; - - /** - * Encodes the specified ExecutionUpdateRequest message. Does not implicitly {@link flyteidl.admin.ExecutionUpdateRequest.verify|verify} messages. - * @param message ExecutionUpdateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionUpdateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionUpdateRequest; - - /** - * Verifies an ExecutionUpdateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionStateChangeDetails. */ - interface IExecutionStateChangeDetails { - - /** ExecutionStateChangeDetails state */ - state?: (flyteidl.admin.ExecutionState|null); - - /** ExecutionStateChangeDetails occurredAt */ - occurredAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionStateChangeDetails principal */ - principal?: (string|null); - } - - /** Represents an ExecutionStateChangeDetails. */ - class ExecutionStateChangeDetails implements IExecutionStateChangeDetails { - - /** - * Constructs a new ExecutionStateChangeDetails. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionStateChangeDetails); - - /** ExecutionStateChangeDetails state. */ - public state: flyteidl.admin.ExecutionState; - - /** ExecutionStateChangeDetails occurredAt. */ - public occurredAt?: (google.protobuf.ITimestamp|null); - - /** ExecutionStateChangeDetails principal. */ - public principal: string; - - /** - * Creates a new ExecutionStateChangeDetails instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionStateChangeDetails instance - */ - public static create(properties?: flyteidl.admin.IExecutionStateChangeDetails): flyteidl.admin.ExecutionStateChangeDetails; - - /** - * Encodes the specified ExecutionStateChangeDetails message. Does not implicitly {@link flyteidl.admin.ExecutionStateChangeDetails.verify|verify} messages. - * @param message ExecutionStateChangeDetails message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionStateChangeDetails, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionStateChangeDetails message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionStateChangeDetails - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionStateChangeDetails; - - /** - * Verifies an ExecutionStateChangeDetails message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionUpdateResponse. */ - interface IExecutionUpdateResponse { - } - - /** Represents an ExecutionUpdateResponse. */ - class ExecutionUpdateResponse implements IExecutionUpdateResponse { - - /** - * Constructs a new ExecutionUpdateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionUpdateResponse); - - /** - * Creates a new ExecutionUpdateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionUpdateResponse instance - */ - public static create(properties?: flyteidl.admin.IExecutionUpdateResponse): flyteidl.admin.ExecutionUpdateResponse; - - /** - * Encodes the specified ExecutionUpdateResponse message. Does not implicitly {@link flyteidl.admin.ExecutionUpdateResponse.verify|verify} messages. - * @param message ExecutionUpdateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionUpdateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionUpdateResponse; - - /** - * Verifies an ExecutionUpdateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionGetMetricsRequest. */ - interface IWorkflowExecutionGetMetricsRequest { - - /** WorkflowExecutionGetMetricsRequest id */ - id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** WorkflowExecutionGetMetricsRequest depth */ - depth?: (number|null); - } - - /** Represents a WorkflowExecutionGetMetricsRequest. */ - class WorkflowExecutionGetMetricsRequest implements IWorkflowExecutionGetMetricsRequest { - - /** - * Constructs a new WorkflowExecutionGetMetricsRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsRequest); - - /** WorkflowExecutionGetMetricsRequest id. */ - public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** WorkflowExecutionGetMetricsRequest depth. */ - public depth: number; - - /** - * Creates a new WorkflowExecutionGetMetricsRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionGetMetricsRequest instance - */ - public static create(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsRequest): flyteidl.admin.WorkflowExecutionGetMetricsRequest; - - /** - * Encodes the specified WorkflowExecutionGetMetricsRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetMetricsRequest.verify|verify} messages. - * @param message WorkflowExecutionGetMetricsRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowExecutionGetMetricsRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionGetMetricsRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionGetMetricsRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetMetricsRequest; - - /** - * Verifies a WorkflowExecutionGetMetricsRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionGetMetricsResponse. */ - interface IWorkflowExecutionGetMetricsResponse { - - /** WorkflowExecutionGetMetricsResponse span */ - span?: (flyteidl.core.ISpan|null); - } - - /** Represents a WorkflowExecutionGetMetricsResponse. */ - class WorkflowExecutionGetMetricsResponse implements IWorkflowExecutionGetMetricsResponse { - - /** - * Constructs a new WorkflowExecutionGetMetricsResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsResponse); - - /** WorkflowExecutionGetMetricsResponse span. */ - public span?: (flyteidl.core.ISpan|null); - - /** - * Creates a new WorkflowExecutionGetMetricsResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionGetMetricsResponse instance - */ - public static create(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsResponse): flyteidl.admin.WorkflowExecutionGetMetricsResponse; - - /** - * Encodes the specified WorkflowExecutionGetMetricsResponse message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetMetricsResponse.verify|verify} messages. - * @param message WorkflowExecutionGetMetricsResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowExecutionGetMetricsResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionGetMetricsResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionGetMetricsResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetMetricsResponse; - - /** - * Verifies a WorkflowExecutionGetMetricsResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LaunchPlanCreateRequest. */ - interface ILaunchPlanCreateRequest { - - /** LaunchPlanCreateRequest id */ - id?: (flyteidl.core.IIdentifier|null); - - /** LaunchPlanCreateRequest spec */ - spec?: (flyteidl.admin.ILaunchPlanSpec|null); - } - - /** Represents a LaunchPlanCreateRequest. */ - class LaunchPlanCreateRequest implements ILaunchPlanCreateRequest { - - /** - * Constructs a new LaunchPlanCreateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlanCreateRequest); - - /** LaunchPlanCreateRequest id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** LaunchPlanCreateRequest spec. */ - public spec?: (flyteidl.admin.ILaunchPlanSpec|null); - - /** - * Creates a new LaunchPlanCreateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlanCreateRequest instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlanCreateRequest): flyteidl.admin.LaunchPlanCreateRequest; - - /** - * Encodes the specified LaunchPlanCreateRequest message. Does not implicitly {@link flyteidl.admin.LaunchPlanCreateRequest.verify|verify} messages. - * @param message LaunchPlanCreateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlanCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlanCreateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlanCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanCreateRequest; - - /** - * Verifies a LaunchPlanCreateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LaunchPlanCreateResponse. */ - interface ILaunchPlanCreateResponse { - } - - /** Represents a LaunchPlanCreateResponse. */ - class LaunchPlanCreateResponse implements ILaunchPlanCreateResponse { - - /** - * Constructs a new LaunchPlanCreateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlanCreateResponse); - - /** - * Creates a new LaunchPlanCreateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlanCreateResponse instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlanCreateResponse): flyteidl.admin.LaunchPlanCreateResponse; - - /** - * Encodes the specified LaunchPlanCreateResponse message. Does not implicitly {@link flyteidl.admin.LaunchPlanCreateResponse.verify|verify} messages. - * @param message LaunchPlanCreateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlanCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlanCreateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlanCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanCreateResponse; - - /** - * Verifies a LaunchPlanCreateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** LaunchPlanState enum. */ - enum LaunchPlanState { - INACTIVE = 0, - ACTIVE = 1 - } - - /** Properties of a LaunchPlan. */ - interface ILaunchPlan { - - /** LaunchPlan id */ - id?: (flyteidl.core.IIdentifier|null); - - /** LaunchPlan spec */ - spec?: (flyteidl.admin.ILaunchPlanSpec|null); - - /** LaunchPlan closure */ - closure?: (flyteidl.admin.ILaunchPlanClosure|null); - } - - /** Represents a LaunchPlan. */ - class LaunchPlan implements ILaunchPlan { - - /** - * Constructs a new LaunchPlan. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlan); - - /** LaunchPlan id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** LaunchPlan spec. */ - public spec?: (flyteidl.admin.ILaunchPlanSpec|null); - - /** LaunchPlan closure. */ - public closure?: (flyteidl.admin.ILaunchPlanClosure|null); - - /** - * Creates a new LaunchPlan instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlan instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlan): flyteidl.admin.LaunchPlan; - - /** - * Encodes the specified LaunchPlan message. Does not implicitly {@link flyteidl.admin.LaunchPlan.verify|verify} messages. - * @param message LaunchPlan message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlan, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlan message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlan - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlan; - - /** - * Verifies a LaunchPlan message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LaunchPlanList. */ - interface ILaunchPlanList { - - /** LaunchPlanList launchPlans */ - launchPlans?: (flyteidl.admin.ILaunchPlan[]|null); - - /** LaunchPlanList token */ - token?: (string|null); - } - - /** Represents a LaunchPlanList. */ - class LaunchPlanList implements ILaunchPlanList { - - /** - * Constructs a new LaunchPlanList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlanList); - - /** LaunchPlanList launchPlans. */ - public launchPlans: flyteidl.admin.ILaunchPlan[]; - - /** LaunchPlanList token. */ - public token: string; - - /** - * Creates a new LaunchPlanList instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlanList instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlanList): flyteidl.admin.LaunchPlanList; - - /** - * Encodes the specified LaunchPlanList message. Does not implicitly {@link flyteidl.admin.LaunchPlanList.verify|verify} messages. - * @param message LaunchPlanList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlanList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlanList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlanList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanList; - - /** - * Verifies a LaunchPlanList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Auth. */ - interface IAuth { - - /** Auth assumableIamRole */ - assumableIamRole?: (string|null); - - /** Auth kubernetesServiceAccount */ - kubernetesServiceAccount?: (string|null); - } - - /** Represents an Auth. */ - class Auth implements IAuth { - - /** - * Constructs a new Auth. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IAuth); - - /** Auth assumableIamRole. */ - public assumableIamRole: string; - - /** Auth kubernetesServiceAccount. */ - public kubernetesServiceAccount: string; - - /** - * Creates a new Auth instance using the specified properties. - * @param [properties] Properties to set - * @returns Auth instance - */ - public static create(properties?: flyteidl.admin.IAuth): flyteidl.admin.Auth; - - /** - * Encodes the specified Auth message. Does not implicitly {@link flyteidl.admin.Auth.verify|verify} messages. - * @param message Auth message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IAuth, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Auth message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Auth - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Auth; - - /** - * Verifies an Auth message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LaunchPlanSpec. */ - interface ILaunchPlanSpec { - - /** LaunchPlanSpec workflowId */ - workflowId?: (flyteidl.core.IIdentifier|null); - - /** LaunchPlanSpec entityMetadata */ - entityMetadata?: (flyteidl.admin.ILaunchPlanMetadata|null); - - /** LaunchPlanSpec defaultInputs */ - defaultInputs?: (flyteidl.core.IParameterMap|null); - - /** LaunchPlanSpec fixedInputs */ - fixedInputs?: (flyteidl.core.ILiteralMap|null); - - /** LaunchPlanSpec role */ - role?: (string|null); - - /** LaunchPlanSpec labels */ - labels?: (flyteidl.admin.ILabels|null); - - /** LaunchPlanSpec annotations */ - annotations?: (flyteidl.admin.IAnnotations|null); - - /** LaunchPlanSpec auth */ - auth?: (flyteidl.admin.IAuth|null); - - /** LaunchPlanSpec authRole */ - authRole?: (flyteidl.admin.IAuthRole|null); - - /** LaunchPlanSpec securityContext */ - securityContext?: (flyteidl.core.ISecurityContext|null); - - /** LaunchPlanSpec qualityOfService */ - qualityOfService?: (flyteidl.core.IQualityOfService|null); - - /** LaunchPlanSpec rawOutputDataConfig */ - rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null); - - /** LaunchPlanSpec maxParallelism */ - maxParallelism?: (number|null); - - /** LaunchPlanSpec interruptible */ - interruptible?: (google.protobuf.IBoolValue|null); - - /** LaunchPlanSpec overwriteCache */ - overwriteCache?: (boolean|null); - - /** LaunchPlanSpec envs */ - envs?: (flyteidl.admin.IEnvs|null); - } - - /** Represents a LaunchPlanSpec. */ - class LaunchPlanSpec implements ILaunchPlanSpec { - - /** - * Constructs a new LaunchPlanSpec. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlanSpec); - - /** LaunchPlanSpec workflowId. */ - public workflowId?: (flyteidl.core.IIdentifier|null); - - /** LaunchPlanSpec entityMetadata. */ - public entityMetadata?: (flyteidl.admin.ILaunchPlanMetadata|null); - - /** LaunchPlanSpec defaultInputs. */ - public defaultInputs?: (flyteidl.core.IParameterMap|null); - - /** LaunchPlanSpec fixedInputs. */ - public fixedInputs?: (flyteidl.core.ILiteralMap|null); - - /** LaunchPlanSpec role. */ - public role: string; - - /** LaunchPlanSpec labels. */ - public labels?: (flyteidl.admin.ILabels|null); - - /** LaunchPlanSpec annotations. */ - public annotations?: (flyteidl.admin.IAnnotations|null); - - /** LaunchPlanSpec auth. */ - public auth?: (flyteidl.admin.IAuth|null); - - /** LaunchPlanSpec authRole. */ - public authRole?: (flyteidl.admin.IAuthRole|null); - - /** LaunchPlanSpec securityContext. */ - public securityContext?: (flyteidl.core.ISecurityContext|null); - - /** LaunchPlanSpec qualityOfService. */ - public qualityOfService?: (flyteidl.core.IQualityOfService|null); - - /** LaunchPlanSpec rawOutputDataConfig. */ - public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null); - - /** LaunchPlanSpec maxParallelism. */ - public maxParallelism: number; - - /** LaunchPlanSpec interruptible. */ - public interruptible?: (google.protobuf.IBoolValue|null); - - /** LaunchPlanSpec overwriteCache. */ - public overwriteCache: boolean; - - /** LaunchPlanSpec envs. */ - public envs?: (flyteidl.admin.IEnvs|null); - - /** - * Creates a new LaunchPlanSpec instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlanSpec instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlanSpec): flyteidl.admin.LaunchPlanSpec; - - /** - * Encodes the specified LaunchPlanSpec message. Does not implicitly {@link flyteidl.admin.LaunchPlanSpec.verify|verify} messages. - * @param message LaunchPlanSpec message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlanSpec, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlanSpec message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlanSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanSpec; - - /** - * Verifies a LaunchPlanSpec message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LaunchPlanClosure. */ - interface ILaunchPlanClosure { - - /** LaunchPlanClosure state */ - state?: (flyteidl.admin.LaunchPlanState|null); - - /** LaunchPlanClosure expectedInputs */ - expectedInputs?: (flyteidl.core.IParameterMap|null); - - /** LaunchPlanClosure expectedOutputs */ - expectedOutputs?: (flyteidl.core.IVariableMap|null); - - /** LaunchPlanClosure createdAt */ - createdAt?: (google.protobuf.ITimestamp|null); - - /** LaunchPlanClosure updatedAt */ - updatedAt?: (google.protobuf.ITimestamp|null); - } - - /** Represents a LaunchPlanClosure. */ - class LaunchPlanClosure implements ILaunchPlanClosure { - - /** - * Constructs a new LaunchPlanClosure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlanClosure); - - /** LaunchPlanClosure state. */ - public state: flyteidl.admin.LaunchPlanState; - - /** LaunchPlanClosure expectedInputs. */ - public expectedInputs?: (flyteidl.core.IParameterMap|null); - - /** LaunchPlanClosure expectedOutputs. */ - public expectedOutputs?: (flyteidl.core.IVariableMap|null); - - /** LaunchPlanClosure createdAt. */ - public createdAt?: (google.protobuf.ITimestamp|null); - - /** LaunchPlanClosure updatedAt. */ - public updatedAt?: (google.protobuf.ITimestamp|null); - - /** - * Creates a new LaunchPlanClosure instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlanClosure instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlanClosure): flyteidl.admin.LaunchPlanClosure; - - /** - * Encodes the specified LaunchPlanClosure message. Does not implicitly {@link flyteidl.admin.LaunchPlanClosure.verify|verify} messages. - * @param message LaunchPlanClosure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlanClosure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlanClosure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlanClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanClosure; - - /** - * Verifies a LaunchPlanClosure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LaunchPlanMetadata. */ - interface ILaunchPlanMetadata { - - /** LaunchPlanMetadata schedule */ - schedule?: (flyteidl.admin.ISchedule|null); - - /** LaunchPlanMetadata notifications */ - notifications?: (flyteidl.admin.INotification[]|null); - - /** LaunchPlanMetadata launchConditions */ - launchConditions?: (google.protobuf.IAny|null); - } - - /** Represents a LaunchPlanMetadata. */ - class LaunchPlanMetadata implements ILaunchPlanMetadata { - - /** - * Constructs a new LaunchPlanMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlanMetadata); - - /** LaunchPlanMetadata schedule. */ - public schedule?: (flyteidl.admin.ISchedule|null); - - /** LaunchPlanMetadata notifications. */ - public notifications: flyteidl.admin.INotification[]; - - /** LaunchPlanMetadata launchConditions. */ - public launchConditions?: (google.protobuf.IAny|null); - - /** - * Creates a new LaunchPlanMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlanMetadata instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlanMetadata): flyteidl.admin.LaunchPlanMetadata; - - /** - * Encodes the specified LaunchPlanMetadata message. Does not implicitly {@link flyteidl.admin.LaunchPlanMetadata.verify|verify} messages. - * @param message LaunchPlanMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlanMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlanMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlanMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanMetadata; - - /** - * Verifies a LaunchPlanMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LaunchPlanUpdateRequest. */ - interface ILaunchPlanUpdateRequest { - - /** LaunchPlanUpdateRequest id */ - id?: (flyteidl.core.IIdentifier|null); - - /** LaunchPlanUpdateRequest state */ - state?: (flyteidl.admin.LaunchPlanState|null); - } - - /** Represents a LaunchPlanUpdateRequest. */ - class LaunchPlanUpdateRequest implements ILaunchPlanUpdateRequest { - - /** - * Constructs a new LaunchPlanUpdateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlanUpdateRequest); - - /** LaunchPlanUpdateRequest id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** LaunchPlanUpdateRequest state. */ - public state: flyteidl.admin.LaunchPlanState; - - /** - * Creates a new LaunchPlanUpdateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlanUpdateRequest instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlanUpdateRequest): flyteidl.admin.LaunchPlanUpdateRequest; - - /** - * Encodes the specified LaunchPlanUpdateRequest message. Does not implicitly {@link flyteidl.admin.LaunchPlanUpdateRequest.verify|verify} messages. - * @param message LaunchPlanUpdateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlanUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlanUpdateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlanUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanUpdateRequest; - - /** - * Verifies a LaunchPlanUpdateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a LaunchPlanUpdateResponse. */ - interface ILaunchPlanUpdateResponse { - } - - /** Represents a LaunchPlanUpdateResponse. */ - class LaunchPlanUpdateResponse implements ILaunchPlanUpdateResponse { - - /** - * Constructs a new LaunchPlanUpdateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ILaunchPlanUpdateResponse); - - /** - * Creates a new LaunchPlanUpdateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns LaunchPlanUpdateResponse instance - */ - public static create(properties?: flyteidl.admin.ILaunchPlanUpdateResponse): flyteidl.admin.LaunchPlanUpdateResponse; - - /** - * Encodes the specified LaunchPlanUpdateResponse message. Does not implicitly {@link flyteidl.admin.LaunchPlanUpdateResponse.verify|verify} messages. - * @param message LaunchPlanUpdateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ILaunchPlanUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a LaunchPlanUpdateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns LaunchPlanUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanUpdateResponse; - - /** - * Verifies a LaunchPlanUpdateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ActiveLaunchPlanRequest. */ - interface IActiveLaunchPlanRequest { - - /** ActiveLaunchPlanRequest id */ - id?: (flyteidl.admin.INamedEntityIdentifier|null); - } - - /** Represents an ActiveLaunchPlanRequest. */ - class ActiveLaunchPlanRequest implements IActiveLaunchPlanRequest { - - /** - * Constructs a new ActiveLaunchPlanRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IActiveLaunchPlanRequest); - - /** ActiveLaunchPlanRequest id. */ - public id?: (flyteidl.admin.INamedEntityIdentifier|null); - - /** - * Creates a new ActiveLaunchPlanRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ActiveLaunchPlanRequest instance - */ - public static create(properties?: flyteidl.admin.IActiveLaunchPlanRequest): flyteidl.admin.ActiveLaunchPlanRequest; - - /** - * Encodes the specified ActiveLaunchPlanRequest message. Does not implicitly {@link flyteidl.admin.ActiveLaunchPlanRequest.verify|verify} messages. - * @param message ActiveLaunchPlanRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IActiveLaunchPlanRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ActiveLaunchPlanRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ActiveLaunchPlanRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ActiveLaunchPlanRequest; - - /** - * Verifies an ActiveLaunchPlanRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ActiveLaunchPlanListRequest. */ - interface IActiveLaunchPlanListRequest { - - /** ActiveLaunchPlanListRequest project */ - project?: (string|null); - - /** ActiveLaunchPlanListRequest domain */ - domain?: (string|null); - - /** ActiveLaunchPlanListRequest limit */ - limit?: (number|null); - - /** ActiveLaunchPlanListRequest token */ - token?: (string|null); - - /** ActiveLaunchPlanListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - - /** ActiveLaunchPlanListRequest org */ - org?: (string|null); - } - - /** Represents an ActiveLaunchPlanListRequest. */ - class ActiveLaunchPlanListRequest implements IActiveLaunchPlanListRequest { - - /** - * Constructs a new ActiveLaunchPlanListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IActiveLaunchPlanListRequest); - - /** ActiveLaunchPlanListRequest project. */ - public project: string; - - /** ActiveLaunchPlanListRequest domain. */ - public domain: string; - - /** ActiveLaunchPlanListRequest limit. */ - public limit: number; - - /** ActiveLaunchPlanListRequest token. */ - public token: string; - - /** ActiveLaunchPlanListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** ActiveLaunchPlanListRequest org. */ - public org: string; - - /** - * Creates a new ActiveLaunchPlanListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ActiveLaunchPlanListRequest instance - */ - public static create(properties?: flyteidl.admin.IActiveLaunchPlanListRequest): flyteidl.admin.ActiveLaunchPlanListRequest; - - /** - * Encodes the specified ActiveLaunchPlanListRequest message. Does not implicitly {@link flyteidl.admin.ActiveLaunchPlanListRequest.verify|verify} messages. - * @param message ActiveLaunchPlanListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IActiveLaunchPlanListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ActiveLaunchPlanListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ActiveLaunchPlanListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ActiveLaunchPlanListRequest; - - /** - * Verifies an ActiveLaunchPlanListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** FixedRateUnit enum. */ - enum FixedRateUnit { - MINUTE = 0, - HOUR = 1, - DAY = 2 - } - - /** Properties of a FixedRate. */ - interface IFixedRate { - - /** FixedRate value */ - value?: (number|null); - - /** FixedRate unit */ - unit?: (flyteidl.admin.FixedRateUnit|null); - } - - /** Represents a FixedRate. */ - class FixedRate implements IFixedRate { - - /** - * Constructs a new FixedRate. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IFixedRate); - - /** FixedRate value. */ - public value: number; - - /** FixedRate unit. */ - public unit: flyteidl.admin.FixedRateUnit; - - /** - * Creates a new FixedRate instance using the specified properties. - * @param [properties] Properties to set - * @returns FixedRate instance - */ - public static create(properties?: flyteidl.admin.IFixedRate): flyteidl.admin.FixedRate; - - /** - * Encodes the specified FixedRate message. Does not implicitly {@link flyteidl.admin.FixedRate.verify|verify} messages. - * @param message FixedRate message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IFixedRate, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a FixedRate message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns FixedRate - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.FixedRate; - - /** - * Verifies a FixedRate message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CronSchedule. */ - interface ICronSchedule { - - /** CronSchedule schedule */ - schedule?: (string|null); - - /** CronSchedule offset */ - offset?: (string|null); - } - - /** Represents a CronSchedule. */ - class CronSchedule implements ICronSchedule { - - /** - * Constructs a new CronSchedule. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ICronSchedule); - - /** CronSchedule schedule. */ - public schedule: string; - - /** CronSchedule offset. */ - public offset: string; - - /** - * Creates a new CronSchedule instance using the specified properties. - * @param [properties] Properties to set - * @returns CronSchedule instance - */ - public static create(properties?: flyteidl.admin.ICronSchedule): flyteidl.admin.CronSchedule; - - /** - * Encodes the specified CronSchedule message. Does not implicitly {@link flyteidl.admin.CronSchedule.verify|verify} messages. - * @param message CronSchedule message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ICronSchedule, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CronSchedule message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CronSchedule - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.CronSchedule; - - /** - * Verifies a CronSchedule message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Schedule. */ - interface ISchedule { - - /** Schedule cronExpression */ - cronExpression?: (string|null); - - /** Schedule rate */ - rate?: (flyteidl.admin.IFixedRate|null); - - /** Schedule cronSchedule */ - cronSchedule?: (flyteidl.admin.ICronSchedule|null); - - /** Schedule kickoffTimeInputArg */ - kickoffTimeInputArg?: (string|null); - } - - /** Represents a Schedule. */ - class Schedule implements ISchedule { - - /** - * Constructs a new Schedule. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISchedule); - - /** Schedule cronExpression. */ - public cronExpression: string; - - /** Schedule rate. */ - public rate?: (flyteidl.admin.IFixedRate|null); - - /** Schedule cronSchedule. */ - public cronSchedule?: (flyteidl.admin.ICronSchedule|null); - - /** Schedule kickoffTimeInputArg. */ - public kickoffTimeInputArg: string; - - /** Schedule ScheduleExpression. */ - public ScheduleExpression?: ("cronExpression"|"rate"|"cronSchedule"); - - /** - * Creates a new Schedule instance using the specified properties. - * @param [properties] Properties to set - * @returns Schedule instance - */ - public static create(properties?: flyteidl.admin.ISchedule): flyteidl.admin.Schedule; - - /** - * Encodes the specified Schedule message. Does not implicitly {@link flyteidl.admin.Schedule.verify|verify} messages. - * @param message Schedule message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISchedule, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Schedule message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Schedule - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Schedule; - - /** - * Verifies a Schedule message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** MatchableResource enum. */ - enum MatchableResource { - TASK_RESOURCE = 0, - CLUSTER_RESOURCE = 1, - EXECUTION_QUEUE = 2, - EXECUTION_CLUSTER_LABEL = 3, - QUALITY_OF_SERVICE_SPECIFICATION = 4, - PLUGIN_OVERRIDE = 5, - WORKFLOW_EXECUTION_CONFIG = 6, - CLUSTER_ASSIGNMENT = 7 - } - - /** Properties of a TaskResourceSpec. */ - interface ITaskResourceSpec { - - /** TaskResourceSpec cpu */ - cpu?: (string|null); - - /** TaskResourceSpec gpu */ - gpu?: (string|null); - - /** TaskResourceSpec memory */ - memory?: (string|null); - - /** TaskResourceSpec storage */ - storage?: (string|null); - - /** TaskResourceSpec ephemeralStorage */ - ephemeralStorage?: (string|null); - } - - /** Represents a TaskResourceSpec. */ - class TaskResourceSpec implements ITaskResourceSpec { - - /** - * Constructs a new TaskResourceSpec. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskResourceSpec); - - /** TaskResourceSpec cpu. */ - public cpu: string; - - /** TaskResourceSpec gpu. */ - public gpu: string; - - /** TaskResourceSpec memory. */ - public memory: string; - - /** TaskResourceSpec storage. */ - public storage: string; - - /** TaskResourceSpec ephemeralStorage. */ - public ephemeralStorage: string; - - /** - * Creates a new TaskResourceSpec instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskResourceSpec instance - */ - public static create(properties?: flyteidl.admin.ITaskResourceSpec): flyteidl.admin.TaskResourceSpec; - - /** - * Encodes the specified TaskResourceSpec message. Does not implicitly {@link flyteidl.admin.TaskResourceSpec.verify|verify} messages. - * @param message TaskResourceSpec message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskResourceSpec, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskResourceSpec message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskResourceSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskResourceSpec; - - /** - * Verifies a TaskResourceSpec message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskResourceAttributes. */ - interface ITaskResourceAttributes { - - /** TaskResourceAttributes defaults */ - defaults?: (flyteidl.admin.ITaskResourceSpec|null); - - /** TaskResourceAttributes limits */ - limits?: (flyteidl.admin.ITaskResourceSpec|null); - } - - /** Represents a TaskResourceAttributes. */ - class TaskResourceAttributes implements ITaskResourceAttributes { - - /** - * Constructs a new TaskResourceAttributes. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskResourceAttributes); - - /** TaskResourceAttributes defaults. */ - public defaults?: (flyteidl.admin.ITaskResourceSpec|null); - - /** TaskResourceAttributes limits. */ - public limits?: (flyteidl.admin.ITaskResourceSpec|null); - - /** - * Creates a new TaskResourceAttributes instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskResourceAttributes instance - */ - public static create(properties?: flyteidl.admin.ITaskResourceAttributes): flyteidl.admin.TaskResourceAttributes; - - /** - * Encodes the specified TaskResourceAttributes message. Does not implicitly {@link flyteidl.admin.TaskResourceAttributes.verify|verify} messages. - * @param message TaskResourceAttributes message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskResourceAttributes, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskResourceAttributes message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskResourceAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskResourceAttributes; - - /** - * Verifies a TaskResourceAttributes message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ClusterResourceAttributes. */ - interface IClusterResourceAttributes { - - /** ClusterResourceAttributes attributes */ - attributes?: ({ [k: string]: string }|null); - } - - /** Represents a ClusterResourceAttributes. */ - class ClusterResourceAttributes implements IClusterResourceAttributes { - - /** - * Constructs a new ClusterResourceAttributes. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IClusterResourceAttributes); - - /** ClusterResourceAttributes attributes. */ - public attributes: { [k: string]: string }; - - /** - * Creates a new ClusterResourceAttributes instance using the specified properties. - * @param [properties] Properties to set - * @returns ClusterResourceAttributes instance - */ - public static create(properties?: flyteidl.admin.IClusterResourceAttributes): flyteidl.admin.ClusterResourceAttributes; - - /** - * Encodes the specified ClusterResourceAttributes message. Does not implicitly {@link flyteidl.admin.ClusterResourceAttributes.verify|verify} messages. - * @param message ClusterResourceAttributes message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IClusterResourceAttributes, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ClusterResourceAttributes message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ClusterResourceAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ClusterResourceAttributes; - - /** - * Verifies a ClusterResourceAttributes message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionQueueAttributes. */ - interface IExecutionQueueAttributes { - - /** ExecutionQueueAttributes tags */ - tags?: (string[]|null); - } - - /** Represents an ExecutionQueueAttributes. */ - class ExecutionQueueAttributes implements IExecutionQueueAttributes { - - /** - * Constructs a new ExecutionQueueAttributes. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionQueueAttributes); - - /** ExecutionQueueAttributes tags. */ - public tags: string[]; - - /** - * Creates a new ExecutionQueueAttributes instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionQueueAttributes instance - */ - public static create(properties?: flyteidl.admin.IExecutionQueueAttributes): flyteidl.admin.ExecutionQueueAttributes; - - /** - * Encodes the specified ExecutionQueueAttributes message. Does not implicitly {@link flyteidl.admin.ExecutionQueueAttributes.verify|verify} messages. - * @param message ExecutionQueueAttributes message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionQueueAttributes, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionQueueAttributes message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionQueueAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionQueueAttributes; - - /** - * Verifies an ExecutionQueueAttributes message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an ExecutionClusterLabel. */ - interface IExecutionClusterLabel { - - /** ExecutionClusterLabel value */ - value?: (string|null); - } - - /** Represents an ExecutionClusterLabel. */ - class ExecutionClusterLabel implements IExecutionClusterLabel { - - /** - * Constructs a new ExecutionClusterLabel. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IExecutionClusterLabel); - - /** ExecutionClusterLabel value. */ - public value: string; - - /** - * Creates a new ExecutionClusterLabel instance using the specified properties. - * @param [properties] Properties to set - * @returns ExecutionClusterLabel instance - */ - public static create(properties?: flyteidl.admin.IExecutionClusterLabel): flyteidl.admin.ExecutionClusterLabel; - - /** - * Encodes the specified ExecutionClusterLabel message. Does not implicitly {@link flyteidl.admin.ExecutionClusterLabel.verify|verify} messages. - * @param message ExecutionClusterLabel message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IExecutionClusterLabel, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExecutionClusterLabel message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExecutionClusterLabel - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionClusterLabel; - - /** - * Verifies an ExecutionClusterLabel message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a PluginOverride. */ - interface IPluginOverride { - - /** PluginOverride taskType */ - taskType?: (string|null); - - /** PluginOverride pluginId */ - pluginId?: (string[]|null); - - /** PluginOverride missingPluginBehavior */ - missingPluginBehavior?: (flyteidl.admin.PluginOverride.MissingPluginBehavior|null); - } - - /** Represents a PluginOverride. */ - class PluginOverride implements IPluginOverride { - - /** - * Constructs a new PluginOverride. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IPluginOverride); - - /** PluginOverride taskType. */ - public taskType: string; - - /** PluginOverride pluginId. */ - public pluginId: string[]; - - /** PluginOverride missingPluginBehavior. */ - public missingPluginBehavior: flyteidl.admin.PluginOverride.MissingPluginBehavior; - - /** - * Creates a new PluginOverride instance using the specified properties. - * @param [properties] Properties to set - * @returns PluginOverride instance - */ - public static create(properties?: flyteidl.admin.IPluginOverride): flyteidl.admin.PluginOverride; - - /** - * Encodes the specified PluginOverride message. Does not implicitly {@link flyteidl.admin.PluginOverride.verify|verify} messages. - * @param message PluginOverride message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IPluginOverride, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a PluginOverride message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns PluginOverride - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.PluginOverride; - - /** - * Verifies a PluginOverride message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace PluginOverride { - - /** MissingPluginBehavior enum. */ - enum MissingPluginBehavior { - FAIL = 0, - USE_DEFAULT = 1 - } - } - - /** Properties of a PluginOverrides. */ - interface IPluginOverrides { - - /** PluginOverrides overrides */ - overrides?: (flyteidl.admin.IPluginOverride[]|null); - } - - /** Represents a PluginOverrides. */ - class PluginOverrides implements IPluginOverrides { - - /** - * Constructs a new PluginOverrides. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IPluginOverrides); - - /** PluginOverrides overrides. */ - public overrides: flyteidl.admin.IPluginOverride[]; - - /** - * Creates a new PluginOverrides instance using the specified properties. - * @param [properties] Properties to set - * @returns PluginOverrides instance - */ - public static create(properties?: flyteidl.admin.IPluginOverrides): flyteidl.admin.PluginOverrides; - - /** - * Encodes the specified PluginOverrides message. Does not implicitly {@link flyteidl.admin.PluginOverrides.verify|verify} messages. - * @param message PluginOverrides message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IPluginOverrides, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a PluginOverrides message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns PluginOverrides - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.PluginOverrides; - - /** - * Verifies a PluginOverrides message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowExecutionConfig. */ - interface IWorkflowExecutionConfig { - - /** WorkflowExecutionConfig maxParallelism */ - maxParallelism?: (number|null); - - /** WorkflowExecutionConfig securityContext */ - securityContext?: (flyteidl.core.ISecurityContext|null); - - /** WorkflowExecutionConfig rawOutputDataConfig */ - rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null); - - /** WorkflowExecutionConfig labels */ - labels?: (flyteidl.admin.ILabels|null); - - /** WorkflowExecutionConfig annotations */ - annotations?: (flyteidl.admin.IAnnotations|null); - - /** WorkflowExecutionConfig interruptible */ - interruptible?: (google.protobuf.IBoolValue|null); - - /** WorkflowExecutionConfig overwriteCache */ - overwriteCache?: (boolean|null); - - /** WorkflowExecutionConfig envs */ - envs?: (flyteidl.admin.IEnvs|null); - } - - /** Represents a WorkflowExecutionConfig. */ - class WorkflowExecutionConfig implements IWorkflowExecutionConfig { - - /** - * Constructs a new WorkflowExecutionConfig. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowExecutionConfig); - - /** WorkflowExecutionConfig maxParallelism. */ - public maxParallelism: number; - - /** WorkflowExecutionConfig securityContext. */ - public securityContext?: (flyteidl.core.ISecurityContext|null); - - /** WorkflowExecutionConfig rawOutputDataConfig. */ - public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null); - - /** WorkflowExecutionConfig labels. */ - public labels?: (flyteidl.admin.ILabels|null); - - /** WorkflowExecutionConfig annotations. */ - public annotations?: (flyteidl.admin.IAnnotations|null); - - /** WorkflowExecutionConfig interruptible. */ - public interruptible?: (google.protobuf.IBoolValue|null); - - /** WorkflowExecutionConfig overwriteCache. */ - public overwriteCache: boolean; - - /** WorkflowExecutionConfig envs. */ - public envs?: (flyteidl.admin.IEnvs|null); - - /** - * Creates a new WorkflowExecutionConfig instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowExecutionConfig instance - */ - public static create(properties?: flyteidl.admin.IWorkflowExecutionConfig): flyteidl.admin.WorkflowExecutionConfig; - - /** - * Encodes the specified WorkflowExecutionConfig message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionConfig.verify|verify} messages. - * @param message WorkflowExecutionConfig message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowExecutionConfig, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowExecutionConfig message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowExecutionConfig - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionConfig; - - /** - * Verifies a WorkflowExecutionConfig message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a MatchingAttributes. */ - interface IMatchingAttributes { - - /** MatchingAttributes taskResourceAttributes */ - taskResourceAttributes?: (flyteidl.admin.ITaskResourceAttributes|null); - - /** MatchingAttributes clusterResourceAttributes */ - clusterResourceAttributes?: (flyteidl.admin.IClusterResourceAttributes|null); - - /** MatchingAttributes executionQueueAttributes */ - executionQueueAttributes?: (flyteidl.admin.IExecutionQueueAttributes|null); - - /** MatchingAttributes executionClusterLabel */ - executionClusterLabel?: (flyteidl.admin.IExecutionClusterLabel|null); - - /** MatchingAttributes qualityOfService */ - qualityOfService?: (flyteidl.core.IQualityOfService|null); - - /** MatchingAttributes pluginOverrides */ - pluginOverrides?: (flyteidl.admin.IPluginOverrides|null); - - /** MatchingAttributes workflowExecutionConfig */ - workflowExecutionConfig?: (flyteidl.admin.IWorkflowExecutionConfig|null); - - /** MatchingAttributes clusterAssignment */ - clusterAssignment?: (flyteidl.admin.IClusterAssignment|null); - } - - /** Represents a MatchingAttributes. */ - class MatchingAttributes implements IMatchingAttributes { - - /** - * Constructs a new MatchingAttributes. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IMatchingAttributes); - - /** MatchingAttributes taskResourceAttributes. */ - public taskResourceAttributes?: (flyteidl.admin.ITaskResourceAttributes|null); - - /** MatchingAttributes clusterResourceAttributes. */ - public clusterResourceAttributes?: (flyteidl.admin.IClusterResourceAttributes|null); - - /** MatchingAttributes executionQueueAttributes. */ - public executionQueueAttributes?: (flyteidl.admin.IExecutionQueueAttributes|null); - - /** MatchingAttributes executionClusterLabel. */ - public executionClusterLabel?: (flyteidl.admin.IExecutionClusterLabel|null); - - /** MatchingAttributes qualityOfService. */ - public qualityOfService?: (flyteidl.core.IQualityOfService|null); - - /** MatchingAttributes pluginOverrides. */ - public pluginOverrides?: (flyteidl.admin.IPluginOverrides|null); - - /** MatchingAttributes workflowExecutionConfig. */ - public workflowExecutionConfig?: (flyteidl.admin.IWorkflowExecutionConfig|null); - - /** MatchingAttributes clusterAssignment. */ - public clusterAssignment?: (flyteidl.admin.IClusterAssignment|null); - - /** MatchingAttributes target. */ - public target?: ("taskResourceAttributes"|"clusterResourceAttributes"|"executionQueueAttributes"|"executionClusterLabel"|"qualityOfService"|"pluginOverrides"|"workflowExecutionConfig"|"clusterAssignment"); - - /** - * Creates a new MatchingAttributes instance using the specified properties. - * @param [properties] Properties to set - * @returns MatchingAttributes instance - */ - public static create(properties?: flyteidl.admin.IMatchingAttributes): flyteidl.admin.MatchingAttributes; - - /** - * Encodes the specified MatchingAttributes message. Does not implicitly {@link flyteidl.admin.MatchingAttributes.verify|verify} messages. - * @param message MatchingAttributes message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IMatchingAttributes, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a MatchingAttributes message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns MatchingAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.MatchingAttributes; - - /** - * Verifies a MatchingAttributes message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a MatchableAttributesConfiguration. */ - interface IMatchableAttributesConfiguration { - - /** MatchableAttributesConfiguration attributes */ - attributes?: (flyteidl.admin.IMatchingAttributes|null); - - /** MatchableAttributesConfiguration domain */ - domain?: (string|null); - - /** MatchableAttributesConfiguration project */ - project?: (string|null); - - /** MatchableAttributesConfiguration workflow */ - workflow?: (string|null); - - /** MatchableAttributesConfiguration launchPlan */ - launchPlan?: (string|null); - - /** MatchableAttributesConfiguration org */ - org?: (string|null); - } - - /** Represents a MatchableAttributesConfiguration. */ - class MatchableAttributesConfiguration implements IMatchableAttributesConfiguration { - - /** - * Constructs a new MatchableAttributesConfiguration. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IMatchableAttributesConfiguration); - - /** MatchableAttributesConfiguration attributes. */ - public attributes?: (flyteidl.admin.IMatchingAttributes|null); - - /** MatchableAttributesConfiguration domain. */ - public domain: string; - - /** MatchableAttributesConfiguration project. */ - public project: string; - - /** MatchableAttributesConfiguration workflow. */ - public workflow: string; - - /** MatchableAttributesConfiguration launchPlan. */ - public launchPlan: string; - - /** MatchableAttributesConfiguration org. */ - public org: string; - - /** - * Creates a new MatchableAttributesConfiguration instance using the specified properties. - * @param [properties] Properties to set - * @returns MatchableAttributesConfiguration instance - */ - public static create(properties?: flyteidl.admin.IMatchableAttributesConfiguration): flyteidl.admin.MatchableAttributesConfiguration; - - /** - * Encodes the specified MatchableAttributesConfiguration message. Does not implicitly {@link flyteidl.admin.MatchableAttributesConfiguration.verify|verify} messages. - * @param message MatchableAttributesConfiguration message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IMatchableAttributesConfiguration, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a MatchableAttributesConfiguration message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns MatchableAttributesConfiguration - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.MatchableAttributesConfiguration; - - /** - * Verifies a MatchableAttributesConfiguration message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ListMatchableAttributesRequest. */ - interface IListMatchableAttributesRequest { - - /** ListMatchableAttributesRequest resourceType */ - resourceType?: (flyteidl.admin.MatchableResource|null); - - /** ListMatchableAttributesRequest org */ - org?: (string|null); - } - - /** Represents a ListMatchableAttributesRequest. */ - class ListMatchableAttributesRequest implements IListMatchableAttributesRequest { - - /** - * Constructs a new ListMatchableAttributesRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IListMatchableAttributesRequest); - - /** ListMatchableAttributesRequest resourceType. */ - public resourceType: flyteidl.admin.MatchableResource; - - /** ListMatchableAttributesRequest org. */ - public org: string; - - /** - * Creates a new ListMatchableAttributesRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ListMatchableAttributesRequest instance - */ - public static create(properties?: flyteidl.admin.IListMatchableAttributesRequest): flyteidl.admin.ListMatchableAttributesRequest; - - /** - * Encodes the specified ListMatchableAttributesRequest message. Does not implicitly {@link flyteidl.admin.ListMatchableAttributesRequest.verify|verify} messages. - * @param message ListMatchableAttributesRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IListMatchableAttributesRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ListMatchableAttributesRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ListMatchableAttributesRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ListMatchableAttributesRequest; - - /** - * Verifies a ListMatchableAttributesRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ListMatchableAttributesResponse. */ - interface IListMatchableAttributesResponse { - - /** ListMatchableAttributesResponse configurations */ - configurations?: (flyteidl.admin.IMatchableAttributesConfiguration[]|null); - } - - /** Represents a ListMatchableAttributesResponse. */ - class ListMatchableAttributesResponse implements IListMatchableAttributesResponse { - - /** - * Constructs a new ListMatchableAttributesResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IListMatchableAttributesResponse); - - /** ListMatchableAttributesResponse configurations. */ - public configurations: flyteidl.admin.IMatchableAttributesConfiguration[]; - - /** - * Creates a new ListMatchableAttributesResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ListMatchableAttributesResponse instance - */ - public static create(properties?: flyteidl.admin.IListMatchableAttributesResponse): flyteidl.admin.ListMatchableAttributesResponse; - - /** - * Encodes the specified ListMatchableAttributesResponse message. Does not implicitly {@link flyteidl.admin.ListMatchableAttributesResponse.verify|verify} messages. - * @param message ListMatchableAttributesResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IListMatchableAttributesResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ListMatchableAttributesResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ListMatchableAttributesResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ListMatchableAttributesResponse; - - /** - * Verifies a ListMatchableAttributesResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionGetRequest. */ - interface INodeExecutionGetRequest { - - /** NodeExecutionGetRequest id */ - id?: (flyteidl.core.INodeExecutionIdentifier|null); - } - - /** Represents a NodeExecutionGetRequest. */ - class NodeExecutionGetRequest implements INodeExecutionGetRequest { - - /** - * Constructs a new NodeExecutionGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionGetRequest); - - /** NodeExecutionGetRequest id. */ - public id?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** - * Creates a new NodeExecutionGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionGetRequest instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionGetRequest): flyteidl.admin.NodeExecutionGetRequest; - - /** - * Encodes the specified NodeExecutionGetRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionGetRequest.verify|verify} messages. - * @param message NodeExecutionGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionGetRequest; - - /** - * Verifies a NodeExecutionGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionListRequest. */ - interface INodeExecutionListRequest { - - /** NodeExecutionListRequest workflowExecutionId */ - workflowExecutionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** NodeExecutionListRequest limit */ - limit?: (number|null); - - /** NodeExecutionListRequest token */ - token?: (string|null); - - /** NodeExecutionListRequest filters */ - filters?: (string|null); - - /** NodeExecutionListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - - /** NodeExecutionListRequest uniqueParentId */ - uniqueParentId?: (string|null); - } - - /** Represents a NodeExecutionListRequest. */ - class NodeExecutionListRequest implements INodeExecutionListRequest { - - /** - * Constructs a new NodeExecutionListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionListRequest); - - /** NodeExecutionListRequest workflowExecutionId. */ - public workflowExecutionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** NodeExecutionListRequest limit. */ - public limit: number; - - /** NodeExecutionListRequest token. */ - public token: string; - - /** NodeExecutionListRequest filters. */ - public filters: string; - - /** NodeExecutionListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** NodeExecutionListRequest uniqueParentId. */ - public uniqueParentId: string; - - /** - * Creates a new NodeExecutionListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionListRequest instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionListRequest): flyteidl.admin.NodeExecutionListRequest; - - /** - * Encodes the specified NodeExecutionListRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionListRequest.verify|verify} messages. - * @param message NodeExecutionListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionListRequest; - - /** - * Verifies a NodeExecutionListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionForTaskListRequest. */ - interface INodeExecutionForTaskListRequest { - - /** NodeExecutionForTaskListRequest taskExecutionId */ - taskExecutionId?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** NodeExecutionForTaskListRequest limit */ - limit?: (number|null); - - /** NodeExecutionForTaskListRequest token */ - token?: (string|null); - - /** NodeExecutionForTaskListRequest filters */ - filters?: (string|null); - - /** NodeExecutionForTaskListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - } - - /** Represents a NodeExecutionForTaskListRequest. */ - class NodeExecutionForTaskListRequest implements INodeExecutionForTaskListRequest { - - /** - * Constructs a new NodeExecutionForTaskListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionForTaskListRequest); - - /** NodeExecutionForTaskListRequest taskExecutionId. */ - public taskExecutionId?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** NodeExecutionForTaskListRequest limit. */ - public limit: number; - - /** NodeExecutionForTaskListRequest token. */ - public token: string; - - /** NodeExecutionForTaskListRequest filters. */ - public filters: string; - - /** NodeExecutionForTaskListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** - * Creates a new NodeExecutionForTaskListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionForTaskListRequest instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionForTaskListRequest): flyteidl.admin.NodeExecutionForTaskListRequest; - - /** - * Encodes the specified NodeExecutionForTaskListRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionForTaskListRequest.verify|verify} messages. - * @param message NodeExecutionForTaskListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionForTaskListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionForTaskListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionForTaskListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionForTaskListRequest; - - /** - * Verifies a NodeExecutionForTaskListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecution. */ - interface INodeExecution { - - /** NodeExecution id */ - id?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** NodeExecution inputUri */ - inputUri?: (string|null); - - /** NodeExecution closure */ - closure?: (flyteidl.admin.INodeExecutionClosure|null); - - /** NodeExecution metadata */ - metadata?: (flyteidl.admin.INodeExecutionMetaData|null); - } - - /** Represents a NodeExecution. */ - class NodeExecution implements INodeExecution { - - /** - * Constructs a new NodeExecution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecution); - - /** NodeExecution id. */ - public id?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** NodeExecution inputUri. */ - public inputUri: string; - - /** NodeExecution closure. */ - public closure?: (flyteidl.admin.INodeExecutionClosure|null); - - /** NodeExecution metadata. */ - public metadata?: (flyteidl.admin.INodeExecutionMetaData|null); - - /** - * Creates a new NodeExecution instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecution instance - */ - public static create(properties?: flyteidl.admin.INodeExecution): flyteidl.admin.NodeExecution; - - /** - * Encodes the specified NodeExecution message. Does not implicitly {@link flyteidl.admin.NodeExecution.verify|verify} messages. - * @param message NodeExecution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecution; - - /** - * Verifies a NodeExecution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionMetaData. */ - interface INodeExecutionMetaData { - - /** NodeExecutionMetaData retryGroup */ - retryGroup?: (string|null); - - /** NodeExecutionMetaData isParentNode */ - isParentNode?: (boolean|null); - - /** NodeExecutionMetaData specNodeId */ - specNodeId?: (string|null); - - /** NodeExecutionMetaData isDynamic */ - isDynamic?: (boolean|null); - - /** NodeExecutionMetaData isArray */ - isArray?: (boolean|null); - } - - /** Represents a NodeExecutionMetaData. */ - class NodeExecutionMetaData implements INodeExecutionMetaData { - - /** - * Constructs a new NodeExecutionMetaData. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionMetaData); - - /** NodeExecutionMetaData retryGroup. */ - public retryGroup: string; - - /** NodeExecutionMetaData isParentNode. */ - public isParentNode: boolean; - - /** NodeExecutionMetaData specNodeId. */ - public specNodeId: string; - - /** NodeExecutionMetaData isDynamic. */ - public isDynamic: boolean; - - /** NodeExecutionMetaData isArray. */ - public isArray: boolean; - - /** - * Creates a new NodeExecutionMetaData instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionMetaData instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionMetaData): flyteidl.admin.NodeExecutionMetaData; - - /** - * Encodes the specified NodeExecutionMetaData message. Does not implicitly {@link flyteidl.admin.NodeExecutionMetaData.verify|verify} messages. - * @param message NodeExecutionMetaData message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionMetaData, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionMetaData message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionMetaData - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionMetaData; - - /** - * Verifies a NodeExecutionMetaData message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionList. */ - interface INodeExecutionList { - - /** NodeExecutionList nodeExecutions */ - nodeExecutions?: (flyteidl.admin.INodeExecution[]|null); - - /** NodeExecutionList token */ - token?: (string|null); - } - - /** Represents a NodeExecutionList. */ - class NodeExecutionList implements INodeExecutionList { - - /** - * Constructs a new NodeExecutionList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionList); - - /** NodeExecutionList nodeExecutions. */ - public nodeExecutions: flyteidl.admin.INodeExecution[]; - - /** NodeExecutionList token. */ - public token: string; - - /** - * Creates a new NodeExecutionList instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionList instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionList): flyteidl.admin.NodeExecutionList; - - /** - * Encodes the specified NodeExecutionList message. Does not implicitly {@link flyteidl.admin.NodeExecutionList.verify|verify} messages. - * @param message NodeExecutionList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionList; - - /** - * Verifies a NodeExecutionList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionClosure. */ - interface INodeExecutionClosure { - - /** NodeExecutionClosure outputUri */ - outputUri?: (string|null); - - /** NodeExecutionClosure error */ - error?: (flyteidl.core.IExecutionError|null); - - /** NodeExecutionClosure outputData */ - outputData?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionClosure phase */ - phase?: (flyteidl.core.NodeExecution.Phase|null); - - /** NodeExecutionClosure startedAt */ - startedAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionClosure duration */ - duration?: (google.protobuf.IDuration|null); - - /** NodeExecutionClosure createdAt */ - createdAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionClosure updatedAt */ - updatedAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionClosure workflowNodeMetadata */ - workflowNodeMetadata?: (flyteidl.admin.IWorkflowNodeMetadata|null); - - /** NodeExecutionClosure taskNodeMetadata */ - taskNodeMetadata?: (flyteidl.admin.ITaskNodeMetadata|null); - - /** NodeExecutionClosure deckUri */ - deckUri?: (string|null); - - /** NodeExecutionClosure dynamicJobSpecUri */ - dynamicJobSpecUri?: (string|null); - } - - /** Represents a NodeExecutionClosure. */ - class NodeExecutionClosure implements INodeExecutionClosure { - - /** - * Constructs a new NodeExecutionClosure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionClosure); - - /** NodeExecutionClosure outputUri. */ - public outputUri: string; - - /** NodeExecutionClosure error. */ - public error?: (flyteidl.core.IExecutionError|null); - - /** NodeExecutionClosure outputData. */ - public outputData?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionClosure phase. */ - public phase: flyteidl.core.NodeExecution.Phase; - - /** NodeExecutionClosure startedAt. */ - public startedAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionClosure duration. */ - public duration?: (google.protobuf.IDuration|null); - - /** NodeExecutionClosure createdAt. */ - public createdAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionClosure updatedAt. */ - public updatedAt?: (google.protobuf.ITimestamp|null); - - /** NodeExecutionClosure workflowNodeMetadata. */ - public workflowNodeMetadata?: (flyteidl.admin.IWorkflowNodeMetadata|null); - - /** NodeExecutionClosure taskNodeMetadata. */ - public taskNodeMetadata?: (flyteidl.admin.ITaskNodeMetadata|null); - - /** NodeExecutionClosure deckUri. */ - public deckUri: string; - - /** NodeExecutionClosure dynamicJobSpecUri. */ - public dynamicJobSpecUri: string; - - /** NodeExecutionClosure outputResult. */ - public outputResult?: ("outputUri"|"error"|"outputData"); - - /** NodeExecutionClosure targetMetadata. */ - public targetMetadata?: ("workflowNodeMetadata"|"taskNodeMetadata"); - - /** - * Creates a new NodeExecutionClosure instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionClosure instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionClosure): flyteidl.admin.NodeExecutionClosure; - - /** - * Encodes the specified NodeExecutionClosure message. Does not implicitly {@link flyteidl.admin.NodeExecutionClosure.verify|verify} messages. - * @param message NodeExecutionClosure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionClosure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionClosure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionClosure; - - /** - * Verifies a NodeExecutionClosure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowNodeMetadata. */ - interface IWorkflowNodeMetadata { - - /** WorkflowNodeMetadata executionId */ - executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - } - - /** Represents a WorkflowNodeMetadata. */ - class WorkflowNodeMetadata implements IWorkflowNodeMetadata { - - /** - * Constructs a new WorkflowNodeMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowNodeMetadata); - - /** WorkflowNodeMetadata executionId. */ - public executionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** - * Creates a new WorkflowNodeMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowNodeMetadata instance - */ - public static create(properties?: flyteidl.admin.IWorkflowNodeMetadata): flyteidl.admin.WorkflowNodeMetadata; - - /** - * Encodes the specified WorkflowNodeMetadata message. Does not implicitly {@link flyteidl.admin.WorkflowNodeMetadata.verify|verify} messages. - * @param message WorkflowNodeMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowNodeMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowNodeMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowNodeMetadata; - - /** - * Verifies a WorkflowNodeMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskNodeMetadata. */ - interface ITaskNodeMetadata { - - /** TaskNodeMetadata cacheStatus */ - cacheStatus?: (flyteidl.core.CatalogCacheStatus|null); - - /** TaskNodeMetadata catalogKey */ - catalogKey?: (flyteidl.core.ICatalogMetadata|null); - - /** TaskNodeMetadata checkpointUri */ - checkpointUri?: (string|null); - } - - /** Represents a TaskNodeMetadata. */ - class TaskNodeMetadata implements ITaskNodeMetadata { - - /** - * Constructs a new TaskNodeMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskNodeMetadata); - - /** TaskNodeMetadata cacheStatus. */ - public cacheStatus: flyteidl.core.CatalogCacheStatus; - - /** TaskNodeMetadata catalogKey. */ - public catalogKey?: (flyteidl.core.ICatalogMetadata|null); - - /** TaskNodeMetadata checkpointUri. */ - public checkpointUri: string; - - /** - * Creates a new TaskNodeMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskNodeMetadata instance - */ - public static create(properties?: flyteidl.admin.ITaskNodeMetadata): flyteidl.admin.TaskNodeMetadata; - - /** - * Encodes the specified TaskNodeMetadata message. Does not implicitly {@link flyteidl.admin.TaskNodeMetadata.verify|verify} messages. - * @param message TaskNodeMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskNodeMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskNodeMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskNodeMetadata; - - /** - * Verifies a TaskNodeMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DynamicWorkflowNodeMetadata. */ - interface IDynamicWorkflowNodeMetadata { - - /** DynamicWorkflowNodeMetadata id */ - id?: (flyteidl.core.IIdentifier|null); - - /** DynamicWorkflowNodeMetadata compiledWorkflow */ - compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null); - - /** DynamicWorkflowNodeMetadata dynamicJobSpecUri */ - dynamicJobSpecUri?: (string|null); - } - - /** Represents a DynamicWorkflowNodeMetadata. */ - class DynamicWorkflowNodeMetadata implements IDynamicWorkflowNodeMetadata { - - /** - * Constructs a new DynamicWorkflowNodeMetadata. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDynamicWorkflowNodeMetadata); - - /** DynamicWorkflowNodeMetadata id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** DynamicWorkflowNodeMetadata compiledWorkflow. */ - public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null); - - /** DynamicWorkflowNodeMetadata dynamicJobSpecUri. */ - public dynamicJobSpecUri: string; - - /** - * Creates a new DynamicWorkflowNodeMetadata instance using the specified properties. - * @param [properties] Properties to set - * @returns DynamicWorkflowNodeMetadata instance - */ - public static create(properties?: flyteidl.admin.IDynamicWorkflowNodeMetadata): flyteidl.admin.DynamicWorkflowNodeMetadata; - - /** - * Encodes the specified DynamicWorkflowNodeMetadata message. Does not implicitly {@link flyteidl.admin.DynamicWorkflowNodeMetadata.verify|verify} messages. - * @param message DynamicWorkflowNodeMetadata message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDynamicWorkflowNodeMetadata, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DynamicWorkflowNodeMetadata message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DynamicWorkflowNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DynamicWorkflowNodeMetadata; - - /** - * Verifies a DynamicWorkflowNodeMetadata message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionGetDataRequest. */ - interface INodeExecutionGetDataRequest { - - /** NodeExecutionGetDataRequest id */ - id?: (flyteidl.core.INodeExecutionIdentifier|null); - } - - /** Represents a NodeExecutionGetDataRequest. */ - class NodeExecutionGetDataRequest implements INodeExecutionGetDataRequest { - - /** - * Constructs a new NodeExecutionGetDataRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionGetDataRequest); - - /** NodeExecutionGetDataRequest id. */ - public id?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** - * Creates a new NodeExecutionGetDataRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionGetDataRequest instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionGetDataRequest): flyteidl.admin.NodeExecutionGetDataRequest; - - /** - * Encodes the specified NodeExecutionGetDataRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionGetDataRequest.verify|verify} messages. - * @param message NodeExecutionGetDataRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionGetDataRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionGetDataRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionGetDataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionGetDataRequest; - - /** - * Verifies a NodeExecutionGetDataRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a NodeExecutionGetDataResponse. */ - interface INodeExecutionGetDataResponse { - - /** NodeExecutionGetDataResponse inputs */ - inputs?: (flyteidl.admin.IUrlBlob|null); - - /** NodeExecutionGetDataResponse outputs */ - outputs?: (flyteidl.admin.IUrlBlob|null); - - /** NodeExecutionGetDataResponse fullInputs */ - fullInputs?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionGetDataResponse fullOutputs */ - fullOutputs?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionGetDataResponse dynamicWorkflow */ - dynamicWorkflow?: (flyteidl.admin.IDynamicWorkflowNodeMetadata|null); - - /** NodeExecutionGetDataResponse flyteUrls */ - flyteUrls?: (flyteidl.admin.IFlyteURLs|null); - } - - /** Represents a NodeExecutionGetDataResponse. */ - class NodeExecutionGetDataResponse implements INodeExecutionGetDataResponse { - - /** - * Constructs a new NodeExecutionGetDataResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.INodeExecutionGetDataResponse); - - /** NodeExecutionGetDataResponse inputs. */ - public inputs?: (flyteidl.admin.IUrlBlob|null); - - /** NodeExecutionGetDataResponse outputs. */ - public outputs?: (flyteidl.admin.IUrlBlob|null); - - /** NodeExecutionGetDataResponse fullInputs. */ - public fullInputs?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionGetDataResponse fullOutputs. */ - public fullOutputs?: (flyteidl.core.ILiteralMap|null); - - /** NodeExecutionGetDataResponse dynamicWorkflow. */ - public dynamicWorkflow?: (flyteidl.admin.IDynamicWorkflowNodeMetadata|null); - - /** NodeExecutionGetDataResponse flyteUrls. */ - public flyteUrls?: (flyteidl.admin.IFlyteURLs|null); - - /** - * Creates a new NodeExecutionGetDataResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns NodeExecutionGetDataResponse instance - */ - public static create(properties?: flyteidl.admin.INodeExecutionGetDataResponse): flyteidl.admin.NodeExecutionGetDataResponse; - - /** - * Encodes the specified NodeExecutionGetDataResponse message. Does not implicitly {@link flyteidl.admin.NodeExecutionGetDataResponse.verify|verify} messages. - * @param message NodeExecutionGetDataResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.INodeExecutionGetDataResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NodeExecutionGetDataResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NodeExecutionGetDataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.NodeExecutionGetDataResponse; - - /** - * Verifies a NodeExecutionGetDataResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EmailMessage. */ - interface IEmailMessage { - - /** EmailMessage recipientsEmail */ - recipientsEmail?: (string[]|null); - - /** EmailMessage senderEmail */ - senderEmail?: (string|null); - - /** EmailMessage subjectLine */ - subjectLine?: (string|null); - - /** EmailMessage body */ - body?: (string|null); - } - - /** Represents an EmailMessage. */ - class EmailMessage implements IEmailMessage { - - /** - * Constructs a new EmailMessage. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IEmailMessage); - - /** EmailMessage recipientsEmail. */ - public recipientsEmail: string[]; - - /** EmailMessage senderEmail. */ - public senderEmail: string; - - /** EmailMessage subjectLine. */ - public subjectLine: string; - - /** EmailMessage body. */ - public body: string; - - /** - * Creates a new EmailMessage instance using the specified properties. - * @param [properties] Properties to set - * @returns EmailMessage instance - */ - public static create(properties?: flyteidl.admin.IEmailMessage): flyteidl.admin.EmailMessage; - - /** - * Encodes the specified EmailMessage message. Does not implicitly {@link flyteidl.admin.EmailMessage.verify|verify} messages. - * @param message EmailMessage message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IEmailMessage, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EmailMessage message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EmailMessage - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.EmailMessage; - - /** - * Verifies an EmailMessage message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Domain. */ - interface IDomain { - - /** Domain id */ - id?: (string|null); - - /** Domain name */ - name?: (string|null); - } - - /** Represents a Domain. */ - class Domain implements IDomain { - - /** - * Constructs a new Domain. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDomain); - - /** Domain id. */ - public id: string; - - /** Domain name. */ - public name: string; - - /** - * Creates a new Domain instance using the specified properties. - * @param [properties] Properties to set - * @returns Domain instance - */ - public static create(properties?: flyteidl.admin.IDomain): flyteidl.admin.Domain; - - /** - * Encodes the specified Domain message. Does not implicitly {@link flyteidl.admin.Domain.verify|verify} messages. - * @param message Domain message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDomain, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Domain message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Domain - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Domain; - - /** - * Verifies a Domain message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Project. */ - interface IProject { - - /** Project id */ - id?: (string|null); - - /** Project name */ - name?: (string|null); - - /** Project domains */ - domains?: (flyteidl.admin.IDomain[]|null); - - /** Project description */ - description?: (string|null); - - /** Project labels */ - labels?: (flyteidl.admin.ILabels|null); - - /** Project state */ - state?: (flyteidl.admin.Project.ProjectState|null); - - /** Project org */ - org?: (string|null); - } - - /** Represents a Project. */ - class Project implements IProject { - - /** - * Constructs a new Project. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProject); - - /** Project id. */ - public id: string; - - /** Project name. */ - public name: string; - - /** Project domains. */ - public domains: flyteidl.admin.IDomain[]; - - /** Project description. */ - public description: string; - - /** Project labels. */ - public labels?: (flyteidl.admin.ILabels|null); - - /** Project state. */ - public state: flyteidl.admin.Project.ProjectState; - - /** Project org. */ - public org: string; - - /** - * Creates a new Project instance using the specified properties. - * @param [properties] Properties to set - * @returns Project instance - */ - public static create(properties?: flyteidl.admin.IProject): flyteidl.admin.Project; - - /** - * Encodes the specified Project message. Does not implicitly {@link flyteidl.admin.Project.verify|verify} messages. - * @param message Project message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProject, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Project message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Project - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Project; - - /** - * Verifies a Project message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace Project { - - /** ProjectState enum. */ - enum ProjectState { - ACTIVE = 0, - ARCHIVED = 1, - SYSTEM_GENERATED = 2 - } - } - - /** Properties of a Projects. */ - interface IProjects { - - /** Projects projects */ - projects?: (flyteidl.admin.IProject[]|null); - - /** Projects token */ - token?: (string|null); - } - - /** Represents a Projects. */ - class Projects implements IProjects { - - /** - * Constructs a new Projects. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjects); - - /** Projects projects. */ - public projects: flyteidl.admin.IProject[]; - - /** Projects token. */ - public token: string; - - /** - * Creates a new Projects instance using the specified properties. - * @param [properties] Properties to set - * @returns Projects instance - */ - public static create(properties?: flyteidl.admin.IProjects): flyteidl.admin.Projects; - - /** - * Encodes the specified Projects message. Does not implicitly {@link flyteidl.admin.Projects.verify|verify} messages. - * @param message Projects message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjects, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Projects message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Projects - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Projects; - - /** - * Verifies a Projects message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectListRequest. */ - interface IProjectListRequest { - - /** ProjectListRequest limit */ - limit?: (number|null); - - /** ProjectListRequest token */ - token?: (string|null); - - /** ProjectListRequest filters */ - filters?: (string|null); - - /** ProjectListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - - /** ProjectListRequest org */ - org?: (string|null); - } - - /** Represents a ProjectListRequest. */ - class ProjectListRequest implements IProjectListRequest { - - /** - * Constructs a new ProjectListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectListRequest); - - /** ProjectListRequest limit. */ - public limit: number; - - /** ProjectListRequest token. */ - public token: string; - - /** ProjectListRequest filters. */ - public filters: string; - - /** ProjectListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** ProjectListRequest org. */ - public org: string; - - /** - * Creates a new ProjectListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectListRequest instance - */ - public static create(properties?: flyteidl.admin.IProjectListRequest): flyteidl.admin.ProjectListRequest; - - /** - * Encodes the specified ProjectListRequest message. Does not implicitly {@link flyteidl.admin.ProjectListRequest.verify|verify} messages. - * @param message ProjectListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectListRequest; - - /** - * Verifies a ProjectListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectRegisterRequest. */ - interface IProjectRegisterRequest { - - /** ProjectRegisterRequest project */ - project?: (flyteidl.admin.IProject|null); - } - - /** Represents a ProjectRegisterRequest. */ - class ProjectRegisterRequest implements IProjectRegisterRequest { - - /** - * Constructs a new ProjectRegisterRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectRegisterRequest); - - /** ProjectRegisterRequest project. */ - public project?: (flyteidl.admin.IProject|null); - - /** - * Creates a new ProjectRegisterRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectRegisterRequest instance - */ - public static create(properties?: flyteidl.admin.IProjectRegisterRequest): flyteidl.admin.ProjectRegisterRequest; - - /** - * Encodes the specified ProjectRegisterRequest message. Does not implicitly {@link flyteidl.admin.ProjectRegisterRequest.verify|verify} messages. - * @param message ProjectRegisterRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectRegisterRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectRegisterRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectRegisterRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectRegisterRequest; - - /** - * Verifies a ProjectRegisterRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectRegisterResponse. */ - interface IProjectRegisterResponse { - } - - /** Represents a ProjectRegisterResponse. */ - class ProjectRegisterResponse implements IProjectRegisterResponse { - - /** - * Constructs a new ProjectRegisterResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectRegisterResponse); - - /** - * Creates a new ProjectRegisterResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectRegisterResponse instance - */ - public static create(properties?: flyteidl.admin.IProjectRegisterResponse): flyteidl.admin.ProjectRegisterResponse; - - /** - * Encodes the specified ProjectRegisterResponse message. Does not implicitly {@link flyteidl.admin.ProjectRegisterResponse.verify|verify} messages. - * @param message ProjectRegisterResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectRegisterResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectRegisterResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectRegisterResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectRegisterResponse; - - /** - * Verifies a ProjectRegisterResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectUpdateResponse. */ - interface IProjectUpdateResponse { - } - - /** Represents a ProjectUpdateResponse. */ - class ProjectUpdateResponse implements IProjectUpdateResponse { - - /** - * Constructs a new ProjectUpdateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectUpdateResponse); - - /** - * Creates a new ProjectUpdateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectUpdateResponse instance - */ - public static create(properties?: flyteidl.admin.IProjectUpdateResponse): flyteidl.admin.ProjectUpdateResponse; - - /** - * Encodes the specified ProjectUpdateResponse message. Does not implicitly {@link flyteidl.admin.ProjectUpdateResponse.verify|verify} messages. - * @param message ProjectUpdateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectUpdateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectUpdateResponse; - - /** - * Verifies a ProjectUpdateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectAttributes. */ - interface IProjectAttributes { - - /** ProjectAttributes project */ - project?: (string|null); - - /** ProjectAttributes matchingAttributes */ - matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null); - - /** ProjectAttributes org */ - org?: (string|null); - } - - /** Represents a ProjectAttributes. */ - class ProjectAttributes implements IProjectAttributes { - - /** - * Constructs a new ProjectAttributes. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectAttributes); - - /** ProjectAttributes project. */ - public project: string; - - /** ProjectAttributes matchingAttributes. */ - public matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null); - - /** ProjectAttributes org. */ - public org: string; - - /** - * Creates a new ProjectAttributes instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectAttributes instance - */ - public static create(properties?: flyteidl.admin.IProjectAttributes): flyteidl.admin.ProjectAttributes; - - /** - * Encodes the specified ProjectAttributes message. Does not implicitly {@link flyteidl.admin.ProjectAttributes.verify|verify} messages. - * @param message ProjectAttributes message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectAttributes, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectAttributes message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributes; - - /** - * Verifies a ProjectAttributes message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectAttributesUpdateRequest. */ - interface IProjectAttributesUpdateRequest { - - /** ProjectAttributesUpdateRequest attributes */ - attributes?: (flyteidl.admin.IProjectAttributes|null); - } - - /** Represents a ProjectAttributesUpdateRequest. */ - class ProjectAttributesUpdateRequest implements IProjectAttributesUpdateRequest { - - /** - * Constructs a new ProjectAttributesUpdateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectAttributesUpdateRequest); - - /** ProjectAttributesUpdateRequest attributes. */ - public attributes?: (flyteidl.admin.IProjectAttributes|null); - - /** - * Creates a new ProjectAttributesUpdateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectAttributesUpdateRequest instance - */ - public static create(properties?: flyteidl.admin.IProjectAttributesUpdateRequest): flyteidl.admin.ProjectAttributesUpdateRequest; - - /** - * Encodes the specified ProjectAttributesUpdateRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesUpdateRequest.verify|verify} messages. - * @param message ProjectAttributesUpdateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectAttributesUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectAttributesUpdateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectAttributesUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesUpdateRequest; - - /** - * Verifies a ProjectAttributesUpdateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectAttributesUpdateResponse. */ - interface IProjectAttributesUpdateResponse { - } - - /** Represents a ProjectAttributesUpdateResponse. */ - class ProjectAttributesUpdateResponse implements IProjectAttributesUpdateResponse { - - /** - * Constructs a new ProjectAttributesUpdateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectAttributesUpdateResponse); - - /** - * Creates a new ProjectAttributesUpdateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectAttributesUpdateResponse instance - */ - public static create(properties?: flyteidl.admin.IProjectAttributesUpdateResponse): flyteidl.admin.ProjectAttributesUpdateResponse; - - /** - * Encodes the specified ProjectAttributesUpdateResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesUpdateResponse.verify|verify} messages. - * @param message ProjectAttributesUpdateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectAttributesUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectAttributesUpdateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectAttributesUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesUpdateResponse; - - /** - * Verifies a ProjectAttributesUpdateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectAttributesGetRequest. */ - interface IProjectAttributesGetRequest { - - /** ProjectAttributesGetRequest project */ - project?: (string|null); - - /** ProjectAttributesGetRequest resourceType */ - resourceType?: (flyteidl.admin.MatchableResource|null); - - /** ProjectAttributesGetRequest org */ - org?: (string|null); - } - - /** Represents a ProjectAttributesGetRequest. */ - class ProjectAttributesGetRequest implements IProjectAttributesGetRequest { - - /** - * Constructs a new ProjectAttributesGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectAttributesGetRequest); - - /** ProjectAttributesGetRequest project. */ - public project: string; - - /** ProjectAttributesGetRequest resourceType. */ - public resourceType: flyteidl.admin.MatchableResource; - - /** ProjectAttributesGetRequest org. */ - public org: string; - - /** - * Creates a new ProjectAttributesGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectAttributesGetRequest instance - */ - public static create(properties?: flyteidl.admin.IProjectAttributesGetRequest): flyteidl.admin.ProjectAttributesGetRequest; - - /** - * Encodes the specified ProjectAttributesGetRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesGetRequest.verify|verify} messages. - * @param message ProjectAttributesGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectAttributesGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectAttributesGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectAttributesGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesGetRequest; - - /** - * Verifies a ProjectAttributesGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectAttributesGetResponse. */ - interface IProjectAttributesGetResponse { - - /** ProjectAttributesGetResponse attributes */ - attributes?: (flyteidl.admin.IProjectAttributes|null); - } - - /** Represents a ProjectAttributesGetResponse. */ - class ProjectAttributesGetResponse implements IProjectAttributesGetResponse { - - /** - * Constructs a new ProjectAttributesGetResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectAttributesGetResponse); - - /** ProjectAttributesGetResponse attributes. */ - public attributes?: (flyteidl.admin.IProjectAttributes|null); - - /** - * Creates a new ProjectAttributesGetResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectAttributesGetResponse instance - */ - public static create(properties?: flyteidl.admin.IProjectAttributesGetResponse): flyteidl.admin.ProjectAttributesGetResponse; - - /** - * Encodes the specified ProjectAttributesGetResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesGetResponse.verify|verify} messages. - * @param message ProjectAttributesGetResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectAttributesGetResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectAttributesGetResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectAttributesGetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesGetResponse; - - /** - * Verifies a ProjectAttributesGetResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectAttributesDeleteRequest. */ - interface IProjectAttributesDeleteRequest { - - /** ProjectAttributesDeleteRequest project */ - project?: (string|null); - - /** ProjectAttributesDeleteRequest resourceType */ - resourceType?: (flyteidl.admin.MatchableResource|null); - - /** ProjectAttributesDeleteRequest org */ - org?: (string|null); - } - - /** Represents a ProjectAttributesDeleteRequest. */ - class ProjectAttributesDeleteRequest implements IProjectAttributesDeleteRequest { - - /** - * Constructs a new ProjectAttributesDeleteRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectAttributesDeleteRequest); - - /** ProjectAttributesDeleteRequest project. */ - public project: string; - - /** ProjectAttributesDeleteRequest resourceType. */ - public resourceType: flyteidl.admin.MatchableResource; - - /** ProjectAttributesDeleteRequest org. */ - public org: string; - - /** - * Creates a new ProjectAttributesDeleteRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectAttributesDeleteRequest instance - */ - public static create(properties?: flyteidl.admin.IProjectAttributesDeleteRequest): flyteidl.admin.ProjectAttributesDeleteRequest; - - /** - * Encodes the specified ProjectAttributesDeleteRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesDeleteRequest.verify|verify} messages. - * @param message ProjectAttributesDeleteRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectAttributesDeleteRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectAttributesDeleteRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectAttributesDeleteRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesDeleteRequest; - - /** - * Verifies a ProjectAttributesDeleteRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectAttributesDeleteResponse. */ - interface IProjectAttributesDeleteResponse { - } - - /** Represents a ProjectAttributesDeleteResponse. */ - class ProjectAttributesDeleteResponse implements IProjectAttributesDeleteResponse { - - /** - * Constructs a new ProjectAttributesDeleteResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectAttributesDeleteResponse); - - /** - * Creates a new ProjectAttributesDeleteResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectAttributesDeleteResponse instance - */ - public static create(properties?: flyteidl.admin.IProjectAttributesDeleteResponse): flyteidl.admin.ProjectAttributesDeleteResponse; - - /** - * Encodes the specified ProjectAttributesDeleteResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesDeleteResponse.verify|verify} messages. - * @param message ProjectAttributesDeleteResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectAttributesDeleteResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectAttributesDeleteResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectAttributesDeleteResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesDeleteResponse; - - /** - * Verifies a ProjectAttributesDeleteResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectDomainAttributes. */ - interface IProjectDomainAttributes { - - /** ProjectDomainAttributes project */ - project?: (string|null); - - /** ProjectDomainAttributes domain */ - domain?: (string|null); - - /** ProjectDomainAttributes matchingAttributes */ - matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null); - - /** ProjectDomainAttributes org */ - org?: (string|null); - } - - /** Represents a ProjectDomainAttributes. */ - class ProjectDomainAttributes implements IProjectDomainAttributes { - - /** - * Constructs a new ProjectDomainAttributes. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectDomainAttributes); - - /** ProjectDomainAttributes project. */ - public project: string; - - /** ProjectDomainAttributes domain. */ - public domain: string; - - /** ProjectDomainAttributes matchingAttributes. */ - public matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null); - - /** ProjectDomainAttributes org. */ - public org: string; - - /** - * Creates a new ProjectDomainAttributes instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectDomainAttributes instance - */ - public static create(properties?: flyteidl.admin.IProjectDomainAttributes): flyteidl.admin.ProjectDomainAttributes; - - /** - * Encodes the specified ProjectDomainAttributes message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributes.verify|verify} messages. - * @param message ProjectDomainAttributes message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectDomainAttributes, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectDomainAttributes message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectDomainAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectDomainAttributes; - - /** - * Verifies a ProjectDomainAttributes message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectDomainAttributesUpdateRequest. */ - interface IProjectDomainAttributesUpdateRequest { - - /** ProjectDomainAttributesUpdateRequest attributes */ - attributes?: (flyteidl.admin.IProjectDomainAttributes|null); - } - - /** Represents a ProjectDomainAttributesUpdateRequest. */ - class ProjectDomainAttributesUpdateRequest implements IProjectDomainAttributesUpdateRequest { - - /** - * Constructs a new ProjectDomainAttributesUpdateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectDomainAttributesUpdateRequest); - - /** ProjectDomainAttributesUpdateRequest attributes. */ - public attributes?: (flyteidl.admin.IProjectDomainAttributes|null); - - /** - * Creates a new ProjectDomainAttributesUpdateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectDomainAttributesUpdateRequest instance - */ - public static create(properties?: flyteidl.admin.IProjectDomainAttributesUpdateRequest): flyteidl.admin.ProjectDomainAttributesUpdateRequest; - - /** - * Encodes the specified ProjectDomainAttributesUpdateRequest message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesUpdateRequest.verify|verify} messages. - * @param message ProjectDomainAttributesUpdateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectDomainAttributesUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectDomainAttributesUpdateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectDomainAttributesUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectDomainAttributesUpdateRequest; - - /** - * Verifies a ProjectDomainAttributesUpdateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectDomainAttributesUpdateResponse. */ - interface IProjectDomainAttributesUpdateResponse { - } - - /** Represents a ProjectDomainAttributesUpdateResponse. */ - class ProjectDomainAttributesUpdateResponse implements IProjectDomainAttributesUpdateResponse { - - /** - * Constructs a new ProjectDomainAttributesUpdateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectDomainAttributesUpdateResponse); - - /** - * Creates a new ProjectDomainAttributesUpdateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectDomainAttributesUpdateResponse instance - */ - public static create(properties?: flyteidl.admin.IProjectDomainAttributesUpdateResponse): flyteidl.admin.ProjectDomainAttributesUpdateResponse; - - /** - * Encodes the specified ProjectDomainAttributesUpdateResponse message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesUpdateResponse.verify|verify} messages. - * @param message ProjectDomainAttributesUpdateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectDomainAttributesUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectDomainAttributesUpdateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectDomainAttributesUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectDomainAttributesUpdateResponse; - - /** - * Verifies a ProjectDomainAttributesUpdateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectDomainAttributesGetRequest. */ - interface IProjectDomainAttributesGetRequest { - - /** ProjectDomainAttributesGetRequest project */ - project?: (string|null); - - /** ProjectDomainAttributesGetRequest domain */ - domain?: (string|null); - - /** ProjectDomainAttributesGetRequest resourceType */ - resourceType?: (flyteidl.admin.MatchableResource|null); - - /** ProjectDomainAttributesGetRequest org */ - org?: (string|null); - } - - /** Represents a ProjectDomainAttributesGetRequest. */ - class ProjectDomainAttributesGetRequest implements IProjectDomainAttributesGetRequest { - - /** - * Constructs a new ProjectDomainAttributesGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectDomainAttributesGetRequest); - - /** ProjectDomainAttributesGetRequest project. */ - public project: string; - - /** ProjectDomainAttributesGetRequest domain. */ - public domain: string; - - /** ProjectDomainAttributesGetRequest resourceType. */ - public resourceType: flyteidl.admin.MatchableResource; - - /** ProjectDomainAttributesGetRequest org. */ - public org: string; - - /** - * Creates a new ProjectDomainAttributesGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectDomainAttributesGetRequest instance - */ - public static create(properties?: flyteidl.admin.IProjectDomainAttributesGetRequest): flyteidl.admin.ProjectDomainAttributesGetRequest; - - /** - * Encodes the specified ProjectDomainAttributesGetRequest message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesGetRequest.verify|verify} messages. - * @param message ProjectDomainAttributesGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectDomainAttributesGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectDomainAttributesGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectDomainAttributesGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectDomainAttributesGetRequest; - - /** - * Verifies a ProjectDomainAttributesGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectDomainAttributesGetResponse. */ - interface IProjectDomainAttributesGetResponse { - - /** ProjectDomainAttributesGetResponse attributes */ - attributes?: (flyteidl.admin.IProjectDomainAttributes|null); - } - - /** Represents a ProjectDomainAttributesGetResponse. */ - class ProjectDomainAttributesGetResponse implements IProjectDomainAttributesGetResponse { - - /** - * Constructs a new ProjectDomainAttributesGetResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectDomainAttributesGetResponse); - - /** ProjectDomainAttributesGetResponse attributes. */ - public attributes?: (flyteidl.admin.IProjectDomainAttributes|null); - - /** - * Creates a new ProjectDomainAttributesGetResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectDomainAttributesGetResponse instance - */ - public static create(properties?: flyteidl.admin.IProjectDomainAttributesGetResponse): flyteidl.admin.ProjectDomainAttributesGetResponse; - - /** - * Encodes the specified ProjectDomainAttributesGetResponse message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesGetResponse.verify|verify} messages. - * @param message ProjectDomainAttributesGetResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectDomainAttributesGetResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectDomainAttributesGetResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectDomainAttributesGetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectDomainAttributesGetResponse; - - /** - * Verifies a ProjectDomainAttributesGetResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectDomainAttributesDeleteRequest. */ - interface IProjectDomainAttributesDeleteRequest { - - /** ProjectDomainAttributesDeleteRequest project */ - project?: (string|null); - - /** ProjectDomainAttributesDeleteRequest domain */ - domain?: (string|null); - - /** ProjectDomainAttributesDeleteRequest resourceType */ - resourceType?: (flyteidl.admin.MatchableResource|null); - - /** ProjectDomainAttributesDeleteRequest org */ - org?: (string|null); - } - - /** Represents a ProjectDomainAttributesDeleteRequest. */ - class ProjectDomainAttributesDeleteRequest implements IProjectDomainAttributesDeleteRequest { - - /** - * Constructs a new ProjectDomainAttributesDeleteRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectDomainAttributesDeleteRequest); - - /** ProjectDomainAttributesDeleteRequest project. */ - public project: string; - - /** ProjectDomainAttributesDeleteRequest domain. */ - public domain: string; - - /** ProjectDomainAttributesDeleteRequest resourceType. */ - public resourceType: flyteidl.admin.MatchableResource; - - /** ProjectDomainAttributesDeleteRequest org. */ - public org: string; - - /** - * Creates a new ProjectDomainAttributesDeleteRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectDomainAttributesDeleteRequest instance - */ - public static create(properties?: flyteidl.admin.IProjectDomainAttributesDeleteRequest): flyteidl.admin.ProjectDomainAttributesDeleteRequest; - - /** - * Encodes the specified ProjectDomainAttributesDeleteRequest message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesDeleteRequest.verify|verify} messages. - * @param message ProjectDomainAttributesDeleteRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectDomainAttributesDeleteRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectDomainAttributesDeleteRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectDomainAttributesDeleteRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectDomainAttributesDeleteRequest; - - /** - * Verifies a ProjectDomainAttributesDeleteRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ProjectDomainAttributesDeleteResponse. */ - interface IProjectDomainAttributesDeleteResponse { - } - - /** Represents a ProjectDomainAttributesDeleteResponse. */ - class ProjectDomainAttributesDeleteResponse implements IProjectDomainAttributesDeleteResponse { - - /** - * Constructs a new ProjectDomainAttributesDeleteResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IProjectDomainAttributesDeleteResponse); - - /** - * Creates a new ProjectDomainAttributesDeleteResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns ProjectDomainAttributesDeleteResponse instance - */ - public static create(properties?: flyteidl.admin.IProjectDomainAttributesDeleteResponse): flyteidl.admin.ProjectDomainAttributesDeleteResponse; - - /** - * Encodes the specified ProjectDomainAttributesDeleteResponse message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesDeleteResponse.verify|verify} messages. - * @param message ProjectDomainAttributesDeleteResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IProjectDomainAttributesDeleteResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ProjectDomainAttributesDeleteResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ProjectDomainAttributesDeleteResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectDomainAttributesDeleteResponse; - - /** - * Verifies a ProjectDomainAttributesDeleteResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SignalGetOrCreateRequest. */ - interface ISignalGetOrCreateRequest { - - /** SignalGetOrCreateRequest id */ - id?: (flyteidl.core.ISignalIdentifier|null); - - /** SignalGetOrCreateRequest type */ - type?: (flyteidl.core.ILiteralType|null); - } - - /** Represents a SignalGetOrCreateRequest. */ - class SignalGetOrCreateRequest implements ISignalGetOrCreateRequest { - - /** - * Constructs a new SignalGetOrCreateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISignalGetOrCreateRequest); - - /** SignalGetOrCreateRequest id. */ - public id?: (flyteidl.core.ISignalIdentifier|null); - - /** SignalGetOrCreateRequest type. */ - public type?: (flyteidl.core.ILiteralType|null); - - /** - * Creates a new SignalGetOrCreateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns SignalGetOrCreateRequest instance - */ - public static create(properties?: flyteidl.admin.ISignalGetOrCreateRequest): flyteidl.admin.SignalGetOrCreateRequest; - - /** - * Encodes the specified SignalGetOrCreateRequest message. Does not implicitly {@link flyteidl.admin.SignalGetOrCreateRequest.verify|verify} messages. - * @param message SignalGetOrCreateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISignalGetOrCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SignalGetOrCreateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SignalGetOrCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SignalGetOrCreateRequest; - - /** - * Verifies a SignalGetOrCreateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SignalListRequest. */ - interface ISignalListRequest { - - /** SignalListRequest workflowExecutionId */ - workflowExecutionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** SignalListRequest limit */ - limit?: (number|null); - - /** SignalListRequest token */ - token?: (string|null); - - /** SignalListRequest filters */ - filters?: (string|null); - - /** SignalListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - } - - /** Represents a SignalListRequest. */ - class SignalListRequest implements ISignalListRequest { - - /** - * Constructs a new SignalListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISignalListRequest); - - /** SignalListRequest workflowExecutionId. */ - public workflowExecutionId?: (flyteidl.core.IWorkflowExecutionIdentifier|null); - - /** SignalListRequest limit. */ - public limit: number; - - /** SignalListRequest token. */ - public token: string; - - /** SignalListRequest filters. */ - public filters: string; - - /** SignalListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** - * Creates a new SignalListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns SignalListRequest instance - */ - public static create(properties?: flyteidl.admin.ISignalListRequest): flyteidl.admin.SignalListRequest; - - /** - * Encodes the specified SignalListRequest message. Does not implicitly {@link flyteidl.admin.SignalListRequest.verify|verify} messages. - * @param message SignalListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISignalListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SignalListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SignalListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SignalListRequest; - - /** - * Verifies a SignalListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SignalList. */ - interface ISignalList { - - /** SignalList signals */ - signals?: (flyteidl.admin.ISignal[]|null); - - /** SignalList token */ - token?: (string|null); - } - - /** Represents a SignalList. */ - class SignalList implements ISignalList { - - /** - * Constructs a new SignalList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISignalList); - - /** SignalList signals. */ - public signals: flyteidl.admin.ISignal[]; - - /** SignalList token. */ - public token: string; - - /** - * Creates a new SignalList instance using the specified properties. - * @param [properties] Properties to set - * @returns SignalList instance - */ - public static create(properties?: flyteidl.admin.ISignalList): flyteidl.admin.SignalList; - - /** - * Encodes the specified SignalList message. Does not implicitly {@link flyteidl.admin.SignalList.verify|verify} messages. - * @param message SignalList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISignalList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SignalList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SignalList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SignalList; - - /** - * Verifies a SignalList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SignalSetRequest. */ - interface ISignalSetRequest { - - /** SignalSetRequest id */ - id?: (flyteidl.core.ISignalIdentifier|null); - - /** SignalSetRequest value */ - value?: (flyteidl.core.ILiteral|null); - } - - /** Represents a SignalSetRequest. */ - class SignalSetRequest implements ISignalSetRequest { - - /** - * Constructs a new SignalSetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISignalSetRequest); - - /** SignalSetRequest id. */ - public id?: (flyteidl.core.ISignalIdentifier|null); - - /** SignalSetRequest value. */ - public value?: (flyteidl.core.ILiteral|null); - - /** - * Creates a new SignalSetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns SignalSetRequest instance - */ - public static create(properties?: flyteidl.admin.ISignalSetRequest): flyteidl.admin.SignalSetRequest; - - /** - * Encodes the specified SignalSetRequest message. Does not implicitly {@link flyteidl.admin.SignalSetRequest.verify|verify} messages. - * @param message SignalSetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISignalSetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SignalSetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SignalSetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SignalSetRequest; - - /** - * Verifies a SignalSetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a SignalSetResponse. */ - interface ISignalSetResponse { - } - - /** Represents a SignalSetResponse. */ - class SignalSetResponse implements ISignalSetResponse { - - /** - * Constructs a new SignalSetResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISignalSetResponse); - - /** - * Creates a new SignalSetResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns SignalSetResponse instance - */ - public static create(properties?: flyteidl.admin.ISignalSetResponse): flyteidl.admin.SignalSetResponse; - - /** - * Encodes the specified SignalSetResponse message. Does not implicitly {@link flyteidl.admin.SignalSetResponse.verify|verify} messages. - * @param message SignalSetResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISignalSetResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SignalSetResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SignalSetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SignalSetResponse; - - /** - * Verifies a SignalSetResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Signal. */ - interface ISignal { - - /** Signal id */ - id?: (flyteidl.core.ISignalIdentifier|null); - - /** Signal type */ - type?: (flyteidl.core.ILiteralType|null); - - /** Signal value */ - value?: (flyteidl.core.ILiteral|null); - } - - /** Represents a Signal. */ - class Signal implements ISignal { - - /** - * Constructs a new Signal. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ISignal); - - /** Signal id. */ - public id?: (flyteidl.core.ISignalIdentifier|null); - - /** Signal type. */ - public type?: (flyteidl.core.ILiteralType|null); - - /** Signal value. */ - public value?: (flyteidl.core.ILiteral|null); - - /** - * Creates a new Signal instance using the specified properties. - * @param [properties] Properties to set - * @returns Signal instance - */ - public static create(properties?: flyteidl.admin.ISignal): flyteidl.admin.Signal; - - /** - * Encodes the specified Signal message. Does not implicitly {@link flyteidl.admin.Signal.verify|verify} messages. - * @param message Signal message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ISignal, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Signal message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Signal - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Signal; - - /** - * Verifies a Signal message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskCreateRequest. */ - interface ITaskCreateRequest { - - /** TaskCreateRequest id */ - id?: (flyteidl.core.IIdentifier|null); - - /** TaskCreateRequest spec */ - spec?: (flyteidl.admin.ITaskSpec|null); - } - - /** Represents a TaskCreateRequest. */ - class TaskCreateRequest implements ITaskCreateRequest { - - /** - * Constructs a new TaskCreateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskCreateRequest); - - /** TaskCreateRequest id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** TaskCreateRequest spec. */ - public spec?: (flyteidl.admin.ITaskSpec|null); - - /** - * Creates a new TaskCreateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskCreateRequest instance - */ - public static create(properties?: flyteidl.admin.ITaskCreateRequest): flyteidl.admin.TaskCreateRequest; - - /** - * Encodes the specified TaskCreateRequest message. Does not implicitly {@link flyteidl.admin.TaskCreateRequest.verify|verify} messages. - * @param message TaskCreateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskCreateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskCreateRequest; - - /** - * Verifies a TaskCreateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskCreateResponse. */ - interface ITaskCreateResponse { - } - - /** Represents a TaskCreateResponse. */ - class TaskCreateResponse implements ITaskCreateResponse { - - /** - * Constructs a new TaskCreateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskCreateResponse); - - /** - * Creates a new TaskCreateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskCreateResponse instance - */ - public static create(properties?: flyteidl.admin.ITaskCreateResponse): flyteidl.admin.TaskCreateResponse; - - /** - * Encodes the specified TaskCreateResponse message. Does not implicitly {@link flyteidl.admin.TaskCreateResponse.verify|verify} messages. - * @param message TaskCreateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskCreateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskCreateResponse; - - /** - * Verifies a TaskCreateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Task. */ - interface ITask { - - /** Task id */ - id?: (flyteidl.core.IIdentifier|null); - - /** Task closure */ - closure?: (flyteidl.admin.ITaskClosure|null); - - /** Task shortDescription */ - shortDescription?: (string|null); - } - - /** Represents a Task. */ - class Task implements ITask { - - /** - * Constructs a new Task. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITask); - - /** Task id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** Task closure. */ - public closure?: (flyteidl.admin.ITaskClosure|null); - - /** Task shortDescription. */ - public shortDescription: string; - - /** - * Creates a new Task instance using the specified properties. - * @param [properties] Properties to set - * @returns Task instance - */ - public static create(properties?: flyteidl.admin.ITask): flyteidl.admin.Task; - - /** - * Encodes the specified Task message. Does not implicitly {@link flyteidl.admin.Task.verify|verify} messages. - * @param message Task message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITask, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Task message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Task - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Task; - - /** - * Verifies a Task message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskList. */ - interface ITaskList { - - /** TaskList tasks */ - tasks?: (flyteidl.admin.ITask[]|null); - - /** TaskList token */ - token?: (string|null); - } - - /** Represents a TaskList. */ - class TaskList implements ITaskList { - - /** - * Constructs a new TaskList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskList); - - /** TaskList tasks. */ - public tasks: flyteidl.admin.ITask[]; - - /** TaskList token. */ - public token: string; - - /** - * Creates a new TaskList instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskList instance - */ - public static create(properties?: flyteidl.admin.ITaskList): flyteidl.admin.TaskList; - - /** - * Encodes the specified TaskList message. Does not implicitly {@link flyteidl.admin.TaskList.verify|verify} messages. - * @param message TaskList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskList; - - /** - * Verifies a TaskList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskSpec. */ - interface ITaskSpec { - - /** TaskSpec template */ - template?: (flyteidl.core.ITaskTemplate|null); - - /** TaskSpec description */ - description?: (flyteidl.admin.IDescriptionEntity|null); - } - - /** Represents a TaskSpec. */ - class TaskSpec implements ITaskSpec { - - /** - * Constructs a new TaskSpec. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskSpec); - - /** TaskSpec template. */ - public template?: (flyteidl.core.ITaskTemplate|null); - - /** TaskSpec description. */ - public description?: (flyteidl.admin.IDescriptionEntity|null); - - /** - * Creates a new TaskSpec instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskSpec instance - */ - public static create(properties?: flyteidl.admin.ITaskSpec): flyteidl.admin.TaskSpec; - - /** - * Encodes the specified TaskSpec message. Does not implicitly {@link flyteidl.admin.TaskSpec.verify|verify} messages. - * @param message TaskSpec message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskSpec, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskSpec message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskSpec; - - /** - * Verifies a TaskSpec message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskClosure. */ - interface ITaskClosure { - - /** TaskClosure compiledTask */ - compiledTask?: (flyteidl.core.ICompiledTask|null); - - /** TaskClosure createdAt */ - createdAt?: (google.protobuf.ITimestamp|null); - } - - /** Represents a TaskClosure. */ - class TaskClosure implements ITaskClosure { - - /** - * Constructs a new TaskClosure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskClosure); - - /** TaskClosure compiledTask. */ - public compiledTask?: (flyteidl.core.ICompiledTask|null); - - /** TaskClosure createdAt. */ - public createdAt?: (google.protobuf.ITimestamp|null); - - /** - * Creates a new TaskClosure instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskClosure instance - */ - public static create(properties?: flyteidl.admin.ITaskClosure): flyteidl.admin.TaskClosure; - - /** - * Encodes the specified TaskClosure message. Does not implicitly {@link flyteidl.admin.TaskClosure.verify|verify} messages. - * @param message TaskClosure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskClosure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskClosure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskClosure; - - /** - * Verifies a TaskClosure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionGetRequest. */ - interface ITaskExecutionGetRequest { - - /** TaskExecutionGetRequest id */ - id?: (flyteidl.core.ITaskExecutionIdentifier|null); - } - - /** Represents a TaskExecutionGetRequest. */ - class TaskExecutionGetRequest implements ITaskExecutionGetRequest { - - /** - * Constructs a new TaskExecutionGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionGetRequest); - - /** TaskExecutionGetRequest id. */ - public id?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** - * Creates a new TaskExecutionGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionGetRequest instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionGetRequest): flyteidl.admin.TaskExecutionGetRequest; - - /** - * Encodes the specified TaskExecutionGetRequest message. Does not implicitly {@link flyteidl.admin.TaskExecutionGetRequest.verify|verify} messages. - * @param message TaskExecutionGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionGetRequest; - - /** - * Verifies a TaskExecutionGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionListRequest. */ - interface ITaskExecutionListRequest { - - /** TaskExecutionListRequest nodeExecutionId */ - nodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** TaskExecutionListRequest limit */ - limit?: (number|null); - - /** TaskExecutionListRequest token */ - token?: (string|null); - - /** TaskExecutionListRequest filters */ - filters?: (string|null); - - /** TaskExecutionListRequest sortBy */ - sortBy?: (flyteidl.admin.ISort|null); - } - - /** Represents a TaskExecutionListRequest. */ - class TaskExecutionListRequest implements ITaskExecutionListRequest { - - /** - * Constructs a new TaskExecutionListRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionListRequest); - - /** TaskExecutionListRequest nodeExecutionId. */ - public nodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** TaskExecutionListRequest limit. */ - public limit: number; - - /** TaskExecutionListRequest token. */ - public token: string; - - /** TaskExecutionListRequest filters. */ - public filters: string; - - /** TaskExecutionListRequest sortBy. */ - public sortBy?: (flyteidl.admin.ISort|null); - - /** - * Creates a new TaskExecutionListRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionListRequest instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionListRequest): flyteidl.admin.TaskExecutionListRequest; - - /** - * Encodes the specified TaskExecutionListRequest message. Does not implicitly {@link flyteidl.admin.TaskExecutionListRequest.verify|verify} messages. - * @param message TaskExecutionListRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionListRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionListRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionListRequest; - - /** - * Verifies a TaskExecutionListRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecution. */ - interface ITaskExecution { - - /** TaskExecution id */ - id?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** TaskExecution inputUri */ - inputUri?: (string|null); - - /** TaskExecution closure */ - closure?: (flyteidl.admin.ITaskExecutionClosure|null); - - /** TaskExecution isParent */ - isParent?: (boolean|null); - } - - /** Represents a TaskExecution. */ - class TaskExecution implements ITaskExecution { - - /** - * Constructs a new TaskExecution. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecution); - - /** TaskExecution id. */ - public id?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** TaskExecution inputUri. */ - public inputUri: string; - - /** TaskExecution closure. */ - public closure?: (flyteidl.admin.ITaskExecutionClosure|null); - - /** TaskExecution isParent. */ - public isParent: boolean; - - /** - * Creates a new TaskExecution instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecution instance - */ - public static create(properties?: flyteidl.admin.ITaskExecution): flyteidl.admin.TaskExecution; - - /** - * Encodes the specified TaskExecution message. Does not implicitly {@link flyteidl.admin.TaskExecution.verify|verify} messages. - * @param message TaskExecution message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecution, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecution message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecution; - - /** - * Verifies a TaskExecution message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionList. */ - interface ITaskExecutionList { - - /** TaskExecutionList taskExecutions */ - taskExecutions?: (flyteidl.admin.ITaskExecution[]|null); - - /** TaskExecutionList token */ - token?: (string|null); - } - - /** Represents a TaskExecutionList. */ - class TaskExecutionList implements ITaskExecutionList { - - /** - * Constructs a new TaskExecutionList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionList); - - /** TaskExecutionList taskExecutions. */ - public taskExecutions: flyteidl.admin.ITaskExecution[]; - - /** TaskExecutionList token. */ - public token: string; - - /** - * Creates a new TaskExecutionList instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionList instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionList): flyteidl.admin.TaskExecutionList; - - /** - * Encodes the specified TaskExecutionList message. Does not implicitly {@link flyteidl.admin.TaskExecutionList.verify|verify} messages. - * @param message TaskExecutionList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionList; - - /** - * Verifies a TaskExecutionList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionClosure. */ - interface ITaskExecutionClosure { - - /** TaskExecutionClosure outputUri */ - outputUri?: (string|null); - - /** TaskExecutionClosure error */ - error?: (flyteidl.core.IExecutionError|null); - - /** TaskExecutionClosure outputData */ - outputData?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionClosure phase */ - phase?: (flyteidl.core.TaskExecution.Phase|null); - - /** TaskExecutionClosure logs */ - logs?: (flyteidl.core.ITaskLog[]|null); - - /** TaskExecutionClosure startedAt */ - startedAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionClosure duration */ - duration?: (google.protobuf.IDuration|null); - - /** TaskExecutionClosure createdAt */ - createdAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionClosure updatedAt */ - updatedAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionClosure customInfo */ - customInfo?: (google.protobuf.IStruct|null); - - /** TaskExecutionClosure reason */ - reason?: (string|null); - - /** TaskExecutionClosure taskType */ - taskType?: (string|null); - - /** TaskExecutionClosure metadata */ - metadata?: (flyteidl.event.ITaskExecutionMetadata|null); - - /** TaskExecutionClosure eventVersion */ - eventVersion?: (number|null); - - /** TaskExecutionClosure reasons */ - reasons?: (flyteidl.admin.IReason[]|null); - } - - /** Represents a TaskExecutionClosure. */ - class TaskExecutionClosure implements ITaskExecutionClosure { - - /** - * Constructs a new TaskExecutionClosure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionClosure); - - /** TaskExecutionClosure outputUri. */ - public outputUri: string; - - /** TaskExecutionClosure error. */ - public error?: (flyteidl.core.IExecutionError|null); - - /** TaskExecutionClosure outputData. */ - public outputData?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionClosure phase. */ - public phase: flyteidl.core.TaskExecution.Phase; - - /** TaskExecutionClosure logs. */ - public logs: flyteidl.core.ITaskLog[]; - - /** TaskExecutionClosure startedAt. */ - public startedAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionClosure duration. */ - public duration?: (google.protobuf.IDuration|null); - - /** TaskExecutionClosure createdAt. */ - public createdAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionClosure updatedAt. */ - public updatedAt?: (google.protobuf.ITimestamp|null); - - /** TaskExecutionClosure customInfo. */ - public customInfo?: (google.protobuf.IStruct|null); - - /** TaskExecutionClosure reason. */ - public reason: string; - - /** TaskExecutionClosure taskType. */ - public taskType: string; - - /** TaskExecutionClosure metadata. */ - public metadata?: (flyteidl.event.ITaskExecutionMetadata|null); - - /** TaskExecutionClosure eventVersion. */ - public eventVersion: number; - - /** TaskExecutionClosure reasons. */ - public reasons: flyteidl.admin.IReason[]; - - /** TaskExecutionClosure outputResult. */ - public outputResult?: ("outputUri"|"error"|"outputData"); - - /** - * Creates a new TaskExecutionClosure instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionClosure instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionClosure): flyteidl.admin.TaskExecutionClosure; - - /** - * Encodes the specified TaskExecutionClosure message. Does not implicitly {@link flyteidl.admin.TaskExecutionClosure.verify|verify} messages. - * @param message TaskExecutionClosure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionClosure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionClosure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionClosure; - - /** - * Verifies a TaskExecutionClosure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Reason. */ - interface IReason { - - /** Reason occurredAt */ - occurredAt?: (google.protobuf.ITimestamp|null); - - /** Reason message */ - message?: (string|null); - } - - /** Represents a Reason. */ - class Reason implements IReason { - - /** - * Constructs a new Reason. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IReason); - - /** Reason occurredAt. */ - public occurredAt?: (google.protobuf.ITimestamp|null); - - /** Reason message. */ - public message: string; - - /** - * Creates a new Reason instance using the specified properties. - * @param [properties] Properties to set - * @returns Reason instance - */ - public static create(properties?: flyteidl.admin.IReason): flyteidl.admin.Reason; - - /** - * Encodes the specified Reason message. Does not implicitly {@link flyteidl.admin.Reason.verify|verify} messages. - * @param message Reason message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IReason, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Reason message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Reason - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Reason; - - /** - * Verifies a Reason message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionGetDataRequest. */ - interface ITaskExecutionGetDataRequest { - - /** TaskExecutionGetDataRequest id */ - id?: (flyteidl.core.ITaskExecutionIdentifier|null); - } - - /** Represents a TaskExecutionGetDataRequest. */ - class TaskExecutionGetDataRequest implements ITaskExecutionGetDataRequest { - - /** - * Constructs a new TaskExecutionGetDataRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionGetDataRequest); - - /** TaskExecutionGetDataRequest id. */ - public id?: (flyteidl.core.ITaskExecutionIdentifier|null); - - /** - * Creates a new TaskExecutionGetDataRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionGetDataRequest instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionGetDataRequest): flyteidl.admin.TaskExecutionGetDataRequest; - - /** - * Encodes the specified TaskExecutionGetDataRequest message. Does not implicitly {@link flyteidl.admin.TaskExecutionGetDataRequest.verify|verify} messages. - * @param message TaskExecutionGetDataRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionGetDataRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionGetDataRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionGetDataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionGetDataRequest; - - /** - * Verifies a TaskExecutionGetDataRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskExecutionGetDataResponse. */ - interface ITaskExecutionGetDataResponse { - - /** TaskExecutionGetDataResponse inputs */ - inputs?: (flyteidl.admin.IUrlBlob|null); - - /** TaskExecutionGetDataResponse outputs */ - outputs?: (flyteidl.admin.IUrlBlob|null); - - /** TaskExecutionGetDataResponse fullInputs */ - fullInputs?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionGetDataResponse fullOutputs */ - fullOutputs?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionGetDataResponse flyteUrls */ - flyteUrls?: (flyteidl.admin.IFlyteURLs|null); - } - - /** Represents a TaskExecutionGetDataResponse. */ - class TaskExecutionGetDataResponse implements ITaskExecutionGetDataResponse { - - /** - * Constructs a new TaskExecutionGetDataResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ITaskExecutionGetDataResponse); - - /** TaskExecutionGetDataResponse inputs. */ - public inputs?: (flyteidl.admin.IUrlBlob|null); - - /** TaskExecutionGetDataResponse outputs. */ - public outputs?: (flyteidl.admin.IUrlBlob|null); - - /** TaskExecutionGetDataResponse fullInputs. */ - public fullInputs?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionGetDataResponse fullOutputs. */ - public fullOutputs?: (flyteidl.core.ILiteralMap|null); - - /** TaskExecutionGetDataResponse flyteUrls. */ - public flyteUrls?: (flyteidl.admin.IFlyteURLs|null); - - /** - * Creates a new TaskExecutionGetDataResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskExecutionGetDataResponse instance - */ - public static create(properties?: flyteidl.admin.ITaskExecutionGetDataResponse): flyteidl.admin.TaskExecutionGetDataResponse; - - /** - * Encodes the specified TaskExecutionGetDataResponse message. Does not implicitly {@link flyteidl.admin.TaskExecutionGetDataResponse.verify|verify} messages. - * @param message TaskExecutionGetDataResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ITaskExecutionGetDataResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskExecutionGetDataResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskExecutionGetDataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskExecutionGetDataResponse; - - /** - * Verifies a TaskExecutionGetDataResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetVersionResponse. */ - interface IGetVersionResponse { - - /** GetVersionResponse controlPlaneVersion */ - controlPlaneVersion?: (flyteidl.admin.IVersion|null); - } - - /** Represents a GetVersionResponse. */ - class GetVersionResponse implements IGetVersionResponse { - - /** - * Constructs a new GetVersionResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetVersionResponse); - - /** GetVersionResponse controlPlaneVersion. */ - public controlPlaneVersion?: (flyteidl.admin.IVersion|null); - - /** - * Creates a new GetVersionResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns GetVersionResponse instance - */ - public static create(properties?: flyteidl.admin.IGetVersionResponse): flyteidl.admin.GetVersionResponse; - - /** - * Encodes the specified GetVersionResponse message. Does not implicitly {@link flyteidl.admin.GetVersionResponse.verify|verify} messages. - * @param message GetVersionResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetVersionResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetVersionResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetVersionResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetVersionResponse; - - /** - * Verifies a GetVersionResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Version. */ - interface IVersion { - - /** Version Build */ - Build?: (string|null); - - /** Version Version */ - Version?: (string|null); - - /** Version BuildTime */ - BuildTime?: (string|null); - } - - /** Represents a Version. */ - class Version implements IVersion { - - /** - * Constructs a new Version. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IVersion); - - /** Version Build. */ - public Build: string; - - /** Version Version. */ - public Version: string; - - /** Version BuildTime. */ - public BuildTime: string; - - /** - * Creates a new Version instance using the specified properties. - * @param [properties] Properties to set - * @returns Version instance - */ - public static create(properties?: flyteidl.admin.IVersion): flyteidl.admin.Version; - - /** - * Encodes the specified Version message. Does not implicitly {@link flyteidl.admin.Version.verify|verify} messages. - * @param message Version message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IVersion, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Version message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Version - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Version; - - /** - * Verifies a Version message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetVersionRequest. */ - interface IGetVersionRequest { - } - - /** Represents a GetVersionRequest. */ - class GetVersionRequest implements IGetVersionRequest { - - /** - * Constructs a new GetVersionRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetVersionRequest); - - /** - * Creates a new GetVersionRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns GetVersionRequest instance - */ - public static create(properties?: flyteidl.admin.IGetVersionRequest): flyteidl.admin.GetVersionRequest; - - /** - * Encodes the specified GetVersionRequest message. Does not implicitly {@link flyteidl.admin.GetVersionRequest.verify|verify} messages. - * @param message GetVersionRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetVersionRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetVersionRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetVersionRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetVersionRequest; - - /** - * Verifies a GetVersionRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowCreateRequest. */ - interface IWorkflowCreateRequest { - - /** WorkflowCreateRequest id */ - id?: (flyteidl.core.IIdentifier|null); - - /** WorkflowCreateRequest spec */ - spec?: (flyteidl.admin.IWorkflowSpec|null); - } - - /** Represents a WorkflowCreateRequest. */ - class WorkflowCreateRequest implements IWorkflowCreateRequest { - - /** - * Constructs a new WorkflowCreateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowCreateRequest); - - /** WorkflowCreateRequest id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** WorkflowCreateRequest spec. */ - public spec?: (flyteidl.admin.IWorkflowSpec|null); - - /** - * Creates a new WorkflowCreateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowCreateRequest instance - */ - public static create(properties?: flyteidl.admin.IWorkflowCreateRequest): flyteidl.admin.WorkflowCreateRequest; - - /** - * Encodes the specified WorkflowCreateRequest message. Does not implicitly {@link flyteidl.admin.WorkflowCreateRequest.verify|verify} messages. - * @param message WorkflowCreateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowCreateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowCreateRequest; - - /** - * Verifies a WorkflowCreateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowCreateResponse. */ - interface IWorkflowCreateResponse { - } - - /** Represents a WorkflowCreateResponse. */ - class WorkflowCreateResponse implements IWorkflowCreateResponse { - - /** - * Constructs a new WorkflowCreateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowCreateResponse); - - /** - * Creates a new WorkflowCreateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowCreateResponse instance - */ - public static create(properties?: flyteidl.admin.IWorkflowCreateResponse): flyteidl.admin.WorkflowCreateResponse; - - /** - * Encodes the specified WorkflowCreateResponse message. Does not implicitly {@link flyteidl.admin.WorkflowCreateResponse.verify|verify} messages. - * @param message WorkflowCreateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowCreateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowCreateResponse; - - /** - * Verifies a WorkflowCreateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Workflow. */ - interface IWorkflow { - - /** Workflow id */ - id?: (flyteidl.core.IIdentifier|null); - - /** Workflow closure */ - closure?: (flyteidl.admin.IWorkflowClosure|null); - - /** Workflow shortDescription */ - shortDescription?: (string|null); - } - - /** Represents a Workflow. */ - class Workflow implements IWorkflow { - - /** - * Constructs a new Workflow. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflow); - - /** Workflow id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** Workflow closure. */ - public closure?: (flyteidl.admin.IWorkflowClosure|null); - - /** Workflow shortDescription. */ - public shortDescription: string; - - /** - * Creates a new Workflow instance using the specified properties. - * @param [properties] Properties to set - * @returns Workflow instance - */ - public static create(properties?: flyteidl.admin.IWorkflow): flyteidl.admin.Workflow; - - /** - * Encodes the specified Workflow message. Does not implicitly {@link flyteidl.admin.Workflow.verify|verify} messages. - * @param message Workflow message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflow, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Workflow message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Workflow - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Workflow; - - /** - * Verifies a Workflow message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowList. */ - interface IWorkflowList { - - /** WorkflowList workflows */ - workflows?: (flyteidl.admin.IWorkflow[]|null); - - /** WorkflowList token */ - token?: (string|null); - } - - /** Represents a WorkflowList. */ - class WorkflowList implements IWorkflowList { - - /** - * Constructs a new WorkflowList. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowList); - - /** WorkflowList workflows. */ - public workflows: flyteidl.admin.IWorkflow[]; - - /** WorkflowList token. */ - public token: string; - - /** - * Creates a new WorkflowList instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowList instance - */ - public static create(properties?: flyteidl.admin.IWorkflowList): flyteidl.admin.WorkflowList; - - /** - * Encodes the specified WorkflowList message. Does not implicitly {@link flyteidl.admin.WorkflowList.verify|verify} messages. - * @param message WorkflowList message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowList, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowList message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowList; - - /** - * Verifies a WorkflowList message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowSpec. */ - interface IWorkflowSpec { - - /** WorkflowSpec template */ - template?: (flyteidl.core.IWorkflowTemplate|null); - - /** WorkflowSpec subWorkflows */ - subWorkflows?: (flyteidl.core.IWorkflowTemplate[]|null); - - /** WorkflowSpec description */ - description?: (flyteidl.admin.IDescriptionEntity|null); - } - - /** Represents a WorkflowSpec. */ - class WorkflowSpec implements IWorkflowSpec { - - /** - * Constructs a new WorkflowSpec. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowSpec); - - /** WorkflowSpec template. */ - public template?: (flyteidl.core.IWorkflowTemplate|null); - - /** WorkflowSpec subWorkflows. */ - public subWorkflows: flyteidl.core.IWorkflowTemplate[]; - - /** WorkflowSpec description. */ - public description?: (flyteidl.admin.IDescriptionEntity|null); - - /** - * Creates a new WorkflowSpec instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowSpec instance - */ - public static create(properties?: flyteidl.admin.IWorkflowSpec): flyteidl.admin.WorkflowSpec; - - /** - * Encodes the specified WorkflowSpec message. Does not implicitly {@link flyteidl.admin.WorkflowSpec.verify|verify} messages. - * @param message WorkflowSpec message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowSpec, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowSpec message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowSpec; - - /** - * Verifies a WorkflowSpec message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowClosure. */ - interface IWorkflowClosure { - - /** WorkflowClosure compiledWorkflow */ - compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null); - - /** WorkflowClosure createdAt */ - createdAt?: (google.protobuf.ITimestamp|null); - } - - /** Represents a WorkflowClosure. */ - class WorkflowClosure implements IWorkflowClosure { - - /** - * Constructs a new WorkflowClosure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowClosure); - - /** WorkflowClosure compiledWorkflow. */ - public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null); - - /** WorkflowClosure createdAt. */ - public createdAt?: (google.protobuf.ITimestamp|null); - - /** - * Creates a new WorkflowClosure instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowClosure instance - */ - public static create(properties?: flyteidl.admin.IWorkflowClosure): flyteidl.admin.WorkflowClosure; - - /** - * Encodes the specified WorkflowClosure message. Does not implicitly {@link flyteidl.admin.WorkflowClosure.verify|verify} messages. - * @param message WorkflowClosure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowClosure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowClosure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowClosure; - - /** - * Verifies a WorkflowClosure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowErrorExistsDifferentStructure. */ - interface IWorkflowErrorExistsDifferentStructure { - - /** WorkflowErrorExistsDifferentStructure id */ - id?: (flyteidl.core.IIdentifier|null); - } - - /** Represents a WorkflowErrorExistsDifferentStructure. */ - class WorkflowErrorExistsDifferentStructure implements IWorkflowErrorExistsDifferentStructure { - - /** - * Constructs a new WorkflowErrorExistsDifferentStructure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowErrorExistsDifferentStructure); - - /** WorkflowErrorExistsDifferentStructure id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** - * Creates a new WorkflowErrorExistsDifferentStructure instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowErrorExistsDifferentStructure instance - */ - public static create(properties?: flyteidl.admin.IWorkflowErrorExistsDifferentStructure): flyteidl.admin.WorkflowErrorExistsDifferentStructure; - - /** - * Encodes the specified WorkflowErrorExistsDifferentStructure message. Does not implicitly {@link flyteidl.admin.WorkflowErrorExistsDifferentStructure.verify|verify} messages. - * @param message WorkflowErrorExistsDifferentStructure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowErrorExistsDifferentStructure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowErrorExistsDifferentStructure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowErrorExistsDifferentStructure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowErrorExistsDifferentStructure; - - /** - * Verifies a WorkflowErrorExistsDifferentStructure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowErrorExistsIdenticalStructure. */ - interface IWorkflowErrorExistsIdenticalStructure { - - /** WorkflowErrorExistsIdenticalStructure id */ - id?: (flyteidl.core.IIdentifier|null); - } - - /** Represents a WorkflowErrorExistsIdenticalStructure. */ - class WorkflowErrorExistsIdenticalStructure implements IWorkflowErrorExistsIdenticalStructure { - - /** - * Constructs a new WorkflowErrorExistsIdenticalStructure. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowErrorExistsIdenticalStructure); - - /** WorkflowErrorExistsIdenticalStructure id. */ - public id?: (flyteidl.core.IIdentifier|null); - - /** - * Creates a new WorkflowErrorExistsIdenticalStructure instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowErrorExistsIdenticalStructure instance - */ - public static create(properties?: flyteidl.admin.IWorkflowErrorExistsIdenticalStructure): flyteidl.admin.WorkflowErrorExistsIdenticalStructure; - - /** - * Encodes the specified WorkflowErrorExistsIdenticalStructure message. Does not implicitly {@link flyteidl.admin.WorkflowErrorExistsIdenticalStructure.verify|verify} messages. - * @param message WorkflowErrorExistsIdenticalStructure message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowErrorExistsIdenticalStructure, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowErrorExistsIdenticalStructure message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowErrorExistsIdenticalStructure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowErrorExistsIdenticalStructure; - - /** - * Verifies a WorkflowErrorExistsIdenticalStructure message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CreateWorkflowFailureReason. */ - interface ICreateWorkflowFailureReason { - - /** CreateWorkflowFailureReason existsDifferentStructure */ - existsDifferentStructure?: (flyteidl.admin.IWorkflowErrorExistsDifferentStructure|null); - - /** CreateWorkflowFailureReason existsIdenticalStructure */ - existsIdenticalStructure?: (flyteidl.admin.IWorkflowErrorExistsIdenticalStructure|null); - } - - /** Represents a CreateWorkflowFailureReason. */ - class CreateWorkflowFailureReason implements ICreateWorkflowFailureReason { - - /** - * Constructs a new CreateWorkflowFailureReason. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.ICreateWorkflowFailureReason); - - /** CreateWorkflowFailureReason existsDifferentStructure. */ - public existsDifferentStructure?: (flyteidl.admin.IWorkflowErrorExistsDifferentStructure|null); - - /** CreateWorkflowFailureReason existsIdenticalStructure. */ - public existsIdenticalStructure?: (flyteidl.admin.IWorkflowErrorExistsIdenticalStructure|null); - - /** CreateWorkflowFailureReason reason. */ - public reason?: ("existsDifferentStructure"|"existsIdenticalStructure"); - - /** - * Creates a new CreateWorkflowFailureReason instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateWorkflowFailureReason instance - */ - public static create(properties?: flyteidl.admin.ICreateWorkflowFailureReason): flyteidl.admin.CreateWorkflowFailureReason; - - /** - * Encodes the specified CreateWorkflowFailureReason message. Does not implicitly {@link flyteidl.admin.CreateWorkflowFailureReason.verify|verify} messages. - * @param message CreateWorkflowFailureReason message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.ICreateWorkflowFailureReason, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateWorkflowFailureReason message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateWorkflowFailureReason - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.CreateWorkflowFailureReason; - - /** - * Verifies a CreateWorkflowFailureReason message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetDynamicNodeWorkflowRequest. */ - interface IGetDynamicNodeWorkflowRequest { - - /** GetDynamicNodeWorkflowRequest id */ - id?: (flyteidl.core.INodeExecutionIdentifier|null); - } - - /** Represents a GetDynamicNodeWorkflowRequest. */ - class GetDynamicNodeWorkflowRequest implements IGetDynamicNodeWorkflowRequest { - - /** - * Constructs a new GetDynamicNodeWorkflowRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IGetDynamicNodeWorkflowRequest); - - /** GetDynamicNodeWorkflowRequest id. */ - public id?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** - * Creates a new GetDynamicNodeWorkflowRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns GetDynamicNodeWorkflowRequest instance - */ - public static create(properties?: flyteidl.admin.IGetDynamicNodeWorkflowRequest): flyteidl.admin.GetDynamicNodeWorkflowRequest; - - /** - * Encodes the specified GetDynamicNodeWorkflowRequest message. Does not implicitly {@link flyteidl.admin.GetDynamicNodeWorkflowRequest.verify|verify} messages. - * @param message GetDynamicNodeWorkflowRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IGetDynamicNodeWorkflowRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetDynamicNodeWorkflowRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetDynamicNodeWorkflowRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.GetDynamicNodeWorkflowRequest; - - /** - * Verifies a GetDynamicNodeWorkflowRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DynamicNodeWorkflowResponse. */ - interface IDynamicNodeWorkflowResponse { - - /** DynamicNodeWorkflowResponse compiledWorkflow */ - compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null); - } - - /** Represents a DynamicNodeWorkflowResponse. */ - class DynamicNodeWorkflowResponse implements IDynamicNodeWorkflowResponse { - - /** - * Constructs a new DynamicNodeWorkflowResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IDynamicNodeWorkflowResponse); - - /** DynamicNodeWorkflowResponse compiledWorkflow. */ - public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null); - - /** - * Creates a new DynamicNodeWorkflowResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns DynamicNodeWorkflowResponse instance - */ - public static create(properties?: flyteidl.admin.IDynamicNodeWorkflowResponse): flyteidl.admin.DynamicNodeWorkflowResponse; - - /** - * Encodes the specified DynamicNodeWorkflowResponse message. Does not implicitly {@link flyteidl.admin.DynamicNodeWorkflowResponse.verify|verify} messages. - * @param message DynamicNodeWorkflowResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IDynamicNodeWorkflowResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DynamicNodeWorkflowResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DynamicNodeWorkflowResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DynamicNodeWorkflowResponse; - - /** - * Verifies a DynamicNodeWorkflowResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowAttributes. */ - interface IWorkflowAttributes { - - /** WorkflowAttributes project */ - project?: (string|null); - - /** WorkflowAttributes domain */ - domain?: (string|null); - - /** WorkflowAttributes workflow */ - workflow?: (string|null); - - /** WorkflowAttributes matchingAttributes */ - matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null); - - /** WorkflowAttributes org */ - org?: (string|null); - } - - /** Represents a WorkflowAttributes. */ - class WorkflowAttributes implements IWorkflowAttributes { - - /** - * Constructs a new WorkflowAttributes. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowAttributes); - - /** WorkflowAttributes project. */ - public project: string; - - /** WorkflowAttributes domain. */ - public domain: string; - - /** WorkflowAttributes workflow. */ - public workflow: string; - - /** WorkflowAttributes matchingAttributes. */ - public matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null); - - /** WorkflowAttributes org. */ - public org: string; - - /** - * Creates a new WorkflowAttributes instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowAttributes instance - */ - public static create(properties?: flyteidl.admin.IWorkflowAttributes): flyteidl.admin.WorkflowAttributes; - - /** - * Encodes the specified WorkflowAttributes message. Does not implicitly {@link flyteidl.admin.WorkflowAttributes.verify|verify} messages. - * @param message WorkflowAttributes message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowAttributes, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowAttributes message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowAttributes; - - /** - * Verifies a WorkflowAttributes message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowAttributesUpdateRequest. */ - interface IWorkflowAttributesUpdateRequest { - - /** WorkflowAttributesUpdateRequest attributes */ - attributes?: (flyteidl.admin.IWorkflowAttributes|null); - } - - /** Represents a WorkflowAttributesUpdateRequest. */ - class WorkflowAttributesUpdateRequest implements IWorkflowAttributesUpdateRequest { - - /** - * Constructs a new WorkflowAttributesUpdateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowAttributesUpdateRequest); - - /** WorkflowAttributesUpdateRequest attributes. */ - public attributes?: (flyteidl.admin.IWorkflowAttributes|null); - - /** - * Creates a new WorkflowAttributesUpdateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowAttributesUpdateRequest instance - */ - public static create(properties?: flyteidl.admin.IWorkflowAttributesUpdateRequest): flyteidl.admin.WorkflowAttributesUpdateRequest; - - /** - * Encodes the specified WorkflowAttributesUpdateRequest message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesUpdateRequest.verify|verify} messages. - * @param message WorkflowAttributesUpdateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowAttributesUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowAttributesUpdateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowAttributesUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowAttributesUpdateRequest; - - /** - * Verifies a WorkflowAttributesUpdateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowAttributesUpdateResponse. */ - interface IWorkflowAttributesUpdateResponse { - } - - /** Represents a WorkflowAttributesUpdateResponse. */ - class WorkflowAttributesUpdateResponse implements IWorkflowAttributesUpdateResponse { - - /** - * Constructs a new WorkflowAttributesUpdateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowAttributesUpdateResponse); - - /** - * Creates a new WorkflowAttributesUpdateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowAttributesUpdateResponse instance - */ - public static create(properties?: flyteidl.admin.IWorkflowAttributesUpdateResponse): flyteidl.admin.WorkflowAttributesUpdateResponse; - - /** - * Encodes the specified WorkflowAttributesUpdateResponse message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesUpdateResponse.verify|verify} messages. - * @param message WorkflowAttributesUpdateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowAttributesUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowAttributesUpdateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowAttributesUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowAttributesUpdateResponse; - - /** - * Verifies a WorkflowAttributesUpdateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowAttributesGetRequest. */ - interface IWorkflowAttributesGetRequest { - - /** WorkflowAttributesGetRequest project */ - project?: (string|null); - - /** WorkflowAttributesGetRequest domain */ - domain?: (string|null); - - /** WorkflowAttributesGetRequest workflow */ - workflow?: (string|null); - - /** WorkflowAttributesGetRequest resourceType */ - resourceType?: (flyteidl.admin.MatchableResource|null); - - /** WorkflowAttributesGetRequest org */ - org?: (string|null); - } - - /** Represents a WorkflowAttributesGetRequest. */ - class WorkflowAttributesGetRequest implements IWorkflowAttributesGetRequest { - - /** - * Constructs a new WorkflowAttributesGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowAttributesGetRequest); - - /** WorkflowAttributesGetRequest project. */ - public project: string; - - /** WorkflowAttributesGetRequest domain. */ - public domain: string; - - /** WorkflowAttributesGetRequest workflow. */ - public workflow: string; - - /** WorkflowAttributesGetRequest resourceType. */ - public resourceType: flyteidl.admin.MatchableResource; - - /** WorkflowAttributesGetRequest org. */ - public org: string; - - /** - * Creates a new WorkflowAttributesGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowAttributesGetRequest instance - */ - public static create(properties?: flyteidl.admin.IWorkflowAttributesGetRequest): flyteidl.admin.WorkflowAttributesGetRequest; - - /** - * Encodes the specified WorkflowAttributesGetRequest message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesGetRequest.verify|verify} messages. - * @param message WorkflowAttributesGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowAttributesGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowAttributesGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowAttributesGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowAttributesGetRequest; - - /** - * Verifies a WorkflowAttributesGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowAttributesGetResponse. */ - interface IWorkflowAttributesGetResponse { - - /** WorkflowAttributesGetResponse attributes */ - attributes?: (flyteidl.admin.IWorkflowAttributes|null); - } - - /** Represents a WorkflowAttributesGetResponse. */ - class WorkflowAttributesGetResponse implements IWorkflowAttributesGetResponse { - - /** - * Constructs a new WorkflowAttributesGetResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowAttributesGetResponse); - - /** WorkflowAttributesGetResponse attributes. */ - public attributes?: (flyteidl.admin.IWorkflowAttributes|null); - - /** - * Creates a new WorkflowAttributesGetResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowAttributesGetResponse instance - */ - public static create(properties?: flyteidl.admin.IWorkflowAttributesGetResponse): flyteidl.admin.WorkflowAttributesGetResponse; - - /** - * Encodes the specified WorkflowAttributesGetResponse message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesGetResponse.verify|verify} messages. - * @param message WorkflowAttributesGetResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowAttributesGetResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowAttributesGetResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowAttributesGetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowAttributesGetResponse; - - /** - * Verifies a WorkflowAttributesGetResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowAttributesDeleteRequest. */ - interface IWorkflowAttributesDeleteRequest { - - /** WorkflowAttributesDeleteRequest project */ - project?: (string|null); - - /** WorkflowAttributesDeleteRequest domain */ - domain?: (string|null); - - /** WorkflowAttributesDeleteRequest workflow */ - workflow?: (string|null); - - /** WorkflowAttributesDeleteRequest resourceType */ - resourceType?: (flyteidl.admin.MatchableResource|null); - - /** WorkflowAttributesDeleteRequest org */ - org?: (string|null); - } - - /** Represents a WorkflowAttributesDeleteRequest. */ - class WorkflowAttributesDeleteRequest implements IWorkflowAttributesDeleteRequest { - - /** - * Constructs a new WorkflowAttributesDeleteRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowAttributesDeleteRequest); - - /** WorkflowAttributesDeleteRequest project. */ - public project: string; - - /** WorkflowAttributesDeleteRequest domain. */ - public domain: string; - - /** WorkflowAttributesDeleteRequest workflow. */ - public workflow: string; - - /** WorkflowAttributesDeleteRequest resourceType. */ - public resourceType: flyteidl.admin.MatchableResource; - - /** WorkflowAttributesDeleteRequest org. */ - public org: string; - - /** - * Creates a new WorkflowAttributesDeleteRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowAttributesDeleteRequest instance - */ - public static create(properties?: flyteidl.admin.IWorkflowAttributesDeleteRequest): flyteidl.admin.WorkflowAttributesDeleteRequest; - - /** - * Encodes the specified WorkflowAttributesDeleteRequest message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesDeleteRequest.verify|verify} messages. - * @param message WorkflowAttributesDeleteRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowAttributesDeleteRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowAttributesDeleteRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowAttributesDeleteRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowAttributesDeleteRequest; - - /** - * Verifies a WorkflowAttributesDeleteRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a WorkflowAttributesDeleteResponse. */ - interface IWorkflowAttributesDeleteResponse { - } - - /** Represents a WorkflowAttributesDeleteResponse. */ - class WorkflowAttributesDeleteResponse implements IWorkflowAttributesDeleteResponse { - - /** - * Constructs a new WorkflowAttributesDeleteResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.admin.IWorkflowAttributesDeleteResponse); - - /** - * Creates a new WorkflowAttributesDeleteResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns WorkflowAttributesDeleteResponse instance - */ - public static create(properties?: flyteidl.admin.IWorkflowAttributesDeleteResponse): flyteidl.admin.WorkflowAttributesDeleteResponse; - - /** - * Encodes the specified WorkflowAttributesDeleteResponse message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesDeleteResponse.verify|verify} messages. - * @param message WorkflowAttributesDeleteResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.admin.IWorkflowAttributesDeleteResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a WorkflowAttributesDeleteResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns WorkflowAttributesDeleteResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowAttributesDeleteResponse; - - /** - * Verifies a WorkflowAttributesDeleteResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - - /** Namespace service. */ - namespace service { - - /** Represents an AdminService */ - class AdminService extends $protobuf.rpc.Service { - - /** - * Constructs a new AdminService service. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - */ - constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); - - /** - * Creates new AdminService service using the specified rpc implementation. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - * @returns RPC service. Useful where requests and/or responses are streamed. - */ - public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): AdminService; - - /** - * Calls CreateTask. - * @param request TaskCreateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskCreateResponse - */ - public createTask(request: flyteidl.admin.ITaskCreateRequest, callback: flyteidl.service.AdminService.CreateTaskCallback): void; - - /** - * Calls CreateTask. - * @param request TaskCreateRequest message or plain object - * @returns Promise - */ - public createTask(request: flyteidl.admin.ITaskCreateRequest): Promise; - - /** - * Calls GetTask. - * @param request ObjectGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and Task - */ - public getTask(request: flyteidl.admin.IObjectGetRequest, callback: flyteidl.service.AdminService.GetTaskCallback): void; - - /** - * Calls GetTask. - * @param request ObjectGetRequest message or plain object - * @returns Promise - */ - public getTask(request: flyteidl.admin.IObjectGetRequest): Promise; - - /** - * Calls ListTaskIds. - * @param request NamedEntityIdentifierListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NamedEntityIdentifierList - */ - public listTaskIds(request: flyteidl.admin.INamedEntityIdentifierListRequest, callback: flyteidl.service.AdminService.ListTaskIdsCallback): void; - - /** - * Calls ListTaskIds. - * @param request NamedEntityIdentifierListRequest message or plain object - * @returns Promise - */ - public listTaskIds(request: flyteidl.admin.INamedEntityIdentifierListRequest): Promise; - - /** - * Calls ListTasks. - * @param request ResourceListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskList - */ - public listTasks(request: flyteidl.admin.IResourceListRequest, callback: flyteidl.service.AdminService.ListTasksCallback): void; - - /** - * Calls ListTasks. - * @param request ResourceListRequest message or plain object - * @returns Promise - */ - public listTasks(request: flyteidl.admin.IResourceListRequest): Promise; - - /** - * Calls CreateWorkflow. - * @param request WorkflowCreateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowCreateResponse - */ - public createWorkflow(request: flyteidl.admin.IWorkflowCreateRequest, callback: flyteidl.service.AdminService.CreateWorkflowCallback): void; - - /** - * Calls CreateWorkflow. - * @param request WorkflowCreateRequest message or plain object - * @returns Promise - */ - public createWorkflow(request: flyteidl.admin.IWorkflowCreateRequest): Promise; - - /** - * Calls GetWorkflow. - * @param request ObjectGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and Workflow - */ - public getWorkflow(request: flyteidl.admin.IObjectGetRequest, callback: flyteidl.service.AdminService.GetWorkflowCallback): void; - - /** - * Calls GetWorkflow. - * @param request ObjectGetRequest message or plain object - * @returns Promise - */ - public getWorkflow(request: flyteidl.admin.IObjectGetRequest): Promise; - - /** - * Calls GetDynamicNodeWorkflow. - * @param request GetDynamicNodeWorkflowRequest message or plain object - * @param callback Node-style callback called with the error, if any, and DynamicNodeWorkflowResponse - */ - public getDynamicNodeWorkflow(request: flyteidl.admin.IGetDynamicNodeWorkflowRequest, callback: flyteidl.service.AdminService.GetDynamicNodeWorkflowCallback): void; - - /** - * Calls GetDynamicNodeWorkflow. - * @param request GetDynamicNodeWorkflowRequest message or plain object - * @returns Promise - */ - public getDynamicNodeWorkflow(request: flyteidl.admin.IGetDynamicNodeWorkflowRequest): Promise; - - /** - * Calls ListWorkflowIds. - * @param request NamedEntityIdentifierListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NamedEntityIdentifierList - */ - public listWorkflowIds(request: flyteidl.admin.INamedEntityIdentifierListRequest, callback: flyteidl.service.AdminService.ListWorkflowIdsCallback): void; - - /** - * Calls ListWorkflowIds. - * @param request NamedEntityIdentifierListRequest message or plain object - * @returns Promise - */ - public listWorkflowIds(request: flyteidl.admin.INamedEntityIdentifierListRequest): Promise; - - /** - * Calls ListWorkflows. - * @param request ResourceListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowList - */ - public listWorkflows(request: flyteidl.admin.IResourceListRequest, callback: flyteidl.service.AdminService.ListWorkflowsCallback): void; - - /** - * Calls ListWorkflows. - * @param request ResourceListRequest message or plain object - * @returns Promise - */ - public listWorkflows(request: flyteidl.admin.IResourceListRequest): Promise; - - /** - * Calls CreateLaunchPlan. - * @param request LaunchPlanCreateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and LaunchPlanCreateResponse - */ - public createLaunchPlan(request: flyteidl.admin.ILaunchPlanCreateRequest, callback: flyteidl.service.AdminService.CreateLaunchPlanCallback): void; - - /** - * Calls CreateLaunchPlan. - * @param request LaunchPlanCreateRequest message or plain object - * @returns Promise - */ - public createLaunchPlan(request: flyteidl.admin.ILaunchPlanCreateRequest): Promise; - - /** - * Calls GetLaunchPlan. - * @param request ObjectGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and LaunchPlan - */ - public getLaunchPlan(request: flyteidl.admin.IObjectGetRequest, callback: flyteidl.service.AdminService.GetLaunchPlanCallback): void; - - /** - * Calls GetLaunchPlan. - * @param request ObjectGetRequest message or plain object - * @returns Promise - */ - public getLaunchPlan(request: flyteidl.admin.IObjectGetRequest): Promise; - - /** - * Calls GetActiveLaunchPlan. - * @param request ActiveLaunchPlanRequest message or plain object - * @param callback Node-style callback called with the error, if any, and LaunchPlan - */ - public getActiveLaunchPlan(request: flyteidl.admin.IActiveLaunchPlanRequest, callback: flyteidl.service.AdminService.GetActiveLaunchPlanCallback): void; - - /** - * Calls GetActiveLaunchPlan. - * @param request ActiveLaunchPlanRequest message or plain object - * @returns Promise - */ - public getActiveLaunchPlan(request: flyteidl.admin.IActiveLaunchPlanRequest): Promise; - - /** - * Calls ListActiveLaunchPlans. - * @param request ActiveLaunchPlanListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and LaunchPlanList - */ - public listActiveLaunchPlans(request: flyteidl.admin.IActiveLaunchPlanListRequest, callback: flyteidl.service.AdminService.ListActiveLaunchPlansCallback): void; - - /** - * Calls ListActiveLaunchPlans. - * @param request ActiveLaunchPlanListRequest message or plain object - * @returns Promise - */ - public listActiveLaunchPlans(request: flyteidl.admin.IActiveLaunchPlanListRequest): Promise; - - /** - * Calls ListLaunchPlanIds. - * @param request NamedEntityIdentifierListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NamedEntityIdentifierList - */ - public listLaunchPlanIds(request: flyteidl.admin.INamedEntityIdentifierListRequest, callback: flyteidl.service.AdminService.ListLaunchPlanIdsCallback): void; - - /** - * Calls ListLaunchPlanIds. - * @param request NamedEntityIdentifierListRequest message or plain object - * @returns Promise - */ - public listLaunchPlanIds(request: flyteidl.admin.INamedEntityIdentifierListRequest): Promise; - - /** - * Calls ListLaunchPlans. - * @param request ResourceListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and LaunchPlanList - */ - public listLaunchPlans(request: flyteidl.admin.IResourceListRequest, callback: flyteidl.service.AdminService.ListLaunchPlansCallback): void; - - /** - * Calls ListLaunchPlans. - * @param request ResourceListRequest message or plain object - * @returns Promise - */ - public listLaunchPlans(request: flyteidl.admin.IResourceListRequest): Promise; - - /** - * Calls UpdateLaunchPlan. - * @param request LaunchPlanUpdateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and LaunchPlanUpdateResponse - */ - public updateLaunchPlan(request: flyteidl.admin.ILaunchPlanUpdateRequest, callback: flyteidl.service.AdminService.UpdateLaunchPlanCallback): void; - - /** - * Calls UpdateLaunchPlan. - * @param request LaunchPlanUpdateRequest message or plain object - * @returns Promise - */ - public updateLaunchPlan(request: flyteidl.admin.ILaunchPlanUpdateRequest): Promise; - - /** - * Calls CreateExecution. - * @param request ExecutionCreateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ExecutionCreateResponse - */ - public createExecution(request: flyteidl.admin.IExecutionCreateRequest, callback: flyteidl.service.AdminService.CreateExecutionCallback): void; - - /** - * Calls CreateExecution. - * @param request ExecutionCreateRequest message or plain object - * @returns Promise - */ - public createExecution(request: flyteidl.admin.IExecutionCreateRequest): Promise; - - /** - * Calls RelaunchExecution. - * @param request ExecutionRelaunchRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ExecutionCreateResponse - */ - public relaunchExecution(request: flyteidl.admin.IExecutionRelaunchRequest, callback: flyteidl.service.AdminService.RelaunchExecutionCallback): void; - - /** - * Calls RelaunchExecution. - * @param request ExecutionRelaunchRequest message or plain object - * @returns Promise - */ - public relaunchExecution(request: flyteidl.admin.IExecutionRelaunchRequest): Promise; - - /** - * Calls RecoverExecution. - * @param request ExecutionRecoverRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ExecutionCreateResponse - */ - public recoverExecution(request: flyteidl.admin.IExecutionRecoverRequest, callback: flyteidl.service.AdminService.RecoverExecutionCallback): void; - - /** - * Calls RecoverExecution. - * @param request ExecutionRecoverRequest message or plain object - * @returns Promise - */ - public recoverExecution(request: flyteidl.admin.IExecutionRecoverRequest): Promise; - - /** - * Calls GetExecution. - * @param request WorkflowExecutionGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and Execution - */ - public getExecution(request: flyteidl.admin.IWorkflowExecutionGetRequest, callback: flyteidl.service.AdminService.GetExecutionCallback): void; - - /** - * Calls GetExecution. - * @param request WorkflowExecutionGetRequest message or plain object - * @returns Promise - */ - public getExecution(request: flyteidl.admin.IWorkflowExecutionGetRequest): Promise; - - /** - * Calls UpdateExecution. - * @param request ExecutionUpdateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ExecutionUpdateResponse - */ - public updateExecution(request: flyteidl.admin.IExecutionUpdateRequest, callback: flyteidl.service.AdminService.UpdateExecutionCallback): void; - - /** - * Calls UpdateExecution. - * @param request ExecutionUpdateRequest message or plain object - * @returns Promise - */ - public updateExecution(request: flyteidl.admin.IExecutionUpdateRequest): Promise; - - /** - * Calls GetExecutionData. - * @param request WorkflowExecutionGetDataRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowExecutionGetDataResponse - */ - public getExecutionData(request: flyteidl.admin.IWorkflowExecutionGetDataRequest, callback: flyteidl.service.AdminService.GetExecutionDataCallback): void; - - /** - * Calls GetExecutionData. - * @param request WorkflowExecutionGetDataRequest message or plain object - * @returns Promise - */ - public getExecutionData(request: flyteidl.admin.IWorkflowExecutionGetDataRequest): Promise; - - /** - * Calls ListExecutions. - * @param request ResourceListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ExecutionList - */ - public listExecutions(request: flyteidl.admin.IResourceListRequest, callback: flyteidl.service.AdminService.ListExecutionsCallback): void; - - /** - * Calls ListExecutions. - * @param request ResourceListRequest message or plain object - * @returns Promise - */ - public listExecutions(request: flyteidl.admin.IResourceListRequest): Promise; - - /** - * Calls TerminateExecution. - * @param request ExecutionTerminateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ExecutionTerminateResponse - */ - public terminateExecution(request: flyteidl.admin.IExecutionTerminateRequest, callback: flyteidl.service.AdminService.TerminateExecutionCallback): void; - - /** - * Calls TerminateExecution. - * @param request ExecutionTerminateRequest message or plain object - * @returns Promise - */ - public terminateExecution(request: flyteidl.admin.IExecutionTerminateRequest): Promise; - - /** - * Calls GetNodeExecution. - * @param request NodeExecutionGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NodeExecution - */ - public getNodeExecution(request: flyteidl.admin.INodeExecutionGetRequest, callback: flyteidl.service.AdminService.GetNodeExecutionCallback): void; - - /** - * Calls GetNodeExecution. - * @param request NodeExecutionGetRequest message or plain object - * @returns Promise - */ - public getNodeExecution(request: flyteidl.admin.INodeExecutionGetRequest): Promise; - - /** - * Calls ListNodeExecutions. - * @param request NodeExecutionListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NodeExecutionList - */ - public listNodeExecutions(request: flyteidl.admin.INodeExecutionListRequest, callback: flyteidl.service.AdminService.ListNodeExecutionsCallback): void; - - /** - * Calls ListNodeExecutions. - * @param request NodeExecutionListRequest message or plain object - * @returns Promise - */ - public listNodeExecutions(request: flyteidl.admin.INodeExecutionListRequest): Promise; - - /** - * Calls ListNodeExecutionsForTask. - * @param request NodeExecutionForTaskListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NodeExecutionList - */ - public listNodeExecutionsForTask(request: flyteidl.admin.INodeExecutionForTaskListRequest, callback: flyteidl.service.AdminService.ListNodeExecutionsForTaskCallback): void; - - /** - * Calls ListNodeExecutionsForTask. - * @param request NodeExecutionForTaskListRequest message or plain object - * @returns Promise - */ - public listNodeExecutionsForTask(request: flyteidl.admin.INodeExecutionForTaskListRequest): Promise; - - /** - * Calls GetNodeExecutionData. - * @param request NodeExecutionGetDataRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NodeExecutionGetDataResponse - */ - public getNodeExecutionData(request: flyteidl.admin.INodeExecutionGetDataRequest, callback: flyteidl.service.AdminService.GetNodeExecutionDataCallback): void; - - /** - * Calls GetNodeExecutionData. - * @param request NodeExecutionGetDataRequest message or plain object - * @returns Promise - */ - public getNodeExecutionData(request: flyteidl.admin.INodeExecutionGetDataRequest): Promise; - - /** - * Calls RegisterProject. - * @param request ProjectRegisterRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ProjectRegisterResponse - */ - public registerProject(request: flyteidl.admin.IProjectRegisterRequest, callback: flyteidl.service.AdminService.RegisterProjectCallback): void; - - /** - * Calls RegisterProject. - * @param request ProjectRegisterRequest message or plain object - * @returns Promise - */ - public registerProject(request: flyteidl.admin.IProjectRegisterRequest): Promise; - - /** - * Calls UpdateProject. - * @param request Project message or plain object - * @param callback Node-style callback called with the error, if any, and ProjectUpdateResponse - */ - public updateProject(request: flyteidl.admin.IProject, callback: flyteidl.service.AdminService.UpdateProjectCallback): void; - - /** - * Calls UpdateProject. - * @param request Project message or plain object - * @returns Promise - */ - public updateProject(request: flyteidl.admin.IProject): Promise; - - /** - * Calls ListProjects. - * @param request ProjectListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and Projects - */ - public listProjects(request: flyteidl.admin.IProjectListRequest, callback: flyteidl.service.AdminService.ListProjectsCallback): void; - - /** - * Calls ListProjects. - * @param request ProjectListRequest message or plain object - * @returns Promise - */ - public listProjects(request: flyteidl.admin.IProjectListRequest): Promise; - - /** - * Calls CreateWorkflowEvent. - * @param request WorkflowExecutionEventRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowExecutionEventResponse - */ - public createWorkflowEvent(request: flyteidl.admin.IWorkflowExecutionEventRequest, callback: flyteidl.service.AdminService.CreateWorkflowEventCallback): void; - - /** - * Calls CreateWorkflowEvent. - * @param request WorkflowExecutionEventRequest message or plain object - * @returns Promise - */ - public createWorkflowEvent(request: flyteidl.admin.IWorkflowExecutionEventRequest): Promise; - - /** - * Calls CreateNodeEvent. - * @param request NodeExecutionEventRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NodeExecutionEventResponse - */ - public createNodeEvent(request: flyteidl.admin.INodeExecutionEventRequest, callback: flyteidl.service.AdminService.CreateNodeEventCallback): void; - - /** - * Calls CreateNodeEvent. - * @param request NodeExecutionEventRequest message or plain object - * @returns Promise - */ - public createNodeEvent(request: flyteidl.admin.INodeExecutionEventRequest): Promise; - - /** - * Calls CreateTaskEvent. - * @param request TaskExecutionEventRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskExecutionEventResponse - */ - public createTaskEvent(request: flyteidl.admin.ITaskExecutionEventRequest, callback: flyteidl.service.AdminService.CreateTaskEventCallback): void; - - /** - * Calls CreateTaskEvent. - * @param request TaskExecutionEventRequest message or plain object - * @returns Promise - */ - public createTaskEvent(request: flyteidl.admin.ITaskExecutionEventRequest): Promise; - - /** - * Calls GetTaskExecution. - * @param request TaskExecutionGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskExecution - */ - public getTaskExecution(request: flyteidl.admin.ITaskExecutionGetRequest, callback: flyteidl.service.AdminService.GetTaskExecutionCallback): void; - - /** - * Calls GetTaskExecution. - * @param request TaskExecutionGetRequest message or plain object - * @returns Promise - */ - public getTaskExecution(request: flyteidl.admin.ITaskExecutionGetRequest): Promise; - - /** - * Calls ListTaskExecutions. - * @param request TaskExecutionListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskExecutionList - */ - public listTaskExecutions(request: flyteidl.admin.ITaskExecutionListRequest, callback: flyteidl.service.AdminService.ListTaskExecutionsCallback): void; - - /** - * Calls ListTaskExecutions. - * @param request TaskExecutionListRequest message or plain object - * @returns Promise - */ - public listTaskExecutions(request: flyteidl.admin.ITaskExecutionListRequest): Promise; - - /** - * Calls GetTaskExecutionData. - * @param request TaskExecutionGetDataRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskExecutionGetDataResponse - */ - public getTaskExecutionData(request: flyteidl.admin.ITaskExecutionGetDataRequest, callback: flyteidl.service.AdminService.GetTaskExecutionDataCallback): void; - - /** - * Calls GetTaskExecutionData. - * @param request TaskExecutionGetDataRequest message or plain object - * @returns Promise - */ - public getTaskExecutionData(request: flyteidl.admin.ITaskExecutionGetDataRequest): Promise; - - /** - * Calls UpdateProjectDomainAttributes. - * @param request ProjectDomainAttributesUpdateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ProjectDomainAttributesUpdateResponse - */ - public updateProjectDomainAttributes(request: flyteidl.admin.IProjectDomainAttributesUpdateRequest, callback: flyteidl.service.AdminService.UpdateProjectDomainAttributesCallback): void; - - /** - * Calls UpdateProjectDomainAttributes. - * @param request ProjectDomainAttributesUpdateRequest message or plain object - * @returns Promise - */ - public updateProjectDomainAttributes(request: flyteidl.admin.IProjectDomainAttributesUpdateRequest): Promise; - - /** - * Calls GetProjectDomainAttributes. - * @param request ProjectDomainAttributesGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ProjectDomainAttributesGetResponse - */ - public getProjectDomainAttributes(request: flyteidl.admin.IProjectDomainAttributesGetRequest, callback: flyteidl.service.AdminService.GetProjectDomainAttributesCallback): void; - - /** - * Calls GetProjectDomainAttributes. - * @param request ProjectDomainAttributesGetRequest message or plain object - * @returns Promise - */ - public getProjectDomainAttributes(request: flyteidl.admin.IProjectDomainAttributesGetRequest): Promise; - - /** - * Calls DeleteProjectDomainAttributes. - * @param request ProjectDomainAttributesDeleteRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ProjectDomainAttributesDeleteResponse - */ - public deleteProjectDomainAttributes(request: flyteidl.admin.IProjectDomainAttributesDeleteRequest, callback: flyteidl.service.AdminService.DeleteProjectDomainAttributesCallback): void; - - /** - * Calls DeleteProjectDomainAttributes. - * @param request ProjectDomainAttributesDeleteRequest message or plain object - * @returns Promise - */ - public deleteProjectDomainAttributes(request: flyteidl.admin.IProjectDomainAttributesDeleteRequest): Promise; - - /** - * Calls UpdateProjectAttributes. - * @param request ProjectAttributesUpdateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ProjectAttributesUpdateResponse - */ - public updateProjectAttributes(request: flyteidl.admin.IProjectAttributesUpdateRequest, callback: flyteidl.service.AdminService.UpdateProjectAttributesCallback): void; - - /** - * Calls UpdateProjectAttributes. - * @param request ProjectAttributesUpdateRequest message or plain object - * @returns Promise - */ - public updateProjectAttributes(request: flyteidl.admin.IProjectAttributesUpdateRequest): Promise; - - /** - * Calls GetProjectAttributes. - * @param request ProjectAttributesGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ProjectAttributesGetResponse - */ - public getProjectAttributes(request: flyteidl.admin.IProjectAttributesGetRequest, callback: flyteidl.service.AdminService.GetProjectAttributesCallback): void; - - /** - * Calls GetProjectAttributes. - * @param request ProjectAttributesGetRequest message or plain object - * @returns Promise - */ - public getProjectAttributes(request: flyteidl.admin.IProjectAttributesGetRequest): Promise; - - /** - * Calls DeleteProjectAttributes. - * @param request ProjectAttributesDeleteRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ProjectAttributesDeleteResponse - */ - public deleteProjectAttributes(request: flyteidl.admin.IProjectAttributesDeleteRequest, callback: flyteidl.service.AdminService.DeleteProjectAttributesCallback): void; - - /** - * Calls DeleteProjectAttributes. - * @param request ProjectAttributesDeleteRequest message or plain object - * @returns Promise - */ - public deleteProjectAttributes(request: flyteidl.admin.IProjectAttributesDeleteRequest): Promise; - - /** - * Calls UpdateWorkflowAttributes. - * @param request WorkflowAttributesUpdateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowAttributesUpdateResponse - */ - public updateWorkflowAttributes(request: flyteidl.admin.IWorkflowAttributesUpdateRequest, callback: flyteidl.service.AdminService.UpdateWorkflowAttributesCallback): void; - - /** - * Calls UpdateWorkflowAttributes. - * @param request WorkflowAttributesUpdateRequest message or plain object - * @returns Promise - */ - public updateWorkflowAttributes(request: flyteidl.admin.IWorkflowAttributesUpdateRequest): Promise; - - /** - * Calls GetWorkflowAttributes. - * @param request WorkflowAttributesGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowAttributesGetResponse - */ - public getWorkflowAttributes(request: flyteidl.admin.IWorkflowAttributesGetRequest, callback: flyteidl.service.AdminService.GetWorkflowAttributesCallback): void; - - /** - * Calls GetWorkflowAttributes. - * @param request WorkflowAttributesGetRequest message or plain object - * @returns Promise - */ - public getWorkflowAttributes(request: flyteidl.admin.IWorkflowAttributesGetRequest): Promise; - - /** - * Calls DeleteWorkflowAttributes. - * @param request WorkflowAttributesDeleteRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowAttributesDeleteResponse - */ - public deleteWorkflowAttributes(request: flyteidl.admin.IWorkflowAttributesDeleteRequest, callback: flyteidl.service.AdminService.DeleteWorkflowAttributesCallback): void; - - /** - * Calls DeleteWorkflowAttributes. - * @param request WorkflowAttributesDeleteRequest message or plain object - * @returns Promise - */ - public deleteWorkflowAttributes(request: flyteidl.admin.IWorkflowAttributesDeleteRequest): Promise; - - /** - * Calls ListMatchableAttributes. - * @param request ListMatchableAttributesRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ListMatchableAttributesResponse - */ - public listMatchableAttributes(request: flyteidl.admin.IListMatchableAttributesRequest, callback: flyteidl.service.AdminService.ListMatchableAttributesCallback): void; - - /** - * Calls ListMatchableAttributes. - * @param request ListMatchableAttributesRequest message or plain object - * @returns Promise - */ - public listMatchableAttributes(request: flyteidl.admin.IListMatchableAttributesRequest): Promise; - - /** - * Calls ListNamedEntities. - * @param request NamedEntityListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NamedEntityList - */ - public listNamedEntities(request: flyteidl.admin.INamedEntityListRequest, callback: flyteidl.service.AdminService.ListNamedEntitiesCallback): void; - - /** - * Calls ListNamedEntities. - * @param request NamedEntityListRequest message or plain object - * @returns Promise - */ - public listNamedEntities(request: flyteidl.admin.INamedEntityListRequest): Promise; - - /** - * Calls GetNamedEntity. - * @param request NamedEntityGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NamedEntity - */ - public getNamedEntity(request: flyteidl.admin.INamedEntityGetRequest, callback: flyteidl.service.AdminService.GetNamedEntityCallback): void; - - /** - * Calls GetNamedEntity. - * @param request NamedEntityGetRequest message or plain object - * @returns Promise - */ - public getNamedEntity(request: flyteidl.admin.INamedEntityGetRequest): Promise; - - /** - * Calls UpdateNamedEntity. - * @param request NamedEntityUpdateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and NamedEntityUpdateResponse - */ - public updateNamedEntity(request: flyteidl.admin.INamedEntityUpdateRequest, callback: flyteidl.service.AdminService.UpdateNamedEntityCallback): void; - - /** - * Calls UpdateNamedEntity. - * @param request NamedEntityUpdateRequest message or plain object - * @returns Promise - */ - public updateNamedEntity(request: flyteidl.admin.INamedEntityUpdateRequest): Promise; - - /** - * Calls GetVersion. - * @param request GetVersionRequest message or plain object - * @param callback Node-style callback called with the error, if any, and GetVersionResponse - */ - public getVersion(request: flyteidl.admin.IGetVersionRequest, callback: flyteidl.service.AdminService.GetVersionCallback): void; - - /** - * Calls GetVersion. - * @param request GetVersionRequest message or plain object - * @returns Promise - */ - public getVersion(request: flyteidl.admin.IGetVersionRequest): Promise; - - /** - * Calls GetDescriptionEntity. - * @param request ObjectGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and DescriptionEntity - */ - public getDescriptionEntity(request: flyteidl.admin.IObjectGetRequest, callback: flyteidl.service.AdminService.GetDescriptionEntityCallback): void; - - /** - * Calls GetDescriptionEntity. - * @param request ObjectGetRequest message or plain object - * @returns Promise - */ - public getDescriptionEntity(request: flyteidl.admin.IObjectGetRequest): Promise; - - /** - * Calls ListDescriptionEntities. - * @param request DescriptionEntityListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and DescriptionEntityList - */ - public listDescriptionEntities(request: flyteidl.admin.IDescriptionEntityListRequest, callback: flyteidl.service.AdminService.ListDescriptionEntitiesCallback): void; - - /** - * Calls ListDescriptionEntities. - * @param request DescriptionEntityListRequest message or plain object - * @returns Promise - */ - public listDescriptionEntities(request: flyteidl.admin.IDescriptionEntityListRequest): Promise; - - /** - * Calls GetExecutionMetrics. - * @param request WorkflowExecutionGetMetricsRequest message or plain object - * @param callback Node-style callback called with the error, if any, and WorkflowExecutionGetMetricsResponse - */ - public getExecutionMetrics(request: flyteidl.admin.IWorkflowExecutionGetMetricsRequest, callback: flyteidl.service.AdminService.GetExecutionMetricsCallback): void; - - /** - * Calls GetExecutionMetrics. - * @param request WorkflowExecutionGetMetricsRequest message or plain object - * @returns Promise - */ - public getExecutionMetrics(request: flyteidl.admin.IWorkflowExecutionGetMetricsRequest): Promise; - } - - namespace AdminService { - - /** - * Callback as used by {@link flyteidl.service.AdminService#createTask}. - * @param error Error, if any - * @param [response] TaskCreateResponse - */ - type CreateTaskCallback = (error: (Error|null), response?: flyteidl.admin.TaskCreateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getTask}. - * @param error Error, if any - * @param [response] Task - */ - type GetTaskCallback = (error: (Error|null), response?: flyteidl.admin.Task) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listTaskIds}. - * @param error Error, if any - * @param [response] NamedEntityIdentifierList - */ - type ListTaskIdsCallback = (error: (Error|null), response?: flyteidl.admin.NamedEntityIdentifierList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listTasks}. - * @param error Error, if any - * @param [response] TaskList - */ - type ListTasksCallback = (error: (Error|null), response?: flyteidl.admin.TaskList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#createWorkflow}. - * @param error Error, if any - * @param [response] WorkflowCreateResponse - */ - type CreateWorkflowCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowCreateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getWorkflow}. - * @param error Error, if any - * @param [response] Workflow - */ - type GetWorkflowCallback = (error: (Error|null), response?: flyteidl.admin.Workflow) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getDynamicNodeWorkflow}. - * @param error Error, if any - * @param [response] DynamicNodeWorkflowResponse - */ - type GetDynamicNodeWorkflowCallback = (error: (Error|null), response?: flyteidl.admin.DynamicNodeWorkflowResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listWorkflowIds}. - * @param error Error, if any - * @param [response] NamedEntityIdentifierList - */ - type ListWorkflowIdsCallback = (error: (Error|null), response?: flyteidl.admin.NamedEntityIdentifierList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listWorkflows}. - * @param error Error, if any - * @param [response] WorkflowList - */ - type ListWorkflowsCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#createLaunchPlan}. - * @param error Error, if any - * @param [response] LaunchPlanCreateResponse - */ - type CreateLaunchPlanCallback = (error: (Error|null), response?: flyteidl.admin.LaunchPlanCreateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getLaunchPlan}. - * @param error Error, if any - * @param [response] LaunchPlan - */ - type GetLaunchPlanCallback = (error: (Error|null), response?: flyteidl.admin.LaunchPlan) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getActiveLaunchPlan}. - * @param error Error, if any - * @param [response] LaunchPlan - */ - type GetActiveLaunchPlanCallback = (error: (Error|null), response?: flyteidl.admin.LaunchPlan) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listActiveLaunchPlans}. - * @param error Error, if any - * @param [response] LaunchPlanList - */ - type ListActiveLaunchPlansCallback = (error: (Error|null), response?: flyteidl.admin.LaunchPlanList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listLaunchPlanIds}. - * @param error Error, if any - * @param [response] NamedEntityIdentifierList - */ - type ListLaunchPlanIdsCallback = (error: (Error|null), response?: flyteidl.admin.NamedEntityIdentifierList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listLaunchPlans}. - * @param error Error, if any - * @param [response] LaunchPlanList - */ - type ListLaunchPlansCallback = (error: (Error|null), response?: flyteidl.admin.LaunchPlanList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateLaunchPlan}. - * @param error Error, if any - * @param [response] LaunchPlanUpdateResponse - */ - type UpdateLaunchPlanCallback = (error: (Error|null), response?: flyteidl.admin.LaunchPlanUpdateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#createExecution}. - * @param error Error, if any - * @param [response] ExecutionCreateResponse - */ - type CreateExecutionCallback = (error: (Error|null), response?: flyteidl.admin.ExecutionCreateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#relaunchExecution}. - * @param error Error, if any - * @param [response] ExecutionCreateResponse - */ - type RelaunchExecutionCallback = (error: (Error|null), response?: flyteidl.admin.ExecutionCreateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#recoverExecution}. - * @param error Error, if any - * @param [response] ExecutionCreateResponse - */ - type RecoverExecutionCallback = (error: (Error|null), response?: flyteidl.admin.ExecutionCreateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getExecution}. - * @param error Error, if any - * @param [response] Execution - */ - type GetExecutionCallback = (error: (Error|null), response?: flyteidl.admin.Execution) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateExecution}. - * @param error Error, if any - * @param [response] ExecutionUpdateResponse - */ - type UpdateExecutionCallback = (error: (Error|null), response?: flyteidl.admin.ExecutionUpdateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getExecutionData}. - * @param error Error, if any - * @param [response] WorkflowExecutionGetDataResponse - */ - type GetExecutionDataCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowExecutionGetDataResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listExecutions}. - * @param error Error, if any - * @param [response] ExecutionList - */ - type ListExecutionsCallback = (error: (Error|null), response?: flyteidl.admin.ExecutionList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#terminateExecution}. - * @param error Error, if any - * @param [response] ExecutionTerminateResponse - */ - type TerminateExecutionCallback = (error: (Error|null), response?: flyteidl.admin.ExecutionTerminateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getNodeExecution}. - * @param error Error, if any - * @param [response] NodeExecution - */ - type GetNodeExecutionCallback = (error: (Error|null), response?: flyteidl.admin.NodeExecution) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listNodeExecutions}. - * @param error Error, if any - * @param [response] NodeExecutionList - */ - type ListNodeExecutionsCallback = (error: (Error|null), response?: flyteidl.admin.NodeExecutionList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listNodeExecutionsForTask}. - * @param error Error, if any - * @param [response] NodeExecutionList - */ - type ListNodeExecutionsForTaskCallback = (error: (Error|null), response?: flyteidl.admin.NodeExecutionList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getNodeExecutionData}. - * @param error Error, if any - * @param [response] NodeExecutionGetDataResponse - */ - type GetNodeExecutionDataCallback = (error: (Error|null), response?: flyteidl.admin.NodeExecutionGetDataResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#registerProject}. - * @param error Error, if any - * @param [response] ProjectRegisterResponse - */ - type RegisterProjectCallback = (error: (Error|null), response?: flyteidl.admin.ProjectRegisterResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateProject}. - * @param error Error, if any - * @param [response] ProjectUpdateResponse - */ - type UpdateProjectCallback = (error: (Error|null), response?: flyteidl.admin.ProjectUpdateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listProjects}. - * @param error Error, if any - * @param [response] Projects - */ - type ListProjectsCallback = (error: (Error|null), response?: flyteidl.admin.Projects) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#createWorkflowEvent}. - * @param error Error, if any - * @param [response] WorkflowExecutionEventResponse - */ - type CreateWorkflowEventCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowExecutionEventResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#createNodeEvent}. - * @param error Error, if any - * @param [response] NodeExecutionEventResponse - */ - type CreateNodeEventCallback = (error: (Error|null), response?: flyteidl.admin.NodeExecutionEventResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#createTaskEvent}. - * @param error Error, if any - * @param [response] TaskExecutionEventResponse - */ - type CreateTaskEventCallback = (error: (Error|null), response?: flyteidl.admin.TaskExecutionEventResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getTaskExecution}. - * @param error Error, if any - * @param [response] TaskExecution - */ - type GetTaskExecutionCallback = (error: (Error|null), response?: flyteidl.admin.TaskExecution) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listTaskExecutions}. - * @param error Error, if any - * @param [response] TaskExecutionList - */ - type ListTaskExecutionsCallback = (error: (Error|null), response?: flyteidl.admin.TaskExecutionList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getTaskExecutionData}. - * @param error Error, if any - * @param [response] TaskExecutionGetDataResponse - */ - type GetTaskExecutionDataCallback = (error: (Error|null), response?: flyteidl.admin.TaskExecutionGetDataResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateProjectDomainAttributes}. - * @param error Error, if any - * @param [response] ProjectDomainAttributesUpdateResponse - */ - type UpdateProjectDomainAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectDomainAttributesUpdateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getProjectDomainAttributes}. - * @param error Error, if any - * @param [response] ProjectDomainAttributesGetResponse - */ - type GetProjectDomainAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectDomainAttributesGetResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#deleteProjectDomainAttributes}. - * @param error Error, if any - * @param [response] ProjectDomainAttributesDeleteResponse - */ - type DeleteProjectDomainAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectDomainAttributesDeleteResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateProjectAttributes}. - * @param error Error, if any - * @param [response] ProjectAttributesUpdateResponse - */ - type UpdateProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesUpdateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getProjectAttributes}. - * @param error Error, if any - * @param [response] ProjectAttributesGetResponse - */ - type GetProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesGetResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#deleteProjectAttributes}. - * @param error Error, if any - * @param [response] ProjectAttributesDeleteResponse - */ - type DeleteProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesDeleteResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateWorkflowAttributes}. - * @param error Error, if any - * @param [response] WorkflowAttributesUpdateResponse - */ - type UpdateWorkflowAttributesCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowAttributesUpdateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getWorkflowAttributes}. - * @param error Error, if any - * @param [response] WorkflowAttributesGetResponse - */ - type GetWorkflowAttributesCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowAttributesGetResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#deleteWorkflowAttributes}. - * @param error Error, if any - * @param [response] WorkflowAttributesDeleteResponse - */ - type DeleteWorkflowAttributesCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowAttributesDeleteResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listMatchableAttributes}. - * @param error Error, if any - * @param [response] ListMatchableAttributesResponse - */ - type ListMatchableAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ListMatchableAttributesResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listNamedEntities}. - * @param error Error, if any - * @param [response] NamedEntityList - */ - type ListNamedEntitiesCallback = (error: (Error|null), response?: flyteidl.admin.NamedEntityList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getNamedEntity}. - * @param error Error, if any - * @param [response] NamedEntity - */ - type GetNamedEntityCallback = (error: (Error|null), response?: flyteidl.admin.NamedEntity) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateNamedEntity}. - * @param error Error, if any - * @param [response] NamedEntityUpdateResponse - */ - type UpdateNamedEntityCallback = (error: (Error|null), response?: flyteidl.admin.NamedEntityUpdateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getVersion}. - * @param error Error, if any - * @param [response] GetVersionResponse - */ - type GetVersionCallback = (error: (Error|null), response?: flyteidl.admin.GetVersionResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getDescriptionEntity}. - * @param error Error, if any - * @param [response] DescriptionEntity - */ - type GetDescriptionEntityCallback = (error: (Error|null), response?: flyteidl.admin.DescriptionEntity) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#listDescriptionEntities}. - * @param error Error, if any - * @param [response] DescriptionEntityList - */ - type ListDescriptionEntitiesCallback = (error: (Error|null), response?: flyteidl.admin.DescriptionEntityList) => void; - - /** - * Callback as used by {@link flyteidl.service.AdminService#getExecutionMetrics}. - * @param error Error, if any - * @param [response] WorkflowExecutionGetMetricsResponse - */ - type GetExecutionMetricsCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowExecutionGetMetricsResponse) => void; - } - - /** Represents an AsyncAgentService */ - class AsyncAgentService extends $protobuf.rpc.Service { - - /** - * Constructs a new AsyncAgentService service. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - */ - constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); - - /** - * Creates new AsyncAgentService service using the specified rpc implementation. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - * @returns RPC service. Useful where requests and/or responses are streamed. - */ - public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): AsyncAgentService; - - /** - * Calls CreateTask. - * @param request CreateTaskRequest message or plain object - * @param callback Node-style callback called with the error, if any, and CreateTaskResponse - */ - public createTask(request: flyteidl.admin.ICreateTaskRequest, callback: flyteidl.service.AsyncAgentService.CreateTaskCallback): void; - - /** - * Calls CreateTask. - * @param request CreateTaskRequest message or plain object - * @returns Promise - */ - public createTask(request: flyteidl.admin.ICreateTaskRequest): Promise; - - /** - * Calls GetTask. - * @param request GetTaskRequest message or plain object - * @param callback Node-style callback called with the error, if any, and GetTaskResponse - */ - public getTask(request: flyteidl.admin.IGetTaskRequest, callback: flyteidl.service.AsyncAgentService.GetTaskCallback): void; - - /** - * Calls GetTask. - * @param request GetTaskRequest message or plain object - * @returns Promise - */ - public getTask(request: flyteidl.admin.IGetTaskRequest): Promise; - - /** - * Calls DeleteTask. - * @param request DeleteTaskRequest message or plain object - * @param callback Node-style callback called with the error, if any, and DeleteTaskResponse - */ - public deleteTask(request: flyteidl.admin.IDeleteTaskRequest, callback: flyteidl.service.AsyncAgentService.DeleteTaskCallback): void; - - /** - * Calls DeleteTask. - * @param request DeleteTaskRequest message or plain object - * @returns Promise - */ - public deleteTask(request: flyteidl.admin.IDeleteTaskRequest): Promise; - - /** - * Calls GetTaskMetrics. - * @param request GetTaskMetricsRequest message or plain object - * @param callback Node-style callback called with the error, if any, and GetTaskMetricsResponse - */ - public getTaskMetrics(request: flyteidl.admin.IGetTaskMetricsRequest, callback: flyteidl.service.AsyncAgentService.GetTaskMetricsCallback): void; - - /** - * Calls GetTaskMetrics. - * @param request GetTaskMetricsRequest message or plain object - * @returns Promise - */ - public getTaskMetrics(request: flyteidl.admin.IGetTaskMetricsRequest): Promise; - - /** - * Calls GetTaskLogs. - * @param request GetTaskLogsRequest message or plain object - * @param callback Node-style callback called with the error, if any, and GetTaskLogsResponse - */ - public getTaskLogs(request: flyteidl.admin.IGetTaskLogsRequest, callback: flyteidl.service.AsyncAgentService.GetTaskLogsCallback): void; - - /** - * Calls GetTaskLogs. - * @param request GetTaskLogsRequest message or plain object - * @returns Promise - */ - public getTaskLogs(request: flyteidl.admin.IGetTaskLogsRequest): Promise; - } - - namespace AsyncAgentService { - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#createTask}. - * @param error Error, if any - * @param [response] CreateTaskResponse - */ - type CreateTaskCallback = (error: (Error|null), response?: flyteidl.admin.CreateTaskResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#getTask}. - * @param error Error, if any - * @param [response] GetTaskResponse - */ - type GetTaskCallback = (error: (Error|null), response?: flyteidl.admin.GetTaskResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#deleteTask}. - * @param error Error, if any - * @param [response] DeleteTaskResponse - */ - type DeleteTaskCallback = (error: (Error|null), response?: flyteidl.admin.DeleteTaskResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#getTaskMetrics}. - * @param error Error, if any - * @param [response] GetTaskMetricsResponse - */ - type GetTaskMetricsCallback = (error: (Error|null), response?: flyteidl.admin.GetTaskMetricsResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#getTaskLogs}. - * @param error Error, if any - * @param [response] GetTaskLogsResponse - */ - type GetTaskLogsCallback = (error: (Error|null), response?: flyteidl.admin.GetTaskLogsResponse) => void; - } - - /** Represents an AgentMetadataService */ - class AgentMetadataService extends $protobuf.rpc.Service { - - /** - * Constructs a new AgentMetadataService service. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - */ - constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); - - /** - * Creates new AgentMetadataService service using the specified rpc implementation. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - * @returns RPC service. Useful where requests and/or responses are streamed. - */ - public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): AgentMetadataService; - - /** - * Calls GetAgent. - * @param request GetAgentRequest message or plain object - * @param callback Node-style callback called with the error, if any, and GetAgentResponse - */ - public getAgent(request: flyteidl.admin.IGetAgentRequest, callback: flyteidl.service.AgentMetadataService.GetAgentCallback): void; - - /** - * Calls GetAgent. - * @param request GetAgentRequest message or plain object - * @returns Promise - */ - public getAgent(request: flyteidl.admin.IGetAgentRequest): Promise; - - /** - * Calls ListAgents. - * @param request ListAgentsRequest message or plain object - * @param callback Node-style callback called with the error, if any, and ListAgentsResponse - */ - public listAgents(request: flyteidl.admin.IListAgentsRequest, callback: flyteidl.service.AgentMetadataService.ListAgentsCallback): void; - - /** - * Calls ListAgents. - * @param request ListAgentsRequest message or plain object - * @returns Promise - */ - public listAgents(request: flyteidl.admin.IListAgentsRequest): Promise; - } - - namespace AgentMetadataService { - - /** - * Callback as used by {@link flyteidl.service.AgentMetadataService#getAgent}. - * @param error Error, if any - * @param [response] GetAgentResponse - */ - type GetAgentCallback = (error: (Error|null), response?: flyteidl.admin.GetAgentResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AgentMetadataService#listAgents}. - * @param error Error, if any - * @param [response] ListAgentsResponse - */ - type ListAgentsCallback = (error: (Error|null), response?: flyteidl.admin.ListAgentsResponse) => void; - } - - /** Properties of a OAuth2MetadataRequest. */ - interface IOAuth2MetadataRequest { - } - - /** Represents a OAuth2MetadataRequest. */ - class OAuth2MetadataRequest implements IOAuth2MetadataRequest { - - /** - * Constructs a new OAuth2MetadataRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IOAuth2MetadataRequest); - - /** - * Creates a new OAuth2MetadataRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns OAuth2MetadataRequest instance - */ - public static create(properties?: flyteidl.service.IOAuth2MetadataRequest): flyteidl.service.OAuth2MetadataRequest; - - /** - * Encodes the specified OAuth2MetadataRequest message. Does not implicitly {@link flyteidl.service.OAuth2MetadataRequest.verify|verify} messages. - * @param message OAuth2MetadataRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IOAuth2MetadataRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a OAuth2MetadataRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns OAuth2MetadataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.OAuth2MetadataRequest; - - /** - * Verifies a OAuth2MetadataRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a OAuth2MetadataResponse. */ - interface IOAuth2MetadataResponse { - - /** OAuth2MetadataResponse issuer */ - issuer?: (string|null); - - /** OAuth2MetadataResponse authorizationEndpoint */ - authorizationEndpoint?: (string|null); - - /** OAuth2MetadataResponse tokenEndpoint */ - tokenEndpoint?: (string|null); - - /** OAuth2MetadataResponse responseTypesSupported */ - responseTypesSupported?: (string[]|null); - - /** OAuth2MetadataResponse scopesSupported */ - scopesSupported?: (string[]|null); - - /** OAuth2MetadataResponse tokenEndpointAuthMethodsSupported */ - tokenEndpointAuthMethodsSupported?: (string[]|null); - - /** OAuth2MetadataResponse jwksUri */ - jwksUri?: (string|null); - - /** OAuth2MetadataResponse codeChallengeMethodsSupported */ - codeChallengeMethodsSupported?: (string[]|null); - - /** OAuth2MetadataResponse grantTypesSupported */ - grantTypesSupported?: (string[]|null); - - /** OAuth2MetadataResponse deviceAuthorizationEndpoint */ - deviceAuthorizationEndpoint?: (string|null); - } - - /** Represents a OAuth2MetadataResponse. */ - class OAuth2MetadataResponse implements IOAuth2MetadataResponse { - - /** - * Constructs a new OAuth2MetadataResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IOAuth2MetadataResponse); - - /** OAuth2MetadataResponse issuer. */ - public issuer: string; - - /** OAuth2MetadataResponse authorizationEndpoint. */ - public authorizationEndpoint: string; - - /** OAuth2MetadataResponse tokenEndpoint. */ - public tokenEndpoint: string; - - /** OAuth2MetadataResponse responseTypesSupported. */ - public responseTypesSupported: string[]; - - /** OAuth2MetadataResponse scopesSupported. */ - public scopesSupported: string[]; - - /** OAuth2MetadataResponse tokenEndpointAuthMethodsSupported. */ - public tokenEndpointAuthMethodsSupported: string[]; - - /** OAuth2MetadataResponse jwksUri. */ - public jwksUri: string; - - /** OAuth2MetadataResponse codeChallengeMethodsSupported. */ - public codeChallengeMethodsSupported: string[]; - - /** OAuth2MetadataResponse grantTypesSupported. */ - public grantTypesSupported: string[]; - - /** OAuth2MetadataResponse deviceAuthorizationEndpoint. */ - public deviceAuthorizationEndpoint: string; - - /** - * Creates a new OAuth2MetadataResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns OAuth2MetadataResponse instance - */ - public static create(properties?: flyteidl.service.IOAuth2MetadataResponse): flyteidl.service.OAuth2MetadataResponse; - - /** - * Encodes the specified OAuth2MetadataResponse message. Does not implicitly {@link flyteidl.service.OAuth2MetadataResponse.verify|verify} messages. - * @param message OAuth2MetadataResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IOAuth2MetadataResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a OAuth2MetadataResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns OAuth2MetadataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.OAuth2MetadataResponse; - - /** - * Verifies a OAuth2MetadataResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a PublicClientAuthConfigRequest. */ - interface IPublicClientAuthConfigRequest { - } - - /** Represents a PublicClientAuthConfigRequest. */ - class PublicClientAuthConfigRequest implements IPublicClientAuthConfigRequest { - - /** - * Constructs a new PublicClientAuthConfigRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IPublicClientAuthConfigRequest); - - /** - * Creates a new PublicClientAuthConfigRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns PublicClientAuthConfigRequest instance - */ - public static create(properties?: flyteidl.service.IPublicClientAuthConfigRequest): flyteidl.service.PublicClientAuthConfigRequest; - - /** - * Encodes the specified PublicClientAuthConfigRequest message. Does not implicitly {@link flyteidl.service.PublicClientAuthConfigRequest.verify|verify} messages. - * @param message PublicClientAuthConfigRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IPublicClientAuthConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a PublicClientAuthConfigRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns PublicClientAuthConfigRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.PublicClientAuthConfigRequest; - - /** - * Verifies a PublicClientAuthConfigRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a PublicClientAuthConfigResponse. */ - interface IPublicClientAuthConfigResponse { - - /** PublicClientAuthConfigResponse clientId */ - clientId?: (string|null); - - /** PublicClientAuthConfigResponse redirectUri */ - redirectUri?: (string|null); - - /** PublicClientAuthConfigResponse scopes */ - scopes?: (string[]|null); - - /** PublicClientAuthConfigResponse authorizationMetadataKey */ - authorizationMetadataKey?: (string|null); - - /** PublicClientAuthConfigResponse serviceHttpEndpoint */ - serviceHttpEndpoint?: (string|null); - - /** PublicClientAuthConfigResponse audience */ - audience?: (string|null); - } - - /** Represents a PublicClientAuthConfigResponse. */ - class PublicClientAuthConfigResponse implements IPublicClientAuthConfigResponse { - - /** - * Constructs a new PublicClientAuthConfigResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IPublicClientAuthConfigResponse); - - /** PublicClientAuthConfigResponse clientId. */ - public clientId: string; - - /** PublicClientAuthConfigResponse redirectUri. */ - public redirectUri: string; - - /** PublicClientAuthConfigResponse scopes. */ - public scopes: string[]; - - /** PublicClientAuthConfigResponse authorizationMetadataKey. */ - public authorizationMetadataKey: string; - - /** PublicClientAuthConfigResponse serviceHttpEndpoint. */ - public serviceHttpEndpoint: string; - - /** PublicClientAuthConfigResponse audience. */ - public audience: string; - - /** - * Creates a new PublicClientAuthConfigResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns PublicClientAuthConfigResponse instance - */ - public static create(properties?: flyteidl.service.IPublicClientAuthConfigResponse): flyteidl.service.PublicClientAuthConfigResponse; - - /** - * Encodes the specified PublicClientAuthConfigResponse message. Does not implicitly {@link flyteidl.service.PublicClientAuthConfigResponse.verify|verify} messages. - * @param message PublicClientAuthConfigResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IPublicClientAuthConfigResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a PublicClientAuthConfigResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns PublicClientAuthConfigResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.PublicClientAuthConfigResponse; - - /** - * Verifies a PublicClientAuthConfigResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Represents an AuthMetadataService */ - class AuthMetadataService extends $protobuf.rpc.Service { - - /** - * Constructs a new AuthMetadataService service. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - */ - constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); - - /** - * Creates new AuthMetadataService service using the specified rpc implementation. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - * @returns RPC service. Useful where requests and/or responses are streamed. - */ - public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): AuthMetadataService; - - /** - * Calls GetOAuth2Metadata. - * @param request OAuth2MetadataRequest message or plain object - * @param callback Node-style callback called with the error, if any, and OAuth2MetadataResponse - */ - public getOAuth2Metadata(request: flyteidl.service.IOAuth2MetadataRequest, callback: flyteidl.service.AuthMetadataService.GetOAuth2MetadataCallback): void; - - /** - * Calls GetOAuth2Metadata. - * @param request OAuth2MetadataRequest message or plain object - * @returns Promise - */ - public getOAuth2Metadata(request: flyteidl.service.IOAuth2MetadataRequest): Promise; - - /** - * Calls GetPublicClientConfig. - * @param request PublicClientAuthConfigRequest message or plain object - * @param callback Node-style callback called with the error, if any, and PublicClientAuthConfigResponse - */ - public getPublicClientConfig(request: flyteidl.service.IPublicClientAuthConfigRequest, callback: flyteidl.service.AuthMetadataService.GetPublicClientConfigCallback): void; - - /** - * Calls GetPublicClientConfig. - * @param request PublicClientAuthConfigRequest message or plain object - * @returns Promise - */ - public getPublicClientConfig(request: flyteidl.service.IPublicClientAuthConfigRequest): Promise; - } - - namespace AuthMetadataService { - - /** - * Callback as used by {@link flyteidl.service.AuthMetadataService#getOAuth2Metadata}. - * @param error Error, if any - * @param [response] OAuth2MetadataResponse - */ - type GetOAuth2MetadataCallback = (error: (Error|null), response?: flyteidl.service.OAuth2MetadataResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.AuthMetadataService#getPublicClientConfig}. - * @param error Error, if any - * @param [response] PublicClientAuthConfigResponse - */ - type GetPublicClientConfigCallback = (error: (Error|null), response?: flyteidl.service.PublicClientAuthConfigResponse) => void; - } - - /** Properties of a CreateUploadLocationResponse. */ - interface ICreateUploadLocationResponse { - - /** CreateUploadLocationResponse signedUrl */ - signedUrl?: (string|null); - - /** CreateUploadLocationResponse nativeUrl */ - nativeUrl?: (string|null); - - /** CreateUploadLocationResponse expiresAt */ - expiresAt?: (google.protobuf.ITimestamp|null); - } - - /** Represents a CreateUploadLocationResponse. */ - class CreateUploadLocationResponse implements ICreateUploadLocationResponse { - - /** - * Constructs a new CreateUploadLocationResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ICreateUploadLocationResponse); - - /** CreateUploadLocationResponse signedUrl. */ - public signedUrl: string; - - /** CreateUploadLocationResponse nativeUrl. */ - public nativeUrl: string; - - /** CreateUploadLocationResponse expiresAt. */ - public expiresAt?: (google.protobuf.ITimestamp|null); - - /** - * Creates a new CreateUploadLocationResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateUploadLocationResponse instance - */ - public static create(properties?: flyteidl.service.ICreateUploadLocationResponse): flyteidl.service.CreateUploadLocationResponse; - - /** - * Encodes the specified CreateUploadLocationResponse message. Does not implicitly {@link flyteidl.service.CreateUploadLocationResponse.verify|verify} messages. - * @param message CreateUploadLocationResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ICreateUploadLocationResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateUploadLocationResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateUploadLocationResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.CreateUploadLocationResponse; - - /** - * Verifies a CreateUploadLocationResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CreateUploadLocationRequest. */ - interface ICreateUploadLocationRequest { - - /** CreateUploadLocationRequest project */ - project?: (string|null); - - /** CreateUploadLocationRequest domain */ - domain?: (string|null); - - /** CreateUploadLocationRequest filename */ - filename?: (string|null); - - /** CreateUploadLocationRequest expiresIn */ - expiresIn?: (google.protobuf.IDuration|null); - - /** CreateUploadLocationRequest contentMd5 */ - contentMd5?: (Uint8Array|null); - - /** CreateUploadLocationRequest filenameRoot */ - filenameRoot?: (string|null); - } - - /** Represents a CreateUploadLocationRequest. */ - class CreateUploadLocationRequest implements ICreateUploadLocationRequest { - - /** - * Constructs a new CreateUploadLocationRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ICreateUploadLocationRequest); - - /** CreateUploadLocationRequest project. */ - public project: string; - - /** CreateUploadLocationRequest domain. */ - public domain: string; - - /** CreateUploadLocationRequest filename. */ - public filename: string; - - /** CreateUploadLocationRequest expiresIn. */ - public expiresIn?: (google.protobuf.IDuration|null); - - /** CreateUploadLocationRequest contentMd5. */ - public contentMd5: Uint8Array; - - /** CreateUploadLocationRequest filenameRoot. */ - public filenameRoot: string; - - /** - * Creates a new CreateUploadLocationRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateUploadLocationRequest instance - */ - public static create(properties?: flyteidl.service.ICreateUploadLocationRequest): flyteidl.service.CreateUploadLocationRequest; - - /** - * Encodes the specified CreateUploadLocationRequest message. Does not implicitly {@link flyteidl.service.CreateUploadLocationRequest.verify|verify} messages. - * @param message CreateUploadLocationRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ICreateUploadLocationRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateUploadLocationRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateUploadLocationRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.CreateUploadLocationRequest; - - /** - * Verifies a CreateUploadLocationRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CreateDownloadLocationRequest. */ - interface ICreateDownloadLocationRequest { - - /** CreateDownloadLocationRequest nativeUrl */ - nativeUrl?: (string|null); - - /** CreateDownloadLocationRequest expiresIn */ - expiresIn?: (google.protobuf.IDuration|null); - } - - /** Represents a CreateDownloadLocationRequest. */ - class CreateDownloadLocationRequest implements ICreateDownloadLocationRequest { - - /** - * Constructs a new CreateDownloadLocationRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ICreateDownloadLocationRequest); - - /** CreateDownloadLocationRequest nativeUrl. */ - public nativeUrl: string; - - /** CreateDownloadLocationRequest expiresIn. */ - public expiresIn?: (google.protobuf.IDuration|null); - - /** - * Creates a new CreateDownloadLocationRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateDownloadLocationRequest instance - */ - public static create(properties?: flyteidl.service.ICreateDownloadLocationRequest): flyteidl.service.CreateDownloadLocationRequest; - - /** - * Encodes the specified CreateDownloadLocationRequest message. Does not implicitly {@link flyteidl.service.CreateDownloadLocationRequest.verify|verify} messages. - * @param message CreateDownloadLocationRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ICreateDownloadLocationRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateDownloadLocationRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateDownloadLocationRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.CreateDownloadLocationRequest; - - /** - * Verifies a CreateDownloadLocationRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CreateDownloadLocationResponse. */ - interface ICreateDownloadLocationResponse { - - /** CreateDownloadLocationResponse signedUrl */ - signedUrl?: (string|null); - - /** CreateDownloadLocationResponse expiresAt */ - expiresAt?: (google.protobuf.ITimestamp|null); - } - - /** Represents a CreateDownloadLocationResponse. */ - class CreateDownloadLocationResponse implements ICreateDownloadLocationResponse { - - /** - * Constructs a new CreateDownloadLocationResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ICreateDownloadLocationResponse); - - /** CreateDownloadLocationResponse signedUrl. */ - public signedUrl: string; - - /** CreateDownloadLocationResponse expiresAt. */ - public expiresAt?: (google.protobuf.ITimestamp|null); - - /** - * Creates a new CreateDownloadLocationResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateDownloadLocationResponse instance - */ - public static create(properties?: flyteidl.service.ICreateDownloadLocationResponse): flyteidl.service.CreateDownloadLocationResponse; - - /** - * Encodes the specified CreateDownloadLocationResponse message. Does not implicitly {@link flyteidl.service.CreateDownloadLocationResponse.verify|verify} messages. - * @param message CreateDownloadLocationResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ICreateDownloadLocationResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateDownloadLocationResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateDownloadLocationResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.CreateDownloadLocationResponse; - - /** - * Verifies a CreateDownloadLocationResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** ArtifactType enum. */ - enum ArtifactType { - ARTIFACT_TYPE_UNDEFINED = 0, - ARTIFACT_TYPE_DECK = 1 - } - - /** Properties of a CreateDownloadLinkRequest. */ - interface ICreateDownloadLinkRequest { - - /** CreateDownloadLinkRequest artifactType */ - artifactType?: (flyteidl.service.ArtifactType|null); - - /** CreateDownloadLinkRequest expiresIn */ - expiresIn?: (google.protobuf.IDuration|null); - - /** CreateDownloadLinkRequest nodeExecutionId */ - nodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null); - } - - /** Represents a CreateDownloadLinkRequest. */ - class CreateDownloadLinkRequest implements ICreateDownloadLinkRequest { - - /** - * Constructs a new CreateDownloadLinkRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ICreateDownloadLinkRequest); - - /** CreateDownloadLinkRequest artifactType. */ - public artifactType: flyteidl.service.ArtifactType; - - /** CreateDownloadLinkRequest expiresIn. */ - public expiresIn?: (google.protobuf.IDuration|null); - - /** CreateDownloadLinkRequest nodeExecutionId. */ - public nodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null); - - /** CreateDownloadLinkRequest source. */ - public source?: "nodeExecutionId"; - - /** - * Creates a new CreateDownloadLinkRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateDownloadLinkRequest instance - */ - public static create(properties?: flyteidl.service.ICreateDownloadLinkRequest): flyteidl.service.CreateDownloadLinkRequest; - - /** - * Encodes the specified CreateDownloadLinkRequest message. Does not implicitly {@link flyteidl.service.CreateDownloadLinkRequest.verify|verify} messages. - * @param message CreateDownloadLinkRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ICreateDownloadLinkRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateDownloadLinkRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateDownloadLinkRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.CreateDownloadLinkRequest; - - /** - * Verifies a CreateDownloadLinkRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CreateDownloadLinkResponse. */ - interface ICreateDownloadLinkResponse { - - /** CreateDownloadLinkResponse signedUrl */ - signedUrl?: (string[]|null); - - /** CreateDownloadLinkResponse expiresAt */ - expiresAt?: (google.protobuf.ITimestamp|null); - - /** CreateDownloadLinkResponse preSignedUrls */ - preSignedUrls?: (flyteidl.service.IPreSignedURLs|null); - } - - /** Represents a CreateDownloadLinkResponse. */ - class CreateDownloadLinkResponse implements ICreateDownloadLinkResponse { - - /** - * Constructs a new CreateDownloadLinkResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ICreateDownloadLinkResponse); - - /** CreateDownloadLinkResponse signedUrl. */ - public signedUrl: string[]; - - /** CreateDownloadLinkResponse expiresAt. */ - public expiresAt?: (google.protobuf.ITimestamp|null); - - /** CreateDownloadLinkResponse preSignedUrls. */ - public preSignedUrls?: (flyteidl.service.IPreSignedURLs|null); - - /** - * Creates a new CreateDownloadLinkResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns CreateDownloadLinkResponse instance - */ - public static create(properties?: flyteidl.service.ICreateDownloadLinkResponse): flyteidl.service.CreateDownloadLinkResponse; - - /** - * Encodes the specified CreateDownloadLinkResponse message. Does not implicitly {@link flyteidl.service.CreateDownloadLinkResponse.verify|verify} messages. - * @param message CreateDownloadLinkResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ICreateDownloadLinkResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CreateDownloadLinkResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CreateDownloadLinkResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.CreateDownloadLinkResponse; - - /** - * Verifies a CreateDownloadLinkResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a PreSignedURLs. */ - interface IPreSignedURLs { - - /** PreSignedURLs signedUrl */ - signedUrl?: (string[]|null); - - /** PreSignedURLs expiresAt */ - expiresAt?: (google.protobuf.ITimestamp|null); - } - - /** Represents a PreSignedURLs. */ - class PreSignedURLs implements IPreSignedURLs { - - /** - * Constructs a new PreSignedURLs. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IPreSignedURLs); - - /** PreSignedURLs signedUrl. */ - public signedUrl: string[]; - - /** PreSignedURLs expiresAt. */ - public expiresAt?: (google.protobuf.ITimestamp|null); - - /** - * Creates a new PreSignedURLs instance using the specified properties. - * @param [properties] Properties to set - * @returns PreSignedURLs instance - */ - public static create(properties?: flyteidl.service.IPreSignedURLs): flyteidl.service.PreSignedURLs; - - /** - * Encodes the specified PreSignedURLs message. Does not implicitly {@link flyteidl.service.PreSignedURLs.verify|verify} messages. - * @param message PreSignedURLs message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IPreSignedURLs, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a PreSignedURLs message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns PreSignedURLs - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.PreSignedURLs; - - /** - * Verifies a PreSignedURLs message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetDataRequest. */ - interface IGetDataRequest { - - /** GetDataRequest flyteUrl */ - flyteUrl?: (string|null); - } - - /** Represents a GetDataRequest. */ - class GetDataRequest implements IGetDataRequest { - - /** - * Constructs a new GetDataRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IGetDataRequest); - - /** GetDataRequest flyteUrl. */ - public flyteUrl: string; - - /** - * Creates a new GetDataRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns GetDataRequest instance - */ - public static create(properties?: flyteidl.service.IGetDataRequest): flyteidl.service.GetDataRequest; - - /** - * Encodes the specified GetDataRequest message. Does not implicitly {@link flyteidl.service.GetDataRequest.verify|verify} messages. - * @param message GetDataRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IGetDataRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetDataRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetDataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.GetDataRequest; - - /** - * Verifies a GetDataRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a GetDataResponse. */ - interface IGetDataResponse { - - /** GetDataResponse literalMap */ - literalMap?: (flyteidl.core.ILiteralMap|null); - - /** GetDataResponse preSignedUrls */ - preSignedUrls?: (flyteidl.service.IPreSignedURLs|null); - - /** GetDataResponse literal */ - literal?: (flyteidl.core.ILiteral|null); - } - - /** Represents a GetDataResponse. */ - class GetDataResponse implements IGetDataResponse { - - /** - * Constructs a new GetDataResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IGetDataResponse); - - /** GetDataResponse literalMap. */ - public literalMap?: (flyteidl.core.ILiteralMap|null); - - /** GetDataResponse preSignedUrls. */ - public preSignedUrls?: (flyteidl.service.IPreSignedURLs|null); - - /** GetDataResponse literal. */ - public literal?: (flyteidl.core.ILiteral|null); - - /** GetDataResponse data. */ - public data?: ("literalMap"|"preSignedUrls"|"literal"); - - /** - * Creates a new GetDataResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns GetDataResponse instance - */ - public static create(properties?: flyteidl.service.IGetDataResponse): flyteidl.service.GetDataResponse; - - /** - * Encodes the specified GetDataResponse message. Does not implicitly {@link flyteidl.service.GetDataResponse.verify|verify} messages. - * @param message GetDataResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IGetDataResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GetDataResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GetDataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.GetDataResponse; - - /** - * Verifies a GetDataResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Represents a DataProxyService */ - class DataProxyService extends $protobuf.rpc.Service { - - /** - * Constructs a new DataProxyService service. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - */ - constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); - - /** - * Creates new DataProxyService service using the specified rpc implementation. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - * @returns RPC service. Useful where requests and/or responses are streamed. - */ - public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): DataProxyService; - - /** - * Calls CreateUploadLocation. - * @param request CreateUploadLocationRequest message or plain object - * @param callback Node-style callback called with the error, if any, and CreateUploadLocationResponse - */ - public createUploadLocation(request: flyteidl.service.ICreateUploadLocationRequest, callback: flyteidl.service.DataProxyService.CreateUploadLocationCallback): void; - - /** - * Calls CreateUploadLocation. - * @param request CreateUploadLocationRequest message or plain object - * @returns Promise - */ - public createUploadLocation(request: flyteidl.service.ICreateUploadLocationRequest): Promise; - - /** - * Calls CreateDownloadLocation. - * @param request CreateDownloadLocationRequest message or plain object - * @param callback Node-style callback called with the error, if any, and CreateDownloadLocationResponse - */ - public createDownloadLocation(request: flyteidl.service.ICreateDownloadLocationRequest, callback: flyteidl.service.DataProxyService.CreateDownloadLocationCallback): void; - - /** - * Calls CreateDownloadLocation. - * @param request CreateDownloadLocationRequest message or plain object - * @returns Promise - */ - public createDownloadLocation(request: flyteidl.service.ICreateDownloadLocationRequest): Promise; - - /** - * Calls CreateDownloadLink. - * @param request CreateDownloadLinkRequest message or plain object - * @param callback Node-style callback called with the error, if any, and CreateDownloadLinkResponse - */ - public createDownloadLink(request: flyteidl.service.ICreateDownloadLinkRequest, callback: flyteidl.service.DataProxyService.CreateDownloadLinkCallback): void; - - /** - * Calls CreateDownloadLink. - * @param request CreateDownloadLinkRequest message or plain object - * @returns Promise - */ - public createDownloadLink(request: flyteidl.service.ICreateDownloadLinkRequest): Promise; - - /** - * Calls GetData. - * @param request GetDataRequest message or plain object - * @param callback Node-style callback called with the error, if any, and GetDataResponse - */ - public getData(request: flyteidl.service.IGetDataRequest, callback: flyteidl.service.DataProxyService.GetDataCallback): void; - - /** - * Calls GetData. - * @param request GetDataRequest message or plain object - * @returns Promise - */ - public getData(request: flyteidl.service.IGetDataRequest): Promise; - } - - namespace DataProxyService { - - /** - * Callback as used by {@link flyteidl.service.DataProxyService#createUploadLocation}. - * @param error Error, if any - * @param [response] CreateUploadLocationResponse - */ - type CreateUploadLocationCallback = (error: (Error|null), response?: flyteidl.service.CreateUploadLocationResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.DataProxyService#createDownloadLocation}. - * @param error Error, if any - * @param [response] CreateDownloadLocationResponse - */ - type CreateDownloadLocationCallback = (error: (Error|null), response?: flyteidl.service.CreateDownloadLocationResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.DataProxyService#createDownloadLink}. - * @param error Error, if any - * @param [response] CreateDownloadLinkResponse - */ - type CreateDownloadLinkCallback = (error: (Error|null), response?: flyteidl.service.CreateDownloadLinkResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.DataProxyService#getData}. - * @param error Error, if any - * @param [response] GetDataResponse - */ - type GetDataCallback = (error: (Error|null), response?: flyteidl.service.GetDataResponse) => void; - } - - /** Represents an ExternalPluginService */ - class ExternalPluginService extends $protobuf.rpc.Service { - - /** - * Constructs a new ExternalPluginService service. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - */ - constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); - - /** - * Creates new ExternalPluginService service using the specified rpc implementation. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - * @returns RPC service. Useful where requests and/or responses are streamed. - */ - public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ExternalPluginService; - - /** - * Calls CreateTask. - * @param request TaskCreateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskCreateResponse - */ - public createTask(request: flyteidl.service.ITaskCreateRequest, callback: flyteidl.service.ExternalPluginService.CreateTaskCallback): void; - - /** - * Calls CreateTask. - * @param request TaskCreateRequest message or plain object - * @returns Promise - */ - public createTask(request: flyteidl.service.ITaskCreateRequest): Promise; - - /** - * Calls GetTask. - * @param request TaskGetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskGetResponse - */ - public getTask(request: flyteidl.service.ITaskGetRequest, callback: flyteidl.service.ExternalPluginService.GetTaskCallback): void; - - /** - * Calls GetTask. - * @param request TaskGetRequest message or plain object - * @returns Promise - */ - public getTask(request: flyteidl.service.ITaskGetRequest): Promise; - - /** - * Calls DeleteTask. - * @param request TaskDeleteRequest message or plain object - * @param callback Node-style callback called with the error, if any, and TaskDeleteResponse - */ - public deleteTask(request: flyteidl.service.ITaskDeleteRequest, callback: flyteidl.service.ExternalPluginService.DeleteTaskCallback): void; - - /** - * Calls DeleteTask. - * @param request TaskDeleteRequest message or plain object - * @returns Promise - */ - public deleteTask(request: flyteidl.service.ITaskDeleteRequest): Promise; - } - - namespace ExternalPluginService { - - /** - * Callback as used by {@link flyteidl.service.ExternalPluginService#createTask}. - * @param error Error, if any - * @param [response] TaskCreateResponse - */ - type CreateTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskCreateResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.ExternalPluginService#getTask}. - * @param error Error, if any - * @param [response] TaskGetResponse - */ - type GetTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskGetResponse) => void; - - /** - * Callback as used by {@link flyteidl.service.ExternalPluginService#deleteTask}. - * @param error Error, if any - * @param [response] TaskDeleteResponse - */ - type DeleteTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskDeleteResponse) => void; - } - - /** State enum. */ - enum State { - RETRYABLE_FAILURE = 0, - PERMANENT_FAILURE = 1, - PENDING = 2, - RUNNING = 3, - SUCCEEDED = 4 - } - - /** Properties of a TaskCreateRequest. */ - interface ITaskCreateRequest { - - /** TaskCreateRequest inputs */ - inputs?: (flyteidl.core.ILiteralMap|null); - - /** TaskCreateRequest template */ - template?: (flyteidl.core.ITaskTemplate|null); - - /** TaskCreateRequest outputPrefix */ - outputPrefix?: (string|null); - } - - /** Represents a TaskCreateRequest. */ - class TaskCreateRequest implements ITaskCreateRequest { - - /** - * Constructs a new TaskCreateRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ITaskCreateRequest); - - /** TaskCreateRequest inputs. */ - public inputs?: (flyteidl.core.ILiteralMap|null); - - /** TaskCreateRequest template. */ - public template?: (flyteidl.core.ITaskTemplate|null); - - /** TaskCreateRequest outputPrefix. */ - public outputPrefix: string; - - /** - * Creates a new TaskCreateRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskCreateRequest instance - */ - public static create(properties?: flyteidl.service.ITaskCreateRequest): flyteidl.service.TaskCreateRequest; - - /** - * Encodes the specified TaskCreateRequest message. Does not implicitly {@link flyteidl.service.TaskCreateRequest.verify|verify} messages. - * @param message TaskCreateRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ITaskCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskCreateRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskCreateRequest; - - /** - * Verifies a TaskCreateRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskCreateResponse. */ - interface ITaskCreateResponse { - - /** TaskCreateResponse jobId */ - jobId?: (string|null); - } - - /** Represents a TaskCreateResponse. */ - class TaskCreateResponse implements ITaskCreateResponse { - - /** - * Constructs a new TaskCreateResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ITaskCreateResponse); - - /** TaskCreateResponse jobId. */ - public jobId: string; - - /** - * Creates a new TaskCreateResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskCreateResponse instance - */ - public static create(properties?: flyteidl.service.ITaskCreateResponse): flyteidl.service.TaskCreateResponse; - - /** - * Encodes the specified TaskCreateResponse message. Does not implicitly {@link flyteidl.service.TaskCreateResponse.verify|verify} messages. - * @param message TaskCreateResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ITaskCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskCreateResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskCreateResponse; - - /** - * Verifies a TaskCreateResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskGetRequest. */ - interface ITaskGetRequest { - - /** TaskGetRequest taskType */ - taskType?: (string|null); - - /** TaskGetRequest jobId */ - jobId?: (string|null); - } - - /** Represents a TaskGetRequest. */ - class TaskGetRequest implements ITaskGetRequest { - - /** - * Constructs a new TaskGetRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ITaskGetRequest); - - /** TaskGetRequest taskType. */ - public taskType: string; - - /** TaskGetRequest jobId. */ - public jobId: string; - - /** - * Creates a new TaskGetRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskGetRequest instance - */ - public static create(properties?: flyteidl.service.ITaskGetRequest): flyteidl.service.TaskGetRequest; - - /** - * Encodes the specified TaskGetRequest message. Does not implicitly {@link flyteidl.service.TaskGetRequest.verify|verify} messages. - * @param message TaskGetRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ITaskGetRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskGetRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskGetRequest; - - /** - * Verifies a TaskGetRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskGetResponse. */ - interface ITaskGetResponse { - - /** TaskGetResponse state */ - state?: (flyteidl.service.State|null); - - /** TaskGetResponse outputs */ - outputs?: (flyteidl.core.ILiteralMap|null); - } - - /** Represents a TaskGetResponse. */ - class TaskGetResponse implements ITaskGetResponse { - - /** - * Constructs a new TaskGetResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ITaskGetResponse); - - /** TaskGetResponse state. */ - public state: flyteidl.service.State; - - /** TaskGetResponse outputs. */ - public outputs?: (flyteidl.core.ILiteralMap|null); - - /** - * Creates a new TaskGetResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskGetResponse instance - */ - public static create(properties?: flyteidl.service.ITaskGetResponse): flyteidl.service.TaskGetResponse; - - /** - * Encodes the specified TaskGetResponse message. Does not implicitly {@link flyteidl.service.TaskGetResponse.verify|verify} messages. - * @param message TaskGetResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ITaskGetResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskGetResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskGetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskGetResponse; - - /** - * Verifies a TaskGetResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskDeleteRequest. */ - interface ITaskDeleteRequest { - - /** TaskDeleteRequest taskType */ - taskType?: (string|null); - - /** TaskDeleteRequest jobId */ - jobId?: (string|null); - } - - /** Represents a TaskDeleteRequest. */ - class TaskDeleteRequest implements ITaskDeleteRequest { - - /** - * Constructs a new TaskDeleteRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ITaskDeleteRequest); - - /** TaskDeleteRequest taskType. */ - public taskType: string; - - /** TaskDeleteRequest jobId. */ - public jobId: string; - - /** - * Creates a new TaskDeleteRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskDeleteRequest instance - */ - public static create(properties?: flyteidl.service.ITaskDeleteRequest): flyteidl.service.TaskDeleteRequest; - - /** - * Encodes the specified TaskDeleteRequest message. Does not implicitly {@link flyteidl.service.TaskDeleteRequest.verify|verify} messages. - * @param message TaskDeleteRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ITaskDeleteRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskDeleteRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskDeleteRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskDeleteRequest; - - /** - * Verifies a TaskDeleteRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a TaskDeleteResponse. */ - interface ITaskDeleteResponse { - } - - /** Represents a TaskDeleteResponse. */ - class TaskDeleteResponse implements ITaskDeleteResponse { - - /** - * Constructs a new TaskDeleteResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.ITaskDeleteResponse); - - /** - * Creates a new TaskDeleteResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns TaskDeleteResponse instance - */ - public static create(properties?: flyteidl.service.ITaskDeleteResponse): flyteidl.service.TaskDeleteResponse; - - /** - * Encodes the specified TaskDeleteResponse message. Does not implicitly {@link flyteidl.service.TaskDeleteResponse.verify|verify} messages. - * @param message TaskDeleteResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.ITaskDeleteResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a TaskDeleteResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns TaskDeleteResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskDeleteResponse; - - /** - * Verifies a TaskDeleteResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a UserInfoRequest. */ - interface IUserInfoRequest { - } - - /** Represents a UserInfoRequest. */ - class UserInfoRequest implements IUserInfoRequest { - - /** - * Constructs a new UserInfoRequest. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IUserInfoRequest); - - /** - * Creates a new UserInfoRequest instance using the specified properties. - * @param [properties] Properties to set - * @returns UserInfoRequest instance - */ - public static create(properties?: flyteidl.service.IUserInfoRequest): flyteidl.service.UserInfoRequest; - - /** - * Encodes the specified UserInfoRequest message. Does not implicitly {@link flyteidl.service.UserInfoRequest.verify|verify} messages. - * @param message UserInfoRequest message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IUserInfoRequest, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a UserInfoRequest message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns UserInfoRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.UserInfoRequest; - - /** - * Verifies a UserInfoRequest message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a UserInfoResponse. */ - interface IUserInfoResponse { - - /** UserInfoResponse subject */ - subject?: (string|null); - - /** UserInfoResponse name */ - name?: (string|null); - - /** UserInfoResponse preferredUsername */ - preferredUsername?: (string|null); - - /** UserInfoResponse givenName */ - givenName?: (string|null); - - /** UserInfoResponse familyName */ - familyName?: (string|null); - - /** UserInfoResponse email */ - email?: (string|null); - - /** UserInfoResponse picture */ - picture?: (string|null); - - /** UserInfoResponse additionalClaims */ - additionalClaims?: (google.protobuf.IStruct|null); - } - - /** Represents a UserInfoResponse. */ - class UserInfoResponse implements IUserInfoResponse { - - /** - * Constructs a new UserInfoResponse. - * @param [properties] Properties to set - */ - constructor(properties?: flyteidl.service.IUserInfoResponse); - - /** UserInfoResponse subject. */ - public subject: string; - - /** UserInfoResponse name. */ - public name: string; - - /** UserInfoResponse preferredUsername. */ - public preferredUsername: string; - - /** UserInfoResponse givenName. */ - public givenName: string; - - /** UserInfoResponse familyName. */ - public familyName: string; - - /** UserInfoResponse email. */ - public email: string; - - /** UserInfoResponse picture. */ - public picture: string; - - /** UserInfoResponse additionalClaims. */ - public additionalClaims?: (google.protobuf.IStruct|null); - - /** - * Creates a new UserInfoResponse instance using the specified properties. - * @param [properties] Properties to set - * @returns UserInfoResponse instance - */ - public static create(properties?: flyteidl.service.IUserInfoResponse): flyteidl.service.UserInfoResponse; - - /** - * Encodes the specified UserInfoResponse message. Does not implicitly {@link flyteidl.service.UserInfoResponse.verify|verify} messages. - * @param message UserInfoResponse message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: flyteidl.service.IUserInfoResponse, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a UserInfoResponse message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns UserInfoResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.UserInfoResponse; - - /** - * Verifies a UserInfoResponse message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Represents an IdentityService */ - class IdentityService extends $protobuf.rpc.Service { - - /** - * Constructs a new IdentityService service. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - */ - constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); - - /** - * Creates new IdentityService service using the specified rpc implementation. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - * @returns RPC service. Useful where requests and/or responses are streamed. - */ - public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): IdentityService; - - /** - * Calls UserInfo. - * @param request UserInfoRequest message or plain object - * @param callback Node-style callback called with the error, if any, and UserInfoResponse - */ - public userInfo(request: flyteidl.service.IUserInfoRequest, callback: flyteidl.service.IdentityService.UserInfoCallback): void; - - /** - * Calls UserInfo. - * @param request UserInfoRequest message or plain object - * @returns Promise - */ - public userInfo(request: flyteidl.service.IUserInfoRequest): Promise; - } - - namespace IdentityService { - - /** - * Callback as used by {@link flyteidl.service.IdentityService#userInfo}. - * @param error Error, if any - * @param [response] UserInfoResponse - */ - type UserInfoCallback = (error: (Error|null), response?: flyteidl.service.UserInfoResponse) => void; - } - - /** Represents a SignalService */ - class SignalService extends $protobuf.rpc.Service { - - /** - * Constructs a new SignalService service. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - */ - constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); - - /** - * Creates new SignalService service using the specified rpc implementation. - * @param rpcImpl RPC implementation - * @param [requestDelimited=false] Whether requests are length-delimited - * @param [responseDelimited=false] Whether responses are length-delimited - * @returns RPC service. Useful where requests and/or responses are streamed. - */ - public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): SignalService; - - /** - * Calls GetOrCreateSignal. - * @param request SignalGetOrCreateRequest message or plain object - * @param callback Node-style callback called with the error, if any, and Signal - */ - public getOrCreateSignal(request: flyteidl.admin.ISignalGetOrCreateRequest, callback: flyteidl.service.SignalService.GetOrCreateSignalCallback): void; - - /** - * Calls GetOrCreateSignal. - * @param request SignalGetOrCreateRequest message or plain object - * @returns Promise - */ - public getOrCreateSignal(request: flyteidl.admin.ISignalGetOrCreateRequest): Promise; - - /** - * Calls ListSignals. - * @param request SignalListRequest message or plain object - * @param callback Node-style callback called with the error, if any, and SignalList - */ - public listSignals(request: flyteidl.admin.ISignalListRequest, callback: flyteidl.service.SignalService.ListSignalsCallback): void; - - /** - * Calls ListSignals. - * @param request SignalListRequest message or plain object - * @returns Promise - */ - public listSignals(request: flyteidl.admin.ISignalListRequest): Promise; - - /** - * Calls SetSignal. - * @param request SignalSetRequest message or plain object - * @param callback Node-style callback called with the error, if any, and SignalSetResponse - */ - public setSignal(request: flyteidl.admin.ISignalSetRequest, callback: flyteidl.service.SignalService.SetSignalCallback): void; - - /** - * Calls SetSignal. - * @param request SignalSetRequest message or plain object - * @returns Promise - */ - public setSignal(request: flyteidl.admin.ISignalSetRequest): Promise; - } - - namespace SignalService { - - /** - * Callback as used by {@link flyteidl.service.SignalService#getOrCreateSignal}. - * @param error Error, if any - * @param [response] Signal - */ - type GetOrCreateSignalCallback = (error: (Error|null), response?: flyteidl.admin.Signal) => void; - - /** - * Callback as used by {@link flyteidl.service.SignalService#listSignals}. - * @param error Error, if any - * @param [response] SignalList - */ - type ListSignalsCallback = (error: (Error|null), response?: flyteidl.admin.SignalList) => void; - - /** - * Callback as used by {@link flyteidl.service.SignalService#setSignal}. - * @param error Error, if any - * @param [response] SignalSetResponse - */ - type SetSignalCallback = (error: (Error|null), response?: flyteidl.admin.SignalSetResponse) => void; - } - } -} - -/** Namespace google. */ -export namespace google { - - /** Namespace protobuf. */ - namespace protobuf { - - /** Properties of a Timestamp. */ - interface ITimestamp { - - /** Timestamp seconds */ - seconds?: (Long|null); - - /** Timestamp nanos */ - nanos?: (number|null); - } - - /** Represents a Timestamp. */ - class Timestamp implements ITimestamp { - - /** - * Constructs a new Timestamp. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.ITimestamp); - - /** Timestamp seconds. */ - public seconds: Long; - - /** Timestamp nanos. */ - public nanos: number; - - /** - * Creates a new Timestamp instance using the specified properties. - * @param [properties] Properties to set - * @returns Timestamp instance - */ - public static create(properties?: google.protobuf.ITimestamp): google.protobuf.Timestamp; - - /** - * Encodes the specified Timestamp message. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages. - * @param message Timestamp message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Timestamp message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Timestamp - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Timestamp; - - /** - * Verifies a Timestamp message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Duration. */ - interface IDuration { - - /** Duration seconds */ - seconds?: (Long|null); - - /** Duration nanos */ - nanos?: (number|null); - } - - /** Represents a Duration. */ - class Duration implements IDuration { - - /** - * Constructs a new Duration. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IDuration); - - /** Duration seconds. */ - public seconds: Long; - - /** Duration nanos. */ - public nanos: number; - - /** - * Creates a new Duration instance using the specified properties. - * @param [properties] Properties to set - * @returns Duration instance - */ - public static create(properties?: google.protobuf.IDuration): google.protobuf.Duration; - - /** - * Encodes the specified Duration message. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages. - * @param message Duration message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IDuration, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Duration message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Duration - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Duration; - - /** - * Verifies a Duration message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Struct. */ - interface IStruct { - - /** Struct fields */ - fields?: ({ [k: string]: google.protobuf.IValue }|null); - } - - /** Represents a Struct. */ - class Struct implements IStruct { - - /** - * Constructs a new Struct. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IStruct); - - /** Struct fields. */ - public fields: { [k: string]: google.protobuf.IValue }; - - /** - * Creates a new Struct instance using the specified properties. - * @param [properties] Properties to set - * @returns Struct instance - */ - public static create(properties?: google.protobuf.IStruct): google.protobuf.Struct; - - /** - * Encodes the specified Struct message. Does not implicitly {@link google.protobuf.Struct.verify|verify} messages. - * @param message Struct message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IStruct, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Struct message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Struct - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Struct; - - /** - * Verifies a Struct message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a Value. */ - interface IValue { - - /** Value nullValue */ - nullValue?: (google.protobuf.NullValue|null); - - /** Value numberValue */ - numberValue?: (number|null); - - /** Value stringValue */ - stringValue?: (string|null); - - /** Value boolValue */ - boolValue?: (boolean|null); - - /** Value structValue */ - structValue?: (google.protobuf.IStruct|null); - - /** Value listValue */ - listValue?: (google.protobuf.IListValue|null); - } - - /** Represents a Value. */ - class Value implements IValue { - - /** - * Constructs a new Value. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IValue); - - /** Value nullValue. */ - public nullValue: google.protobuf.NullValue; - - /** Value numberValue. */ - public numberValue: number; - - /** Value stringValue. */ - public stringValue: string; - - /** Value boolValue. */ - public boolValue: boolean; - - /** Value structValue. */ - public structValue?: (google.protobuf.IStruct|null); - - /** Value listValue. */ - public listValue?: (google.protobuf.IListValue|null); - - /** Value kind. */ - public kind?: ("nullValue"|"numberValue"|"stringValue"|"boolValue"|"structValue"|"listValue"); - - /** - * Creates a new Value instance using the specified properties. - * @param [properties] Properties to set - * @returns Value instance - */ - public static create(properties?: google.protobuf.IValue): google.protobuf.Value; - - /** - * Encodes the specified Value message. Does not implicitly {@link google.protobuf.Value.verify|verify} messages. - * @param message Value message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IValue, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Value message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Value; - - /** - * Verifies a Value message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** NullValue enum. */ - enum NullValue { - NULL_VALUE = 0 - } - - /** Properties of a ListValue. */ - interface IListValue { - - /** ListValue values */ - values?: (google.protobuf.IValue[]|null); - } - - /** Represents a ListValue. */ - class ListValue implements IListValue { - - /** - * Constructs a new ListValue. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IListValue); - - /** ListValue values. */ - public values: google.protobuf.IValue[]; - - /** - * Creates a new ListValue instance using the specified properties. - * @param [properties] Properties to set - * @returns ListValue instance - */ - public static create(properties?: google.protobuf.IListValue): google.protobuf.ListValue; - - /** - * Encodes the specified ListValue message. Does not implicitly {@link google.protobuf.ListValue.verify|verify} messages. - * @param message ListValue message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IListValue, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ListValue message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ListValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ListValue; - - /** - * Verifies a ListValue message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DoubleValue. */ - interface IDoubleValue { - - /** DoubleValue value */ - value?: (number|null); - } - - /** Represents a DoubleValue. */ - class DoubleValue implements IDoubleValue { - - /** - * Constructs a new DoubleValue. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IDoubleValue); - - /** DoubleValue value. */ - public value: number; - - /** - * Creates a new DoubleValue instance using the specified properties. - * @param [properties] Properties to set - * @returns DoubleValue instance - */ - public static create(properties?: google.protobuf.IDoubleValue): google.protobuf.DoubleValue; - - /** - * Encodes the specified DoubleValue message. Does not implicitly {@link google.protobuf.DoubleValue.verify|verify} messages. - * @param message DoubleValue message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IDoubleValue, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DoubleValue message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DoubleValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.DoubleValue; - - /** - * Verifies a DoubleValue message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a FloatValue. */ - interface IFloatValue { - - /** FloatValue value */ - value?: (number|null); - } - - /** Represents a FloatValue. */ - class FloatValue implements IFloatValue { - - /** - * Constructs a new FloatValue. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IFloatValue); - - /** FloatValue value. */ - public value: number; - - /** - * Creates a new FloatValue instance using the specified properties. - * @param [properties] Properties to set - * @returns FloatValue instance - */ - public static create(properties?: google.protobuf.IFloatValue): google.protobuf.FloatValue; - - /** - * Encodes the specified FloatValue message. Does not implicitly {@link google.protobuf.FloatValue.verify|verify} messages. - * @param message FloatValue message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IFloatValue, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a FloatValue message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns FloatValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FloatValue; - - /** - * Verifies a FloatValue message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Int64Value. */ - interface IInt64Value { - - /** Int64Value value */ - value?: (Long|null); - } - - /** Represents an Int64Value. */ - class Int64Value implements IInt64Value { - - /** - * Constructs a new Int64Value. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IInt64Value); - - /** Int64Value value. */ - public value: Long; - - /** - * Creates a new Int64Value instance using the specified properties. - * @param [properties] Properties to set - * @returns Int64Value instance - */ - public static create(properties?: google.protobuf.IInt64Value): google.protobuf.Int64Value; - - /** - * Encodes the specified Int64Value message. Does not implicitly {@link google.protobuf.Int64Value.verify|verify} messages. - * @param message Int64Value message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IInt64Value, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Int64Value message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Int64Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Int64Value; - - /** - * Verifies an Int64Value message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a UInt64Value. */ - interface IUInt64Value { - - /** UInt64Value value */ - value?: (Long|null); - } - - /** Represents a UInt64Value. */ - class UInt64Value implements IUInt64Value { - - /** - * Constructs a new UInt64Value. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IUInt64Value); - - /** UInt64Value value. */ - public value: Long; - - /** - * Creates a new UInt64Value instance using the specified properties. - * @param [properties] Properties to set - * @returns UInt64Value instance - */ - public static create(properties?: google.protobuf.IUInt64Value): google.protobuf.UInt64Value; - - /** - * Encodes the specified UInt64Value message. Does not implicitly {@link google.protobuf.UInt64Value.verify|verify} messages. - * @param message UInt64Value message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IUInt64Value, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a UInt64Value message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns UInt64Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.UInt64Value; - - /** - * Verifies a UInt64Value message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Int32Value. */ - interface IInt32Value { - - /** Int32Value value */ - value?: (number|null); - } - - /** Represents an Int32Value. */ - class Int32Value implements IInt32Value { - - /** - * Constructs a new Int32Value. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IInt32Value); - - /** Int32Value value. */ - public value: number; - - /** - * Creates a new Int32Value instance using the specified properties. - * @param [properties] Properties to set - * @returns Int32Value instance - */ - public static create(properties?: google.protobuf.IInt32Value): google.protobuf.Int32Value; - - /** - * Encodes the specified Int32Value message. Does not implicitly {@link google.protobuf.Int32Value.verify|verify} messages. - * @param message Int32Value message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IInt32Value, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Int32Value message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Int32Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Int32Value; - - /** - * Verifies an Int32Value message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a UInt32Value. */ - interface IUInt32Value { - - /** UInt32Value value */ - value?: (number|null); - } - - /** Represents a UInt32Value. */ - class UInt32Value implements IUInt32Value { - - /** - * Constructs a new UInt32Value. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IUInt32Value); - - /** UInt32Value value. */ - public value: number; - - /** - * Creates a new UInt32Value instance using the specified properties. - * @param [properties] Properties to set - * @returns UInt32Value instance - */ - public static create(properties?: google.protobuf.IUInt32Value): google.protobuf.UInt32Value; - - /** - * Encodes the specified UInt32Value message. Does not implicitly {@link google.protobuf.UInt32Value.verify|verify} messages. - * @param message UInt32Value message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IUInt32Value, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a UInt32Value message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns UInt32Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.UInt32Value; - - /** - * Verifies a UInt32Value message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a BoolValue. */ - interface IBoolValue { - - /** BoolValue value */ - value?: (boolean|null); - } - - /** Represents a BoolValue. */ - class BoolValue implements IBoolValue { - - /** - * Constructs a new BoolValue. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IBoolValue); - - /** BoolValue value. */ - public value: boolean; - - /** - * Creates a new BoolValue instance using the specified properties. - * @param [properties] Properties to set - * @returns BoolValue instance - */ - public static create(properties?: google.protobuf.IBoolValue): google.protobuf.BoolValue; - - /** - * Encodes the specified BoolValue message. Does not implicitly {@link google.protobuf.BoolValue.verify|verify} messages. - * @param message BoolValue message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IBoolValue, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BoolValue message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BoolValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.BoolValue; - - /** - * Verifies a BoolValue message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a StringValue. */ - interface IStringValue { - - /** StringValue value */ - value?: (string|null); - } - - /** Represents a StringValue. */ - class StringValue implements IStringValue { - - /** - * Constructs a new StringValue. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IStringValue); - - /** StringValue value. */ - public value: string; - - /** - * Creates a new StringValue instance using the specified properties. - * @param [properties] Properties to set - * @returns StringValue instance - */ - public static create(properties?: google.protobuf.IStringValue): google.protobuf.StringValue; - - /** - * Encodes the specified StringValue message. Does not implicitly {@link google.protobuf.StringValue.verify|verify} messages. - * @param message StringValue message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IStringValue, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a StringValue message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns StringValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.StringValue; - - /** - * Verifies a StringValue message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a BytesValue. */ - interface IBytesValue { - - /** BytesValue value */ - value?: (Uint8Array|null); - } - - /** Represents a BytesValue. */ - class BytesValue implements IBytesValue { - - /** - * Constructs a new BytesValue. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IBytesValue); - - /** BytesValue value. */ - public value: Uint8Array; - - /** - * Creates a new BytesValue instance using the specified properties. - * @param [properties] Properties to set - * @returns BytesValue instance - */ - public static create(properties?: google.protobuf.IBytesValue): google.protobuf.BytesValue; - - /** - * Encodes the specified BytesValue message. Does not implicitly {@link google.protobuf.BytesValue.verify|verify} messages. - * @param message BytesValue message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IBytesValue, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a BytesValue message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns BytesValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.BytesValue; - - /** - * Verifies a BytesValue message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an Any. */ - interface IAny { - - /** Any type_url */ - type_url?: (string|null); - - /** Any value */ - value?: (Uint8Array|null); - } - - /** Represents an Any. */ - class Any implements IAny { - - /** - * Constructs a new Any. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IAny); - - /** Any type_url. */ - public type_url: string; - - /** Any value. */ - public value: Uint8Array; - - /** - * Creates a new Any instance using the specified properties. - * @param [properties] Properties to set - * @returns Any instance - */ - public static create(properties?: google.protobuf.IAny): google.protobuf.Any; - - /** - * Encodes the specified Any message. Does not implicitly {@link google.protobuf.Any.verify|verify} messages. - * @param message Any message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IAny, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Any message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Any - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Any; - - /** - * Verifies an Any message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a FileDescriptorSet. */ - interface IFileDescriptorSet { - - /** FileDescriptorSet file */ - file?: (google.protobuf.IFileDescriptorProto[]|null); - } - - /** Represents a FileDescriptorSet. */ - class FileDescriptorSet implements IFileDescriptorSet { - - /** - * Constructs a new FileDescriptorSet. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IFileDescriptorSet); - - /** FileDescriptorSet file. */ - public file: google.protobuf.IFileDescriptorProto[]; - - /** - * Creates a new FileDescriptorSet instance using the specified properties. - * @param [properties] Properties to set - * @returns FileDescriptorSet instance - */ - public static create(properties?: google.protobuf.IFileDescriptorSet): google.protobuf.FileDescriptorSet; - - /** - * Encodes the specified FileDescriptorSet message. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages. - * @param message FileDescriptorSet message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a FileDescriptorSet message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns FileDescriptorSet - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileDescriptorSet; - - /** - * Verifies a FileDescriptorSet message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a FileDescriptorProto. */ - interface IFileDescriptorProto { - - /** FileDescriptorProto name */ - name?: (string|null); - - /** FileDescriptorProto package */ - "package"?: (string|null); - - /** FileDescriptorProto dependency */ - dependency?: (string[]|null); - - /** FileDescriptorProto publicDependency */ - publicDependency?: (number[]|null); - - /** FileDescriptorProto weakDependency */ - weakDependency?: (number[]|null); - - /** FileDescriptorProto messageType */ - messageType?: (google.protobuf.IDescriptorProto[]|null); - - /** FileDescriptorProto enumType */ - enumType?: (google.protobuf.IEnumDescriptorProto[]|null); - - /** FileDescriptorProto service */ - service?: (google.protobuf.IServiceDescriptorProto[]|null); - - /** FileDescriptorProto extension */ - extension?: (google.protobuf.IFieldDescriptorProto[]|null); - - /** FileDescriptorProto options */ - options?: (google.protobuf.IFileOptions|null); - - /** FileDescriptorProto sourceCodeInfo */ - sourceCodeInfo?: (google.protobuf.ISourceCodeInfo|null); - - /** FileDescriptorProto syntax */ - syntax?: (string|null); - } - - /** Represents a FileDescriptorProto. */ - class FileDescriptorProto implements IFileDescriptorProto { - - /** - * Constructs a new FileDescriptorProto. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IFileDescriptorProto); - - /** FileDescriptorProto name. */ - public name: string; - - /** FileDescriptorProto package. */ - public package: string; - - /** FileDescriptorProto dependency. */ - public dependency: string[]; - - /** FileDescriptorProto publicDependency. */ - public publicDependency: number[]; - - /** FileDescriptorProto weakDependency. */ - public weakDependency: number[]; - - /** FileDescriptorProto messageType. */ - public messageType: google.protobuf.IDescriptorProto[]; - - /** FileDescriptorProto enumType. */ - public enumType: google.protobuf.IEnumDescriptorProto[]; - - /** FileDescriptorProto service. */ - public service: google.protobuf.IServiceDescriptorProto[]; - - /** FileDescriptorProto extension. */ - public extension: google.protobuf.IFieldDescriptorProto[]; - - /** FileDescriptorProto options. */ - public options?: (google.protobuf.IFileOptions|null); - - /** FileDescriptorProto sourceCodeInfo. */ - public sourceCodeInfo?: (google.protobuf.ISourceCodeInfo|null); - - /** FileDescriptorProto syntax. */ - public syntax: string; - - /** - * Creates a new FileDescriptorProto instance using the specified properties. - * @param [properties] Properties to set - * @returns FileDescriptorProto instance - */ - public static create(properties?: google.protobuf.IFileDescriptorProto): google.protobuf.FileDescriptorProto; - - /** - * Encodes the specified FileDescriptorProto message. Does not implicitly {@link google.protobuf.FileDescriptorProto.verify|verify} messages. - * @param message FileDescriptorProto message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IFileDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a FileDescriptorProto message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns FileDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileDescriptorProto; - - /** - * Verifies a FileDescriptorProto message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a DescriptorProto. */ - interface IDescriptorProto { - - /** DescriptorProto name */ - name?: (string|null); - - /** DescriptorProto field */ - field?: (google.protobuf.IFieldDescriptorProto[]|null); - - /** DescriptorProto extension */ - extension?: (google.protobuf.IFieldDescriptorProto[]|null); - - /** DescriptorProto nestedType */ - nestedType?: (google.protobuf.IDescriptorProto[]|null); - - /** DescriptorProto enumType */ - enumType?: (google.protobuf.IEnumDescriptorProto[]|null); - - /** DescriptorProto extensionRange */ - extensionRange?: (google.protobuf.DescriptorProto.IExtensionRange[]|null); - - /** DescriptorProto oneofDecl */ - oneofDecl?: (google.protobuf.IOneofDescriptorProto[]|null); - - /** DescriptorProto options */ - options?: (google.protobuf.IMessageOptions|null); - - /** DescriptorProto reservedRange */ - reservedRange?: (google.protobuf.DescriptorProto.IReservedRange[]|null); - - /** DescriptorProto reservedName */ - reservedName?: (string[]|null); - } - - /** Represents a DescriptorProto. */ - class DescriptorProto implements IDescriptorProto { - - /** - * Constructs a new DescriptorProto. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IDescriptorProto); - - /** DescriptorProto name. */ - public name: string; - - /** DescriptorProto field. */ - public field: google.protobuf.IFieldDescriptorProto[]; - - /** DescriptorProto extension. */ - public extension: google.protobuf.IFieldDescriptorProto[]; - - /** DescriptorProto nestedType. */ - public nestedType: google.protobuf.IDescriptorProto[]; - - /** DescriptorProto enumType. */ - public enumType: google.protobuf.IEnumDescriptorProto[]; - - /** DescriptorProto extensionRange. */ - public extensionRange: google.protobuf.DescriptorProto.IExtensionRange[]; - - /** DescriptorProto oneofDecl. */ - public oneofDecl: google.protobuf.IOneofDescriptorProto[]; - - /** DescriptorProto options. */ - public options?: (google.protobuf.IMessageOptions|null); - - /** DescriptorProto reservedRange. */ - public reservedRange: google.protobuf.DescriptorProto.IReservedRange[]; - - /** DescriptorProto reservedName. */ - public reservedName: string[]; - - /** - * Creates a new DescriptorProto instance using the specified properties. - * @param [properties] Properties to set - * @returns DescriptorProto instance - */ - public static create(properties?: google.protobuf.IDescriptorProto): google.protobuf.DescriptorProto; - - /** - * Encodes the specified DescriptorProto message. Does not implicitly {@link google.protobuf.DescriptorProto.verify|verify} messages. - * @param message DescriptorProto message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a DescriptorProto message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns DescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.DescriptorProto; - - /** - * Verifies a DescriptorProto message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace DescriptorProto { - - /** Properties of an ExtensionRange. */ - interface IExtensionRange { - - /** ExtensionRange start */ - start?: (number|null); - - /** ExtensionRange end */ - end?: (number|null); - } - - /** Represents an ExtensionRange. */ - class ExtensionRange implements IExtensionRange { - - /** - * Constructs a new ExtensionRange. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.DescriptorProto.IExtensionRange); - - /** ExtensionRange start. */ - public start: number; - - /** ExtensionRange end. */ - public end: number; - - /** - * Creates a new ExtensionRange instance using the specified properties. - * @param [properties] Properties to set - * @returns ExtensionRange instance - */ - public static create(properties?: google.protobuf.DescriptorProto.IExtensionRange): google.protobuf.DescriptorProto.ExtensionRange; - - /** - * Encodes the specified ExtensionRange message. Does not implicitly {@link google.protobuf.DescriptorProto.ExtensionRange.verify|verify} messages. - * @param message ExtensionRange message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.DescriptorProto.IExtensionRange, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an ExtensionRange message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ExtensionRange - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.DescriptorProto.ExtensionRange; - - /** - * Verifies an ExtensionRange message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ReservedRange. */ - interface IReservedRange { - - /** ReservedRange start */ - start?: (number|null); - - /** ReservedRange end */ - end?: (number|null); - } - - /** Represents a ReservedRange. */ - class ReservedRange implements IReservedRange { - - /** - * Constructs a new ReservedRange. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.DescriptorProto.IReservedRange); - - /** ReservedRange start. */ - public start: number; - - /** ReservedRange end. */ - public end: number; - - /** - * Creates a new ReservedRange instance using the specified properties. - * @param [properties] Properties to set - * @returns ReservedRange instance - */ - public static create(properties?: google.protobuf.DescriptorProto.IReservedRange): google.protobuf.DescriptorProto.ReservedRange; - - /** - * Encodes the specified ReservedRange message. Does not implicitly {@link google.protobuf.DescriptorProto.ReservedRange.verify|verify} messages. - * @param message ReservedRange message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.DescriptorProto.IReservedRange, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ReservedRange message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ReservedRange - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.DescriptorProto.ReservedRange; - - /** - * Verifies a ReservedRange message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - - /** Properties of a FieldDescriptorProto. */ - interface IFieldDescriptorProto { - - /** FieldDescriptorProto name */ - name?: (string|null); - - /** FieldDescriptorProto number */ - number?: (number|null); - - /** FieldDescriptorProto label */ - label?: (google.protobuf.FieldDescriptorProto.Label|null); - - /** FieldDescriptorProto type */ - type?: (google.protobuf.FieldDescriptorProto.Type|null); - - /** FieldDescriptorProto typeName */ - typeName?: (string|null); - - /** FieldDescriptorProto extendee */ - extendee?: (string|null); - - /** FieldDescriptorProto defaultValue */ - defaultValue?: (string|null); - - /** FieldDescriptorProto oneofIndex */ - oneofIndex?: (number|null); - - /** FieldDescriptorProto jsonName */ - jsonName?: (string|null); - - /** FieldDescriptorProto options */ - options?: (google.protobuf.IFieldOptions|null); - } - - /** Represents a FieldDescriptorProto. */ - class FieldDescriptorProto implements IFieldDescriptorProto { - - /** - * Constructs a new FieldDescriptorProto. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IFieldDescriptorProto); - - /** FieldDescriptorProto name. */ - public name: string; - - /** FieldDescriptorProto number. */ - public number: number; - - /** FieldDescriptorProto label. */ - public label: google.protobuf.FieldDescriptorProto.Label; - - /** FieldDescriptorProto type. */ - public type: google.protobuf.FieldDescriptorProto.Type; - - /** FieldDescriptorProto typeName. */ - public typeName: string; - - /** FieldDescriptorProto extendee. */ - public extendee: string; - - /** FieldDescriptorProto defaultValue. */ - public defaultValue: string; - - /** FieldDescriptorProto oneofIndex. */ - public oneofIndex: number; - - /** FieldDescriptorProto jsonName. */ - public jsonName: string; - - /** FieldDescriptorProto options. */ - public options?: (google.protobuf.IFieldOptions|null); - - /** - * Creates a new FieldDescriptorProto instance using the specified properties. - * @param [properties] Properties to set - * @returns FieldDescriptorProto instance - */ - public static create(properties?: google.protobuf.IFieldDescriptorProto): google.protobuf.FieldDescriptorProto; - - /** - * Encodes the specified FieldDescriptorProto message. Does not implicitly {@link google.protobuf.FieldDescriptorProto.verify|verify} messages. - * @param message FieldDescriptorProto message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IFieldDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a FieldDescriptorProto message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns FieldDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldDescriptorProto; - - /** - * Verifies a FieldDescriptorProto message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace FieldDescriptorProto { - - /** Type enum. */ - enum Type { - TYPE_DOUBLE = 1, - TYPE_FLOAT = 2, - TYPE_INT64 = 3, - TYPE_UINT64 = 4, - TYPE_INT32 = 5, - TYPE_FIXED64 = 6, - TYPE_FIXED32 = 7, - TYPE_BOOL = 8, - TYPE_STRING = 9, - TYPE_GROUP = 10, - TYPE_MESSAGE = 11, - TYPE_BYTES = 12, - TYPE_UINT32 = 13, - TYPE_ENUM = 14, - TYPE_SFIXED32 = 15, - TYPE_SFIXED64 = 16, - TYPE_SINT32 = 17, - TYPE_SINT64 = 18 - } - - /** Label enum. */ - enum Label { - LABEL_OPTIONAL = 1, - LABEL_REQUIRED = 2, - LABEL_REPEATED = 3 - } - } - - /** Properties of an OneofDescriptorProto. */ - interface IOneofDescriptorProto { - - /** OneofDescriptorProto name */ - name?: (string|null); - - /** OneofDescriptorProto options */ - options?: (google.protobuf.IOneofOptions|null); - } - - /** Represents an OneofDescriptorProto. */ - class OneofDescriptorProto implements IOneofDescriptorProto { - - /** - * Constructs a new OneofDescriptorProto. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IOneofDescriptorProto); - - /** OneofDescriptorProto name. */ - public name: string; - - /** OneofDescriptorProto options. */ - public options?: (google.protobuf.IOneofOptions|null); - - /** - * Creates a new OneofDescriptorProto instance using the specified properties. - * @param [properties] Properties to set - * @returns OneofDescriptorProto instance - */ - public static create(properties?: google.protobuf.IOneofDescriptorProto): google.protobuf.OneofDescriptorProto; - - /** - * Encodes the specified OneofDescriptorProto message. Does not implicitly {@link google.protobuf.OneofDescriptorProto.verify|verify} messages. - * @param message OneofDescriptorProto message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IOneofDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an OneofDescriptorProto message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns OneofDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.OneofDescriptorProto; - - /** - * Verifies an OneofDescriptorProto message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EnumDescriptorProto. */ - interface IEnumDescriptorProto { - - /** EnumDescriptorProto name */ - name?: (string|null); - - /** EnumDescriptorProto value */ - value?: (google.protobuf.IEnumValueDescriptorProto[]|null); - - /** EnumDescriptorProto options */ - options?: (google.protobuf.IEnumOptions|null); - } - - /** Represents an EnumDescriptorProto. */ - class EnumDescriptorProto implements IEnumDescriptorProto { - - /** - * Constructs a new EnumDescriptorProto. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IEnumDescriptorProto); - - /** EnumDescriptorProto name. */ - public name: string; - - /** EnumDescriptorProto value. */ - public value: google.protobuf.IEnumValueDescriptorProto[]; - - /** EnumDescriptorProto options. */ - public options?: (google.protobuf.IEnumOptions|null); - - /** - * Creates a new EnumDescriptorProto instance using the specified properties. - * @param [properties] Properties to set - * @returns EnumDescriptorProto instance - */ - public static create(properties?: google.protobuf.IEnumDescriptorProto): google.protobuf.EnumDescriptorProto; - - /** - * Encodes the specified EnumDescriptorProto message. Does not implicitly {@link google.protobuf.EnumDescriptorProto.verify|verify} messages. - * @param message EnumDescriptorProto message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IEnumDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EnumDescriptorProto message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EnumDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumDescriptorProto; - - /** - * Verifies an EnumDescriptorProto message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EnumValueDescriptorProto. */ - interface IEnumValueDescriptorProto { - - /** EnumValueDescriptorProto name */ - name?: (string|null); - - /** EnumValueDescriptorProto number */ - number?: (number|null); - - /** EnumValueDescriptorProto options */ - options?: (google.protobuf.IEnumValueOptions|null); - } - - /** Represents an EnumValueDescriptorProto. */ - class EnumValueDescriptorProto implements IEnumValueDescriptorProto { - - /** - * Constructs a new EnumValueDescriptorProto. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IEnumValueDescriptorProto); - - /** EnumValueDescriptorProto name. */ - public name: string; - - /** EnumValueDescriptorProto number. */ - public number: number; - - /** EnumValueDescriptorProto options. */ - public options?: (google.protobuf.IEnumValueOptions|null); - - /** - * Creates a new EnumValueDescriptorProto instance using the specified properties. - * @param [properties] Properties to set - * @returns EnumValueDescriptorProto instance - */ - public static create(properties?: google.protobuf.IEnumValueDescriptorProto): google.protobuf.EnumValueDescriptorProto; - - /** - * Encodes the specified EnumValueDescriptorProto message. Does not implicitly {@link google.protobuf.EnumValueDescriptorProto.verify|verify} messages. - * @param message EnumValueDescriptorProto message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IEnumValueDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EnumValueDescriptorProto message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EnumValueDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumValueDescriptorProto; - - /** - * Verifies an EnumValueDescriptorProto message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ServiceDescriptorProto. */ - interface IServiceDescriptorProto { - - /** ServiceDescriptorProto name */ - name?: (string|null); - - /** ServiceDescriptorProto method */ - method?: (google.protobuf.IMethodDescriptorProto[]|null); - - /** ServiceDescriptorProto options */ - options?: (google.protobuf.IServiceOptions|null); - } - - /** Represents a ServiceDescriptorProto. */ - class ServiceDescriptorProto implements IServiceDescriptorProto { - - /** - * Constructs a new ServiceDescriptorProto. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IServiceDescriptorProto); - - /** ServiceDescriptorProto name. */ - public name: string; - - /** ServiceDescriptorProto method. */ - public method: google.protobuf.IMethodDescriptorProto[]; - - /** ServiceDescriptorProto options. */ - public options?: (google.protobuf.IServiceOptions|null); - - /** - * Creates a new ServiceDescriptorProto instance using the specified properties. - * @param [properties] Properties to set - * @returns ServiceDescriptorProto instance - */ - public static create(properties?: google.protobuf.IServiceDescriptorProto): google.protobuf.ServiceDescriptorProto; - - /** - * Encodes the specified ServiceDescriptorProto message. Does not implicitly {@link google.protobuf.ServiceDescriptorProto.verify|verify} messages. - * @param message ServiceDescriptorProto message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IServiceDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ServiceDescriptorProto message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ServiceDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ServiceDescriptorProto; - - /** - * Verifies a ServiceDescriptorProto message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a MethodDescriptorProto. */ - interface IMethodDescriptorProto { - - /** MethodDescriptorProto name */ - name?: (string|null); - - /** MethodDescriptorProto inputType */ - inputType?: (string|null); - - /** MethodDescriptorProto outputType */ - outputType?: (string|null); - - /** MethodDescriptorProto options */ - options?: (google.protobuf.IMethodOptions|null); - - /** MethodDescriptorProto clientStreaming */ - clientStreaming?: (boolean|null); - - /** MethodDescriptorProto serverStreaming */ - serverStreaming?: (boolean|null); - } - - /** Represents a MethodDescriptorProto. */ - class MethodDescriptorProto implements IMethodDescriptorProto { - - /** - * Constructs a new MethodDescriptorProto. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IMethodDescriptorProto); - - /** MethodDescriptorProto name. */ - public name: string; - - /** MethodDescriptorProto inputType. */ - public inputType: string; - - /** MethodDescriptorProto outputType. */ - public outputType: string; - - /** MethodDescriptorProto options. */ - public options?: (google.protobuf.IMethodOptions|null); - - /** MethodDescriptorProto clientStreaming. */ - public clientStreaming: boolean; - - /** MethodDescriptorProto serverStreaming. */ - public serverStreaming: boolean; - - /** - * Creates a new MethodDescriptorProto instance using the specified properties. - * @param [properties] Properties to set - * @returns MethodDescriptorProto instance - */ - public static create(properties?: google.protobuf.IMethodDescriptorProto): google.protobuf.MethodDescriptorProto; - - /** - * Encodes the specified MethodDescriptorProto message. Does not implicitly {@link google.protobuf.MethodDescriptorProto.verify|verify} messages. - * @param message MethodDescriptorProto message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IMethodDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a MethodDescriptorProto message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns MethodDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.MethodDescriptorProto; - - /** - * Verifies a MethodDescriptorProto message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a FileOptions. */ - interface IFileOptions { - - /** FileOptions javaPackage */ - javaPackage?: (string|null); - - /** FileOptions javaOuterClassname */ - javaOuterClassname?: (string|null); - - /** FileOptions javaMultipleFiles */ - javaMultipleFiles?: (boolean|null); - - /** FileOptions javaGenerateEqualsAndHash */ - javaGenerateEqualsAndHash?: (boolean|null); - - /** FileOptions javaStringCheckUtf8 */ - javaStringCheckUtf8?: (boolean|null); - - /** FileOptions optimizeFor */ - optimizeFor?: (google.protobuf.FileOptions.OptimizeMode|null); - - /** FileOptions goPackage */ - goPackage?: (string|null); - - /** FileOptions ccGenericServices */ - ccGenericServices?: (boolean|null); - - /** FileOptions javaGenericServices */ - javaGenericServices?: (boolean|null); - - /** FileOptions pyGenericServices */ - pyGenericServices?: (boolean|null); - - /** FileOptions deprecated */ - deprecated?: (boolean|null); - - /** FileOptions ccEnableArenas */ - ccEnableArenas?: (boolean|null); - - /** FileOptions objcClassPrefix */ - objcClassPrefix?: (string|null); - - /** FileOptions csharpNamespace */ - csharpNamespace?: (string|null); - - /** FileOptions uninterpretedOption */ - uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); - } - - /** Represents a FileOptions. */ - class FileOptions implements IFileOptions { - - /** - * Constructs a new FileOptions. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IFileOptions); - - /** FileOptions javaPackage. */ - public javaPackage: string; - - /** FileOptions javaOuterClassname. */ - public javaOuterClassname: string; - - /** FileOptions javaMultipleFiles. */ - public javaMultipleFiles: boolean; - - /** FileOptions javaGenerateEqualsAndHash. */ - public javaGenerateEqualsAndHash: boolean; - - /** FileOptions javaStringCheckUtf8. */ - public javaStringCheckUtf8: boolean; - - /** FileOptions optimizeFor. */ - public optimizeFor: google.protobuf.FileOptions.OptimizeMode; - - /** FileOptions goPackage. */ - public goPackage: string; - - /** FileOptions ccGenericServices. */ - public ccGenericServices: boolean; - - /** FileOptions javaGenericServices. */ - public javaGenericServices: boolean; - - /** FileOptions pyGenericServices. */ - public pyGenericServices: boolean; - - /** FileOptions deprecated. */ - public deprecated: boolean; - - /** FileOptions ccEnableArenas. */ - public ccEnableArenas: boolean; - - /** FileOptions objcClassPrefix. */ - public objcClassPrefix: string; - - /** FileOptions csharpNamespace. */ - public csharpNamespace: string; - - /** FileOptions uninterpretedOption. */ - public uninterpretedOption: google.protobuf.IUninterpretedOption[]; - - /** - * Creates a new FileOptions instance using the specified properties. - * @param [properties] Properties to set - * @returns FileOptions instance - */ - public static create(properties?: google.protobuf.IFileOptions): google.protobuf.FileOptions; - - /** - * Encodes the specified FileOptions message. Does not implicitly {@link google.protobuf.FileOptions.verify|verify} messages. - * @param message FileOptions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IFileOptions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a FileOptions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns FileOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileOptions; - - /** - * Verifies a FileOptions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace FileOptions { - - /** OptimizeMode enum. */ - enum OptimizeMode { - SPEED = 1, - CODE_SIZE = 2, - LITE_RUNTIME = 3 - } - } - - /** Properties of a MessageOptions. */ - interface IMessageOptions { - - /** MessageOptions messageSetWireFormat */ - messageSetWireFormat?: (boolean|null); - - /** MessageOptions noStandardDescriptorAccessor */ - noStandardDescriptorAccessor?: (boolean|null); - - /** MessageOptions deprecated */ - deprecated?: (boolean|null); - - /** MessageOptions mapEntry */ - mapEntry?: (boolean|null); - - /** MessageOptions uninterpretedOption */ - uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); - } - - /** Represents a MessageOptions. */ - class MessageOptions implements IMessageOptions { - - /** - * Constructs a new MessageOptions. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IMessageOptions); - - /** MessageOptions messageSetWireFormat. */ - public messageSetWireFormat: boolean; - - /** MessageOptions noStandardDescriptorAccessor. */ - public noStandardDescriptorAccessor: boolean; - - /** MessageOptions deprecated. */ - public deprecated: boolean; - - /** MessageOptions mapEntry. */ - public mapEntry: boolean; - - /** MessageOptions uninterpretedOption. */ - public uninterpretedOption: google.protobuf.IUninterpretedOption[]; - - /** - * Creates a new MessageOptions instance using the specified properties. - * @param [properties] Properties to set - * @returns MessageOptions instance - */ - public static create(properties?: google.protobuf.IMessageOptions): google.protobuf.MessageOptions; - - /** - * Encodes the specified MessageOptions message. Does not implicitly {@link google.protobuf.MessageOptions.verify|verify} messages. - * @param message MessageOptions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IMessageOptions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a MessageOptions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns MessageOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.MessageOptions; - - /** - * Verifies a MessageOptions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a FieldOptions. */ - interface IFieldOptions { - - /** FieldOptions ctype */ - ctype?: (google.protobuf.FieldOptions.CType|null); - - /** FieldOptions packed */ - packed?: (boolean|null); - - /** FieldOptions jstype */ - jstype?: (google.protobuf.FieldOptions.JSType|null); - - /** FieldOptions lazy */ - lazy?: (boolean|null); - - /** FieldOptions deprecated */ - deprecated?: (boolean|null); - - /** FieldOptions weak */ - weak?: (boolean|null); - - /** FieldOptions uninterpretedOption */ - uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); - } - - /** Represents a FieldOptions. */ - class FieldOptions implements IFieldOptions { - - /** - * Constructs a new FieldOptions. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IFieldOptions); - - /** FieldOptions ctype. */ - public ctype: google.protobuf.FieldOptions.CType; - - /** FieldOptions packed. */ - public packed: boolean; - - /** FieldOptions jstype. */ - public jstype: google.protobuf.FieldOptions.JSType; - - /** FieldOptions lazy. */ - public lazy: boolean; - - /** FieldOptions deprecated. */ - public deprecated: boolean; - - /** FieldOptions weak. */ - public weak: boolean; - - /** FieldOptions uninterpretedOption. */ - public uninterpretedOption: google.protobuf.IUninterpretedOption[]; - - /** - * Creates a new FieldOptions instance using the specified properties. - * @param [properties] Properties to set - * @returns FieldOptions instance - */ - public static create(properties?: google.protobuf.IFieldOptions): google.protobuf.FieldOptions; - - /** - * Encodes the specified FieldOptions message. Does not implicitly {@link google.protobuf.FieldOptions.verify|verify} messages. - * @param message FieldOptions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IFieldOptions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a FieldOptions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns FieldOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions; - - /** - * Verifies a FieldOptions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace FieldOptions { - - /** CType enum. */ - enum CType { - STRING = 0, - CORD = 1, - STRING_PIECE = 2 - } - - /** JSType enum. */ - enum JSType { - JS_NORMAL = 0, - JS_STRING = 1, - JS_NUMBER = 2 - } - } - - /** Properties of an OneofOptions. */ - interface IOneofOptions { - - /** OneofOptions uninterpretedOption */ - uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); - } - - /** Represents an OneofOptions. */ - class OneofOptions implements IOneofOptions { - - /** - * Constructs a new OneofOptions. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IOneofOptions); - - /** OneofOptions uninterpretedOption. */ - public uninterpretedOption: google.protobuf.IUninterpretedOption[]; - - /** - * Creates a new OneofOptions instance using the specified properties. - * @param [properties] Properties to set - * @returns OneofOptions instance - */ - public static create(properties?: google.protobuf.IOneofOptions): google.protobuf.OneofOptions; - - /** - * Encodes the specified OneofOptions message. Does not implicitly {@link google.protobuf.OneofOptions.verify|verify} messages. - * @param message OneofOptions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IOneofOptions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an OneofOptions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns OneofOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.OneofOptions; - - /** - * Verifies an OneofOptions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EnumOptions. */ - interface IEnumOptions { - - /** EnumOptions allowAlias */ - allowAlias?: (boolean|null); - - /** EnumOptions deprecated */ - deprecated?: (boolean|null); - - /** EnumOptions uninterpretedOption */ - uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); - } - - /** Represents an EnumOptions. */ - class EnumOptions implements IEnumOptions { - - /** - * Constructs a new EnumOptions. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IEnumOptions); - - /** EnumOptions allowAlias. */ - public allowAlias: boolean; - - /** EnumOptions deprecated. */ - public deprecated: boolean; - - /** EnumOptions uninterpretedOption. */ - public uninterpretedOption: google.protobuf.IUninterpretedOption[]; - - /** - * Creates a new EnumOptions instance using the specified properties. - * @param [properties] Properties to set - * @returns EnumOptions instance - */ - public static create(properties?: google.protobuf.IEnumOptions): google.protobuf.EnumOptions; - - /** - * Encodes the specified EnumOptions message. Does not implicitly {@link google.protobuf.EnumOptions.verify|verify} messages. - * @param message EnumOptions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IEnumOptions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EnumOptions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EnumOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumOptions; - - /** - * Verifies an EnumOptions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an EnumValueOptions. */ - interface IEnumValueOptions { - - /** EnumValueOptions deprecated */ - deprecated?: (boolean|null); - - /** EnumValueOptions uninterpretedOption */ - uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); - } - - /** Represents an EnumValueOptions. */ - class EnumValueOptions implements IEnumValueOptions { - - /** - * Constructs a new EnumValueOptions. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IEnumValueOptions); - - /** EnumValueOptions deprecated. */ - public deprecated: boolean; - - /** EnumValueOptions uninterpretedOption. */ - public uninterpretedOption: google.protobuf.IUninterpretedOption[]; - - /** - * Creates a new EnumValueOptions instance using the specified properties. - * @param [properties] Properties to set - * @returns EnumValueOptions instance - */ - public static create(properties?: google.protobuf.IEnumValueOptions): google.protobuf.EnumValueOptions; - - /** - * Encodes the specified EnumValueOptions message. Does not implicitly {@link google.protobuf.EnumValueOptions.verify|verify} messages. - * @param message EnumValueOptions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IEnumValueOptions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an EnumValueOptions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns EnumValueOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumValueOptions; - - /** - * Verifies an EnumValueOptions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a ServiceOptions. */ - interface IServiceOptions { - - /** ServiceOptions deprecated */ - deprecated?: (boolean|null); - - /** ServiceOptions uninterpretedOption */ - uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); - } - - /** Represents a ServiceOptions. */ - class ServiceOptions implements IServiceOptions { - - /** - * Constructs a new ServiceOptions. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IServiceOptions); - - /** ServiceOptions deprecated. */ - public deprecated: boolean; - - /** ServiceOptions uninterpretedOption. */ - public uninterpretedOption: google.protobuf.IUninterpretedOption[]; - - /** - * Creates a new ServiceOptions instance using the specified properties. - * @param [properties] Properties to set - * @returns ServiceOptions instance - */ - public static create(properties?: google.protobuf.IServiceOptions): google.protobuf.ServiceOptions; - - /** - * Encodes the specified ServiceOptions message. Does not implicitly {@link google.protobuf.ServiceOptions.verify|verify} messages. - * @param message ServiceOptions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IServiceOptions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a ServiceOptions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns ServiceOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ServiceOptions; - - /** - * Verifies a ServiceOptions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a MethodOptions. */ - interface IMethodOptions { - - /** MethodOptions deprecated */ - deprecated?: (boolean|null); - - /** MethodOptions uninterpretedOption */ - uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); - - /** MethodOptions .google.api.http */ - ".google.api.http"?: (google.api.IHttpRule|null); - } - - /** Represents a MethodOptions. */ - class MethodOptions implements IMethodOptions { - - /** - * Constructs a new MethodOptions. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IMethodOptions); - - /** MethodOptions deprecated. */ - public deprecated: boolean; - - /** MethodOptions uninterpretedOption. */ - public uninterpretedOption: google.protobuf.IUninterpretedOption[]; - - /** - * Creates a new MethodOptions instance using the specified properties. - * @param [properties] Properties to set - * @returns MethodOptions instance - */ - public static create(properties?: google.protobuf.IMethodOptions): google.protobuf.MethodOptions; - - /** - * Encodes the specified MethodOptions message. Does not implicitly {@link google.protobuf.MethodOptions.verify|verify} messages. - * @param message MethodOptions message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IMethodOptions, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a MethodOptions message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns MethodOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.MethodOptions; - - /** - * Verifies a MethodOptions message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of an UninterpretedOption. */ - interface IUninterpretedOption { - - /** UninterpretedOption name */ - name?: (google.protobuf.UninterpretedOption.INamePart[]|null); - - /** UninterpretedOption identifierValue */ - identifierValue?: (string|null); - - /** UninterpretedOption positiveIntValue */ - positiveIntValue?: (Long|null); - - /** UninterpretedOption negativeIntValue */ - negativeIntValue?: (Long|null); - - /** UninterpretedOption doubleValue */ - doubleValue?: (number|null); - - /** UninterpretedOption stringValue */ - stringValue?: (Uint8Array|null); - - /** UninterpretedOption aggregateValue */ - aggregateValue?: (string|null); - } - - /** Represents an UninterpretedOption. */ - class UninterpretedOption implements IUninterpretedOption { - - /** - * Constructs a new UninterpretedOption. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IUninterpretedOption); - - /** UninterpretedOption name. */ - public name: google.protobuf.UninterpretedOption.INamePart[]; - - /** UninterpretedOption identifierValue. */ - public identifierValue: string; - - /** UninterpretedOption positiveIntValue. */ - public positiveIntValue: Long; - - /** UninterpretedOption negativeIntValue. */ - public negativeIntValue: Long; - - /** UninterpretedOption doubleValue. */ - public doubleValue: number; - - /** UninterpretedOption stringValue. */ - public stringValue: Uint8Array; - - /** UninterpretedOption aggregateValue. */ - public aggregateValue: string; - - /** - * Creates a new UninterpretedOption instance using the specified properties. - * @param [properties] Properties to set - * @returns UninterpretedOption instance - */ - public static create(properties?: google.protobuf.IUninterpretedOption): google.protobuf.UninterpretedOption; - - /** - * Encodes the specified UninterpretedOption message. Does not implicitly {@link google.protobuf.UninterpretedOption.verify|verify} messages. - * @param message UninterpretedOption message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IUninterpretedOption, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an UninterpretedOption message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns UninterpretedOption - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.UninterpretedOption; - - /** - * Verifies an UninterpretedOption message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace UninterpretedOption { - - /** Properties of a NamePart. */ - interface INamePart { - - /** NamePart namePart */ - namePart: string; - - /** NamePart isExtension */ - isExtension: boolean; - } - - /** Represents a NamePart. */ - class NamePart implements INamePart { - - /** - * Constructs a new NamePart. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.UninterpretedOption.INamePart); - - /** NamePart namePart. */ - public namePart: string; - - /** NamePart isExtension. */ - public isExtension: boolean; - - /** - * Creates a new NamePart instance using the specified properties. - * @param [properties] Properties to set - * @returns NamePart instance - */ - public static create(properties?: google.protobuf.UninterpretedOption.INamePart): google.protobuf.UninterpretedOption.NamePart; - - /** - * Encodes the specified NamePart message. Does not implicitly {@link google.protobuf.UninterpretedOption.NamePart.verify|verify} messages. - * @param message NamePart message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.UninterpretedOption.INamePart, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a NamePart message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns NamePart - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.UninterpretedOption.NamePart; - - /** - * Verifies a NamePart message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - - /** Properties of a SourceCodeInfo. */ - interface ISourceCodeInfo { - - /** SourceCodeInfo location */ - location?: (google.protobuf.SourceCodeInfo.ILocation[]|null); - } - - /** Represents a SourceCodeInfo. */ - class SourceCodeInfo implements ISourceCodeInfo { - - /** - * Constructs a new SourceCodeInfo. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.ISourceCodeInfo); - - /** SourceCodeInfo location. */ - public location: google.protobuf.SourceCodeInfo.ILocation[]; - - /** - * Creates a new SourceCodeInfo instance using the specified properties. - * @param [properties] Properties to set - * @returns SourceCodeInfo instance - */ - public static create(properties?: google.protobuf.ISourceCodeInfo): google.protobuf.SourceCodeInfo; - - /** - * Encodes the specified SourceCodeInfo message. Does not implicitly {@link google.protobuf.SourceCodeInfo.verify|verify} messages. - * @param message SourceCodeInfo message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.ISourceCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a SourceCodeInfo message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns SourceCodeInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.SourceCodeInfo; - - /** - * Verifies a SourceCodeInfo message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace SourceCodeInfo { - - /** Properties of a Location. */ - interface ILocation { - - /** Location path */ - path?: (number[]|null); - - /** Location span */ - span?: (number[]|null); - - /** Location leadingComments */ - leadingComments?: (string|null); - - /** Location trailingComments */ - trailingComments?: (string|null); - - /** Location leadingDetachedComments */ - leadingDetachedComments?: (string[]|null); - } - - /** Represents a Location. */ - class Location implements ILocation { - - /** - * Constructs a new Location. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.SourceCodeInfo.ILocation); - - /** Location path. */ - public path: number[]; - - /** Location span. */ - public span: number[]; - - /** Location leadingComments. */ - public leadingComments: string; - - /** Location trailingComments. */ - public trailingComments: string; - - /** Location leadingDetachedComments. */ - public leadingDetachedComments: string[]; - - /** - * Creates a new Location instance using the specified properties. - * @param [properties] Properties to set - * @returns Location instance - */ - public static create(properties?: google.protobuf.SourceCodeInfo.ILocation): google.protobuf.SourceCodeInfo.Location; - - /** - * Encodes the specified Location message. Does not implicitly {@link google.protobuf.SourceCodeInfo.Location.verify|verify} messages. - * @param message Location message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.SourceCodeInfo.ILocation, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Location message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Location - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.SourceCodeInfo.Location; - - /** - * Verifies a Location message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - - /** Properties of a GeneratedCodeInfo. */ - interface IGeneratedCodeInfo { - - /** GeneratedCodeInfo annotation */ - annotation?: (google.protobuf.GeneratedCodeInfo.IAnnotation[]|null); - } - - /** Represents a GeneratedCodeInfo. */ - class GeneratedCodeInfo implements IGeneratedCodeInfo { - - /** - * Constructs a new GeneratedCodeInfo. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.IGeneratedCodeInfo); - - /** GeneratedCodeInfo annotation. */ - public annotation: google.protobuf.GeneratedCodeInfo.IAnnotation[]; - - /** - * Creates a new GeneratedCodeInfo instance using the specified properties. - * @param [properties] Properties to set - * @returns GeneratedCodeInfo instance - */ - public static create(properties?: google.protobuf.IGeneratedCodeInfo): google.protobuf.GeneratedCodeInfo; - - /** - * Encodes the specified GeneratedCodeInfo message. Does not implicitly {@link google.protobuf.GeneratedCodeInfo.verify|verify} messages. - * @param message GeneratedCodeInfo message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.IGeneratedCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a GeneratedCodeInfo message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns GeneratedCodeInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.GeneratedCodeInfo; - - /** - * Verifies a GeneratedCodeInfo message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - namespace GeneratedCodeInfo { - - /** Properties of an Annotation. */ - interface IAnnotation { - - /** Annotation path */ - path?: (number[]|null); - - /** Annotation sourceFile */ - sourceFile?: (string|null); - - /** Annotation begin */ - begin?: (number|null); - - /** Annotation end */ - end?: (number|null); - } - - /** Represents an Annotation. */ - class Annotation implements IAnnotation { - - /** - * Constructs a new Annotation. - * @param [properties] Properties to set - */ - constructor(properties?: google.protobuf.GeneratedCodeInfo.IAnnotation); - - /** Annotation path. */ - public path: number[]; - - /** Annotation sourceFile. */ - public sourceFile: string; - - /** Annotation begin. */ - public begin: number; - - /** Annotation end. */ - public end: number; - - /** - * Creates a new Annotation instance using the specified properties. - * @param [properties] Properties to set - * @returns Annotation instance - */ - public static create(properties?: google.protobuf.GeneratedCodeInfo.IAnnotation): google.protobuf.GeneratedCodeInfo.Annotation; - - /** - * Encodes the specified Annotation message. Does not implicitly {@link google.protobuf.GeneratedCodeInfo.Annotation.verify|verify} messages. - * @param message Annotation message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.protobuf.GeneratedCodeInfo.IAnnotation, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes an Annotation message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Annotation - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.GeneratedCodeInfo.Annotation; - - /** - * Verifies an Annotation message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } - } - - /** Namespace api. */ - namespace api { - - /** Properties of a Http. */ - interface IHttp { - - /** Http rules */ - rules?: (google.api.IHttpRule[]|null); - } - - /** Represents a Http. */ - class Http implements IHttp { - - /** - * Constructs a new Http. - * @param [properties] Properties to set - */ - constructor(properties?: google.api.IHttp); - - /** Http rules. */ - public rules: google.api.IHttpRule[]; - - /** - * Creates a new Http instance using the specified properties. - * @param [properties] Properties to set - * @returns Http instance - */ - public static create(properties?: google.api.IHttp): google.api.Http; - - /** - * Encodes the specified Http message. Does not implicitly {@link google.api.Http.verify|verify} messages. - * @param message Http message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.api.IHttp, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a Http message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns Http - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Http; - - /** - * Verifies a Http message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a HttpRule. */ - interface IHttpRule { - - /** HttpRule get */ - get?: (string|null); - - /** HttpRule put */ - put?: (string|null); - - /** HttpRule post */ - post?: (string|null); - - /** HttpRule delete */ - "delete"?: (string|null); - - /** HttpRule patch */ - patch?: (string|null); - - /** HttpRule custom */ - custom?: (google.api.ICustomHttpPattern|null); - - /** HttpRule selector */ - selector?: (string|null); - - /** HttpRule body */ - body?: (string|null); - - /** HttpRule additionalBindings */ - additionalBindings?: (google.api.IHttpRule[]|null); - } - - /** Represents a HttpRule. */ - class HttpRule implements IHttpRule { - - /** - * Constructs a new HttpRule. - * @param [properties] Properties to set - */ - constructor(properties?: google.api.IHttpRule); - - /** HttpRule get. */ - public get: string; - - /** HttpRule put. */ - public put: string; - - /** HttpRule post. */ - public post: string; - - /** HttpRule delete. */ - public delete: string; - - /** HttpRule patch. */ - public patch: string; - - /** HttpRule custom. */ - public custom?: (google.api.ICustomHttpPattern|null); - - /** HttpRule selector. */ - public selector: string; - - /** HttpRule body. */ - public body: string; - - /** HttpRule additionalBindings. */ - public additionalBindings: google.api.IHttpRule[]; - - /** HttpRule pattern. */ - public pattern?: ("get"|"put"|"post"|"delete"|"patch"|"custom"); - - /** - * Creates a new HttpRule instance using the specified properties. - * @param [properties] Properties to set - * @returns HttpRule instance - */ - public static create(properties?: google.api.IHttpRule): google.api.HttpRule; - - /** - * Encodes the specified HttpRule message. Does not implicitly {@link google.api.HttpRule.verify|verify} messages. - * @param message HttpRule message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.api.IHttpRule, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a HttpRule message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns HttpRule - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.HttpRule; - - /** - * Verifies a HttpRule message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - - /** Properties of a CustomHttpPattern. */ - interface ICustomHttpPattern { - - /** CustomHttpPattern kind */ - kind?: (string|null); - - /** CustomHttpPattern path */ - path?: (string|null); - } - - /** Represents a CustomHttpPattern. */ - class CustomHttpPattern implements ICustomHttpPattern { - - /** - * Constructs a new CustomHttpPattern. - * @param [properties] Properties to set - */ - constructor(properties?: google.api.ICustomHttpPattern); - - /** CustomHttpPattern kind. */ - public kind: string; - - /** CustomHttpPattern path. */ - public path: string; - - /** - * Creates a new CustomHttpPattern instance using the specified properties. - * @param [properties] Properties to set - * @returns CustomHttpPattern instance - */ - public static create(properties?: google.api.ICustomHttpPattern): google.api.CustomHttpPattern; - - /** - * Encodes the specified CustomHttpPattern message. Does not implicitly {@link google.api.CustomHttpPattern.verify|verify} messages. - * @param message CustomHttpPattern message or plain object to encode - * @param [writer] Writer to encode to - * @returns Writer - */ - public static encode(message: google.api.ICustomHttpPattern, writer?: $protobuf.Writer): $protobuf.Writer; - - /** - * Decodes a CustomHttpPattern message from the specified reader or buffer. - * @param reader Reader or buffer to decode from - * @param [length] Message length if known beforehand - * @returns CustomHttpPattern - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CustomHttpPattern; - - /** - * Verifies a CustomHttpPattern message. - * @param message Plain object to verify - * @returns `null` if valid, otherwise the reason why it is not - */ - public static verify(message: { [k: string]: any }): (string|null); - } - } -} diff --git a/flyteidl/gen/pb-js/flyteidl.js b/flyteidl/gen/pb-js/flyteidl.js deleted file mode 100644 index 422897614b6..00000000000 --- a/flyteidl/gen/pb-js/flyteidl.js +++ /dev/null @@ -1,61548 +0,0 @@ -/*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars*/ -(function(global, factory) { /* global define, require, module */ - - /* AMD */ if (typeof define === 'function' && define.amd) - define(["protobufjs/minimal"], factory); - - /* CommonJS */ else if (typeof require === 'function' && typeof module === 'object' && module && module.exports) - module.exports = factory(require("protobufjs/minimal")); - -})(this, function($protobuf) { - "use strict"; - - // Common aliases - var $Reader = $protobuf.Reader, $Writer = $protobuf.Writer, $util = $protobuf.util; - - // Exported root namespace - var $root = $protobuf.roots.flyteidl || ($protobuf.roots.flyteidl = {}); - - $root.flyteidl = (function() { - - /** - * Namespace flyteidl. - * @exports flyteidl - * @namespace - */ - var flyteidl = {}; - - flyteidl.core = (function() { - - /** - * Namespace core. - * @memberof flyteidl - * @namespace - */ - var core = {}; - - core.ArtifactKey = (function() { - - /** - * Properties of an ArtifactKey. - * @memberof flyteidl.core - * @interface IArtifactKey - * @property {string|null} [project] ArtifactKey project - * @property {string|null} [domain] ArtifactKey domain - * @property {string|null} [name] ArtifactKey name - */ - - /** - * Constructs a new ArtifactKey. - * @memberof flyteidl.core - * @classdesc Represents an ArtifactKey. - * @implements IArtifactKey - * @constructor - * @param {flyteidl.core.IArtifactKey=} [properties] Properties to set - */ - function ArtifactKey(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ArtifactKey project. - * @member {string} project - * @memberof flyteidl.core.ArtifactKey - * @instance - */ - ArtifactKey.prototype.project = ""; - - /** - * ArtifactKey domain. - * @member {string} domain - * @memberof flyteidl.core.ArtifactKey - * @instance - */ - ArtifactKey.prototype.domain = ""; - - /** - * ArtifactKey name. - * @member {string} name - * @memberof flyteidl.core.ArtifactKey - * @instance - */ - ArtifactKey.prototype.name = ""; - - /** - * Creates a new ArtifactKey instance using the specified properties. - * @function create - * @memberof flyteidl.core.ArtifactKey - * @static - * @param {flyteidl.core.IArtifactKey=} [properties] Properties to set - * @returns {flyteidl.core.ArtifactKey} ArtifactKey instance - */ - ArtifactKey.create = function create(properties) { - return new ArtifactKey(properties); - }; - - /** - * Encodes the specified ArtifactKey message. Does not implicitly {@link flyteidl.core.ArtifactKey.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ArtifactKey - * @static - * @param {flyteidl.core.IArtifactKey} message ArtifactKey message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ArtifactKey.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.name); - return writer; - }; - - /** - * Decodes an ArtifactKey message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ArtifactKey - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ArtifactKey} ArtifactKey - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ArtifactKey.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ArtifactKey(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.name = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ArtifactKey message. - * @function verify - * @memberof flyteidl.core.ArtifactKey - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ArtifactKey.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - return null; - }; - - return ArtifactKey; - })(); - - core.ArtifactBindingData = (function() { - - /** - * Properties of an ArtifactBindingData. - * @memberof flyteidl.core - * @interface IArtifactBindingData - * @property {number|null} [index] ArtifactBindingData index - * @property {string|null} [partitionKey] ArtifactBindingData partitionKey - * @property {string|null} [transform] ArtifactBindingData transform - */ - - /** - * Constructs a new ArtifactBindingData. - * @memberof flyteidl.core - * @classdesc Represents an ArtifactBindingData. - * @implements IArtifactBindingData - * @constructor - * @param {flyteidl.core.IArtifactBindingData=} [properties] Properties to set - */ - function ArtifactBindingData(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ArtifactBindingData index. - * @member {number} index - * @memberof flyteidl.core.ArtifactBindingData - * @instance - */ - ArtifactBindingData.prototype.index = 0; - - /** - * ArtifactBindingData partitionKey. - * @member {string} partitionKey - * @memberof flyteidl.core.ArtifactBindingData - * @instance - */ - ArtifactBindingData.prototype.partitionKey = ""; - - /** - * ArtifactBindingData transform. - * @member {string} transform - * @memberof flyteidl.core.ArtifactBindingData - * @instance - */ - ArtifactBindingData.prototype.transform = ""; - - /** - * Creates a new ArtifactBindingData instance using the specified properties. - * @function create - * @memberof flyteidl.core.ArtifactBindingData - * @static - * @param {flyteidl.core.IArtifactBindingData=} [properties] Properties to set - * @returns {flyteidl.core.ArtifactBindingData} ArtifactBindingData instance - */ - ArtifactBindingData.create = function create(properties) { - return new ArtifactBindingData(properties); - }; - - /** - * Encodes the specified ArtifactBindingData message. Does not implicitly {@link flyteidl.core.ArtifactBindingData.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ArtifactBindingData - * @static - * @param {flyteidl.core.IArtifactBindingData} message ArtifactBindingData message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ArtifactBindingData.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.index != null && message.hasOwnProperty("index")) - writer.uint32(/* id 1, wireType 0 =*/8).uint32(message.index); - if (message.partitionKey != null && message.hasOwnProperty("partitionKey")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.partitionKey); - if (message.transform != null && message.hasOwnProperty("transform")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.transform); - return writer; - }; - - /** - * Decodes an ArtifactBindingData message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ArtifactBindingData - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ArtifactBindingData} ArtifactBindingData - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ArtifactBindingData.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ArtifactBindingData(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.index = reader.uint32(); - break; - case 2: - message.partitionKey = reader.string(); - break; - case 3: - message.transform = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ArtifactBindingData message. - * @function verify - * @memberof flyteidl.core.ArtifactBindingData - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ArtifactBindingData.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.index != null && message.hasOwnProperty("index")) - if (!$util.isInteger(message.index)) - return "index: integer expected"; - if (message.partitionKey != null && message.hasOwnProperty("partitionKey")) - if (!$util.isString(message.partitionKey)) - return "partitionKey: string expected"; - if (message.transform != null && message.hasOwnProperty("transform")) - if (!$util.isString(message.transform)) - return "transform: string expected"; - return null; - }; - - return ArtifactBindingData; - })(); - - core.InputBindingData = (function() { - - /** - * Properties of an InputBindingData. - * @memberof flyteidl.core - * @interface IInputBindingData - * @property {string|null} ["var"] InputBindingData var - */ - - /** - * Constructs a new InputBindingData. - * @memberof flyteidl.core - * @classdesc Represents an InputBindingData. - * @implements IInputBindingData - * @constructor - * @param {flyteidl.core.IInputBindingData=} [properties] Properties to set - */ - function InputBindingData(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * InputBindingData var. - * @member {string} var - * @memberof flyteidl.core.InputBindingData - * @instance - */ - InputBindingData.prototype["var"] = ""; - - /** - * Creates a new InputBindingData instance using the specified properties. - * @function create - * @memberof flyteidl.core.InputBindingData - * @static - * @param {flyteidl.core.IInputBindingData=} [properties] Properties to set - * @returns {flyteidl.core.InputBindingData} InputBindingData instance - */ - InputBindingData.create = function create(properties) { - return new InputBindingData(properties); - }; - - /** - * Encodes the specified InputBindingData message. Does not implicitly {@link flyteidl.core.InputBindingData.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.InputBindingData - * @static - * @param {flyteidl.core.IInputBindingData} message InputBindingData message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - InputBindingData.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message["var"] != null && message.hasOwnProperty("var")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message["var"]); - return writer; - }; - - /** - * Decodes an InputBindingData message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.InputBindingData - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.InputBindingData} InputBindingData - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - InputBindingData.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.InputBindingData(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message["var"] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an InputBindingData message. - * @function verify - * @memberof flyteidl.core.InputBindingData - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - InputBindingData.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message["var"] != null && message.hasOwnProperty("var")) - if (!$util.isString(message["var"])) - return "var: string expected"; - return null; - }; - - return InputBindingData; - })(); - - core.LabelValue = (function() { - - /** - * Properties of a LabelValue. - * @memberof flyteidl.core - * @interface ILabelValue - * @property {string|null} [staticValue] LabelValue staticValue - * @property {flyteidl.core.IArtifactBindingData|null} [triggeredBinding] LabelValue triggeredBinding - * @property {flyteidl.core.IInputBindingData|null} [inputBinding] LabelValue inputBinding - */ - - /** - * Constructs a new LabelValue. - * @memberof flyteidl.core - * @classdesc Represents a LabelValue. - * @implements ILabelValue - * @constructor - * @param {flyteidl.core.ILabelValue=} [properties] Properties to set - */ - function LabelValue(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LabelValue staticValue. - * @member {string} staticValue - * @memberof flyteidl.core.LabelValue - * @instance - */ - LabelValue.prototype.staticValue = ""; - - /** - * LabelValue triggeredBinding. - * @member {flyteidl.core.IArtifactBindingData|null|undefined} triggeredBinding - * @memberof flyteidl.core.LabelValue - * @instance - */ - LabelValue.prototype.triggeredBinding = null; - - /** - * LabelValue inputBinding. - * @member {flyteidl.core.IInputBindingData|null|undefined} inputBinding - * @memberof flyteidl.core.LabelValue - * @instance - */ - LabelValue.prototype.inputBinding = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * LabelValue value. - * @member {"staticValue"|"triggeredBinding"|"inputBinding"|undefined} value - * @memberof flyteidl.core.LabelValue - * @instance - */ - Object.defineProperty(LabelValue.prototype, "value", { - get: $util.oneOfGetter($oneOfFields = ["staticValue", "triggeredBinding", "inputBinding"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new LabelValue instance using the specified properties. - * @function create - * @memberof flyteidl.core.LabelValue - * @static - * @param {flyteidl.core.ILabelValue=} [properties] Properties to set - * @returns {flyteidl.core.LabelValue} LabelValue instance - */ - LabelValue.create = function create(properties) { - return new LabelValue(properties); - }; - - /** - * Encodes the specified LabelValue message. Does not implicitly {@link flyteidl.core.LabelValue.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.LabelValue - * @static - * @param {flyteidl.core.ILabelValue} message LabelValue message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LabelValue.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.staticValue != null && message.hasOwnProperty("staticValue")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.staticValue); - if (message.triggeredBinding != null && message.hasOwnProperty("triggeredBinding")) - $root.flyteidl.core.ArtifactBindingData.encode(message.triggeredBinding, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.inputBinding != null && message.hasOwnProperty("inputBinding")) - $root.flyteidl.core.InputBindingData.encode(message.inputBinding, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a LabelValue message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.LabelValue - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.LabelValue} LabelValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LabelValue.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.LabelValue(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.staticValue = reader.string(); - break; - case 2: - message.triggeredBinding = $root.flyteidl.core.ArtifactBindingData.decode(reader, reader.uint32()); - break; - case 3: - message.inputBinding = $root.flyteidl.core.InputBindingData.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LabelValue message. - * @function verify - * @memberof flyteidl.core.LabelValue - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LabelValue.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.staticValue != null && message.hasOwnProperty("staticValue")) { - properties.value = 1; - if (!$util.isString(message.staticValue)) - return "staticValue: string expected"; - } - if (message.triggeredBinding != null && message.hasOwnProperty("triggeredBinding")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.ArtifactBindingData.verify(message.triggeredBinding); - if (error) - return "triggeredBinding." + error; - } - } - if (message.inputBinding != null && message.hasOwnProperty("inputBinding")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.InputBindingData.verify(message.inputBinding); - if (error) - return "inputBinding." + error; - } - } - return null; - }; - - return LabelValue; - })(); - - core.Partitions = (function() { - - /** - * Properties of a Partitions. - * @memberof flyteidl.core - * @interface IPartitions - * @property {Object.|null} [value] Partitions value - */ - - /** - * Constructs a new Partitions. - * @memberof flyteidl.core - * @classdesc Represents a Partitions. - * @implements IPartitions - * @constructor - * @param {flyteidl.core.IPartitions=} [properties] Properties to set - */ - function Partitions(properties) { - this.value = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Partitions value. - * @member {Object.} value - * @memberof flyteidl.core.Partitions - * @instance - */ - Partitions.prototype.value = $util.emptyObject; - - /** - * Creates a new Partitions instance using the specified properties. - * @function create - * @memberof flyteidl.core.Partitions - * @static - * @param {flyteidl.core.IPartitions=} [properties] Properties to set - * @returns {flyteidl.core.Partitions} Partitions instance - */ - Partitions.create = function create(properties) { - return new Partitions(properties); - }; - - /** - * Encodes the specified Partitions message. Does not implicitly {@link flyteidl.core.Partitions.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Partitions - * @static - * @param {flyteidl.core.IPartitions} message Partitions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Partitions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - for (var keys = Object.keys(message.value), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.flyteidl.core.LabelValue.encode(message.value[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - return writer; - }; - - /** - * Decodes a Partitions message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Partitions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Partitions} Partitions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Partitions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Partitions(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.value === $util.emptyObject) - message.value = {}; - key = reader.string(); - reader.pos++; - message.value[key] = $root.flyteidl.core.LabelValue.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Partitions message. - * @function verify - * @memberof flyteidl.core.Partitions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Partitions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) { - if (!$util.isObject(message.value)) - return "value: object expected"; - var key = Object.keys(message.value); - for (var i = 0; i < key.length; ++i) { - var error = $root.flyteidl.core.LabelValue.verify(message.value[key[i]]); - if (error) - return "value." + error; - } - } - return null; - }; - - return Partitions; - })(); - - core.ArtifactID = (function() { - - /** - * Properties of an ArtifactID. - * @memberof flyteidl.core - * @interface IArtifactID - * @property {flyteidl.core.IArtifactKey|null} [artifactKey] ArtifactID artifactKey - * @property {string|null} [version] ArtifactID version - * @property {flyteidl.core.IPartitions|null} [partitions] ArtifactID partitions - */ - - /** - * Constructs a new ArtifactID. - * @memberof flyteidl.core - * @classdesc Represents an ArtifactID. - * @implements IArtifactID - * @constructor - * @param {flyteidl.core.IArtifactID=} [properties] Properties to set - */ - function ArtifactID(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ArtifactID artifactKey. - * @member {flyteidl.core.IArtifactKey|null|undefined} artifactKey - * @memberof flyteidl.core.ArtifactID - * @instance - */ - ArtifactID.prototype.artifactKey = null; - - /** - * ArtifactID version. - * @member {string} version - * @memberof flyteidl.core.ArtifactID - * @instance - */ - ArtifactID.prototype.version = ""; - - /** - * ArtifactID partitions. - * @member {flyteidl.core.IPartitions|null|undefined} partitions - * @memberof flyteidl.core.ArtifactID - * @instance - */ - ArtifactID.prototype.partitions = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * ArtifactID dimensions. - * @member {"partitions"|undefined} dimensions - * @memberof flyteidl.core.ArtifactID - * @instance - */ - Object.defineProperty(ArtifactID.prototype, "dimensions", { - get: $util.oneOfGetter($oneOfFields = ["partitions"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new ArtifactID instance using the specified properties. - * @function create - * @memberof flyteidl.core.ArtifactID - * @static - * @param {flyteidl.core.IArtifactID=} [properties] Properties to set - * @returns {flyteidl.core.ArtifactID} ArtifactID instance - */ - ArtifactID.create = function create(properties) { - return new ArtifactID(properties); - }; - - /** - * Encodes the specified ArtifactID message. Does not implicitly {@link flyteidl.core.ArtifactID.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ArtifactID - * @static - * @param {flyteidl.core.IArtifactID} message ArtifactID message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ArtifactID.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.artifactKey != null && message.hasOwnProperty("artifactKey")) - $root.flyteidl.core.ArtifactKey.encode(message.artifactKey, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.version != null && message.hasOwnProperty("version")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.version); - if (message.partitions != null && message.hasOwnProperty("partitions")) - $root.flyteidl.core.Partitions.encode(message.partitions, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ArtifactID message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ArtifactID - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ArtifactID} ArtifactID - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ArtifactID.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ArtifactID(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.artifactKey = $root.flyteidl.core.ArtifactKey.decode(reader, reader.uint32()); - break; - case 2: - message.version = reader.string(); - break; - case 3: - message.partitions = $root.flyteidl.core.Partitions.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ArtifactID message. - * @function verify - * @memberof flyteidl.core.ArtifactID - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ArtifactID.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.artifactKey != null && message.hasOwnProperty("artifactKey")) { - var error = $root.flyteidl.core.ArtifactKey.verify(message.artifactKey); - if (error) - return "artifactKey." + error; - } - if (message.version != null && message.hasOwnProperty("version")) - if (!$util.isString(message.version)) - return "version: string expected"; - if (message.partitions != null && message.hasOwnProperty("partitions")) { - properties.dimensions = 1; - { - var error = $root.flyteidl.core.Partitions.verify(message.partitions); - if (error) - return "partitions." + error; - } - } - return null; - }; - - return ArtifactID; - })(); - - core.ArtifactTag = (function() { - - /** - * Properties of an ArtifactTag. - * @memberof flyteidl.core - * @interface IArtifactTag - * @property {flyteidl.core.IArtifactKey|null} [artifactKey] ArtifactTag artifactKey - * @property {flyteidl.core.ILabelValue|null} [value] ArtifactTag value - */ - - /** - * Constructs a new ArtifactTag. - * @memberof flyteidl.core - * @classdesc Represents an ArtifactTag. - * @implements IArtifactTag - * @constructor - * @param {flyteidl.core.IArtifactTag=} [properties] Properties to set - */ - function ArtifactTag(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ArtifactTag artifactKey. - * @member {flyteidl.core.IArtifactKey|null|undefined} artifactKey - * @memberof flyteidl.core.ArtifactTag - * @instance - */ - ArtifactTag.prototype.artifactKey = null; - - /** - * ArtifactTag value. - * @member {flyteidl.core.ILabelValue|null|undefined} value - * @memberof flyteidl.core.ArtifactTag - * @instance - */ - ArtifactTag.prototype.value = null; - - /** - * Creates a new ArtifactTag instance using the specified properties. - * @function create - * @memberof flyteidl.core.ArtifactTag - * @static - * @param {flyteidl.core.IArtifactTag=} [properties] Properties to set - * @returns {flyteidl.core.ArtifactTag} ArtifactTag instance - */ - ArtifactTag.create = function create(properties) { - return new ArtifactTag(properties); - }; - - /** - * Encodes the specified ArtifactTag message. Does not implicitly {@link flyteidl.core.ArtifactTag.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ArtifactTag - * @static - * @param {flyteidl.core.IArtifactTag} message ArtifactTag message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ArtifactTag.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.artifactKey != null && message.hasOwnProperty("artifactKey")) - $root.flyteidl.core.ArtifactKey.encode(message.artifactKey, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.value != null && message.hasOwnProperty("value")) - $root.flyteidl.core.LabelValue.encode(message.value, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ArtifactTag message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ArtifactTag - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ArtifactTag} ArtifactTag - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ArtifactTag.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ArtifactTag(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.artifactKey = $root.flyteidl.core.ArtifactKey.decode(reader, reader.uint32()); - break; - case 2: - message.value = $root.flyteidl.core.LabelValue.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ArtifactTag message. - * @function verify - * @memberof flyteidl.core.ArtifactTag - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ArtifactTag.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.artifactKey != null && message.hasOwnProperty("artifactKey")) { - var error = $root.flyteidl.core.ArtifactKey.verify(message.artifactKey); - if (error) - return "artifactKey." + error; - } - if (message.value != null && message.hasOwnProperty("value")) { - var error = $root.flyteidl.core.LabelValue.verify(message.value); - if (error) - return "value." + error; - } - return null; - }; - - return ArtifactTag; - })(); - - core.ArtifactQuery = (function() { - - /** - * Properties of an ArtifactQuery. - * @memberof flyteidl.core - * @interface IArtifactQuery - * @property {flyteidl.core.IArtifactID|null} [artifactId] ArtifactQuery artifactId - * @property {flyteidl.core.IArtifactTag|null} [artifactTag] ArtifactQuery artifactTag - * @property {string|null} [uri] ArtifactQuery uri - * @property {flyteidl.core.IArtifactBindingData|null} [binding] ArtifactQuery binding - */ - - /** - * Constructs a new ArtifactQuery. - * @memberof flyteidl.core - * @classdesc Represents an ArtifactQuery. - * @implements IArtifactQuery - * @constructor - * @param {flyteidl.core.IArtifactQuery=} [properties] Properties to set - */ - function ArtifactQuery(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ArtifactQuery artifactId. - * @member {flyteidl.core.IArtifactID|null|undefined} artifactId - * @memberof flyteidl.core.ArtifactQuery - * @instance - */ - ArtifactQuery.prototype.artifactId = null; - - /** - * ArtifactQuery artifactTag. - * @member {flyteidl.core.IArtifactTag|null|undefined} artifactTag - * @memberof flyteidl.core.ArtifactQuery - * @instance - */ - ArtifactQuery.prototype.artifactTag = null; - - /** - * ArtifactQuery uri. - * @member {string} uri - * @memberof flyteidl.core.ArtifactQuery - * @instance - */ - ArtifactQuery.prototype.uri = ""; - - /** - * ArtifactQuery binding. - * @member {flyteidl.core.IArtifactBindingData|null|undefined} binding - * @memberof flyteidl.core.ArtifactQuery - * @instance - */ - ArtifactQuery.prototype.binding = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * ArtifactQuery identifier. - * @member {"artifactId"|"artifactTag"|"uri"|"binding"|undefined} identifier - * @memberof flyteidl.core.ArtifactQuery - * @instance - */ - Object.defineProperty(ArtifactQuery.prototype, "identifier", { - get: $util.oneOfGetter($oneOfFields = ["artifactId", "artifactTag", "uri", "binding"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new ArtifactQuery instance using the specified properties. - * @function create - * @memberof flyteidl.core.ArtifactQuery - * @static - * @param {flyteidl.core.IArtifactQuery=} [properties] Properties to set - * @returns {flyteidl.core.ArtifactQuery} ArtifactQuery instance - */ - ArtifactQuery.create = function create(properties) { - return new ArtifactQuery(properties); - }; - - /** - * Encodes the specified ArtifactQuery message. Does not implicitly {@link flyteidl.core.ArtifactQuery.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ArtifactQuery - * @static - * @param {flyteidl.core.IArtifactQuery} message ArtifactQuery message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ArtifactQuery.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.artifactId != null && message.hasOwnProperty("artifactId")) - $root.flyteidl.core.ArtifactID.encode(message.artifactId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.artifactTag != null && message.hasOwnProperty("artifactTag")) - $root.flyteidl.core.ArtifactTag.encode(message.artifactTag, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.uri != null && message.hasOwnProperty("uri")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.uri); - if (message.binding != null && message.hasOwnProperty("binding")) - $root.flyteidl.core.ArtifactBindingData.encode(message.binding, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ArtifactQuery message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ArtifactQuery - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ArtifactQuery} ArtifactQuery - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ArtifactQuery.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ArtifactQuery(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.artifactId = $root.flyteidl.core.ArtifactID.decode(reader, reader.uint32()); - break; - case 2: - message.artifactTag = $root.flyteidl.core.ArtifactTag.decode(reader, reader.uint32()); - break; - case 3: - message.uri = reader.string(); - break; - case 4: - message.binding = $root.flyteidl.core.ArtifactBindingData.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ArtifactQuery message. - * @function verify - * @memberof flyteidl.core.ArtifactQuery - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ArtifactQuery.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.artifactId != null && message.hasOwnProperty("artifactId")) { - properties.identifier = 1; - { - var error = $root.flyteidl.core.ArtifactID.verify(message.artifactId); - if (error) - return "artifactId." + error; - } - } - if (message.artifactTag != null && message.hasOwnProperty("artifactTag")) { - if (properties.identifier === 1) - return "identifier: multiple values"; - properties.identifier = 1; - { - var error = $root.flyteidl.core.ArtifactTag.verify(message.artifactTag); - if (error) - return "artifactTag." + error; - } - } - if (message.uri != null && message.hasOwnProperty("uri")) { - if (properties.identifier === 1) - return "identifier: multiple values"; - properties.identifier = 1; - if (!$util.isString(message.uri)) - return "uri: string expected"; - } - if (message.binding != null && message.hasOwnProperty("binding")) { - if (properties.identifier === 1) - return "identifier: multiple values"; - properties.identifier = 1; - { - var error = $root.flyteidl.core.ArtifactBindingData.verify(message.binding); - if (error) - return "binding." + error; - } - } - return null; - }; - - return ArtifactQuery; - })(); - - core.Trigger = (function() { - - /** - * Properties of a Trigger. - * @memberof flyteidl.core - * @interface ITrigger - * @property {flyteidl.core.IIdentifier|null} [triggerId] Trigger triggerId - * @property {Array.|null} [triggers] Trigger triggers - */ - - /** - * Constructs a new Trigger. - * @memberof flyteidl.core - * @classdesc Represents a Trigger. - * @implements ITrigger - * @constructor - * @param {flyteidl.core.ITrigger=} [properties] Properties to set - */ - function Trigger(properties) { - this.triggers = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Trigger triggerId. - * @member {flyteidl.core.IIdentifier|null|undefined} triggerId - * @memberof flyteidl.core.Trigger - * @instance - */ - Trigger.prototype.triggerId = null; - - /** - * Trigger triggers. - * @member {Array.} triggers - * @memberof flyteidl.core.Trigger - * @instance - */ - Trigger.prototype.triggers = $util.emptyArray; - - /** - * Creates a new Trigger instance using the specified properties. - * @function create - * @memberof flyteidl.core.Trigger - * @static - * @param {flyteidl.core.ITrigger=} [properties] Properties to set - * @returns {flyteidl.core.Trigger} Trigger instance - */ - Trigger.create = function create(properties) { - return new Trigger(properties); - }; - - /** - * Encodes the specified Trigger message. Does not implicitly {@link flyteidl.core.Trigger.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Trigger - * @static - * @param {flyteidl.core.ITrigger} message Trigger message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Trigger.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.triggerId != null && message.hasOwnProperty("triggerId")) - $root.flyteidl.core.Identifier.encode(message.triggerId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.triggers != null && message.triggers.length) - for (var i = 0; i < message.triggers.length; ++i) - $root.flyteidl.core.ArtifactID.encode(message.triggers[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Trigger message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Trigger - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Trigger} Trigger - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Trigger.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Trigger(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.triggerId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.triggers && message.triggers.length)) - message.triggers = []; - message.triggers.push($root.flyteidl.core.ArtifactID.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Trigger message. - * @function verify - * @memberof flyteidl.core.Trigger - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Trigger.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.triggerId != null && message.hasOwnProperty("triggerId")) { - var error = $root.flyteidl.core.Identifier.verify(message.triggerId); - if (error) - return "triggerId." + error; - } - if (message.triggers != null && message.hasOwnProperty("triggers")) { - if (!Array.isArray(message.triggers)) - return "triggers: array expected"; - for (var i = 0; i < message.triggers.length; ++i) { - var error = $root.flyteidl.core.ArtifactID.verify(message.triggers[i]); - if (error) - return "triggers." + error; - } - } - return null; - }; - - return Trigger; - })(); - - /** - * ResourceType enum. - * @name flyteidl.core.ResourceType - * @enum {string} - * @property {number} UNSPECIFIED=0 UNSPECIFIED value - * @property {number} TASK=1 TASK value - * @property {number} WORKFLOW=2 WORKFLOW value - * @property {number} LAUNCH_PLAN=3 LAUNCH_PLAN value - * @property {number} DATASET=4 DATASET value - */ - core.ResourceType = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNSPECIFIED"] = 0; - values[valuesById[1] = "TASK"] = 1; - values[valuesById[2] = "WORKFLOW"] = 2; - values[valuesById[3] = "LAUNCH_PLAN"] = 3; - values[valuesById[4] = "DATASET"] = 4; - return values; - })(); - - core.Identifier = (function() { - - /** - * Properties of an Identifier. - * @memberof flyteidl.core - * @interface IIdentifier - * @property {flyteidl.core.ResourceType|null} [resourceType] Identifier resourceType - * @property {string|null} [project] Identifier project - * @property {string|null} [domain] Identifier domain - * @property {string|null} [name] Identifier name - * @property {string|null} [version] Identifier version - * @property {string|null} [org] Identifier org - */ - - /** - * Constructs a new Identifier. - * @memberof flyteidl.core - * @classdesc Represents an Identifier. - * @implements IIdentifier - * @constructor - * @param {flyteidl.core.IIdentifier=} [properties] Properties to set - */ - function Identifier(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Identifier resourceType. - * @member {flyteidl.core.ResourceType} resourceType - * @memberof flyteidl.core.Identifier - * @instance - */ - Identifier.prototype.resourceType = 0; - - /** - * Identifier project. - * @member {string} project - * @memberof flyteidl.core.Identifier - * @instance - */ - Identifier.prototype.project = ""; - - /** - * Identifier domain. - * @member {string} domain - * @memberof flyteidl.core.Identifier - * @instance - */ - Identifier.prototype.domain = ""; - - /** - * Identifier name. - * @member {string} name - * @memberof flyteidl.core.Identifier - * @instance - */ - Identifier.prototype.name = ""; - - /** - * Identifier version. - * @member {string} version - * @memberof flyteidl.core.Identifier - * @instance - */ - Identifier.prototype.version = ""; - - /** - * Identifier org. - * @member {string} org - * @memberof flyteidl.core.Identifier - * @instance - */ - Identifier.prototype.org = ""; - - /** - * Creates a new Identifier instance using the specified properties. - * @function create - * @memberof flyteidl.core.Identifier - * @static - * @param {flyteidl.core.IIdentifier=} [properties] Properties to set - * @returns {flyteidl.core.Identifier} Identifier instance - */ - Identifier.create = function create(properties) { - return new Identifier(properties); - }; - - /** - * Encodes the specified Identifier message. Does not implicitly {@link flyteidl.core.Identifier.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Identifier - * @static - * @param {flyteidl.core.IIdentifier} message Identifier message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Identifier.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.resourceType); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.domain); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.name); - if (message.version != null && message.hasOwnProperty("version")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.version); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.org); - return writer; - }; - - /** - * Decodes an Identifier message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Identifier - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Identifier} Identifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Identifier.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Identifier(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resourceType = reader.int32(); - break; - case 2: - message.project = reader.string(); - break; - case 3: - message.domain = reader.string(); - break; - case 4: - message.name = reader.string(); - break; - case 5: - message.version = reader.string(); - break; - case 6: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Identifier message. - * @function verify - * @memberof flyteidl.core.Identifier - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Identifier.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.version != null && message.hasOwnProperty("version")) - if (!$util.isString(message.version)) - return "version: string expected"; - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return Identifier; - })(); - - core.WorkflowExecutionIdentifier = (function() { - - /** - * Properties of a WorkflowExecutionIdentifier. - * @memberof flyteidl.core - * @interface IWorkflowExecutionIdentifier - * @property {string|null} [project] WorkflowExecutionIdentifier project - * @property {string|null} [domain] WorkflowExecutionIdentifier domain - * @property {string|null} [name] WorkflowExecutionIdentifier name - * @property {string|null} [org] WorkflowExecutionIdentifier org - */ - - /** - * Constructs a new WorkflowExecutionIdentifier. - * @memberof flyteidl.core - * @classdesc Represents a WorkflowExecutionIdentifier. - * @implements IWorkflowExecutionIdentifier - * @constructor - * @param {flyteidl.core.IWorkflowExecutionIdentifier=} [properties] Properties to set - */ - function WorkflowExecutionIdentifier(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionIdentifier project. - * @member {string} project - * @memberof flyteidl.core.WorkflowExecutionIdentifier - * @instance - */ - WorkflowExecutionIdentifier.prototype.project = ""; - - /** - * WorkflowExecutionIdentifier domain. - * @member {string} domain - * @memberof flyteidl.core.WorkflowExecutionIdentifier - * @instance - */ - WorkflowExecutionIdentifier.prototype.domain = ""; - - /** - * WorkflowExecutionIdentifier name. - * @member {string} name - * @memberof flyteidl.core.WorkflowExecutionIdentifier - * @instance - */ - WorkflowExecutionIdentifier.prototype.name = ""; - - /** - * WorkflowExecutionIdentifier org. - * @member {string} org - * @memberof flyteidl.core.WorkflowExecutionIdentifier - * @instance - */ - WorkflowExecutionIdentifier.prototype.org = ""; - - /** - * Creates a new WorkflowExecutionIdentifier instance using the specified properties. - * @function create - * @memberof flyteidl.core.WorkflowExecutionIdentifier - * @static - * @param {flyteidl.core.IWorkflowExecutionIdentifier=} [properties] Properties to set - * @returns {flyteidl.core.WorkflowExecutionIdentifier} WorkflowExecutionIdentifier instance - */ - WorkflowExecutionIdentifier.create = function create(properties) { - return new WorkflowExecutionIdentifier(properties); - }; - - /** - * Encodes the specified WorkflowExecutionIdentifier message. Does not implicitly {@link flyteidl.core.WorkflowExecutionIdentifier.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.WorkflowExecutionIdentifier - * @static - * @param {flyteidl.core.IWorkflowExecutionIdentifier} message WorkflowExecutionIdentifier message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionIdentifier.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.name); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.org); - return writer; - }; - - /** - * Decodes a WorkflowExecutionIdentifier message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.WorkflowExecutionIdentifier - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.WorkflowExecutionIdentifier} WorkflowExecutionIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionIdentifier.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.WorkflowExecutionIdentifier(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 4: - message.name = reader.string(); - break; - case 5: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionIdentifier message. - * @function verify - * @memberof flyteidl.core.WorkflowExecutionIdentifier - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionIdentifier.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return WorkflowExecutionIdentifier; - })(); - - core.NodeExecutionIdentifier = (function() { - - /** - * Properties of a NodeExecutionIdentifier. - * @memberof flyteidl.core - * @interface INodeExecutionIdentifier - * @property {string|null} [nodeId] NodeExecutionIdentifier nodeId - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [executionId] NodeExecutionIdentifier executionId - */ - - /** - * Constructs a new NodeExecutionIdentifier. - * @memberof flyteidl.core - * @classdesc Represents a NodeExecutionIdentifier. - * @implements INodeExecutionIdentifier - * @constructor - * @param {flyteidl.core.INodeExecutionIdentifier=} [properties] Properties to set - */ - function NodeExecutionIdentifier(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionIdentifier nodeId. - * @member {string} nodeId - * @memberof flyteidl.core.NodeExecutionIdentifier - * @instance - */ - NodeExecutionIdentifier.prototype.nodeId = ""; - - /** - * NodeExecutionIdentifier executionId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} executionId - * @memberof flyteidl.core.NodeExecutionIdentifier - * @instance - */ - NodeExecutionIdentifier.prototype.executionId = null; - - /** - * Creates a new NodeExecutionIdentifier instance using the specified properties. - * @function create - * @memberof flyteidl.core.NodeExecutionIdentifier - * @static - * @param {flyteidl.core.INodeExecutionIdentifier=} [properties] Properties to set - * @returns {flyteidl.core.NodeExecutionIdentifier} NodeExecutionIdentifier instance - */ - NodeExecutionIdentifier.create = function create(properties) { - return new NodeExecutionIdentifier(properties); - }; - - /** - * Encodes the specified NodeExecutionIdentifier message. Does not implicitly {@link flyteidl.core.NodeExecutionIdentifier.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.NodeExecutionIdentifier - * @static - * @param {flyteidl.core.INodeExecutionIdentifier} message NodeExecutionIdentifier message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionIdentifier.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.nodeId != null && message.hasOwnProperty("nodeId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.nodeId); - if (message.executionId != null && message.hasOwnProperty("executionId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.executionId, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NodeExecutionIdentifier message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.NodeExecutionIdentifier - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.NodeExecutionIdentifier} NodeExecutionIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionIdentifier.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.NodeExecutionIdentifier(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.nodeId = reader.string(); - break; - case 2: - message.executionId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionIdentifier message. - * @function verify - * @memberof flyteidl.core.NodeExecutionIdentifier - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionIdentifier.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.nodeId != null && message.hasOwnProperty("nodeId")) - if (!$util.isString(message.nodeId)) - return "nodeId: string expected"; - if (message.executionId != null && message.hasOwnProperty("executionId")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.executionId); - if (error) - return "executionId." + error; - } - return null; - }; - - return NodeExecutionIdentifier; - })(); - - core.TaskExecutionIdentifier = (function() { - - /** - * Properties of a TaskExecutionIdentifier. - * @memberof flyteidl.core - * @interface ITaskExecutionIdentifier - * @property {flyteidl.core.IIdentifier|null} [taskId] TaskExecutionIdentifier taskId - * @property {flyteidl.core.INodeExecutionIdentifier|null} [nodeExecutionId] TaskExecutionIdentifier nodeExecutionId - * @property {number|null} [retryAttempt] TaskExecutionIdentifier retryAttempt - */ - - /** - * Constructs a new TaskExecutionIdentifier. - * @memberof flyteidl.core - * @classdesc Represents a TaskExecutionIdentifier. - * @implements ITaskExecutionIdentifier - * @constructor - * @param {flyteidl.core.ITaskExecutionIdentifier=} [properties] Properties to set - */ - function TaskExecutionIdentifier(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionIdentifier taskId. - * @member {flyteidl.core.IIdentifier|null|undefined} taskId - * @memberof flyteidl.core.TaskExecutionIdentifier - * @instance - */ - TaskExecutionIdentifier.prototype.taskId = null; - - /** - * TaskExecutionIdentifier nodeExecutionId. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} nodeExecutionId - * @memberof flyteidl.core.TaskExecutionIdentifier - * @instance - */ - TaskExecutionIdentifier.prototype.nodeExecutionId = null; - - /** - * TaskExecutionIdentifier retryAttempt. - * @member {number} retryAttempt - * @memberof flyteidl.core.TaskExecutionIdentifier - * @instance - */ - TaskExecutionIdentifier.prototype.retryAttempt = 0; - - /** - * Creates a new TaskExecutionIdentifier instance using the specified properties. - * @function create - * @memberof flyteidl.core.TaskExecutionIdentifier - * @static - * @param {flyteidl.core.ITaskExecutionIdentifier=} [properties] Properties to set - * @returns {flyteidl.core.TaskExecutionIdentifier} TaskExecutionIdentifier instance - */ - TaskExecutionIdentifier.create = function create(properties) { - return new TaskExecutionIdentifier(properties); - }; - - /** - * Encodes the specified TaskExecutionIdentifier message. Does not implicitly {@link flyteidl.core.TaskExecutionIdentifier.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TaskExecutionIdentifier - * @static - * @param {flyteidl.core.ITaskExecutionIdentifier} message TaskExecutionIdentifier message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionIdentifier.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskId != null && message.hasOwnProperty("taskId")) - $root.flyteidl.core.Identifier.encode(message.taskId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.nodeExecutionId != null && message.hasOwnProperty("nodeExecutionId")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.nodeExecutionId, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.retryAttempt != null && message.hasOwnProperty("retryAttempt")) - writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.retryAttempt); - return writer; - }; - - /** - * Decodes a TaskExecutionIdentifier message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TaskExecutionIdentifier - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TaskExecutionIdentifier} TaskExecutionIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionIdentifier.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TaskExecutionIdentifier(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.nodeExecutionId = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 3: - message.retryAttempt = reader.uint32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionIdentifier message. - * @function verify - * @memberof flyteidl.core.TaskExecutionIdentifier - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionIdentifier.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskId != null && message.hasOwnProperty("taskId")) { - var error = $root.flyteidl.core.Identifier.verify(message.taskId); - if (error) - return "taskId." + error; - } - if (message.nodeExecutionId != null && message.hasOwnProperty("nodeExecutionId")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.nodeExecutionId); - if (error) - return "nodeExecutionId." + error; - } - if (message.retryAttempt != null && message.hasOwnProperty("retryAttempt")) - if (!$util.isInteger(message.retryAttempt)) - return "retryAttempt: integer expected"; - return null; - }; - - return TaskExecutionIdentifier; - })(); - - core.SignalIdentifier = (function() { - - /** - * Properties of a SignalIdentifier. - * @memberof flyteidl.core - * @interface ISignalIdentifier - * @property {string|null} [signalId] SignalIdentifier signalId - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [executionId] SignalIdentifier executionId - */ - - /** - * Constructs a new SignalIdentifier. - * @memberof flyteidl.core - * @classdesc Represents a SignalIdentifier. - * @implements ISignalIdentifier - * @constructor - * @param {flyteidl.core.ISignalIdentifier=} [properties] Properties to set - */ - function SignalIdentifier(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SignalIdentifier signalId. - * @member {string} signalId - * @memberof flyteidl.core.SignalIdentifier - * @instance - */ - SignalIdentifier.prototype.signalId = ""; - - /** - * SignalIdentifier executionId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} executionId - * @memberof flyteidl.core.SignalIdentifier - * @instance - */ - SignalIdentifier.prototype.executionId = null; - - /** - * Creates a new SignalIdentifier instance using the specified properties. - * @function create - * @memberof flyteidl.core.SignalIdentifier - * @static - * @param {flyteidl.core.ISignalIdentifier=} [properties] Properties to set - * @returns {flyteidl.core.SignalIdentifier} SignalIdentifier instance - */ - SignalIdentifier.create = function create(properties) { - return new SignalIdentifier(properties); - }; - - /** - * Encodes the specified SignalIdentifier message. Does not implicitly {@link flyteidl.core.SignalIdentifier.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.SignalIdentifier - * @static - * @param {flyteidl.core.ISignalIdentifier} message SignalIdentifier message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SignalIdentifier.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.signalId != null && message.hasOwnProperty("signalId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.signalId); - if (message.executionId != null && message.hasOwnProperty("executionId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.executionId, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a SignalIdentifier message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.SignalIdentifier - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.SignalIdentifier} SignalIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SignalIdentifier.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.SignalIdentifier(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.signalId = reader.string(); - break; - case 2: - message.executionId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SignalIdentifier message. - * @function verify - * @memberof flyteidl.core.SignalIdentifier - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SignalIdentifier.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.signalId != null && message.hasOwnProperty("signalId")) - if (!$util.isString(message.signalId)) - return "signalId: string expected"; - if (message.executionId != null && message.hasOwnProperty("executionId")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.executionId); - if (error) - return "executionId." + error; - } - return null; - }; - - return SignalIdentifier; - })(); - - /** - * CatalogCacheStatus enum. - * @name flyteidl.core.CatalogCacheStatus - * @enum {string} - * @property {number} CACHE_DISABLED=0 CACHE_DISABLED value - * @property {number} CACHE_MISS=1 CACHE_MISS value - * @property {number} CACHE_HIT=2 CACHE_HIT value - * @property {number} CACHE_POPULATED=3 CACHE_POPULATED value - * @property {number} CACHE_LOOKUP_FAILURE=4 CACHE_LOOKUP_FAILURE value - * @property {number} CACHE_PUT_FAILURE=5 CACHE_PUT_FAILURE value - * @property {number} CACHE_SKIPPED=6 CACHE_SKIPPED value - * @property {number} CACHE_EVICTED=7 CACHE_EVICTED value - */ - core.CatalogCacheStatus = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "CACHE_DISABLED"] = 0; - values[valuesById[1] = "CACHE_MISS"] = 1; - values[valuesById[2] = "CACHE_HIT"] = 2; - values[valuesById[3] = "CACHE_POPULATED"] = 3; - values[valuesById[4] = "CACHE_LOOKUP_FAILURE"] = 4; - values[valuesById[5] = "CACHE_PUT_FAILURE"] = 5; - values[valuesById[6] = "CACHE_SKIPPED"] = 6; - values[valuesById[7] = "CACHE_EVICTED"] = 7; - return values; - })(); - - core.CatalogArtifactTag = (function() { - - /** - * Properties of a CatalogArtifactTag. - * @memberof flyteidl.core - * @interface ICatalogArtifactTag - * @property {string|null} [artifactId] CatalogArtifactTag artifactId - * @property {string|null} [name] CatalogArtifactTag name - */ - - /** - * Constructs a new CatalogArtifactTag. - * @memberof flyteidl.core - * @classdesc Represents a CatalogArtifactTag. - * @implements ICatalogArtifactTag - * @constructor - * @param {flyteidl.core.ICatalogArtifactTag=} [properties] Properties to set - */ - function CatalogArtifactTag(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CatalogArtifactTag artifactId. - * @member {string} artifactId - * @memberof flyteidl.core.CatalogArtifactTag - * @instance - */ - CatalogArtifactTag.prototype.artifactId = ""; - - /** - * CatalogArtifactTag name. - * @member {string} name - * @memberof flyteidl.core.CatalogArtifactTag - * @instance - */ - CatalogArtifactTag.prototype.name = ""; - - /** - * Creates a new CatalogArtifactTag instance using the specified properties. - * @function create - * @memberof flyteidl.core.CatalogArtifactTag - * @static - * @param {flyteidl.core.ICatalogArtifactTag=} [properties] Properties to set - * @returns {flyteidl.core.CatalogArtifactTag} CatalogArtifactTag instance - */ - CatalogArtifactTag.create = function create(properties) { - return new CatalogArtifactTag(properties); - }; - - /** - * Encodes the specified CatalogArtifactTag message. Does not implicitly {@link flyteidl.core.CatalogArtifactTag.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.CatalogArtifactTag - * @static - * @param {flyteidl.core.ICatalogArtifactTag} message CatalogArtifactTag message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CatalogArtifactTag.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.artifactId != null && message.hasOwnProperty("artifactId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.artifactId); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.name); - return writer; - }; - - /** - * Decodes a CatalogArtifactTag message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.CatalogArtifactTag - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.CatalogArtifactTag} CatalogArtifactTag - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CatalogArtifactTag.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.CatalogArtifactTag(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.artifactId = reader.string(); - break; - case 2: - message.name = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CatalogArtifactTag message. - * @function verify - * @memberof flyteidl.core.CatalogArtifactTag - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CatalogArtifactTag.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.artifactId != null && message.hasOwnProperty("artifactId")) - if (!$util.isString(message.artifactId)) - return "artifactId: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - return null; - }; - - return CatalogArtifactTag; - })(); - - core.CatalogMetadata = (function() { - - /** - * Properties of a CatalogMetadata. - * @memberof flyteidl.core - * @interface ICatalogMetadata - * @property {flyteidl.core.IIdentifier|null} [datasetId] CatalogMetadata datasetId - * @property {flyteidl.core.ICatalogArtifactTag|null} [artifactTag] CatalogMetadata artifactTag - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [sourceTaskExecution] CatalogMetadata sourceTaskExecution - */ - - /** - * Constructs a new CatalogMetadata. - * @memberof flyteidl.core - * @classdesc Represents a CatalogMetadata. - * @implements ICatalogMetadata - * @constructor - * @param {flyteidl.core.ICatalogMetadata=} [properties] Properties to set - */ - function CatalogMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CatalogMetadata datasetId. - * @member {flyteidl.core.IIdentifier|null|undefined} datasetId - * @memberof flyteidl.core.CatalogMetadata - * @instance - */ - CatalogMetadata.prototype.datasetId = null; - - /** - * CatalogMetadata artifactTag. - * @member {flyteidl.core.ICatalogArtifactTag|null|undefined} artifactTag - * @memberof flyteidl.core.CatalogMetadata - * @instance - */ - CatalogMetadata.prototype.artifactTag = null; - - /** - * CatalogMetadata sourceTaskExecution. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} sourceTaskExecution - * @memberof flyteidl.core.CatalogMetadata - * @instance - */ - CatalogMetadata.prototype.sourceTaskExecution = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * CatalogMetadata sourceExecution. - * @member {"sourceTaskExecution"|undefined} sourceExecution - * @memberof flyteidl.core.CatalogMetadata - * @instance - */ - Object.defineProperty(CatalogMetadata.prototype, "sourceExecution", { - get: $util.oneOfGetter($oneOfFields = ["sourceTaskExecution"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new CatalogMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.CatalogMetadata - * @static - * @param {flyteidl.core.ICatalogMetadata=} [properties] Properties to set - * @returns {flyteidl.core.CatalogMetadata} CatalogMetadata instance - */ - CatalogMetadata.create = function create(properties) { - return new CatalogMetadata(properties); - }; - - /** - * Encodes the specified CatalogMetadata message. Does not implicitly {@link flyteidl.core.CatalogMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.CatalogMetadata - * @static - * @param {flyteidl.core.ICatalogMetadata} message CatalogMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CatalogMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.datasetId != null && message.hasOwnProperty("datasetId")) - $root.flyteidl.core.Identifier.encode(message.datasetId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.artifactTag != null && message.hasOwnProperty("artifactTag")) - $root.flyteidl.core.CatalogArtifactTag.encode(message.artifactTag, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.sourceTaskExecution != null && message.hasOwnProperty("sourceTaskExecution")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.sourceTaskExecution, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CatalogMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.CatalogMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.CatalogMetadata} CatalogMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CatalogMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.CatalogMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.datasetId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.artifactTag = $root.flyteidl.core.CatalogArtifactTag.decode(reader, reader.uint32()); - break; - case 3: - message.sourceTaskExecution = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CatalogMetadata message. - * @function verify - * @memberof flyteidl.core.CatalogMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CatalogMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.datasetId != null && message.hasOwnProperty("datasetId")) { - var error = $root.flyteidl.core.Identifier.verify(message.datasetId); - if (error) - return "datasetId." + error; - } - if (message.artifactTag != null && message.hasOwnProperty("artifactTag")) { - var error = $root.flyteidl.core.CatalogArtifactTag.verify(message.artifactTag); - if (error) - return "artifactTag." + error; - } - if (message.sourceTaskExecution != null && message.hasOwnProperty("sourceTaskExecution")) { - properties.sourceExecution = 1; - { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.sourceTaskExecution); - if (error) - return "sourceTaskExecution." + error; - } - } - return null; - }; - - return CatalogMetadata; - })(); - - core.CatalogReservation = (function() { - - /** - * Properties of a CatalogReservation. - * @memberof flyteidl.core - * @interface ICatalogReservation - */ - - /** - * Constructs a new CatalogReservation. - * @memberof flyteidl.core - * @classdesc Represents a CatalogReservation. - * @implements ICatalogReservation - * @constructor - * @param {flyteidl.core.ICatalogReservation=} [properties] Properties to set - */ - function CatalogReservation(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new CatalogReservation instance using the specified properties. - * @function create - * @memberof flyteidl.core.CatalogReservation - * @static - * @param {flyteidl.core.ICatalogReservation=} [properties] Properties to set - * @returns {flyteidl.core.CatalogReservation} CatalogReservation instance - */ - CatalogReservation.create = function create(properties) { - return new CatalogReservation(properties); - }; - - /** - * Encodes the specified CatalogReservation message. Does not implicitly {@link flyteidl.core.CatalogReservation.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.CatalogReservation - * @static - * @param {flyteidl.core.ICatalogReservation} message CatalogReservation message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CatalogReservation.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a CatalogReservation message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.CatalogReservation - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.CatalogReservation} CatalogReservation - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CatalogReservation.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.CatalogReservation(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CatalogReservation message. - * @function verify - * @memberof flyteidl.core.CatalogReservation - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CatalogReservation.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - /** - * Status enum. - * @name flyteidl.core.CatalogReservation.Status - * @enum {string} - * @property {number} RESERVATION_DISABLED=0 RESERVATION_DISABLED value - * @property {number} RESERVATION_ACQUIRED=1 RESERVATION_ACQUIRED value - * @property {number} RESERVATION_EXISTS=2 RESERVATION_EXISTS value - * @property {number} RESERVATION_RELEASED=3 RESERVATION_RELEASED value - * @property {number} RESERVATION_FAILURE=4 RESERVATION_FAILURE value - */ - CatalogReservation.Status = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "RESERVATION_DISABLED"] = 0; - values[valuesById[1] = "RESERVATION_ACQUIRED"] = 1; - values[valuesById[2] = "RESERVATION_EXISTS"] = 2; - values[valuesById[3] = "RESERVATION_RELEASED"] = 3; - values[valuesById[4] = "RESERVATION_FAILURE"] = 4; - return values; - })(); - - return CatalogReservation; - })(); - - core.ConnectionSet = (function() { - - /** - * Properties of a ConnectionSet. - * @memberof flyteidl.core - * @interface IConnectionSet - * @property {Object.|null} [downstream] ConnectionSet downstream - * @property {Object.|null} [upstream] ConnectionSet upstream - */ - - /** - * Constructs a new ConnectionSet. - * @memberof flyteidl.core - * @classdesc Represents a ConnectionSet. - * @implements IConnectionSet - * @constructor - * @param {flyteidl.core.IConnectionSet=} [properties] Properties to set - */ - function ConnectionSet(properties) { - this.downstream = {}; - this.upstream = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ConnectionSet downstream. - * @member {Object.} downstream - * @memberof flyteidl.core.ConnectionSet - * @instance - */ - ConnectionSet.prototype.downstream = $util.emptyObject; - - /** - * ConnectionSet upstream. - * @member {Object.} upstream - * @memberof flyteidl.core.ConnectionSet - * @instance - */ - ConnectionSet.prototype.upstream = $util.emptyObject; - - /** - * Creates a new ConnectionSet instance using the specified properties. - * @function create - * @memberof flyteidl.core.ConnectionSet - * @static - * @param {flyteidl.core.IConnectionSet=} [properties] Properties to set - * @returns {flyteidl.core.ConnectionSet} ConnectionSet instance - */ - ConnectionSet.create = function create(properties) { - return new ConnectionSet(properties); - }; - - /** - * Encodes the specified ConnectionSet message. Does not implicitly {@link flyteidl.core.ConnectionSet.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ConnectionSet - * @static - * @param {flyteidl.core.IConnectionSet} message ConnectionSet message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ConnectionSet.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.downstream != null && message.hasOwnProperty("downstream")) - for (var keys = Object.keys(message.downstream), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 7, wireType 2 =*/58).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.flyteidl.core.ConnectionSet.IdList.encode(message.downstream[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - if (message.upstream != null && message.hasOwnProperty("upstream")) - for (var keys = Object.keys(message.upstream), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 8, wireType 2 =*/66).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.flyteidl.core.ConnectionSet.IdList.encode(message.upstream[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - return writer; - }; - - /** - * Decodes a ConnectionSet message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ConnectionSet - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ConnectionSet} ConnectionSet - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ConnectionSet.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ConnectionSet(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 7: - reader.skip().pos++; - if (message.downstream === $util.emptyObject) - message.downstream = {}; - key = reader.string(); - reader.pos++; - message.downstream[key] = $root.flyteidl.core.ConnectionSet.IdList.decode(reader, reader.uint32()); - break; - case 8: - reader.skip().pos++; - if (message.upstream === $util.emptyObject) - message.upstream = {}; - key = reader.string(); - reader.pos++; - message.upstream[key] = $root.flyteidl.core.ConnectionSet.IdList.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ConnectionSet message. - * @function verify - * @memberof flyteidl.core.ConnectionSet - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ConnectionSet.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.downstream != null && message.hasOwnProperty("downstream")) { - if (!$util.isObject(message.downstream)) - return "downstream: object expected"; - var key = Object.keys(message.downstream); - for (var i = 0; i < key.length; ++i) { - var error = $root.flyteidl.core.ConnectionSet.IdList.verify(message.downstream[key[i]]); - if (error) - return "downstream." + error; - } - } - if (message.upstream != null && message.hasOwnProperty("upstream")) { - if (!$util.isObject(message.upstream)) - return "upstream: object expected"; - var key = Object.keys(message.upstream); - for (var i = 0; i < key.length; ++i) { - var error = $root.flyteidl.core.ConnectionSet.IdList.verify(message.upstream[key[i]]); - if (error) - return "upstream." + error; - } - } - return null; - }; - - ConnectionSet.IdList = (function() { - - /** - * Properties of an IdList. - * @memberof flyteidl.core.ConnectionSet - * @interface IIdList - * @property {Array.|null} [ids] IdList ids - */ - - /** - * Constructs a new IdList. - * @memberof flyteidl.core.ConnectionSet - * @classdesc Represents an IdList. - * @implements IIdList - * @constructor - * @param {flyteidl.core.ConnectionSet.IIdList=} [properties] Properties to set - */ - function IdList(properties) { - this.ids = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * IdList ids. - * @member {Array.} ids - * @memberof flyteidl.core.ConnectionSet.IdList - * @instance - */ - IdList.prototype.ids = $util.emptyArray; - - /** - * Creates a new IdList instance using the specified properties. - * @function create - * @memberof flyteidl.core.ConnectionSet.IdList - * @static - * @param {flyteidl.core.ConnectionSet.IIdList=} [properties] Properties to set - * @returns {flyteidl.core.ConnectionSet.IdList} IdList instance - */ - IdList.create = function create(properties) { - return new IdList(properties); - }; - - /** - * Encodes the specified IdList message. Does not implicitly {@link flyteidl.core.ConnectionSet.IdList.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ConnectionSet.IdList - * @static - * @param {flyteidl.core.ConnectionSet.IIdList} message IdList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - IdList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.ids != null && message.ids.length) - for (var i = 0; i < message.ids.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.ids[i]); - return writer; - }; - - /** - * Decodes an IdList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ConnectionSet.IdList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ConnectionSet.IdList} IdList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - IdList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ConnectionSet.IdList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.ids && message.ids.length)) - message.ids = []; - message.ids.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an IdList message. - * @function verify - * @memberof flyteidl.core.ConnectionSet.IdList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - IdList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.ids != null && message.hasOwnProperty("ids")) { - if (!Array.isArray(message.ids)) - return "ids: array expected"; - for (var i = 0; i < message.ids.length; ++i) - if (!$util.isString(message.ids[i])) - return "ids: string[] expected"; - } - return null; - }; - - return IdList; - })(); - - return ConnectionSet; - })(); - - core.CompiledWorkflow = (function() { - - /** - * Properties of a CompiledWorkflow. - * @memberof flyteidl.core - * @interface ICompiledWorkflow - * @property {flyteidl.core.IWorkflowTemplate|null} [template] CompiledWorkflow template - * @property {flyteidl.core.IConnectionSet|null} [connections] CompiledWorkflow connections - */ - - /** - * Constructs a new CompiledWorkflow. - * @memberof flyteidl.core - * @classdesc Represents a CompiledWorkflow. - * @implements ICompiledWorkflow - * @constructor - * @param {flyteidl.core.ICompiledWorkflow=} [properties] Properties to set - */ - function CompiledWorkflow(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CompiledWorkflow template. - * @member {flyteidl.core.IWorkflowTemplate|null|undefined} template - * @memberof flyteidl.core.CompiledWorkflow - * @instance - */ - CompiledWorkflow.prototype.template = null; - - /** - * CompiledWorkflow connections. - * @member {flyteidl.core.IConnectionSet|null|undefined} connections - * @memberof flyteidl.core.CompiledWorkflow - * @instance - */ - CompiledWorkflow.prototype.connections = null; - - /** - * Creates a new CompiledWorkflow instance using the specified properties. - * @function create - * @memberof flyteidl.core.CompiledWorkflow - * @static - * @param {flyteidl.core.ICompiledWorkflow=} [properties] Properties to set - * @returns {flyteidl.core.CompiledWorkflow} CompiledWorkflow instance - */ - CompiledWorkflow.create = function create(properties) { - return new CompiledWorkflow(properties); - }; - - /** - * Encodes the specified CompiledWorkflow message. Does not implicitly {@link flyteidl.core.CompiledWorkflow.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.CompiledWorkflow - * @static - * @param {flyteidl.core.ICompiledWorkflow} message CompiledWorkflow message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CompiledWorkflow.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.template != null && message.hasOwnProperty("template")) - $root.flyteidl.core.WorkflowTemplate.encode(message.template, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.connections != null && message.hasOwnProperty("connections")) - $root.flyteidl.core.ConnectionSet.encode(message.connections, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CompiledWorkflow message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.CompiledWorkflow - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.CompiledWorkflow} CompiledWorkflow - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CompiledWorkflow.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.CompiledWorkflow(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.template = $root.flyteidl.core.WorkflowTemplate.decode(reader, reader.uint32()); - break; - case 2: - message.connections = $root.flyteidl.core.ConnectionSet.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CompiledWorkflow message. - * @function verify - * @memberof flyteidl.core.CompiledWorkflow - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CompiledWorkflow.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.template != null && message.hasOwnProperty("template")) { - var error = $root.flyteidl.core.WorkflowTemplate.verify(message.template); - if (error) - return "template." + error; - } - if (message.connections != null && message.hasOwnProperty("connections")) { - var error = $root.flyteidl.core.ConnectionSet.verify(message.connections); - if (error) - return "connections." + error; - } - return null; - }; - - return CompiledWorkflow; - })(); - - core.CompiledTask = (function() { - - /** - * Properties of a CompiledTask. - * @memberof flyteidl.core - * @interface ICompiledTask - * @property {flyteidl.core.ITaskTemplate|null} [template] CompiledTask template - */ - - /** - * Constructs a new CompiledTask. - * @memberof flyteidl.core - * @classdesc Represents a CompiledTask. - * @implements ICompiledTask - * @constructor - * @param {flyteidl.core.ICompiledTask=} [properties] Properties to set - */ - function CompiledTask(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CompiledTask template. - * @member {flyteidl.core.ITaskTemplate|null|undefined} template - * @memberof flyteidl.core.CompiledTask - * @instance - */ - CompiledTask.prototype.template = null; - - /** - * Creates a new CompiledTask instance using the specified properties. - * @function create - * @memberof flyteidl.core.CompiledTask - * @static - * @param {flyteidl.core.ICompiledTask=} [properties] Properties to set - * @returns {flyteidl.core.CompiledTask} CompiledTask instance - */ - CompiledTask.create = function create(properties) { - return new CompiledTask(properties); - }; - - /** - * Encodes the specified CompiledTask message. Does not implicitly {@link flyteidl.core.CompiledTask.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.CompiledTask - * @static - * @param {flyteidl.core.ICompiledTask} message CompiledTask message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CompiledTask.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.template != null && message.hasOwnProperty("template")) - $root.flyteidl.core.TaskTemplate.encode(message.template, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CompiledTask message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.CompiledTask - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.CompiledTask} CompiledTask - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CompiledTask.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.CompiledTask(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.template = $root.flyteidl.core.TaskTemplate.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CompiledTask message. - * @function verify - * @memberof flyteidl.core.CompiledTask - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CompiledTask.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.template != null && message.hasOwnProperty("template")) { - var error = $root.flyteidl.core.TaskTemplate.verify(message.template); - if (error) - return "template." + error; - } - return null; - }; - - return CompiledTask; - })(); - - core.CompiledWorkflowClosure = (function() { - - /** - * Properties of a CompiledWorkflowClosure. - * @memberof flyteidl.core - * @interface ICompiledWorkflowClosure - * @property {flyteidl.core.ICompiledWorkflow|null} [primary] CompiledWorkflowClosure primary - * @property {Array.|null} [subWorkflows] CompiledWorkflowClosure subWorkflows - * @property {Array.|null} [tasks] CompiledWorkflowClosure tasks - */ - - /** - * Constructs a new CompiledWorkflowClosure. - * @memberof flyteidl.core - * @classdesc Represents a CompiledWorkflowClosure. - * @implements ICompiledWorkflowClosure - * @constructor - * @param {flyteidl.core.ICompiledWorkflowClosure=} [properties] Properties to set - */ - function CompiledWorkflowClosure(properties) { - this.subWorkflows = []; - this.tasks = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CompiledWorkflowClosure primary. - * @member {flyteidl.core.ICompiledWorkflow|null|undefined} primary - * @memberof flyteidl.core.CompiledWorkflowClosure - * @instance - */ - CompiledWorkflowClosure.prototype.primary = null; - - /** - * CompiledWorkflowClosure subWorkflows. - * @member {Array.} subWorkflows - * @memberof flyteidl.core.CompiledWorkflowClosure - * @instance - */ - CompiledWorkflowClosure.prototype.subWorkflows = $util.emptyArray; - - /** - * CompiledWorkflowClosure tasks. - * @member {Array.} tasks - * @memberof flyteidl.core.CompiledWorkflowClosure - * @instance - */ - CompiledWorkflowClosure.prototype.tasks = $util.emptyArray; - - /** - * Creates a new CompiledWorkflowClosure instance using the specified properties. - * @function create - * @memberof flyteidl.core.CompiledWorkflowClosure - * @static - * @param {flyteidl.core.ICompiledWorkflowClosure=} [properties] Properties to set - * @returns {flyteidl.core.CompiledWorkflowClosure} CompiledWorkflowClosure instance - */ - CompiledWorkflowClosure.create = function create(properties) { - return new CompiledWorkflowClosure(properties); - }; - - /** - * Encodes the specified CompiledWorkflowClosure message. Does not implicitly {@link flyteidl.core.CompiledWorkflowClosure.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.CompiledWorkflowClosure - * @static - * @param {flyteidl.core.ICompiledWorkflowClosure} message CompiledWorkflowClosure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CompiledWorkflowClosure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.primary != null && message.hasOwnProperty("primary")) - $root.flyteidl.core.CompiledWorkflow.encode(message.primary, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.subWorkflows != null && message.subWorkflows.length) - for (var i = 0; i < message.subWorkflows.length; ++i) - $root.flyteidl.core.CompiledWorkflow.encode(message.subWorkflows[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.tasks != null && message.tasks.length) - for (var i = 0; i < message.tasks.length; ++i) - $root.flyteidl.core.CompiledTask.encode(message.tasks[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CompiledWorkflowClosure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.CompiledWorkflowClosure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.CompiledWorkflowClosure} CompiledWorkflowClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CompiledWorkflowClosure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.CompiledWorkflowClosure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.primary = $root.flyteidl.core.CompiledWorkflow.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.subWorkflows && message.subWorkflows.length)) - message.subWorkflows = []; - message.subWorkflows.push($root.flyteidl.core.CompiledWorkflow.decode(reader, reader.uint32())); - break; - case 3: - if (!(message.tasks && message.tasks.length)) - message.tasks = []; - message.tasks.push($root.flyteidl.core.CompiledTask.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CompiledWorkflowClosure message. - * @function verify - * @memberof flyteidl.core.CompiledWorkflowClosure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CompiledWorkflowClosure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.primary != null && message.hasOwnProperty("primary")) { - var error = $root.flyteidl.core.CompiledWorkflow.verify(message.primary); - if (error) - return "primary." + error; - } - if (message.subWorkflows != null && message.hasOwnProperty("subWorkflows")) { - if (!Array.isArray(message.subWorkflows)) - return "subWorkflows: array expected"; - for (var i = 0; i < message.subWorkflows.length; ++i) { - var error = $root.flyteidl.core.CompiledWorkflow.verify(message.subWorkflows[i]); - if (error) - return "subWorkflows." + error; - } - } - if (message.tasks != null && message.hasOwnProperty("tasks")) { - if (!Array.isArray(message.tasks)) - return "tasks: array expected"; - for (var i = 0; i < message.tasks.length; ++i) { - var error = $root.flyteidl.core.CompiledTask.verify(message.tasks[i]); - if (error) - return "tasks." + error; - } - } - return null; - }; - - return CompiledWorkflowClosure; - })(); - - core.IfBlock = (function() { - - /** - * Properties of an IfBlock. - * @memberof flyteidl.core - * @interface IIfBlock - * @property {flyteidl.core.IBooleanExpression|null} [condition] IfBlock condition - * @property {flyteidl.core.INode|null} [thenNode] IfBlock thenNode - */ - - /** - * Constructs a new IfBlock. - * @memberof flyteidl.core - * @classdesc Represents an IfBlock. - * @implements IIfBlock - * @constructor - * @param {flyteidl.core.IIfBlock=} [properties] Properties to set - */ - function IfBlock(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * IfBlock condition. - * @member {flyteidl.core.IBooleanExpression|null|undefined} condition - * @memberof flyteidl.core.IfBlock - * @instance - */ - IfBlock.prototype.condition = null; - - /** - * IfBlock thenNode. - * @member {flyteidl.core.INode|null|undefined} thenNode - * @memberof flyteidl.core.IfBlock - * @instance - */ - IfBlock.prototype.thenNode = null; - - /** - * Creates a new IfBlock instance using the specified properties. - * @function create - * @memberof flyteidl.core.IfBlock - * @static - * @param {flyteidl.core.IIfBlock=} [properties] Properties to set - * @returns {flyteidl.core.IfBlock} IfBlock instance - */ - IfBlock.create = function create(properties) { - return new IfBlock(properties); - }; - - /** - * Encodes the specified IfBlock message. Does not implicitly {@link flyteidl.core.IfBlock.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.IfBlock - * @static - * @param {flyteidl.core.IIfBlock} message IfBlock message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - IfBlock.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.condition != null && message.hasOwnProperty("condition")) - $root.flyteidl.core.BooleanExpression.encode(message.condition, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.thenNode != null && message.hasOwnProperty("thenNode")) - $root.flyteidl.core.Node.encode(message.thenNode, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an IfBlock message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.IfBlock - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.IfBlock} IfBlock - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - IfBlock.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.IfBlock(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.condition = $root.flyteidl.core.BooleanExpression.decode(reader, reader.uint32()); - break; - case 2: - message.thenNode = $root.flyteidl.core.Node.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an IfBlock message. - * @function verify - * @memberof flyteidl.core.IfBlock - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - IfBlock.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.condition != null && message.hasOwnProperty("condition")) { - var error = $root.flyteidl.core.BooleanExpression.verify(message.condition); - if (error) - return "condition." + error; - } - if (message.thenNode != null && message.hasOwnProperty("thenNode")) { - var error = $root.flyteidl.core.Node.verify(message.thenNode); - if (error) - return "thenNode." + error; - } - return null; - }; - - return IfBlock; - })(); - - core.IfElseBlock = (function() { - - /** - * Properties of an IfElseBlock. - * @memberof flyteidl.core - * @interface IIfElseBlock - * @property {flyteidl.core.IIfBlock|null} ["case"] IfElseBlock case - * @property {Array.|null} [other] IfElseBlock other - * @property {flyteidl.core.INode|null} [elseNode] IfElseBlock elseNode - * @property {flyteidl.core.IError|null} [error] IfElseBlock error - */ - - /** - * Constructs a new IfElseBlock. - * @memberof flyteidl.core - * @classdesc Represents an IfElseBlock. - * @implements IIfElseBlock - * @constructor - * @param {flyteidl.core.IIfElseBlock=} [properties] Properties to set - */ - function IfElseBlock(properties) { - this.other = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * IfElseBlock case. - * @member {flyteidl.core.IIfBlock|null|undefined} case - * @memberof flyteidl.core.IfElseBlock - * @instance - */ - IfElseBlock.prototype["case"] = null; - - /** - * IfElseBlock other. - * @member {Array.} other - * @memberof flyteidl.core.IfElseBlock - * @instance - */ - IfElseBlock.prototype.other = $util.emptyArray; - - /** - * IfElseBlock elseNode. - * @member {flyteidl.core.INode|null|undefined} elseNode - * @memberof flyteidl.core.IfElseBlock - * @instance - */ - IfElseBlock.prototype.elseNode = null; - - /** - * IfElseBlock error. - * @member {flyteidl.core.IError|null|undefined} error - * @memberof flyteidl.core.IfElseBlock - * @instance - */ - IfElseBlock.prototype.error = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * IfElseBlock default. - * @member {"elseNode"|"error"|undefined} default_ - * @memberof flyteidl.core.IfElseBlock - * @instance - */ - Object.defineProperty(IfElseBlock.prototype, "default", { - get: $util.oneOfGetter($oneOfFields = ["elseNode", "error"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new IfElseBlock instance using the specified properties. - * @function create - * @memberof flyteidl.core.IfElseBlock - * @static - * @param {flyteidl.core.IIfElseBlock=} [properties] Properties to set - * @returns {flyteidl.core.IfElseBlock} IfElseBlock instance - */ - IfElseBlock.create = function create(properties) { - return new IfElseBlock(properties); - }; - - /** - * Encodes the specified IfElseBlock message. Does not implicitly {@link flyteidl.core.IfElseBlock.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.IfElseBlock - * @static - * @param {flyteidl.core.IIfElseBlock} message IfElseBlock message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - IfElseBlock.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message["case"] != null && message.hasOwnProperty("case")) - $root.flyteidl.core.IfBlock.encode(message["case"], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.other != null && message.other.length) - for (var i = 0; i < message.other.length; ++i) - $root.flyteidl.core.IfBlock.encode(message.other[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.elseNode != null && message.hasOwnProperty("elseNode")) - $root.flyteidl.core.Node.encode(message.elseNode, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.Error.encode(message.error, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an IfElseBlock message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.IfElseBlock - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.IfElseBlock} IfElseBlock - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - IfElseBlock.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.IfElseBlock(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message["case"] = $root.flyteidl.core.IfBlock.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.other && message.other.length)) - message.other = []; - message.other.push($root.flyteidl.core.IfBlock.decode(reader, reader.uint32())); - break; - case 3: - message.elseNode = $root.flyteidl.core.Node.decode(reader, reader.uint32()); - break; - case 4: - message.error = $root.flyteidl.core.Error.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an IfElseBlock message. - * @function verify - * @memberof flyteidl.core.IfElseBlock - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - IfElseBlock.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message["case"] != null && message.hasOwnProperty("case")) { - var error = $root.flyteidl.core.IfBlock.verify(message["case"]); - if (error) - return "case." + error; - } - if (message.other != null && message.hasOwnProperty("other")) { - if (!Array.isArray(message.other)) - return "other: array expected"; - for (var i = 0; i < message.other.length; ++i) { - var error = $root.flyteidl.core.IfBlock.verify(message.other[i]); - if (error) - return "other." + error; - } - } - if (message.elseNode != null && message.hasOwnProperty("elseNode")) { - properties["default"] = 1; - { - var error = $root.flyteidl.core.Node.verify(message.elseNode); - if (error) - return "elseNode." + error; - } - } - if (message.error != null && message.hasOwnProperty("error")) { - if (properties["default"] === 1) - return "default: multiple values"; - properties["default"] = 1; - { - var error = $root.flyteidl.core.Error.verify(message.error); - if (error) - return "error." + error; - } - } - return null; - }; - - return IfElseBlock; - })(); - - core.BranchNode = (function() { - - /** - * Properties of a BranchNode. - * @memberof flyteidl.core - * @interface IBranchNode - * @property {flyteidl.core.IIfElseBlock|null} [ifElse] BranchNode ifElse - */ - - /** - * Constructs a new BranchNode. - * @memberof flyteidl.core - * @classdesc Represents a BranchNode. - * @implements IBranchNode - * @constructor - * @param {flyteidl.core.IBranchNode=} [properties] Properties to set - */ - function BranchNode(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BranchNode ifElse. - * @member {flyteidl.core.IIfElseBlock|null|undefined} ifElse - * @memberof flyteidl.core.BranchNode - * @instance - */ - BranchNode.prototype.ifElse = null; - - /** - * Creates a new BranchNode instance using the specified properties. - * @function create - * @memberof flyteidl.core.BranchNode - * @static - * @param {flyteidl.core.IBranchNode=} [properties] Properties to set - * @returns {flyteidl.core.BranchNode} BranchNode instance - */ - BranchNode.create = function create(properties) { - return new BranchNode(properties); - }; - - /** - * Encodes the specified BranchNode message. Does not implicitly {@link flyteidl.core.BranchNode.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.BranchNode - * @static - * @param {flyteidl.core.IBranchNode} message BranchNode message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BranchNode.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.ifElse != null && message.hasOwnProperty("ifElse")) - $root.flyteidl.core.IfElseBlock.encode(message.ifElse, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a BranchNode message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.BranchNode - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.BranchNode} BranchNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BranchNode.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.BranchNode(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.ifElse = $root.flyteidl.core.IfElseBlock.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BranchNode message. - * @function verify - * @memberof flyteidl.core.BranchNode - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BranchNode.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.ifElse != null && message.hasOwnProperty("ifElse")) { - var error = $root.flyteidl.core.IfElseBlock.verify(message.ifElse); - if (error) - return "ifElse." + error; - } - return null; - }; - - return BranchNode; - })(); - - core.TaskNode = (function() { - - /** - * Properties of a TaskNode. - * @memberof flyteidl.core - * @interface ITaskNode - * @property {flyteidl.core.IIdentifier|null} [referenceId] TaskNode referenceId - * @property {flyteidl.core.ITaskNodeOverrides|null} [overrides] TaskNode overrides - */ - - /** - * Constructs a new TaskNode. - * @memberof flyteidl.core - * @classdesc Represents a TaskNode. - * @implements ITaskNode - * @constructor - * @param {flyteidl.core.ITaskNode=} [properties] Properties to set - */ - function TaskNode(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskNode referenceId. - * @member {flyteidl.core.IIdentifier|null|undefined} referenceId - * @memberof flyteidl.core.TaskNode - * @instance - */ - TaskNode.prototype.referenceId = null; - - /** - * TaskNode overrides. - * @member {flyteidl.core.ITaskNodeOverrides|null|undefined} overrides - * @memberof flyteidl.core.TaskNode - * @instance - */ - TaskNode.prototype.overrides = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * TaskNode reference. - * @member {"referenceId"|undefined} reference - * @memberof flyteidl.core.TaskNode - * @instance - */ - Object.defineProperty(TaskNode.prototype, "reference", { - get: $util.oneOfGetter($oneOfFields = ["referenceId"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new TaskNode instance using the specified properties. - * @function create - * @memberof flyteidl.core.TaskNode - * @static - * @param {flyteidl.core.ITaskNode=} [properties] Properties to set - * @returns {flyteidl.core.TaskNode} TaskNode instance - */ - TaskNode.create = function create(properties) { - return new TaskNode(properties); - }; - - /** - * Encodes the specified TaskNode message. Does not implicitly {@link flyteidl.core.TaskNode.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TaskNode - * @static - * @param {flyteidl.core.ITaskNode} message TaskNode message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskNode.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.referenceId != null && message.hasOwnProperty("referenceId")) - $root.flyteidl.core.Identifier.encode(message.referenceId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.overrides != null && message.hasOwnProperty("overrides")) - $root.flyteidl.core.TaskNodeOverrides.encode(message.overrides, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskNode message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TaskNode - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TaskNode} TaskNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskNode.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TaskNode(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.referenceId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.overrides = $root.flyteidl.core.TaskNodeOverrides.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskNode message. - * @function verify - * @memberof flyteidl.core.TaskNode - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskNode.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.referenceId != null && message.hasOwnProperty("referenceId")) { - properties.reference = 1; - { - var error = $root.flyteidl.core.Identifier.verify(message.referenceId); - if (error) - return "referenceId." + error; - } - } - if (message.overrides != null && message.hasOwnProperty("overrides")) { - var error = $root.flyteidl.core.TaskNodeOverrides.verify(message.overrides); - if (error) - return "overrides." + error; - } - return null; - }; - - return TaskNode; - })(); - - core.WorkflowNode = (function() { - - /** - * Properties of a WorkflowNode. - * @memberof flyteidl.core - * @interface IWorkflowNode - * @property {flyteidl.core.IIdentifier|null} [launchplanRef] WorkflowNode launchplanRef - * @property {flyteidl.core.IIdentifier|null} [subWorkflowRef] WorkflowNode subWorkflowRef - */ - - /** - * Constructs a new WorkflowNode. - * @memberof flyteidl.core - * @classdesc Represents a WorkflowNode. - * @implements IWorkflowNode - * @constructor - * @param {flyteidl.core.IWorkflowNode=} [properties] Properties to set - */ - function WorkflowNode(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowNode launchplanRef. - * @member {flyteidl.core.IIdentifier|null|undefined} launchplanRef - * @memberof flyteidl.core.WorkflowNode - * @instance - */ - WorkflowNode.prototype.launchplanRef = null; - - /** - * WorkflowNode subWorkflowRef. - * @member {flyteidl.core.IIdentifier|null|undefined} subWorkflowRef - * @memberof flyteidl.core.WorkflowNode - * @instance - */ - WorkflowNode.prototype.subWorkflowRef = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * WorkflowNode reference. - * @member {"launchplanRef"|"subWorkflowRef"|undefined} reference - * @memberof flyteidl.core.WorkflowNode - * @instance - */ - Object.defineProperty(WorkflowNode.prototype, "reference", { - get: $util.oneOfGetter($oneOfFields = ["launchplanRef", "subWorkflowRef"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new WorkflowNode instance using the specified properties. - * @function create - * @memberof flyteidl.core.WorkflowNode - * @static - * @param {flyteidl.core.IWorkflowNode=} [properties] Properties to set - * @returns {flyteidl.core.WorkflowNode} WorkflowNode instance - */ - WorkflowNode.create = function create(properties) { - return new WorkflowNode(properties); - }; - - /** - * Encodes the specified WorkflowNode message. Does not implicitly {@link flyteidl.core.WorkflowNode.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.WorkflowNode - * @static - * @param {flyteidl.core.IWorkflowNode} message WorkflowNode message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowNode.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.launchplanRef != null && message.hasOwnProperty("launchplanRef")) - $root.flyteidl.core.Identifier.encode(message.launchplanRef, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.subWorkflowRef != null && message.hasOwnProperty("subWorkflowRef")) - $root.flyteidl.core.Identifier.encode(message.subWorkflowRef, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowNode message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.WorkflowNode - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.WorkflowNode} WorkflowNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowNode.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.WorkflowNode(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.launchplanRef = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.subWorkflowRef = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowNode message. - * @function verify - * @memberof flyteidl.core.WorkflowNode - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowNode.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.launchplanRef != null && message.hasOwnProperty("launchplanRef")) { - properties.reference = 1; - { - var error = $root.flyteidl.core.Identifier.verify(message.launchplanRef); - if (error) - return "launchplanRef." + error; - } - } - if (message.subWorkflowRef != null && message.hasOwnProperty("subWorkflowRef")) { - if (properties.reference === 1) - return "reference: multiple values"; - properties.reference = 1; - { - var error = $root.flyteidl.core.Identifier.verify(message.subWorkflowRef); - if (error) - return "subWorkflowRef." + error; - } - } - return null; - }; - - return WorkflowNode; - })(); - - core.ApproveCondition = (function() { - - /** - * Properties of an ApproveCondition. - * @memberof flyteidl.core - * @interface IApproveCondition - * @property {string|null} [signalId] ApproveCondition signalId - */ - - /** - * Constructs a new ApproveCondition. - * @memberof flyteidl.core - * @classdesc Represents an ApproveCondition. - * @implements IApproveCondition - * @constructor - * @param {flyteidl.core.IApproveCondition=} [properties] Properties to set - */ - function ApproveCondition(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ApproveCondition signalId. - * @member {string} signalId - * @memberof flyteidl.core.ApproveCondition - * @instance - */ - ApproveCondition.prototype.signalId = ""; - - /** - * Creates a new ApproveCondition instance using the specified properties. - * @function create - * @memberof flyteidl.core.ApproveCondition - * @static - * @param {flyteidl.core.IApproveCondition=} [properties] Properties to set - * @returns {flyteidl.core.ApproveCondition} ApproveCondition instance - */ - ApproveCondition.create = function create(properties) { - return new ApproveCondition(properties); - }; - - /** - * Encodes the specified ApproveCondition message. Does not implicitly {@link flyteidl.core.ApproveCondition.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ApproveCondition - * @static - * @param {flyteidl.core.IApproveCondition} message ApproveCondition message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ApproveCondition.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.signalId != null && message.hasOwnProperty("signalId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.signalId); - return writer; - }; - - /** - * Decodes an ApproveCondition message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ApproveCondition - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ApproveCondition} ApproveCondition - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ApproveCondition.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ApproveCondition(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.signalId = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ApproveCondition message. - * @function verify - * @memberof flyteidl.core.ApproveCondition - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ApproveCondition.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.signalId != null && message.hasOwnProperty("signalId")) - if (!$util.isString(message.signalId)) - return "signalId: string expected"; - return null; - }; - - return ApproveCondition; - })(); - - core.SignalCondition = (function() { - - /** - * Properties of a SignalCondition. - * @memberof flyteidl.core - * @interface ISignalCondition - * @property {string|null} [signalId] SignalCondition signalId - * @property {flyteidl.core.ILiteralType|null} [type] SignalCondition type - * @property {string|null} [outputVariableName] SignalCondition outputVariableName - */ - - /** - * Constructs a new SignalCondition. - * @memberof flyteidl.core - * @classdesc Represents a SignalCondition. - * @implements ISignalCondition - * @constructor - * @param {flyteidl.core.ISignalCondition=} [properties] Properties to set - */ - function SignalCondition(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SignalCondition signalId. - * @member {string} signalId - * @memberof flyteidl.core.SignalCondition - * @instance - */ - SignalCondition.prototype.signalId = ""; - - /** - * SignalCondition type. - * @member {flyteidl.core.ILiteralType|null|undefined} type - * @memberof flyteidl.core.SignalCondition - * @instance - */ - SignalCondition.prototype.type = null; - - /** - * SignalCondition outputVariableName. - * @member {string} outputVariableName - * @memberof flyteidl.core.SignalCondition - * @instance - */ - SignalCondition.prototype.outputVariableName = ""; - - /** - * Creates a new SignalCondition instance using the specified properties. - * @function create - * @memberof flyteidl.core.SignalCondition - * @static - * @param {flyteidl.core.ISignalCondition=} [properties] Properties to set - * @returns {flyteidl.core.SignalCondition} SignalCondition instance - */ - SignalCondition.create = function create(properties) { - return new SignalCondition(properties); - }; - - /** - * Encodes the specified SignalCondition message. Does not implicitly {@link flyteidl.core.SignalCondition.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.SignalCondition - * @static - * @param {flyteidl.core.ISignalCondition} message SignalCondition message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SignalCondition.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.signalId != null && message.hasOwnProperty("signalId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.signalId); - if (message.type != null && message.hasOwnProperty("type")) - $root.flyteidl.core.LiteralType.encode(message.type, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.outputVariableName != null && message.hasOwnProperty("outputVariableName")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.outputVariableName); - return writer; - }; - - /** - * Decodes a SignalCondition message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.SignalCondition - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.SignalCondition} SignalCondition - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SignalCondition.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.SignalCondition(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.signalId = reader.string(); - break; - case 2: - message.type = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - case 3: - message.outputVariableName = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SignalCondition message. - * @function verify - * @memberof flyteidl.core.SignalCondition - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SignalCondition.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.signalId != null && message.hasOwnProperty("signalId")) - if (!$util.isString(message.signalId)) - return "signalId: string expected"; - if (message.type != null && message.hasOwnProperty("type")) { - var error = $root.flyteidl.core.LiteralType.verify(message.type); - if (error) - return "type." + error; - } - if (message.outputVariableName != null && message.hasOwnProperty("outputVariableName")) - if (!$util.isString(message.outputVariableName)) - return "outputVariableName: string expected"; - return null; - }; - - return SignalCondition; - })(); - - core.SleepCondition = (function() { - - /** - * Properties of a SleepCondition. - * @memberof flyteidl.core - * @interface ISleepCondition - * @property {google.protobuf.IDuration|null} [duration] SleepCondition duration - */ - - /** - * Constructs a new SleepCondition. - * @memberof flyteidl.core - * @classdesc Represents a SleepCondition. - * @implements ISleepCondition - * @constructor - * @param {flyteidl.core.ISleepCondition=} [properties] Properties to set - */ - function SleepCondition(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SleepCondition duration. - * @member {google.protobuf.IDuration|null|undefined} duration - * @memberof flyteidl.core.SleepCondition - * @instance - */ - SleepCondition.prototype.duration = null; - - /** - * Creates a new SleepCondition instance using the specified properties. - * @function create - * @memberof flyteidl.core.SleepCondition - * @static - * @param {flyteidl.core.ISleepCondition=} [properties] Properties to set - * @returns {flyteidl.core.SleepCondition} SleepCondition instance - */ - SleepCondition.create = function create(properties) { - return new SleepCondition(properties); - }; - - /** - * Encodes the specified SleepCondition message. Does not implicitly {@link flyteidl.core.SleepCondition.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.SleepCondition - * @static - * @param {flyteidl.core.ISleepCondition} message SleepCondition message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SleepCondition.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.duration != null && message.hasOwnProperty("duration")) - $root.google.protobuf.Duration.encode(message.duration, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a SleepCondition message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.SleepCondition - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.SleepCondition} SleepCondition - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SleepCondition.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.SleepCondition(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.duration = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SleepCondition message. - * @function verify - * @memberof flyteidl.core.SleepCondition - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SleepCondition.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.duration != null && message.hasOwnProperty("duration")) { - var error = $root.google.protobuf.Duration.verify(message.duration); - if (error) - return "duration." + error; - } - return null; - }; - - return SleepCondition; - })(); - - core.GateNode = (function() { - - /** - * Properties of a GateNode. - * @memberof flyteidl.core - * @interface IGateNode - * @property {flyteidl.core.IApproveCondition|null} [approve] GateNode approve - * @property {flyteidl.core.ISignalCondition|null} [signal] GateNode signal - * @property {flyteidl.core.ISleepCondition|null} [sleep] GateNode sleep - */ - - /** - * Constructs a new GateNode. - * @memberof flyteidl.core - * @classdesc Represents a GateNode. - * @implements IGateNode - * @constructor - * @param {flyteidl.core.IGateNode=} [properties] Properties to set - */ - function GateNode(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GateNode approve. - * @member {flyteidl.core.IApproveCondition|null|undefined} approve - * @memberof flyteidl.core.GateNode - * @instance - */ - GateNode.prototype.approve = null; - - /** - * GateNode signal. - * @member {flyteidl.core.ISignalCondition|null|undefined} signal - * @memberof flyteidl.core.GateNode - * @instance - */ - GateNode.prototype.signal = null; - - /** - * GateNode sleep. - * @member {flyteidl.core.ISleepCondition|null|undefined} sleep - * @memberof flyteidl.core.GateNode - * @instance - */ - GateNode.prototype.sleep = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * GateNode condition. - * @member {"approve"|"signal"|"sleep"|undefined} condition - * @memberof flyteidl.core.GateNode - * @instance - */ - Object.defineProperty(GateNode.prototype, "condition", { - get: $util.oneOfGetter($oneOfFields = ["approve", "signal", "sleep"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new GateNode instance using the specified properties. - * @function create - * @memberof flyteidl.core.GateNode - * @static - * @param {flyteidl.core.IGateNode=} [properties] Properties to set - * @returns {flyteidl.core.GateNode} GateNode instance - */ - GateNode.create = function create(properties) { - return new GateNode(properties); - }; - - /** - * Encodes the specified GateNode message. Does not implicitly {@link flyteidl.core.GateNode.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.GateNode - * @static - * @param {flyteidl.core.IGateNode} message GateNode message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GateNode.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.approve != null && message.hasOwnProperty("approve")) - $root.flyteidl.core.ApproveCondition.encode(message.approve, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.signal != null && message.hasOwnProperty("signal")) - $root.flyteidl.core.SignalCondition.encode(message.signal, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.sleep != null && message.hasOwnProperty("sleep")) - $root.flyteidl.core.SleepCondition.encode(message.sleep, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GateNode message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.GateNode - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.GateNode} GateNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GateNode.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.GateNode(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.approve = $root.flyteidl.core.ApproveCondition.decode(reader, reader.uint32()); - break; - case 2: - message.signal = $root.flyteidl.core.SignalCondition.decode(reader, reader.uint32()); - break; - case 3: - message.sleep = $root.flyteidl.core.SleepCondition.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GateNode message. - * @function verify - * @memberof flyteidl.core.GateNode - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GateNode.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.approve != null && message.hasOwnProperty("approve")) { - properties.condition = 1; - { - var error = $root.flyteidl.core.ApproveCondition.verify(message.approve); - if (error) - return "approve." + error; - } - } - if (message.signal != null && message.hasOwnProperty("signal")) { - if (properties.condition === 1) - return "condition: multiple values"; - properties.condition = 1; - { - var error = $root.flyteidl.core.SignalCondition.verify(message.signal); - if (error) - return "signal." + error; - } - } - if (message.sleep != null && message.hasOwnProperty("sleep")) { - if (properties.condition === 1) - return "condition: multiple values"; - properties.condition = 1; - { - var error = $root.flyteidl.core.SleepCondition.verify(message.sleep); - if (error) - return "sleep." + error; - } - } - return null; - }; - - return GateNode; - })(); - - core.ArrayNode = (function() { - - /** - * Properties of an ArrayNode. - * @memberof flyteidl.core - * @interface IArrayNode - * @property {flyteidl.core.INode|null} [node] ArrayNode node - * @property {number|null} [parallelism] ArrayNode parallelism - * @property {number|null} [minSuccesses] ArrayNode minSuccesses - * @property {number|null} [minSuccessRatio] ArrayNode minSuccessRatio - */ - - /** - * Constructs a new ArrayNode. - * @memberof flyteidl.core - * @classdesc Represents an ArrayNode. - * @implements IArrayNode - * @constructor - * @param {flyteidl.core.IArrayNode=} [properties] Properties to set - */ - function ArrayNode(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ArrayNode node. - * @member {flyteidl.core.INode|null|undefined} node - * @memberof flyteidl.core.ArrayNode - * @instance - */ - ArrayNode.prototype.node = null; - - /** - * ArrayNode parallelism. - * @member {number} parallelism - * @memberof flyteidl.core.ArrayNode - * @instance - */ - ArrayNode.prototype.parallelism = 0; - - /** - * ArrayNode minSuccesses. - * @member {number} minSuccesses - * @memberof flyteidl.core.ArrayNode - * @instance - */ - ArrayNode.prototype.minSuccesses = 0; - - /** - * ArrayNode minSuccessRatio. - * @member {number} minSuccessRatio - * @memberof flyteidl.core.ArrayNode - * @instance - */ - ArrayNode.prototype.minSuccessRatio = 0; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * ArrayNode successCriteria. - * @member {"minSuccesses"|"minSuccessRatio"|undefined} successCriteria - * @memberof flyteidl.core.ArrayNode - * @instance - */ - Object.defineProperty(ArrayNode.prototype, "successCriteria", { - get: $util.oneOfGetter($oneOfFields = ["minSuccesses", "minSuccessRatio"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new ArrayNode instance using the specified properties. - * @function create - * @memberof flyteidl.core.ArrayNode - * @static - * @param {flyteidl.core.IArrayNode=} [properties] Properties to set - * @returns {flyteidl.core.ArrayNode} ArrayNode instance - */ - ArrayNode.create = function create(properties) { - return new ArrayNode(properties); - }; - - /** - * Encodes the specified ArrayNode message. Does not implicitly {@link flyteidl.core.ArrayNode.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ArrayNode - * @static - * @param {flyteidl.core.IArrayNode} message ArrayNode message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ArrayNode.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.node != null && message.hasOwnProperty("node")) - $root.flyteidl.core.Node.encode(message.node, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.parallelism != null && message.hasOwnProperty("parallelism")) - writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.parallelism); - if (message.minSuccesses != null && message.hasOwnProperty("minSuccesses")) - writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.minSuccesses); - if (message.minSuccessRatio != null && message.hasOwnProperty("minSuccessRatio")) - writer.uint32(/* id 4, wireType 5 =*/37).float(message.minSuccessRatio); - return writer; - }; - - /** - * Decodes an ArrayNode message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ArrayNode - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ArrayNode} ArrayNode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ArrayNode.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ArrayNode(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.node = $root.flyteidl.core.Node.decode(reader, reader.uint32()); - break; - case 2: - message.parallelism = reader.uint32(); - break; - case 3: - message.minSuccesses = reader.uint32(); - break; - case 4: - message.minSuccessRatio = reader.float(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ArrayNode message. - * @function verify - * @memberof flyteidl.core.ArrayNode - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ArrayNode.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.node != null && message.hasOwnProperty("node")) { - var error = $root.flyteidl.core.Node.verify(message.node); - if (error) - return "node." + error; - } - if (message.parallelism != null && message.hasOwnProperty("parallelism")) - if (!$util.isInteger(message.parallelism)) - return "parallelism: integer expected"; - if (message.minSuccesses != null && message.hasOwnProperty("minSuccesses")) { - properties.successCriteria = 1; - if (!$util.isInteger(message.minSuccesses)) - return "minSuccesses: integer expected"; - } - if (message.minSuccessRatio != null && message.hasOwnProperty("minSuccessRatio")) { - if (properties.successCriteria === 1) - return "successCriteria: multiple values"; - properties.successCriteria = 1; - if (typeof message.minSuccessRatio !== "number") - return "minSuccessRatio: number expected"; - } - return null; - }; - - return ArrayNode; - })(); - - core.NodeMetadata = (function() { - - /** - * Properties of a NodeMetadata. - * @memberof flyteidl.core - * @interface INodeMetadata - * @property {string|null} [name] NodeMetadata name - * @property {google.protobuf.IDuration|null} [timeout] NodeMetadata timeout - * @property {flyteidl.core.IRetryStrategy|null} [retries] NodeMetadata retries - * @property {boolean|null} [interruptible] NodeMetadata interruptible - */ - - /** - * Constructs a new NodeMetadata. - * @memberof flyteidl.core - * @classdesc Represents a NodeMetadata. - * @implements INodeMetadata - * @constructor - * @param {flyteidl.core.INodeMetadata=} [properties] Properties to set - */ - function NodeMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeMetadata name. - * @member {string} name - * @memberof flyteidl.core.NodeMetadata - * @instance - */ - NodeMetadata.prototype.name = ""; - - /** - * NodeMetadata timeout. - * @member {google.protobuf.IDuration|null|undefined} timeout - * @memberof flyteidl.core.NodeMetadata - * @instance - */ - NodeMetadata.prototype.timeout = null; - - /** - * NodeMetadata retries. - * @member {flyteidl.core.IRetryStrategy|null|undefined} retries - * @memberof flyteidl.core.NodeMetadata - * @instance - */ - NodeMetadata.prototype.retries = null; - - /** - * NodeMetadata interruptible. - * @member {boolean} interruptible - * @memberof flyteidl.core.NodeMetadata - * @instance - */ - NodeMetadata.prototype.interruptible = false; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * NodeMetadata interruptibleValue. - * @member {"interruptible"|undefined} interruptibleValue - * @memberof flyteidl.core.NodeMetadata - * @instance - */ - Object.defineProperty(NodeMetadata.prototype, "interruptibleValue", { - get: $util.oneOfGetter($oneOfFields = ["interruptible"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new NodeMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.NodeMetadata - * @static - * @param {flyteidl.core.INodeMetadata=} [properties] Properties to set - * @returns {flyteidl.core.NodeMetadata} NodeMetadata instance - */ - NodeMetadata.create = function create(properties) { - return new NodeMetadata(properties); - }; - - /** - * Encodes the specified NodeMetadata message. Does not implicitly {@link flyteidl.core.NodeMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.NodeMetadata - * @static - * @param {flyteidl.core.INodeMetadata} message NodeMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.timeout != null && message.hasOwnProperty("timeout")) - $root.google.protobuf.Duration.encode(message.timeout, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.retries != null && message.hasOwnProperty("retries")) - $root.flyteidl.core.RetryStrategy.encode(message.retries, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.interruptible != null && message.hasOwnProperty("interruptible")) - writer.uint32(/* id 6, wireType 0 =*/48).bool(message.interruptible); - return writer; - }; - - /** - * Decodes a NodeMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.NodeMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.NodeMetadata} NodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.NodeMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 4: - message.timeout = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - case 5: - message.retries = $root.flyteidl.core.RetryStrategy.decode(reader, reader.uint32()); - break; - case 6: - message.interruptible = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeMetadata message. - * @function verify - * @memberof flyteidl.core.NodeMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.timeout != null && message.hasOwnProperty("timeout")) { - var error = $root.google.protobuf.Duration.verify(message.timeout); - if (error) - return "timeout." + error; - } - if (message.retries != null && message.hasOwnProperty("retries")) { - var error = $root.flyteidl.core.RetryStrategy.verify(message.retries); - if (error) - return "retries." + error; - } - if (message.interruptible != null && message.hasOwnProperty("interruptible")) { - properties.interruptibleValue = 1; - if (typeof message.interruptible !== "boolean") - return "interruptible: boolean expected"; - } - return null; - }; - - return NodeMetadata; - })(); - - core.Alias = (function() { - - /** - * Properties of an Alias. - * @memberof flyteidl.core - * @interface IAlias - * @property {string|null} ["var"] Alias var - * @property {string|null} [alias] Alias alias - */ - - /** - * Constructs a new Alias. - * @memberof flyteidl.core - * @classdesc Represents an Alias. - * @implements IAlias - * @constructor - * @param {flyteidl.core.IAlias=} [properties] Properties to set - */ - function Alias(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Alias var. - * @member {string} var - * @memberof flyteidl.core.Alias - * @instance - */ - Alias.prototype["var"] = ""; - - /** - * Alias alias. - * @member {string} alias - * @memberof flyteidl.core.Alias - * @instance - */ - Alias.prototype.alias = ""; - - /** - * Creates a new Alias instance using the specified properties. - * @function create - * @memberof flyteidl.core.Alias - * @static - * @param {flyteidl.core.IAlias=} [properties] Properties to set - * @returns {flyteidl.core.Alias} Alias instance - */ - Alias.create = function create(properties) { - return new Alias(properties); - }; - - /** - * Encodes the specified Alias message. Does not implicitly {@link flyteidl.core.Alias.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Alias - * @static - * @param {flyteidl.core.IAlias} message Alias message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Alias.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message["var"] != null && message.hasOwnProperty("var")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message["var"]); - if (message.alias != null && message.hasOwnProperty("alias")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.alias); - return writer; - }; - - /** - * Decodes an Alias message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Alias - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Alias} Alias - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Alias.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Alias(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message["var"] = reader.string(); - break; - case 2: - message.alias = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Alias message. - * @function verify - * @memberof flyteidl.core.Alias - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Alias.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message["var"] != null && message.hasOwnProperty("var")) - if (!$util.isString(message["var"])) - return "var: string expected"; - if (message.alias != null && message.hasOwnProperty("alias")) - if (!$util.isString(message.alias)) - return "alias: string expected"; - return null; - }; - - return Alias; - })(); - - core.Node = (function() { - - /** - * Properties of a Node. - * @memberof flyteidl.core - * @interface INode - * @property {string|null} [id] Node id - * @property {flyteidl.core.INodeMetadata|null} [metadata] Node metadata - * @property {Array.|null} [inputs] Node inputs - * @property {Array.|null} [upstreamNodeIds] Node upstreamNodeIds - * @property {Array.|null} [outputAliases] Node outputAliases - * @property {flyteidl.core.ITaskNode|null} [taskNode] Node taskNode - * @property {flyteidl.core.IWorkflowNode|null} [workflowNode] Node workflowNode - * @property {flyteidl.core.IBranchNode|null} [branchNode] Node branchNode - * @property {flyteidl.core.IGateNode|null} [gateNode] Node gateNode - * @property {flyteidl.core.IArrayNode|null} [arrayNode] Node arrayNode - */ - - /** - * Constructs a new Node. - * @memberof flyteidl.core - * @classdesc Represents a Node. - * @implements INode - * @constructor - * @param {flyteidl.core.INode=} [properties] Properties to set - */ - function Node(properties) { - this.inputs = []; - this.upstreamNodeIds = []; - this.outputAliases = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Node id. - * @member {string} id - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.id = ""; - - /** - * Node metadata. - * @member {flyteidl.core.INodeMetadata|null|undefined} metadata - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.metadata = null; - - /** - * Node inputs. - * @member {Array.} inputs - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.inputs = $util.emptyArray; - - /** - * Node upstreamNodeIds. - * @member {Array.} upstreamNodeIds - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.upstreamNodeIds = $util.emptyArray; - - /** - * Node outputAliases. - * @member {Array.} outputAliases - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.outputAliases = $util.emptyArray; - - /** - * Node taskNode. - * @member {flyteidl.core.ITaskNode|null|undefined} taskNode - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.taskNode = null; - - /** - * Node workflowNode. - * @member {flyteidl.core.IWorkflowNode|null|undefined} workflowNode - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.workflowNode = null; - - /** - * Node branchNode. - * @member {flyteidl.core.IBranchNode|null|undefined} branchNode - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.branchNode = null; - - /** - * Node gateNode. - * @member {flyteidl.core.IGateNode|null|undefined} gateNode - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.gateNode = null; - - /** - * Node arrayNode. - * @member {flyteidl.core.IArrayNode|null|undefined} arrayNode - * @memberof flyteidl.core.Node - * @instance - */ - Node.prototype.arrayNode = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Node target. - * @member {"taskNode"|"workflowNode"|"branchNode"|"gateNode"|"arrayNode"|undefined} target - * @memberof flyteidl.core.Node - * @instance - */ - Object.defineProperty(Node.prototype, "target", { - get: $util.oneOfGetter($oneOfFields = ["taskNode", "workflowNode", "branchNode", "gateNode", "arrayNode"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Node instance using the specified properties. - * @function create - * @memberof flyteidl.core.Node - * @static - * @param {flyteidl.core.INode=} [properties] Properties to set - * @returns {flyteidl.core.Node} Node instance - */ - Node.create = function create(properties) { - return new Node(properties); - }; - - /** - * Encodes the specified Node message. Does not implicitly {@link flyteidl.core.Node.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Node - * @static - * @param {flyteidl.core.INode} message Node message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Node.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.id); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.core.NodeMetadata.encode(message.metadata, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.inputs != null && message.inputs.length) - for (var i = 0; i < message.inputs.length; ++i) - $root.flyteidl.core.Binding.encode(message.inputs[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.upstreamNodeIds != null && message.upstreamNodeIds.length) - for (var i = 0; i < message.upstreamNodeIds.length; ++i) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.upstreamNodeIds[i]); - if (message.outputAliases != null && message.outputAliases.length) - for (var i = 0; i < message.outputAliases.length; ++i) - $root.flyteidl.core.Alias.encode(message.outputAliases[i], writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.taskNode != null && message.hasOwnProperty("taskNode")) - $root.flyteidl.core.TaskNode.encode(message.taskNode, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.workflowNode != null && message.hasOwnProperty("workflowNode")) - $root.flyteidl.core.WorkflowNode.encode(message.workflowNode, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.branchNode != null && message.hasOwnProperty("branchNode")) - $root.flyteidl.core.BranchNode.encode(message.branchNode, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.gateNode != null && message.hasOwnProperty("gateNode")) - $root.flyteidl.core.GateNode.encode(message.gateNode, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.arrayNode != null && message.hasOwnProperty("arrayNode")) - $root.flyteidl.core.ArrayNode.encode(message.arrayNode, writer.uint32(/* id 10, wireType 2 =*/82).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Node message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Node - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Node} Node - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Node.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Node(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = reader.string(); - break; - case 2: - message.metadata = $root.flyteidl.core.NodeMetadata.decode(reader, reader.uint32()); - break; - case 3: - if (!(message.inputs && message.inputs.length)) - message.inputs = []; - message.inputs.push($root.flyteidl.core.Binding.decode(reader, reader.uint32())); - break; - case 4: - if (!(message.upstreamNodeIds && message.upstreamNodeIds.length)) - message.upstreamNodeIds = []; - message.upstreamNodeIds.push(reader.string()); - break; - case 5: - if (!(message.outputAliases && message.outputAliases.length)) - message.outputAliases = []; - message.outputAliases.push($root.flyteidl.core.Alias.decode(reader, reader.uint32())); - break; - case 6: - message.taskNode = $root.flyteidl.core.TaskNode.decode(reader, reader.uint32()); - break; - case 7: - message.workflowNode = $root.flyteidl.core.WorkflowNode.decode(reader, reader.uint32()); - break; - case 8: - message.branchNode = $root.flyteidl.core.BranchNode.decode(reader, reader.uint32()); - break; - case 9: - message.gateNode = $root.flyteidl.core.GateNode.decode(reader, reader.uint32()); - break; - case 10: - message.arrayNode = $root.flyteidl.core.ArrayNode.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Node message. - * @function verify - * @memberof flyteidl.core.Node - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Node.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.id != null && message.hasOwnProperty("id")) - if (!$util.isString(message.id)) - return "id: string expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.core.NodeMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message.inputs != null && message.hasOwnProperty("inputs")) { - if (!Array.isArray(message.inputs)) - return "inputs: array expected"; - for (var i = 0; i < message.inputs.length; ++i) { - var error = $root.flyteidl.core.Binding.verify(message.inputs[i]); - if (error) - return "inputs." + error; - } - } - if (message.upstreamNodeIds != null && message.hasOwnProperty("upstreamNodeIds")) { - if (!Array.isArray(message.upstreamNodeIds)) - return "upstreamNodeIds: array expected"; - for (var i = 0; i < message.upstreamNodeIds.length; ++i) - if (!$util.isString(message.upstreamNodeIds[i])) - return "upstreamNodeIds: string[] expected"; - } - if (message.outputAliases != null && message.hasOwnProperty("outputAliases")) { - if (!Array.isArray(message.outputAliases)) - return "outputAliases: array expected"; - for (var i = 0; i < message.outputAliases.length; ++i) { - var error = $root.flyteidl.core.Alias.verify(message.outputAliases[i]); - if (error) - return "outputAliases." + error; - } - } - if (message.taskNode != null && message.hasOwnProperty("taskNode")) { - properties.target = 1; - { - var error = $root.flyteidl.core.TaskNode.verify(message.taskNode); - if (error) - return "taskNode." + error; - } - } - if (message.workflowNode != null && message.hasOwnProperty("workflowNode")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.core.WorkflowNode.verify(message.workflowNode); - if (error) - return "workflowNode." + error; - } - } - if (message.branchNode != null && message.hasOwnProperty("branchNode")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.core.BranchNode.verify(message.branchNode); - if (error) - return "branchNode." + error; - } - } - if (message.gateNode != null && message.hasOwnProperty("gateNode")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.core.GateNode.verify(message.gateNode); - if (error) - return "gateNode." + error; - } - } - if (message.arrayNode != null && message.hasOwnProperty("arrayNode")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.core.ArrayNode.verify(message.arrayNode); - if (error) - return "arrayNode." + error; - } - } - return null; - }; - - return Node; - })(); - - core.WorkflowMetadata = (function() { - - /** - * Properties of a WorkflowMetadata. - * @memberof flyteidl.core - * @interface IWorkflowMetadata - * @property {flyteidl.core.IQualityOfService|null} [qualityOfService] WorkflowMetadata qualityOfService - * @property {flyteidl.core.WorkflowMetadata.OnFailurePolicy|null} [onFailure] WorkflowMetadata onFailure - * @property {Object.|null} [tags] WorkflowMetadata tags - */ - - /** - * Constructs a new WorkflowMetadata. - * @memberof flyteidl.core - * @classdesc Represents a WorkflowMetadata. - * @implements IWorkflowMetadata - * @constructor - * @param {flyteidl.core.IWorkflowMetadata=} [properties] Properties to set - */ - function WorkflowMetadata(properties) { - this.tags = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowMetadata qualityOfService. - * @member {flyteidl.core.IQualityOfService|null|undefined} qualityOfService - * @memberof flyteidl.core.WorkflowMetadata - * @instance - */ - WorkflowMetadata.prototype.qualityOfService = null; - - /** - * WorkflowMetadata onFailure. - * @member {flyteidl.core.WorkflowMetadata.OnFailurePolicy} onFailure - * @memberof flyteidl.core.WorkflowMetadata - * @instance - */ - WorkflowMetadata.prototype.onFailure = 0; - - /** - * WorkflowMetadata tags. - * @member {Object.} tags - * @memberof flyteidl.core.WorkflowMetadata - * @instance - */ - WorkflowMetadata.prototype.tags = $util.emptyObject; - - /** - * Creates a new WorkflowMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.WorkflowMetadata - * @static - * @param {flyteidl.core.IWorkflowMetadata=} [properties] Properties to set - * @returns {flyteidl.core.WorkflowMetadata} WorkflowMetadata instance - */ - WorkflowMetadata.create = function create(properties) { - return new WorkflowMetadata(properties); - }; - - /** - * Encodes the specified WorkflowMetadata message. Does not implicitly {@link flyteidl.core.WorkflowMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.WorkflowMetadata - * @static - * @param {flyteidl.core.IWorkflowMetadata} message WorkflowMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.qualityOfService != null && message.hasOwnProperty("qualityOfService")) - $root.flyteidl.core.QualityOfService.encode(message.qualityOfService, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.onFailure != null && message.hasOwnProperty("onFailure")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.onFailure); - if (message.tags != null && message.hasOwnProperty("tags")) - for (var keys = Object.keys(message.tags), i = 0; i < keys.length; ++i) - writer.uint32(/* id 3, wireType 2 =*/26).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.tags[keys[i]]).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.WorkflowMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.WorkflowMetadata} WorkflowMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.WorkflowMetadata(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.qualityOfService = $root.flyteidl.core.QualityOfService.decode(reader, reader.uint32()); - break; - case 2: - message.onFailure = reader.int32(); - break; - case 3: - reader.skip().pos++; - if (message.tags === $util.emptyObject) - message.tags = {}; - key = reader.string(); - reader.pos++; - message.tags[key] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowMetadata message. - * @function verify - * @memberof flyteidl.core.WorkflowMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.qualityOfService != null && message.hasOwnProperty("qualityOfService")) { - var error = $root.flyteidl.core.QualityOfService.verify(message.qualityOfService); - if (error) - return "qualityOfService." + error; - } - if (message.onFailure != null && message.hasOwnProperty("onFailure")) - switch (message.onFailure) { - default: - return "onFailure: enum value expected"; - case 0: - case 1: - break; - } - if (message.tags != null && message.hasOwnProperty("tags")) { - if (!$util.isObject(message.tags)) - return "tags: object expected"; - var key = Object.keys(message.tags); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.tags[key[i]])) - return "tags: string{k:string} expected"; - } - return null; - }; - - /** - * OnFailurePolicy enum. - * @name flyteidl.core.WorkflowMetadata.OnFailurePolicy - * @enum {string} - * @property {number} FAIL_IMMEDIATELY=0 FAIL_IMMEDIATELY value - * @property {number} FAIL_AFTER_EXECUTABLE_NODES_COMPLETE=1 FAIL_AFTER_EXECUTABLE_NODES_COMPLETE value - */ - WorkflowMetadata.OnFailurePolicy = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "FAIL_IMMEDIATELY"] = 0; - values[valuesById[1] = "FAIL_AFTER_EXECUTABLE_NODES_COMPLETE"] = 1; - return values; - })(); - - return WorkflowMetadata; - })(); - - core.WorkflowMetadataDefaults = (function() { - - /** - * Properties of a WorkflowMetadataDefaults. - * @memberof flyteidl.core - * @interface IWorkflowMetadataDefaults - * @property {boolean|null} [interruptible] WorkflowMetadataDefaults interruptible - */ - - /** - * Constructs a new WorkflowMetadataDefaults. - * @memberof flyteidl.core - * @classdesc Represents a WorkflowMetadataDefaults. - * @implements IWorkflowMetadataDefaults - * @constructor - * @param {flyteidl.core.IWorkflowMetadataDefaults=} [properties] Properties to set - */ - function WorkflowMetadataDefaults(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowMetadataDefaults interruptible. - * @member {boolean} interruptible - * @memberof flyteidl.core.WorkflowMetadataDefaults - * @instance - */ - WorkflowMetadataDefaults.prototype.interruptible = false; - - /** - * Creates a new WorkflowMetadataDefaults instance using the specified properties. - * @function create - * @memberof flyteidl.core.WorkflowMetadataDefaults - * @static - * @param {flyteidl.core.IWorkflowMetadataDefaults=} [properties] Properties to set - * @returns {flyteidl.core.WorkflowMetadataDefaults} WorkflowMetadataDefaults instance - */ - WorkflowMetadataDefaults.create = function create(properties) { - return new WorkflowMetadataDefaults(properties); - }; - - /** - * Encodes the specified WorkflowMetadataDefaults message. Does not implicitly {@link flyteidl.core.WorkflowMetadataDefaults.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.WorkflowMetadataDefaults - * @static - * @param {flyteidl.core.IWorkflowMetadataDefaults} message WorkflowMetadataDefaults message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowMetadataDefaults.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.interruptible != null && message.hasOwnProperty("interruptible")) - writer.uint32(/* id 1, wireType 0 =*/8).bool(message.interruptible); - return writer; - }; - - /** - * Decodes a WorkflowMetadataDefaults message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.WorkflowMetadataDefaults - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.WorkflowMetadataDefaults} WorkflowMetadataDefaults - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowMetadataDefaults.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.WorkflowMetadataDefaults(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.interruptible = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowMetadataDefaults message. - * @function verify - * @memberof flyteidl.core.WorkflowMetadataDefaults - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowMetadataDefaults.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.interruptible != null && message.hasOwnProperty("interruptible")) - if (typeof message.interruptible !== "boolean") - return "interruptible: boolean expected"; - return null; - }; - - return WorkflowMetadataDefaults; - })(); - - core.WorkflowTemplate = (function() { - - /** - * Properties of a WorkflowTemplate. - * @memberof flyteidl.core - * @interface IWorkflowTemplate - * @property {flyteidl.core.IIdentifier|null} [id] WorkflowTemplate id - * @property {flyteidl.core.IWorkflowMetadata|null} [metadata] WorkflowTemplate metadata - * @property {flyteidl.core.ITypedInterface|null} ["interface"] WorkflowTemplate interface - * @property {Array.|null} [nodes] WorkflowTemplate nodes - * @property {Array.|null} [outputs] WorkflowTemplate outputs - * @property {flyteidl.core.INode|null} [failureNode] WorkflowTemplate failureNode - * @property {flyteidl.core.IWorkflowMetadataDefaults|null} [metadataDefaults] WorkflowTemplate metadataDefaults - */ - - /** - * Constructs a new WorkflowTemplate. - * @memberof flyteidl.core - * @classdesc Represents a WorkflowTemplate. - * @implements IWorkflowTemplate - * @constructor - * @param {flyteidl.core.IWorkflowTemplate=} [properties] Properties to set - */ - function WorkflowTemplate(properties) { - this.nodes = []; - this.outputs = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowTemplate id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.core.WorkflowTemplate - * @instance - */ - WorkflowTemplate.prototype.id = null; - - /** - * WorkflowTemplate metadata. - * @member {flyteidl.core.IWorkflowMetadata|null|undefined} metadata - * @memberof flyteidl.core.WorkflowTemplate - * @instance - */ - WorkflowTemplate.prototype.metadata = null; - - /** - * WorkflowTemplate interface. - * @member {flyteidl.core.ITypedInterface|null|undefined} interface - * @memberof flyteidl.core.WorkflowTemplate - * @instance - */ - WorkflowTemplate.prototype["interface"] = null; - - /** - * WorkflowTemplate nodes. - * @member {Array.} nodes - * @memberof flyteidl.core.WorkflowTemplate - * @instance - */ - WorkflowTemplate.prototype.nodes = $util.emptyArray; - - /** - * WorkflowTemplate outputs. - * @member {Array.} outputs - * @memberof flyteidl.core.WorkflowTemplate - * @instance - */ - WorkflowTemplate.prototype.outputs = $util.emptyArray; - - /** - * WorkflowTemplate failureNode. - * @member {flyteidl.core.INode|null|undefined} failureNode - * @memberof flyteidl.core.WorkflowTemplate - * @instance - */ - WorkflowTemplate.prototype.failureNode = null; - - /** - * WorkflowTemplate metadataDefaults. - * @member {flyteidl.core.IWorkflowMetadataDefaults|null|undefined} metadataDefaults - * @memberof flyteidl.core.WorkflowTemplate - * @instance - */ - WorkflowTemplate.prototype.metadataDefaults = null; - - /** - * Creates a new WorkflowTemplate instance using the specified properties. - * @function create - * @memberof flyteidl.core.WorkflowTemplate - * @static - * @param {flyteidl.core.IWorkflowTemplate=} [properties] Properties to set - * @returns {flyteidl.core.WorkflowTemplate} WorkflowTemplate instance - */ - WorkflowTemplate.create = function create(properties) { - return new WorkflowTemplate(properties); - }; - - /** - * Encodes the specified WorkflowTemplate message. Does not implicitly {@link flyteidl.core.WorkflowTemplate.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.WorkflowTemplate - * @static - * @param {flyteidl.core.IWorkflowTemplate} message WorkflowTemplate message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowTemplate.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.core.WorkflowMetadata.encode(message.metadata, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message["interface"] != null && message.hasOwnProperty("interface")) - $root.flyteidl.core.TypedInterface.encode(message["interface"], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.nodes != null && message.nodes.length) - for (var i = 0; i < message.nodes.length; ++i) - $root.flyteidl.core.Node.encode(message.nodes[i], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.outputs != null && message.outputs.length) - for (var i = 0; i < message.outputs.length; ++i) - $root.flyteidl.core.Binding.encode(message.outputs[i], writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.failureNode != null && message.hasOwnProperty("failureNode")) - $root.flyteidl.core.Node.encode(message.failureNode, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.metadataDefaults != null && message.hasOwnProperty("metadataDefaults")) - $root.flyteidl.core.WorkflowMetadataDefaults.encode(message.metadataDefaults, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowTemplate message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.WorkflowTemplate - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.WorkflowTemplate} WorkflowTemplate - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowTemplate.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.WorkflowTemplate(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.metadata = $root.flyteidl.core.WorkflowMetadata.decode(reader, reader.uint32()); - break; - case 3: - message["interface"] = $root.flyteidl.core.TypedInterface.decode(reader, reader.uint32()); - break; - case 4: - if (!(message.nodes && message.nodes.length)) - message.nodes = []; - message.nodes.push($root.flyteidl.core.Node.decode(reader, reader.uint32())); - break; - case 5: - if (!(message.outputs && message.outputs.length)) - message.outputs = []; - message.outputs.push($root.flyteidl.core.Binding.decode(reader, reader.uint32())); - break; - case 6: - message.failureNode = $root.flyteidl.core.Node.decode(reader, reader.uint32()); - break; - case 7: - message.metadataDefaults = $root.flyteidl.core.WorkflowMetadataDefaults.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowTemplate message. - * @function verify - * @memberof flyteidl.core.WorkflowTemplate - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowTemplate.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.core.WorkflowMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message["interface"] != null && message.hasOwnProperty("interface")) { - var error = $root.flyteidl.core.TypedInterface.verify(message["interface"]); - if (error) - return "interface." + error; - } - if (message.nodes != null && message.hasOwnProperty("nodes")) { - if (!Array.isArray(message.nodes)) - return "nodes: array expected"; - for (var i = 0; i < message.nodes.length; ++i) { - var error = $root.flyteidl.core.Node.verify(message.nodes[i]); - if (error) - return "nodes." + error; - } - } - if (message.outputs != null && message.hasOwnProperty("outputs")) { - if (!Array.isArray(message.outputs)) - return "outputs: array expected"; - for (var i = 0; i < message.outputs.length; ++i) { - var error = $root.flyteidl.core.Binding.verify(message.outputs[i]); - if (error) - return "outputs." + error; - } - } - if (message.failureNode != null && message.hasOwnProperty("failureNode")) { - var error = $root.flyteidl.core.Node.verify(message.failureNode); - if (error) - return "failureNode." + error; - } - if (message.metadataDefaults != null && message.hasOwnProperty("metadataDefaults")) { - var error = $root.flyteidl.core.WorkflowMetadataDefaults.verify(message.metadataDefaults); - if (error) - return "metadataDefaults." + error; - } - return null; - }; - - return WorkflowTemplate; - })(); - - core.TaskNodeOverrides = (function() { - - /** - * Properties of a TaskNodeOverrides. - * @memberof flyteidl.core - * @interface ITaskNodeOverrides - * @property {flyteidl.core.IResources|null} [resources] TaskNodeOverrides resources - * @property {flyteidl.core.IExtendedResources|null} [extendedResources] TaskNodeOverrides extendedResources - */ - - /** - * Constructs a new TaskNodeOverrides. - * @memberof flyteidl.core - * @classdesc Represents a TaskNodeOverrides. - * @implements ITaskNodeOverrides - * @constructor - * @param {flyteidl.core.ITaskNodeOverrides=} [properties] Properties to set - */ - function TaskNodeOverrides(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskNodeOverrides resources. - * @member {flyteidl.core.IResources|null|undefined} resources - * @memberof flyteidl.core.TaskNodeOverrides - * @instance - */ - TaskNodeOverrides.prototype.resources = null; - - /** - * TaskNodeOverrides extendedResources. - * @member {flyteidl.core.IExtendedResources|null|undefined} extendedResources - * @memberof flyteidl.core.TaskNodeOverrides - * @instance - */ - TaskNodeOverrides.prototype.extendedResources = null; - - /** - * Creates a new TaskNodeOverrides instance using the specified properties. - * @function create - * @memberof flyteidl.core.TaskNodeOverrides - * @static - * @param {flyteidl.core.ITaskNodeOverrides=} [properties] Properties to set - * @returns {flyteidl.core.TaskNodeOverrides} TaskNodeOverrides instance - */ - TaskNodeOverrides.create = function create(properties) { - return new TaskNodeOverrides(properties); - }; - - /** - * Encodes the specified TaskNodeOverrides message. Does not implicitly {@link flyteidl.core.TaskNodeOverrides.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TaskNodeOverrides - * @static - * @param {flyteidl.core.ITaskNodeOverrides} message TaskNodeOverrides message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskNodeOverrides.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resources != null && message.hasOwnProperty("resources")) - $root.flyteidl.core.Resources.encode(message.resources, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.extendedResources != null && message.hasOwnProperty("extendedResources")) - $root.flyteidl.core.ExtendedResources.encode(message.extendedResources, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskNodeOverrides message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TaskNodeOverrides - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TaskNodeOverrides} TaskNodeOverrides - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskNodeOverrides.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TaskNodeOverrides(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resources = $root.flyteidl.core.Resources.decode(reader, reader.uint32()); - break; - case 2: - message.extendedResources = $root.flyteidl.core.ExtendedResources.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskNodeOverrides message. - * @function verify - * @memberof flyteidl.core.TaskNodeOverrides - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskNodeOverrides.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resources != null && message.hasOwnProperty("resources")) { - var error = $root.flyteidl.core.Resources.verify(message.resources); - if (error) - return "resources." + error; - } - if (message.extendedResources != null && message.hasOwnProperty("extendedResources")) { - var error = $root.flyteidl.core.ExtendedResources.verify(message.extendedResources); - if (error) - return "extendedResources." + error; - } - return null; - }; - - return TaskNodeOverrides; - })(); - - core.ComparisonExpression = (function() { - - /** - * Properties of a ComparisonExpression. - * @memberof flyteidl.core - * @interface IComparisonExpression - * @property {flyteidl.core.ComparisonExpression.Operator|null} [operator] ComparisonExpression operator - * @property {flyteidl.core.IOperand|null} [leftValue] ComparisonExpression leftValue - * @property {flyteidl.core.IOperand|null} [rightValue] ComparisonExpression rightValue - */ - - /** - * Constructs a new ComparisonExpression. - * @memberof flyteidl.core - * @classdesc Represents a ComparisonExpression. - * @implements IComparisonExpression - * @constructor - * @param {flyteidl.core.IComparisonExpression=} [properties] Properties to set - */ - function ComparisonExpression(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ComparisonExpression operator. - * @member {flyteidl.core.ComparisonExpression.Operator} operator - * @memberof flyteidl.core.ComparisonExpression - * @instance - */ - ComparisonExpression.prototype.operator = 0; - - /** - * ComparisonExpression leftValue. - * @member {flyteidl.core.IOperand|null|undefined} leftValue - * @memberof flyteidl.core.ComparisonExpression - * @instance - */ - ComparisonExpression.prototype.leftValue = null; - - /** - * ComparisonExpression rightValue. - * @member {flyteidl.core.IOperand|null|undefined} rightValue - * @memberof flyteidl.core.ComparisonExpression - * @instance - */ - ComparisonExpression.prototype.rightValue = null; - - /** - * Creates a new ComparisonExpression instance using the specified properties. - * @function create - * @memberof flyteidl.core.ComparisonExpression - * @static - * @param {flyteidl.core.IComparisonExpression=} [properties] Properties to set - * @returns {flyteidl.core.ComparisonExpression} ComparisonExpression instance - */ - ComparisonExpression.create = function create(properties) { - return new ComparisonExpression(properties); - }; - - /** - * Encodes the specified ComparisonExpression message. Does not implicitly {@link flyteidl.core.ComparisonExpression.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ComparisonExpression - * @static - * @param {flyteidl.core.IComparisonExpression} message ComparisonExpression message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ComparisonExpression.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.operator != null && message.hasOwnProperty("operator")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.operator); - if (message.leftValue != null && message.hasOwnProperty("leftValue")) - $root.flyteidl.core.Operand.encode(message.leftValue, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.rightValue != null && message.hasOwnProperty("rightValue")) - $root.flyteidl.core.Operand.encode(message.rightValue, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ComparisonExpression message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ComparisonExpression - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ComparisonExpression} ComparisonExpression - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ComparisonExpression.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ComparisonExpression(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.operator = reader.int32(); - break; - case 2: - message.leftValue = $root.flyteidl.core.Operand.decode(reader, reader.uint32()); - break; - case 3: - message.rightValue = $root.flyteidl.core.Operand.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ComparisonExpression message. - * @function verify - * @memberof flyteidl.core.ComparisonExpression - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ComparisonExpression.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.operator != null && message.hasOwnProperty("operator")) - switch (message.operator) { - default: - return "operator: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - break; - } - if (message.leftValue != null && message.hasOwnProperty("leftValue")) { - var error = $root.flyteidl.core.Operand.verify(message.leftValue); - if (error) - return "leftValue." + error; - } - if (message.rightValue != null && message.hasOwnProperty("rightValue")) { - var error = $root.flyteidl.core.Operand.verify(message.rightValue); - if (error) - return "rightValue." + error; - } - return null; - }; - - /** - * Operator enum. - * @name flyteidl.core.ComparisonExpression.Operator - * @enum {string} - * @property {number} EQ=0 EQ value - * @property {number} NEQ=1 NEQ value - * @property {number} GT=2 GT value - * @property {number} GTE=3 GTE value - * @property {number} LT=4 LT value - * @property {number} LTE=5 LTE value - */ - ComparisonExpression.Operator = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "EQ"] = 0; - values[valuesById[1] = "NEQ"] = 1; - values[valuesById[2] = "GT"] = 2; - values[valuesById[3] = "GTE"] = 3; - values[valuesById[4] = "LT"] = 4; - values[valuesById[5] = "LTE"] = 5; - return values; - })(); - - return ComparisonExpression; - })(); - - core.Operand = (function() { - - /** - * Properties of an Operand. - * @memberof flyteidl.core - * @interface IOperand - * @property {flyteidl.core.IPrimitive|null} [primitive] Operand primitive - * @property {string|null} ["var"] Operand var - * @property {flyteidl.core.IScalar|null} [scalar] Operand scalar - */ - - /** - * Constructs a new Operand. - * @memberof flyteidl.core - * @classdesc Represents an Operand. - * @implements IOperand - * @constructor - * @param {flyteidl.core.IOperand=} [properties] Properties to set - */ - function Operand(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Operand primitive. - * @member {flyteidl.core.IPrimitive|null|undefined} primitive - * @memberof flyteidl.core.Operand - * @instance - */ - Operand.prototype.primitive = null; - - /** - * Operand var. - * @member {string} var - * @memberof flyteidl.core.Operand - * @instance - */ - Operand.prototype["var"] = ""; - - /** - * Operand scalar. - * @member {flyteidl.core.IScalar|null|undefined} scalar - * @memberof flyteidl.core.Operand - * @instance - */ - Operand.prototype.scalar = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Operand val. - * @member {"primitive"|"var"|"scalar"|undefined} val - * @memberof flyteidl.core.Operand - * @instance - */ - Object.defineProperty(Operand.prototype, "val", { - get: $util.oneOfGetter($oneOfFields = ["primitive", "var", "scalar"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Operand instance using the specified properties. - * @function create - * @memberof flyteidl.core.Operand - * @static - * @param {flyteidl.core.IOperand=} [properties] Properties to set - * @returns {flyteidl.core.Operand} Operand instance - */ - Operand.create = function create(properties) { - return new Operand(properties); - }; - - /** - * Encodes the specified Operand message. Does not implicitly {@link flyteidl.core.Operand.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Operand - * @static - * @param {flyteidl.core.IOperand} message Operand message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Operand.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.primitive != null && message.hasOwnProperty("primitive")) - $root.flyteidl.core.Primitive.encode(message.primitive, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message["var"] != null && message.hasOwnProperty("var")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message["var"]); - if (message.scalar != null && message.hasOwnProperty("scalar")) - $root.flyteidl.core.Scalar.encode(message.scalar, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an Operand message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Operand - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Operand} Operand - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Operand.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Operand(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.primitive = $root.flyteidl.core.Primitive.decode(reader, reader.uint32()); - break; - case 2: - message["var"] = reader.string(); - break; - case 3: - message.scalar = $root.flyteidl.core.Scalar.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Operand message. - * @function verify - * @memberof flyteidl.core.Operand - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Operand.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.primitive != null && message.hasOwnProperty("primitive")) { - properties.val = 1; - { - var error = $root.flyteidl.core.Primitive.verify(message.primitive); - if (error) - return "primitive." + error; - } - } - if (message["var"] != null && message.hasOwnProperty("var")) { - if (properties.val === 1) - return "val: multiple values"; - properties.val = 1; - if (!$util.isString(message["var"])) - return "var: string expected"; - } - if (message.scalar != null && message.hasOwnProperty("scalar")) { - if (properties.val === 1) - return "val: multiple values"; - properties.val = 1; - { - var error = $root.flyteidl.core.Scalar.verify(message.scalar); - if (error) - return "scalar." + error; - } - } - return null; - }; - - return Operand; - })(); - - core.BooleanExpression = (function() { - - /** - * Properties of a BooleanExpression. - * @memberof flyteidl.core - * @interface IBooleanExpression - * @property {flyteidl.core.IConjunctionExpression|null} [conjunction] BooleanExpression conjunction - * @property {flyteidl.core.IComparisonExpression|null} [comparison] BooleanExpression comparison - */ - - /** - * Constructs a new BooleanExpression. - * @memberof flyteidl.core - * @classdesc Represents a BooleanExpression. - * @implements IBooleanExpression - * @constructor - * @param {flyteidl.core.IBooleanExpression=} [properties] Properties to set - */ - function BooleanExpression(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BooleanExpression conjunction. - * @member {flyteidl.core.IConjunctionExpression|null|undefined} conjunction - * @memberof flyteidl.core.BooleanExpression - * @instance - */ - BooleanExpression.prototype.conjunction = null; - - /** - * BooleanExpression comparison. - * @member {flyteidl.core.IComparisonExpression|null|undefined} comparison - * @memberof flyteidl.core.BooleanExpression - * @instance - */ - BooleanExpression.prototype.comparison = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * BooleanExpression expr. - * @member {"conjunction"|"comparison"|undefined} expr - * @memberof flyteidl.core.BooleanExpression - * @instance - */ - Object.defineProperty(BooleanExpression.prototype, "expr", { - get: $util.oneOfGetter($oneOfFields = ["conjunction", "comparison"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new BooleanExpression instance using the specified properties. - * @function create - * @memberof flyteidl.core.BooleanExpression - * @static - * @param {flyteidl.core.IBooleanExpression=} [properties] Properties to set - * @returns {flyteidl.core.BooleanExpression} BooleanExpression instance - */ - BooleanExpression.create = function create(properties) { - return new BooleanExpression(properties); - }; - - /** - * Encodes the specified BooleanExpression message. Does not implicitly {@link flyteidl.core.BooleanExpression.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.BooleanExpression - * @static - * @param {flyteidl.core.IBooleanExpression} message BooleanExpression message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BooleanExpression.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.conjunction != null && message.hasOwnProperty("conjunction")) - $root.flyteidl.core.ConjunctionExpression.encode(message.conjunction, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.comparison != null && message.hasOwnProperty("comparison")) - $root.flyteidl.core.ComparisonExpression.encode(message.comparison, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a BooleanExpression message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.BooleanExpression - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.BooleanExpression} BooleanExpression - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BooleanExpression.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.BooleanExpression(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.conjunction = $root.flyteidl.core.ConjunctionExpression.decode(reader, reader.uint32()); - break; - case 2: - message.comparison = $root.flyteidl.core.ComparisonExpression.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BooleanExpression message. - * @function verify - * @memberof flyteidl.core.BooleanExpression - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BooleanExpression.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.conjunction != null && message.hasOwnProperty("conjunction")) { - properties.expr = 1; - { - var error = $root.flyteidl.core.ConjunctionExpression.verify(message.conjunction); - if (error) - return "conjunction." + error; - } - } - if (message.comparison != null && message.hasOwnProperty("comparison")) { - if (properties.expr === 1) - return "expr: multiple values"; - properties.expr = 1; - { - var error = $root.flyteidl.core.ComparisonExpression.verify(message.comparison); - if (error) - return "comparison." + error; - } - } - return null; - }; - - return BooleanExpression; - })(); - - core.ConjunctionExpression = (function() { - - /** - * Properties of a ConjunctionExpression. - * @memberof flyteidl.core - * @interface IConjunctionExpression - * @property {flyteidl.core.ConjunctionExpression.LogicalOperator|null} [operator] ConjunctionExpression operator - * @property {flyteidl.core.IBooleanExpression|null} [leftExpression] ConjunctionExpression leftExpression - * @property {flyteidl.core.IBooleanExpression|null} [rightExpression] ConjunctionExpression rightExpression - */ - - /** - * Constructs a new ConjunctionExpression. - * @memberof flyteidl.core - * @classdesc Represents a ConjunctionExpression. - * @implements IConjunctionExpression - * @constructor - * @param {flyteidl.core.IConjunctionExpression=} [properties] Properties to set - */ - function ConjunctionExpression(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ConjunctionExpression operator. - * @member {flyteidl.core.ConjunctionExpression.LogicalOperator} operator - * @memberof flyteidl.core.ConjunctionExpression - * @instance - */ - ConjunctionExpression.prototype.operator = 0; - - /** - * ConjunctionExpression leftExpression. - * @member {flyteidl.core.IBooleanExpression|null|undefined} leftExpression - * @memberof flyteidl.core.ConjunctionExpression - * @instance - */ - ConjunctionExpression.prototype.leftExpression = null; - - /** - * ConjunctionExpression rightExpression. - * @member {flyteidl.core.IBooleanExpression|null|undefined} rightExpression - * @memberof flyteidl.core.ConjunctionExpression - * @instance - */ - ConjunctionExpression.prototype.rightExpression = null; - - /** - * Creates a new ConjunctionExpression instance using the specified properties. - * @function create - * @memberof flyteidl.core.ConjunctionExpression - * @static - * @param {flyteidl.core.IConjunctionExpression=} [properties] Properties to set - * @returns {flyteidl.core.ConjunctionExpression} ConjunctionExpression instance - */ - ConjunctionExpression.create = function create(properties) { - return new ConjunctionExpression(properties); - }; - - /** - * Encodes the specified ConjunctionExpression message. Does not implicitly {@link flyteidl.core.ConjunctionExpression.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ConjunctionExpression - * @static - * @param {flyteidl.core.IConjunctionExpression} message ConjunctionExpression message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ConjunctionExpression.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.operator != null && message.hasOwnProperty("operator")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.operator); - if (message.leftExpression != null && message.hasOwnProperty("leftExpression")) - $root.flyteidl.core.BooleanExpression.encode(message.leftExpression, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.rightExpression != null && message.hasOwnProperty("rightExpression")) - $root.flyteidl.core.BooleanExpression.encode(message.rightExpression, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ConjunctionExpression message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ConjunctionExpression - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ConjunctionExpression} ConjunctionExpression - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ConjunctionExpression.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ConjunctionExpression(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.operator = reader.int32(); - break; - case 2: - message.leftExpression = $root.flyteidl.core.BooleanExpression.decode(reader, reader.uint32()); - break; - case 3: - message.rightExpression = $root.flyteidl.core.BooleanExpression.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ConjunctionExpression message. - * @function verify - * @memberof flyteidl.core.ConjunctionExpression - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ConjunctionExpression.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.operator != null && message.hasOwnProperty("operator")) - switch (message.operator) { - default: - return "operator: enum value expected"; - case 0: - case 1: - break; - } - if (message.leftExpression != null && message.hasOwnProperty("leftExpression")) { - var error = $root.flyteidl.core.BooleanExpression.verify(message.leftExpression); - if (error) - return "leftExpression." + error; - } - if (message.rightExpression != null && message.hasOwnProperty("rightExpression")) { - var error = $root.flyteidl.core.BooleanExpression.verify(message.rightExpression); - if (error) - return "rightExpression." + error; - } - return null; - }; - - /** - * LogicalOperator enum. - * @name flyteidl.core.ConjunctionExpression.LogicalOperator - * @enum {string} - * @property {number} AND=0 AND value - * @property {number} OR=1 OR value - */ - ConjunctionExpression.LogicalOperator = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "AND"] = 0; - values[valuesById[1] = "OR"] = 1; - return values; - })(); - - return ConjunctionExpression; - })(); - - core.Primitive = (function() { - - /** - * Properties of a Primitive. - * @memberof flyteidl.core - * @interface IPrimitive - * @property {Long|null} [integer] Primitive integer - * @property {number|null} [floatValue] Primitive floatValue - * @property {string|null} [stringValue] Primitive stringValue - * @property {boolean|null} [boolean] Primitive boolean - * @property {google.protobuf.ITimestamp|null} [datetime] Primitive datetime - * @property {google.protobuf.IDuration|null} [duration] Primitive duration - */ - - /** - * Constructs a new Primitive. - * @memberof flyteidl.core - * @classdesc Represents a Primitive. - * @implements IPrimitive - * @constructor - * @param {flyteidl.core.IPrimitive=} [properties] Properties to set - */ - function Primitive(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Primitive integer. - * @member {Long} integer - * @memberof flyteidl.core.Primitive - * @instance - */ - Primitive.prototype.integer = $util.Long ? $util.Long.fromBits(0,0,false) : 0; - - /** - * Primitive floatValue. - * @member {number} floatValue - * @memberof flyteidl.core.Primitive - * @instance - */ - Primitive.prototype.floatValue = 0; - - /** - * Primitive stringValue. - * @member {string} stringValue - * @memberof flyteidl.core.Primitive - * @instance - */ - Primitive.prototype.stringValue = ""; - - /** - * Primitive boolean. - * @member {boolean} boolean - * @memberof flyteidl.core.Primitive - * @instance - */ - Primitive.prototype.boolean = false; - - /** - * Primitive datetime. - * @member {google.protobuf.ITimestamp|null|undefined} datetime - * @memberof flyteidl.core.Primitive - * @instance - */ - Primitive.prototype.datetime = null; - - /** - * Primitive duration. - * @member {google.protobuf.IDuration|null|undefined} duration - * @memberof flyteidl.core.Primitive - * @instance - */ - Primitive.prototype.duration = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Primitive value. - * @member {"integer"|"floatValue"|"stringValue"|"boolean"|"datetime"|"duration"|undefined} value - * @memberof flyteidl.core.Primitive - * @instance - */ - Object.defineProperty(Primitive.prototype, "value", { - get: $util.oneOfGetter($oneOfFields = ["integer", "floatValue", "stringValue", "boolean", "datetime", "duration"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Primitive instance using the specified properties. - * @function create - * @memberof flyteidl.core.Primitive - * @static - * @param {flyteidl.core.IPrimitive=} [properties] Properties to set - * @returns {flyteidl.core.Primitive} Primitive instance - */ - Primitive.create = function create(properties) { - return new Primitive(properties); - }; - - /** - * Encodes the specified Primitive message. Does not implicitly {@link flyteidl.core.Primitive.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Primitive - * @static - * @param {flyteidl.core.IPrimitive} message Primitive message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Primitive.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.integer != null && message.hasOwnProperty("integer")) - writer.uint32(/* id 1, wireType 0 =*/8).int64(message.integer); - if (message.floatValue != null && message.hasOwnProperty("floatValue")) - writer.uint32(/* id 2, wireType 1 =*/17).double(message.floatValue); - if (message.stringValue != null && message.hasOwnProperty("stringValue")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.stringValue); - if (message.boolean != null && message.hasOwnProperty("boolean")) - writer.uint32(/* id 4, wireType 0 =*/32).bool(message.boolean); - if (message.datetime != null && message.hasOwnProperty("datetime")) - $root.google.protobuf.Timestamp.encode(message.datetime, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.duration != null && message.hasOwnProperty("duration")) - $root.google.protobuf.Duration.encode(message.duration, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Primitive message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Primitive - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Primitive} Primitive - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Primitive.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Primitive(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.integer = reader.int64(); - break; - case 2: - message.floatValue = reader.double(); - break; - case 3: - message.stringValue = reader.string(); - break; - case 4: - message.boolean = reader.bool(); - break; - case 5: - message.datetime = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 6: - message.duration = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Primitive message. - * @function verify - * @memberof flyteidl.core.Primitive - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Primitive.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.integer != null && message.hasOwnProperty("integer")) { - properties.value = 1; - if (!$util.isInteger(message.integer) && !(message.integer && $util.isInteger(message.integer.low) && $util.isInteger(message.integer.high))) - return "integer: integer|Long expected"; - } - if (message.floatValue != null && message.hasOwnProperty("floatValue")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - if (typeof message.floatValue !== "number") - return "floatValue: number expected"; - } - if (message.stringValue != null && message.hasOwnProperty("stringValue")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - if (!$util.isString(message.stringValue)) - return "stringValue: string expected"; - } - if (message.boolean != null && message.hasOwnProperty("boolean")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - if (typeof message.boolean !== "boolean") - return "boolean: boolean expected"; - } - if (message.datetime != null && message.hasOwnProperty("datetime")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.google.protobuf.Timestamp.verify(message.datetime); - if (error) - return "datetime." + error; - } - } - if (message.duration != null && message.hasOwnProperty("duration")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.google.protobuf.Duration.verify(message.duration); - if (error) - return "duration." + error; - } - } - return null; - }; - - return Primitive; - })(); - - core.Void = (function() { - - /** - * Properties of a Void. - * @memberof flyteidl.core - * @interface IVoid - */ - - /** - * Constructs a new Void. - * @memberof flyteidl.core - * @classdesc Represents a Void. - * @implements IVoid - * @constructor - * @param {flyteidl.core.IVoid=} [properties] Properties to set - */ - function Void(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new Void instance using the specified properties. - * @function create - * @memberof flyteidl.core.Void - * @static - * @param {flyteidl.core.IVoid=} [properties] Properties to set - * @returns {flyteidl.core.Void} Void instance - */ - Void.create = function create(properties) { - return new Void(properties); - }; - - /** - * Encodes the specified Void message. Does not implicitly {@link flyteidl.core.Void.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Void - * @static - * @param {flyteidl.core.IVoid} message Void message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Void.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a Void message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Void - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Void} Void - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Void.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Void(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Void message. - * @function verify - * @memberof flyteidl.core.Void - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Void.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return Void; - })(); - - core.Blob = (function() { - - /** - * Properties of a Blob. - * @memberof flyteidl.core - * @interface IBlob - * @property {flyteidl.core.IBlobMetadata|null} [metadata] Blob metadata - * @property {string|null} [uri] Blob uri - */ - - /** - * Constructs a new Blob. - * @memberof flyteidl.core - * @classdesc Represents a Blob. - * @implements IBlob - * @constructor - * @param {flyteidl.core.IBlob=} [properties] Properties to set - */ - function Blob(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Blob metadata. - * @member {flyteidl.core.IBlobMetadata|null|undefined} metadata - * @memberof flyteidl.core.Blob - * @instance - */ - Blob.prototype.metadata = null; - - /** - * Blob uri. - * @member {string} uri - * @memberof flyteidl.core.Blob - * @instance - */ - Blob.prototype.uri = ""; - - /** - * Creates a new Blob instance using the specified properties. - * @function create - * @memberof flyteidl.core.Blob - * @static - * @param {flyteidl.core.IBlob=} [properties] Properties to set - * @returns {flyteidl.core.Blob} Blob instance - */ - Blob.create = function create(properties) { - return new Blob(properties); - }; - - /** - * Encodes the specified Blob message. Does not implicitly {@link flyteidl.core.Blob.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Blob - * @static - * @param {flyteidl.core.IBlob} message Blob message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Blob.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.core.BlobMetadata.encode(message.metadata, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.uri != null && message.hasOwnProperty("uri")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.uri); - return writer; - }; - - /** - * Decodes a Blob message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Blob - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Blob} Blob - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Blob.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Blob(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.metadata = $root.flyteidl.core.BlobMetadata.decode(reader, reader.uint32()); - break; - case 3: - message.uri = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Blob message. - * @function verify - * @memberof flyteidl.core.Blob - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Blob.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.core.BlobMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message.uri != null && message.hasOwnProperty("uri")) - if (!$util.isString(message.uri)) - return "uri: string expected"; - return null; - }; - - return Blob; - })(); - - core.BlobMetadata = (function() { - - /** - * Properties of a BlobMetadata. - * @memberof flyteidl.core - * @interface IBlobMetadata - * @property {flyteidl.core.IBlobType|null} [type] BlobMetadata type - */ - - /** - * Constructs a new BlobMetadata. - * @memberof flyteidl.core - * @classdesc Represents a BlobMetadata. - * @implements IBlobMetadata - * @constructor - * @param {flyteidl.core.IBlobMetadata=} [properties] Properties to set - */ - function BlobMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BlobMetadata type. - * @member {flyteidl.core.IBlobType|null|undefined} type - * @memberof flyteidl.core.BlobMetadata - * @instance - */ - BlobMetadata.prototype.type = null; - - /** - * Creates a new BlobMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.BlobMetadata - * @static - * @param {flyteidl.core.IBlobMetadata=} [properties] Properties to set - * @returns {flyteidl.core.BlobMetadata} BlobMetadata instance - */ - BlobMetadata.create = function create(properties) { - return new BlobMetadata(properties); - }; - - /** - * Encodes the specified BlobMetadata message. Does not implicitly {@link flyteidl.core.BlobMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.BlobMetadata - * @static - * @param {flyteidl.core.IBlobMetadata} message BlobMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BlobMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.type != null && message.hasOwnProperty("type")) - $root.flyteidl.core.BlobType.encode(message.type, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a BlobMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.BlobMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.BlobMetadata} BlobMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BlobMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.BlobMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.type = $root.flyteidl.core.BlobType.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BlobMetadata message. - * @function verify - * @memberof flyteidl.core.BlobMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BlobMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.type != null && message.hasOwnProperty("type")) { - var error = $root.flyteidl.core.BlobType.verify(message.type); - if (error) - return "type." + error; - } - return null; - }; - - return BlobMetadata; - })(); - - core.Binary = (function() { - - /** - * Properties of a Binary. - * @memberof flyteidl.core - * @interface IBinary - * @property {Uint8Array|null} [value] Binary value - * @property {string|null} [tag] Binary tag - */ - - /** - * Constructs a new Binary. - * @memberof flyteidl.core - * @classdesc Represents a Binary. - * @implements IBinary - * @constructor - * @param {flyteidl.core.IBinary=} [properties] Properties to set - */ - function Binary(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Binary value. - * @member {Uint8Array} value - * @memberof flyteidl.core.Binary - * @instance - */ - Binary.prototype.value = $util.newBuffer([]); - - /** - * Binary tag. - * @member {string} tag - * @memberof flyteidl.core.Binary - * @instance - */ - Binary.prototype.tag = ""; - - /** - * Creates a new Binary instance using the specified properties. - * @function create - * @memberof flyteidl.core.Binary - * @static - * @param {flyteidl.core.IBinary=} [properties] Properties to set - * @returns {flyteidl.core.Binary} Binary instance - */ - Binary.create = function create(properties) { - return new Binary(properties); - }; - - /** - * Encodes the specified Binary message. Does not implicitly {@link flyteidl.core.Binary.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Binary - * @static - * @param {flyteidl.core.IBinary} message Binary message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Binary.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 2 =*/10).bytes(message.value); - if (message.tag != null && message.hasOwnProperty("tag")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.tag); - return writer; - }; - - /** - * Decodes a Binary message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Binary - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Binary} Binary - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Binary.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Binary(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.bytes(); - break; - case 2: - message.tag = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Binary message. - * @function verify - * @memberof flyteidl.core.Binary - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Binary.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!(message.value && typeof message.value.length === "number" || $util.isString(message.value))) - return "value: buffer expected"; - if (message.tag != null && message.hasOwnProperty("tag")) - if (!$util.isString(message.tag)) - return "tag: string expected"; - return null; - }; - - return Binary; - })(); - - core.Schema = (function() { - - /** - * Properties of a Schema. - * @memberof flyteidl.core - * @interface ISchema - * @property {string|null} [uri] Schema uri - * @property {flyteidl.core.ISchemaType|null} [type] Schema type - */ - - /** - * Constructs a new Schema. - * @memberof flyteidl.core - * @classdesc Represents a Schema. - * @implements ISchema - * @constructor - * @param {flyteidl.core.ISchema=} [properties] Properties to set - */ - function Schema(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Schema uri. - * @member {string} uri - * @memberof flyteidl.core.Schema - * @instance - */ - Schema.prototype.uri = ""; - - /** - * Schema type. - * @member {flyteidl.core.ISchemaType|null|undefined} type - * @memberof flyteidl.core.Schema - * @instance - */ - Schema.prototype.type = null; - - /** - * Creates a new Schema instance using the specified properties. - * @function create - * @memberof flyteidl.core.Schema - * @static - * @param {flyteidl.core.ISchema=} [properties] Properties to set - * @returns {flyteidl.core.Schema} Schema instance - */ - Schema.create = function create(properties) { - return new Schema(properties); - }; - - /** - * Encodes the specified Schema message. Does not implicitly {@link flyteidl.core.Schema.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Schema - * @static - * @param {flyteidl.core.ISchema} message Schema message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Schema.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.uri != null && message.hasOwnProperty("uri")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.uri); - if (message.type != null && message.hasOwnProperty("type")) - $root.flyteidl.core.SchemaType.encode(message.type, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Schema message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Schema - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Schema} Schema - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Schema.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Schema(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.uri = reader.string(); - break; - case 3: - message.type = $root.flyteidl.core.SchemaType.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Schema message. - * @function verify - * @memberof flyteidl.core.Schema - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Schema.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.uri != null && message.hasOwnProperty("uri")) - if (!$util.isString(message.uri)) - return "uri: string expected"; - if (message.type != null && message.hasOwnProperty("type")) { - var error = $root.flyteidl.core.SchemaType.verify(message.type); - if (error) - return "type." + error; - } - return null; - }; - - return Schema; - })(); - - core.Union = (function() { - - /** - * Properties of an Union. - * @memberof flyteidl.core - * @interface IUnion - * @property {flyteidl.core.ILiteral|null} [value] Union value - * @property {flyteidl.core.ILiteralType|null} [type] Union type - */ - - /** - * Constructs a new Union. - * @memberof flyteidl.core - * @classdesc Represents an Union. - * @implements IUnion - * @constructor - * @param {flyteidl.core.IUnion=} [properties] Properties to set - */ - function Union(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Union value. - * @member {flyteidl.core.ILiteral|null|undefined} value - * @memberof flyteidl.core.Union - * @instance - */ - Union.prototype.value = null; - - /** - * Union type. - * @member {flyteidl.core.ILiteralType|null|undefined} type - * @memberof flyteidl.core.Union - * @instance - */ - Union.prototype.type = null; - - /** - * Creates a new Union instance using the specified properties. - * @function create - * @memberof flyteidl.core.Union - * @static - * @param {flyteidl.core.IUnion=} [properties] Properties to set - * @returns {flyteidl.core.Union} Union instance - */ - Union.create = function create(properties) { - return new Union(properties); - }; - - /** - * Encodes the specified Union message. Does not implicitly {@link flyteidl.core.Union.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Union - * @static - * @param {flyteidl.core.IUnion} message Union message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Union.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - $root.flyteidl.core.Literal.encode(message.value, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.type != null && message.hasOwnProperty("type")) - $root.flyteidl.core.LiteralType.encode(message.type, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an Union message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Union - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Union} Union - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Union.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Union(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = $root.flyteidl.core.Literal.decode(reader, reader.uint32()); - break; - case 2: - message.type = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Union message. - * @function verify - * @memberof flyteidl.core.Union - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Union.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) { - var error = $root.flyteidl.core.Literal.verify(message.value); - if (error) - return "value." + error; - } - if (message.type != null && message.hasOwnProperty("type")) { - var error = $root.flyteidl.core.LiteralType.verify(message.type); - if (error) - return "type." + error; - } - return null; - }; - - return Union; - })(); - - core.StructuredDatasetMetadata = (function() { - - /** - * Properties of a StructuredDatasetMetadata. - * @memberof flyteidl.core - * @interface IStructuredDatasetMetadata - * @property {flyteidl.core.IStructuredDatasetType|null} [structuredDatasetType] StructuredDatasetMetadata structuredDatasetType - */ - - /** - * Constructs a new StructuredDatasetMetadata. - * @memberof flyteidl.core - * @classdesc Represents a StructuredDatasetMetadata. - * @implements IStructuredDatasetMetadata - * @constructor - * @param {flyteidl.core.IStructuredDatasetMetadata=} [properties] Properties to set - */ - function StructuredDatasetMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * StructuredDatasetMetadata structuredDatasetType. - * @member {flyteidl.core.IStructuredDatasetType|null|undefined} structuredDatasetType - * @memberof flyteidl.core.StructuredDatasetMetadata - * @instance - */ - StructuredDatasetMetadata.prototype.structuredDatasetType = null; - - /** - * Creates a new StructuredDatasetMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.StructuredDatasetMetadata - * @static - * @param {flyteidl.core.IStructuredDatasetMetadata=} [properties] Properties to set - * @returns {flyteidl.core.StructuredDatasetMetadata} StructuredDatasetMetadata instance - */ - StructuredDatasetMetadata.create = function create(properties) { - return new StructuredDatasetMetadata(properties); - }; - - /** - * Encodes the specified StructuredDatasetMetadata message. Does not implicitly {@link flyteidl.core.StructuredDatasetMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.StructuredDatasetMetadata - * @static - * @param {flyteidl.core.IStructuredDatasetMetadata} message StructuredDatasetMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - StructuredDatasetMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.structuredDatasetType != null && message.hasOwnProperty("structuredDatasetType")) - $root.flyteidl.core.StructuredDatasetType.encode(message.structuredDatasetType, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a StructuredDatasetMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.StructuredDatasetMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.StructuredDatasetMetadata} StructuredDatasetMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - StructuredDatasetMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.StructuredDatasetMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.structuredDatasetType = $root.flyteidl.core.StructuredDatasetType.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a StructuredDatasetMetadata message. - * @function verify - * @memberof flyteidl.core.StructuredDatasetMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - StructuredDatasetMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.structuredDatasetType != null && message.hasOwnProperty("structuredDatasetType")) { - var error = $root.flyteidl.core.StructuredDatasetType.verify(message.structuredDatasetType); - if (error) - return "structuredDatasetType." + error; - } - return null; - }; - - return StructuredDatasetMetadata; - })(); - - core.StructuredDataset = (function() { - - /** - * Properties of a StructuredDataset. - * @memberof flyteidl.core - * @interface IStructuredDataset - * @property {string|null} [uri] StructuredDataset uri - * @property {flyteidl.core.IStructuredDatasetMetadata|null} [metadata] StructuredDataset metadata - */ - - /** - * Constructs a new StructuredDataset. - * @memberof flyteidl.core - * @classdesc Represents a StructuredDataset. - * @implements IStructuredDataset - * @constructor - * @param {flyteidl.core.IStructuredDataset=} [properties] Properties to set - */ - function StructuredDataset(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * StructuredDataset uri. - * @member {string} uri - * @memberof flyteidl.core.StructuredDataset - * @instance - */ - StructuredDataset.prototype.uri = ""; - - /** - * StructuredDataset metadata. - * @member {flyteidl.core.IStructuredDatasetMetadata|null|undefined} metadata - * @memberof flyteidl.core.StructuredDataset - * @instance - */ - StructuredDataset.prototype.metadata = null; - - /** - * Creates a new StructuredDataset instance using the specified properties. - * @function create - * @memberof flyteidl.core.StructuredDataset - * @static - * @param {flyteidl.core.IStructuredDataset=} [properties] Properties to set - * @returns {flyteidl.core.StructuredDataset} StructuredDataset instance - */ - StructuredDataset.create = function create(properties) { - return new StructuredDataset(properties); - }; - - /** - * Encodes the specified StructuredDataset message. Does not implicitly {@link flyteidl.core.StructuredDataset.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.StructuredDataset - * @static - * @param {flyteidl.core.IStructuredDataset} message StructuredDataset message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - StructuredDataset.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.uri != null && message.hasOwnProperty("uri")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.uri); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.core.StructuredDatasetMetadata.encode(message.metadata, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a StructuredDataset message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.StructuredDataset - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.StructuredDataset} StructuredDataset - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - StructuredDataset.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.StructuredDataset(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.uri = reader.string(); - break; - case 2: - message.metadata = $root.flyteidl.core.StructuredDatasetMetadata.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a StructuredDataset message. - * @function verify - * @memberof flyteidl.core.StructuredDataset - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - StructuredDataset.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.uri != null && message.hasOwnProperty("uri")) - if (!$util.isString(message.uri)) - return "uri: string expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.core.StructuredDatasetMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - return null; - }; - - return StructuredDataset; - })(); - - core.Scalar = (function() { - - /** - * Properties of a Scalar. - * @memberof flyteidl.core - * @interface IScalar - * @property {flyteidl.core.IPrimitive|null} [primitive] Scalar primitive - * @property {flyteidl.core.IBlob|null} [blob] Scalar blob - * @property {flyteidl.core.IBinary|null} [binary] Scalar binary - * @property {flyteidl.core.ISchema|null} [schema] Scalar schema - * @property {flyteidl.core.IVoid|null} [noneType] Scalar noneType - * @property {flyteidl.core.IError|null} [error] Scalar error - * @property {google.protobuf.IStruct|null} [generic] Scalar generic - * @property {flyteidl.core.IStructuredDataset|null} [structuredDataset] Scalar structuredDataset - * @property {flyteidl.core.IUnion|null} [union] Scalar union - */ - - /** - * Constructs a new Scalar. - * @memberof flyteidl.core - * @classdesc Represents a Scalar. - * @implements IScalar - * @constructor - * @param {flyteidl.core.IScalar=} [properties] Properties to set - */ - function Scalar(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Scalar primitive. - * @member {flyteidl.core.IPrimitive|null|undefined} primitive - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.primitive = null; - - /** - * Scalar blob. - * @member {flyteidl.core.IBlob|null|undefined} blob - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.blob = null; - - /** - * Scalar binary. - * @member {flyteidl.core.IBinary|null|undefined} binary - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.binary = null; - - /** - * Scalar schema. - * @member {flyteidl.core.ISchema|null|undefined} schema - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.schema = null; - - /** - * Scalar noneType. - * @member {flyteidl.core.IVoid|null|undefined} noneType - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.noneType = null; - - /** - * Scalar error. - * @member {flyteidl.core.IError|null|undefined} error - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.error = null; - - /** - * Scalar generic. - * @member {google.protobuf.IStruct|null|undefined} generic - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.generic = null; - - /** - * Scalar structuredDataset. - * @member {flyteidl.core.IStructuredDataset|null|undefined} structuredDataset - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.structuredDataset = null; - - /** - * Scalar union. - * @member {flyteidl.core.IUnion|null|undefined} union - * @memberof flyteidl.core.Scalar - * @instance - */ - Scalar.prototype.union = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Scalar value. - * @member {"primitive"|"blob"|"binary"|"schema"|"noneType"|"error"|"generic"|"structuredDataset"|"union"|undefined} value - * @memberof flyteidl.core.Scalar - * @instance - */ - Object.defineProperty(Scalar.prototype, "value", { - get: $util.oneOfGetter($oneOfFields = ["primitive", "blob", "binary", "schema", "noneType", "error", "generic", "structuredDataset", "union"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Scalar instance using the specified properties. - * @function create - * @memberof flyteidl.core.Scalar - * @static - * @param {flyteidl.core.IScalar=} [properties] Properties to set - * @returns {flyteidl.core.Scalar} Scalar instance - */ - Scalar.create = function create(properties) { - return new Scalar(properties); - }; - - /** - * Encodes the specified Scalar message. Does not implicitly {@link flyteidl.core.Scalar.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Scalar - * @static - * @param {flyteidl.core.IScalar} message Scalar message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Scalar.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.primitive != null && message.hasOwnProperty("primitive")) - $root.flyteidl.core.Primitive.encode(message.primitive, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.blob != null && message.hasOwnProperty("blob")) - $root.flyteidl.core.Blob.encode(message.blob, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.binary != null && message.hasOwnProperty("binary")) - $root.flyteidl.core.Binary.encode(message.binary, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.schema != null && message.hasOwnProperty("schema")) - $root.flyteidl.core.Schema.encode(message.schema, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.noneType != null && message.hasOwnProperty("noneType")) - $root.flyteidl.core.Void.encode(message.noneType, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.Error.encode(message.error, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.generic != null && message.hasOwnProperty("generic")) - $root.google.protobuf.Struct.encode(message.generic, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.structuredDataset != null && message.hasOwnProperty("structuredDataset")) - $root.flyteidl.core.StructuredDataset.encode(message.structuredDataset, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.union != null && message.hasOwnProperty("union")) - $root.flyteidl.core.Union.encode(message.union, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Scalar message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Scalar - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Scalar} Scalar - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Scalar.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Scalar(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.primitive = $root.flyteidl.core.Primitive.decode(reader, reader.uint32()); - break; - case 2: - message.blob = $root.flyteidl.core.Blob.decode(reader, reader.uint32()); - break; - case 3: - message.binary = $root.flyteidl.core.Binary.decode(reader, reader.uint32()); - break; - case 4: - message.schema = $root.flyteidl.core.Schema.decode(reader, reader.uint32()); - break; - case 5: - message.noneType = $root.flyteidl.core.Void.decode(reader, reader.uint32()); - break; - case 6: - message.error = $root.flyteidl.core.Error.decode(reader, reader.uint32()); - break; - case 7: - message.generic = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - case 8: - message.structuredDataset = $root.flyteidl.core.StructuredDataset.decode(reader, reader.uint32()); - break; - case 9: - message.union = $root.flyteidl.core.Union.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Scalar message. - * @function verify - * @memberof flyteidl.core.Scalar - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Scalar.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.primitive != null && message.hasOwnProperty("primitive")) { - properties.value = 1; - { - var error = $root.flyteidl.core.Primitive.verify(message.primitive); - if (error) - return "primitive." + error; - } - } - if (message.blob != null && message.hasOwnProperty("blob")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.Blob.verify(message.blob); - if (error) - return "blob." + error; - } - } - if (message.binary != null && message.hasOwnProperty("binary")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.Binary.verify(message.binary); - if (error) - return "binary." + error; - } - } - if (message.schema != null && message.hasOwnProperty("schema")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.Schema.verify(message.schema); - if (error) - return "schema." + error; - } - } - if (message.noneType != null && message.hasOwnProperty("noneType")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.Void.verify(message.noneType); - if (error) - return "noneType." + error; - } - } - if (message.error != null && message.hasOwnProperty("error")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.Error.verify(message.error); - if (error) - return "error." + error; - } - } - if (message.generic != null && message.hasOwnProperty("generic")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.google.protobuf.Struct.verify(message.generic); - if (error) - return "generic." + error; - } - } - if (message.structuredDataset != null && message.hasOwnProperty("structuredDataset")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.StructuredDataset.verify(message.structuredDataset); - if (error) - return "structuredDataset." + error; - } - } - if (message.union != null && message.hasOwnProperty("union")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.Union.verify(message.union); - if (error) - return "union." + error; - } - } - return null; - }; - - return Scalar; - })(); - - core.Literal = (function() { - - /** - * Properties of a Literal. - * @memberof flyteidl.core - * @interface ILiteral - * @property {flyteidl.core.IScalar|null} [scalar] Literal scalar - * @property {flyteidl.core.ILiteralCollection|null} [collection] Literal collection - * @property {flyteidl.core.ILiteralMap|null} [map] Literal map - * @property {string|null} [hash] Literal hash - * @property {Object.|null} [metadata] Literal metadata - */ - - /** - * Constructs a new Literal. - * @memberof flyteidl.core - * @classdesc Represents a Literal. - * @implements ILiteral - * @constructor - * @param {flyteidl.core.ILiteral=} [properties] Properties to set - */ - function Literal(properties) { - this.metadata = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Literal scalar. - * @member {flyteidl.core.IScalar|null|undefined} scalar - * @memberof flyteidl.core.Literal - * @instance - */ - Literal.prototype.scalar = null; - - /** - * Literal collection. - * @member {flyteidl.core.ILiteralCollection|null|undefined} collection - * @memberof flyteidl.core.Literal - * @instance - */ - Literal.prototype.collection = null; - - /** - * Literal map. - * @member {flyteidl.core.ILiteralMap|null|undefined} map - * @memberof flyteidl.core.Literal - * @instance - */ - Literal.prototype.map = null; - - /** - * Literal hash. - * @member {string} hash - * @memberof flyteidl.core.Literal - * @instance - */ - Literal.prototype.hash = ""; - - /** - * Literal metadata. - * @member {Object.} metadata - * @memberof flyteidl.core.Literal - * @instance - */ - Literal.prototype.metadata = $util.emptyObject; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Literal value. - * @member {"scalar"|"collection"|"map"|undefined} value - * @memberof flyteidl.core.Literal - * @instance - */ - Object.defineProperty(Literal.prototype, "value", { - get: $util.oneOfGetter($oneOfFields = ["scalar", "collection", "map"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Literal instance using the specified properties. - * @function create - * @memberof flyteidl.core.Literal - * @static - * @param {flyteidl.core.ILiteral=} [properties] Properties to set - * @returns {flyteidl.core.Literal} Literal instance - */ - Literal.create = function create(properties) { - return new Literal(properties); - }; - - /** - * Encodes the specified Literal message. Does not implicitly {@link flyteidl.core.Literal.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Literal - * @static - * @param {flyteidl.core.ILiteral} message Literal message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Literal.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.scalar != null && message.hasOwnProperty("scalar")) - $root.flyteidl.core.Scalar.encode(message.scalar, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.collection != null && message.hasOwnProperty("collection")) - $root.flyteidl.core.LiteralCollection.encode(message.collection, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.map != null && message.hasOwnProperty("map")) - $root.flyteidl.core.LiteralMap.encode(message.map, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.hash != null && message.hasOwnProperty("hash")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.hash); - if (message.metadata != null && message.hasOwnProperty("metadata")) - for (var keys = Object.keys(message.metadata), i = 0; i < keys.length; ++i) - writer.uint32(/* id 5, wireType 2 =*/42).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.metadata[keys[i]]).ldelim(); - return writer; - }; - - /** - * Decodes a Literal message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Literal - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Literal} Literal - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Literal.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Literal(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.scalar = $root.flyteidl.core.Scalar.decode(reader, reader.uint32()); - break; - case 2: - message.collection = $root.flyteidl.core.LiteralCollection.decode(reader, reader.uint32()); - break; - case 3: - message.map = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 4: - message.hash = reader.string(); - break; - case 5: - reader.skip().pos++; - if (message.metadata === $util.emptyObject) - message.metadata = {}; - key = reader.string(); - reader.pos++; - message.metadata[key] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Literal message. - * @function verify - * @memberof flyteidl.core.Literal - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Literal.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.scalar != null && message.hasOwnProperty("scalar")) { - properties.value = 1; - { - var error = $root.flyteidl.core.Scalar.verify(message.scalar); - if (error) - return "scalar." + error; - } - } - if (message.collection != null && message.hasOwnProperty("collection")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.LiteralCollection.verify(message.collection); - if (error) - return "collection." + error; - } - } - if (message.map != null && message.hasOwnProperty("map")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.map); - if (error) - return "map." + error; - } - } - if (message.hash != null && message.hasOwnProperty("hash")) - if (!$util.isString(message.hash)) - return "hash: string expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - if (!$util.isObject(message.metadata)) - return "metadata: object expected"; - var key = Object.keys(message.metadata); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.metadata[key[i]])) - return "metadata: string{k:string} expected"; - } - return null; - }; - - return Literal; - })(); - - core.LiteralCollection = (function() { - - /** - * Properties of a LiteralCollection. - * @memberof flyteidl.core - * @interface ILiteralCollection - * @property {Array.|null} [literals] LiteralCollection literals - */ - - /** - * Constructs a new LiteralCollection. - * @memberof flyteidl.core - * @classdesc Represents a LiteralCollection. - * @implements ILiteralCollection - * @constructor - * @param {flyteidl.core.ILiteralCollection=} [properties] Properties to set - */ - function LiteralCollection(properties) { - this.literals = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LiteralCollection literals. - * @member {Array.} literals - * @memberof flyteidl.core.LiteralCollection - * @instance - */ - LiteralCollection.prototype.literals = $util.emptyArray; - - /** - * Creates a new LiteralCollection instance using the specified properties. - * @function create - * @memberof flyteidl.core.LiteralCollection - * @static - * @param {flyteidl.core.ILiteralCollection=} [properties] Properties to set - * @returns {flyteidl.core.LiteralCollection} LiteralCollection instance - */ - LiteralCollection.create = function create(properties) { - return new LiteralCollection(properties); - }; - - /** - * Encodes the specified LiteralCollection message. Does not implicitly {@link flyteidl.core.LiteralCollection.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.LiteralCollection - * @static - * @param {flyteidl.core.ILiteralCollection} message LiteralCollection message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LiteralCollection.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.literals != null && message.literals.length) - for (var i = 0; i < message.literals.length; ++i) - $root.flyteidl.core.Literal.encode(message.literals[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a LiteralCollection message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.LiteralCollection - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.LiteralCollection} LiteralCollection - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LiteralCollection.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.LiteralCollection(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.literals && message.literals.length)) - message.literals = []; - message.literals.push($root.flyteidl.core.Literal.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LiteralCollection message. - * @function verify - * @memberof flyteidl.core.LiteralCollection - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LiteralCollection.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.literals != null && message.hasOwnProperty("literals")) { - if (!Array.isArray(message.literals)) - return "literals: array expected"; - for (var i = 0; i < message.literals.length; ++i) { - var error = $root.flyteidl.core.Literal.verify(message.literals[i]); - if (error) - return "literals." + error; - } - } - return null; - }; - - return LiteralCollection; - })(); - - core.LiteralMap = (function() { - - /** - * Properties of a LiteralMap. - * @memberof flyteidl.core - * @interface ILiteralMap - * @property {Object.|null} [literals] LiteralMap literals - */ - - /** - * Constructs a new LiteralMap. - * @memberof flyteidl.core - * @classdesc Represents a LiteralMap. - * @implements ILiteralMap - * @constructor - * @param {flyteidl.core.ILiteralMap=} [properties] Properties to set - */ - function LiteralMap(properties) { - this.literals = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LiteralMap literals. - * @member {Object.} literals - * @memberof flyteidl.core.LiteralMap - * @instance - */ - LiteralMap.prototype.literals = $util.emptyObject; - - /** - * Creates a new LiteralMap instance using the specified properties. - * @function create - * @memberof flyteidl.core.LiteralMap - * @static - * @param {flyteidl.core.ILiteralMap=} [properties] Properties to set - * @returns {flyteidl.core.LiteralMap} LiteralMap instance - */ - LiteralMap.create = function create(properties) { - return new LiteralMap(properties); - }; - - /** - * Encodes the specified LiteralMap message. Does not implicitly {@link flyteidl.core.LiteralMap.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.LiteralMap - * @static - * @param {flyteidl.core.ILiteralMap} message LiteralMap message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LiteralMap.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.literals != null && message.hasOwnProperty("literals")) - for (var keys = Object.keys(message.literals), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.flyteidl.core.Literal.encode(message.literals[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - return writer; - }; - - /** - * Decodes a LiteralMap message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.LiteralMap - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.LiteralMap} LiteralMap - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LiteralMap.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.LiteralMap(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.literals === $util.emptyObject) - message.literals = {}; - key = reader.string(); - reader.pos++; - message.literals[key] = $root.flyteidl.core.Literal.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LiteralMap message. - * @function verify - * @memberof flyteidl.core.LiteralMap - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LiteralMap.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.literals != null && message.hasOwnProperty("literals")) { - if (!$util.isObject(message.literals)) - return "literals: object expected"; - var key = Object.keys(message.literals); - for (var i = 0; i < key.length; ++i) { - var error = $root.flyteidl.core.Literal.verify(message.literals[key[i]]); - if (error) - return "literals." + error; - } - } - return null; - }; - - return LiteralMap; - })(); - - core.BindingDataCollection = (function() { - - /** - * Properties of a BindingDataCollection. - * @memberof flyteidl.core - * @interface IBindingDataCollection - * @property {Array.|null} [bindings] BindingDataCollection bindings - */ - - /** - * Constructs a new BindingDataCollection. - * @memberof flyteidl.core - * @classdesc Represents a BindingDataCollection. - * @implements IBindingDataCollection - * @constructor - * @param {flyteidl.core.IBindingDataCollection=} [properties] Properties to set - */ - function BindingDataCollection(properties) { - this.bindings = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BindingDataCollection bindings. - * @member {Array.} bindings - * @memberof flyteidl.core.BindingDataCollection - * @instance - */ - BindingDataCollection.prototype.bindings = $util.emptyArray; - - /** - * Creates a new BindingDataCollection instance using the specified properties. - * @function create - * @memberof flyteidl.core.BindingDataCollection - * @static - * @param {flyteidl.core.IBindingDataCollection=} [properties] Properties to set - * @returns {flyteidl.core.BindingDataCollection} BindingDataCollection instance - */ - BindingDataCollection.create = function create(properties) { - return new BindingDataCollection(properties); - }; - - /** - * Encodes the specified BindingDataCollection message. Does not implicitly {@link flyteidl.core.BindingDataCollection.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.BindingDataCollection - * @static - * @param {flyteidl.core.IBindingDataCollection} message BindingDataCollection message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BindingDataCollection.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.bindings != null && message.bindings.length) - for (var i = 0; i < message.bindings.length; ++i) - $root.flyteidl.core.BindingData.encode(message.bindings[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a BindingDataCollection message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.BindingDataCollection - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.BindingDataCollection} BindingDataCollection - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BindingDataCollection.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.BindingDataCollection(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.bindings && message.bindings.length)) - message.bindings = []; - message.bindings.push($root.flyteidl.core.BindingData.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BindingDataCollection message. - * @function verify - * @memberof flyteidl.core.BindingDataCollection - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BindingDataCollection.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.bindings != null && message.hasOwnProperty("bindings")) { - if (!Array.isArray(message.bindings)) - return "bindings: array expected"; - for (var i = 0; i < message.bindings.length; ++i) { - var error = $root.flyteidl.core.BindingData.verify(message.bindings[i]); - if (error) - return "bindings." + error; - } - } - return null; - }; - - return BindingDataCollection; - })(); - - core.BindingDataMap = (function() { - - /** - * Properties of a BindingDataMap. - * @memberof flyteidl.core - * @interface IBindingDataMap - * @property {Object.|null} [bindings] BindingDataMap bindings - */ - - /** - * Constructs a new BindingDataMap. - * @memberof flyteidl.core - * @classdesc Represents a BindingDataMap. - * @implements IBindingDataMap - * @constructor - * @param {flyteidl.core.IBindingDataMap=} [properties] Properties to set - */ - function BindingDataMap(properties) { - this.bindings = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BindingDataMap bindings. - * @member {Object.} bindings - * @memberof flyteidl.core.BindingDataMap - * @instance - */ - BindingDataMap.prototype.bindings = $util.emptyObject; - - /** - * Creates a new BindingDataMap instance using the specified properties. - * @function create - * @memberof flyteidl.core.BindingDataMap - * @static - * @param {flyteidl.core.IBindingDataMap=} [properties] Properties to set - * @returns {flyteidl.core.BindingDataMap} BindingDataMap instance - */ - BindingDataMap.create = function create(properties) { - return new BindingDataMap(properties); - }; - - /** - * Encodes the specified BindingDataMap message. Does not implicitly {@link flyteidl.core.BindingDataMap.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.BindingDataMap - * @static - * @param {flyteidl.core.IBindingDataMap} message BindingDataMap message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BindingDataMap.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.bindings != null && message.hasOwnProperty("bindings")) - for (var keys = Object.keys(message.bindings), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.flyteidl.core.BindingData.encode(message.bindings[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - return writer; - }; - - /** - * Decodes a BindingDataMap message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.BindingDataMap - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.BindingDataMap} BindingDataMap - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BindingDataMap.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.BindingDataMap(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.bindings === $util.emptyObject) - message.bindings = {}; - key = reader.string(); - reader.pos++; - message.bindings[key] = $root.flyteidl.core.BindingData.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BindingDataMap message. - * @function verify - * @memberof flyteidl.core.BindingDataMap - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BindingDataMap.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.bindings != null && message.hasOwnProperty("bindings")) { - if (!$util.isObject(message.bindings)) - return "bindings: object expected"; - var key = Object.keys(message.bindings); - for (var i = 0; i < key.length; ++i) { - var error = $root.flyteidl.core.BindingData.verify(message.bindings[key[i]]); - if (error) - return "bindings." + error; - } - } - return null; - }; - - return BindingDataMap; - })(); - - core.UnionInfo = (function() { - - /** - * Properties of an UnionInfo. - * @memberof flyteidl.core - * @interface IUnionInfo - * @property {flyteidl.core.ILiteralType|null} [targetType] UnionInfo targetType - */ - - /** - * Constructs a new UnionInfo. - * @memberof flyteidl.core - * @classdesc Represents an UnionInfo. - * @implements IUnionInfo - * @constructor - * @param {flyteidl.core.IUnionInfo=} [properties] Properties to set - */ - function UnionInfo(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * UnionInfo targetType. - * @member {flyteidl.core.ILiteralType|null|undefined} targetType - * @memberof flyteidl.core.UnionInfo - * @instance - */ - UnionInfo.prototype.targetType = null; - - /** - * Creates a new UnionInfo instance using the specified properties. - * @function create - * @memberof flyteidl.core.UnionInfo - * @static - * @param {flyteidl.core.IUnionInfo=} [properties] Properties to set - * @returns {flyteidl.core.UnionInfo} UnionInfo instance - */ - UnionInfo.create = function create(properties) { - return new UnionInfo(properties); - }; - - /** - * Encodes the specified UnionInfo message. Does not implicitly {@link flyteidl.core.UnionInfo.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.UnionInfo - * @static - * @param {flyteidl.core.IUnionInfo} message UnionInfo message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - UnionInfo.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.targetType != null && message.hasOwnProperty("targetType")) - $root.flyteidl.core.LiteralType.encode(message.targetType, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an UnionInfo message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.UnionInfo - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.UnionInfo} UnionInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - UnionInfo.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.UnionInfo(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.targetType = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an UnionInfo message. - * @function verify - * @memberof flyteidl.core.UnionInfo - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - UnionInfo.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.targetType != null && message.hasOwnProperty("targetType")) { - var error = $root.flyteidl.core.LiteralType.verify(message.targetType); - if (error) - return "targetType." + error; - } - return null; - }; - - return UnionInfo; - })(); - - core.BindingData = (function() { - - /** - * Properties of a BindingData. - * @memberof flyteidl.core - * @interface IBindingData - * @property {flyteidl.core.IScalar|null} [scalar] BindingData scalar - * @property {flyteidl.core.IBindingDataCollection|null} [collection] BindingData collection - * @property {flyteidl.core.IOutputReference|null} [promise] BindingData promise - * @property {flyteidl.core.IBindingDataMap|null} [map] BindingData map - * @property {flyteidl.core.IUnionInfo|null} [union] BindingData union - */ - - /** - * Constructs a new BindingData. - * @memberof flyteidl.core - * @classdesc Represents a BindingData. - * @implements IBindingData - * @constructor - * @param {flyteidl.core.IBindingData=} [properties] Properties to set - */ - function BindingData(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BindingData scalar. - * @member {flyteidl.core.IScalar|null|undefined} scalar - * @memberof flyteidl.core.BindingData - * @instance - */ - BindingData.prototype.scalar = null; - - /** - * BindingData collection. - * @member {flyteidl.core.IBindingDataCollection|null|undefined} collection - * @memberof flyteidl.core.BindingData - * @instance - */ - BindingData.prototype.collection = null; - - /** - * BindingData promise. - * @member {flyteidl.core.IOutputReference|null|undefined} promise - * @memberof flyteidl.core.BindingData - * @instance - */ - BindingData.prototype.promise = null; - - /** - * BindingData map. - * @member {flyteidl.core.IBindingDataMap|null|undefined} map - * @memberof flyteidl.core.BindingData - * @instance - */ - BindingData.prototype.map = null; - - /** - * BindingData union. - * @member {flyteidl.core.IUnionInfo|null|undefined} union - * @memberof flyteidl.core.BindingData - * @instance - */ - BindingData.prototype.union = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * BindingData value. - * @member {"scalar"|"collection"|"promise"|"map"|undefined} value - * @memberof flyteidl.core.BindingData - * @instance - */ - Object.defineProperty(BindingData.prototype, "value", { - get: $util.oneOfGetter($oneOfFields = ["scalar", "collection", "promise", "map"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new BindingData instance using the specified properties. - * @function create - * @memberof flyteidl.core.BindingData - * @static - * @param {flyteidl.core.IBindingData=} [properties] Properties to set - * @returns {flyteidl.core.BindingData} BindingData instance - */ - BindingData.create = function create(properties) { - return new BindingData(properties); - }; - - /** - * Encodes the specified BindingData message. Does not implicitly {@link flyteidl.core.BindingData.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.BindingData - * @static - * @param {flyteidl.core.IBindingData} message BindingData message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BindingData.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.scalar != null && message.hasOwnProperty("scalar")) - $root.flyteidl.core.Scalar.encode(message.scalar, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.collection != null && message.hasOwnProperty("collection")) - $root.flyteidl.core.BindingDataCollection.encode(message.collection, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.promise != null && message.hasOwnProperty("promise")) - $root.flyteidl.core.OutputReference.encode(message.promise, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.map != null && message.hasOwnProperty("map")) - $root.flyteidl.core.BindingDataMap.encode(message.map, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.union != null && message.hasOwnProperty("union")) - $root.flyteidl.core.UnionInfo.encode(message.union, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a BindingData message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.BindingData - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.BindingData} BindingData - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BindingData.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.BindingData(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.scalar = $root.flyteidl.core.Scalar.decode(reader, reader.uint32()); - break; - case 2: - message.collection = $root.flyteidl.core.BindingDataCollection.decode(reader, reader.uint32()); - break; - case 3: - message.promise = $root.flyteidl.core.OutputReference.decode(reader, reader.uint32()); - break; - case 4: - message.map = $root.flyteidl.core.BindingDataMap.decode(reader, reader.uint32()); - break; - case 5: - message.union = $root.flyteidl.core.UnionInfo.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BindingData message. - * @function verify - * @memberof flyteidl.core.BindingData - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BindingData.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.scalar != null && message.hasOwnProperty("scalar")) { - properties.value = 1; - { - var error = $root.flyteidl.core.Scalar.verify(message.scalar); - if (error) - return "scalar." + error; - } - } - if (message.collection != null && message.hasOwnProperty("collection")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.BindingDataCollection.verify(message.collection); - if (error) - return "collection." + error; - } - } - if (message.promise != null && message.hasOwnProperty("promise")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.OutputReference.verify(message.promise); - if (error) - return "promise." + error; - } - } - if (message.map != null && message.hasOwnProperty("map")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - { - var error = $root.flyteidl.core.BindingDataMap.verify(message.map); - if (error) - return "map." + error; - } - } - if (message.union != null && message.hasOwnProperty("union")) { - var error = $root.flyteidl.core.UnionInfo.verify(message.union); - if (error) - return "union." + error; - } - return null; - }; - - return BindingData; - })(); - - core.Binding = (function() { - - /** - * Properties of a Binding. - * @memberof flyteidl.core - * @interface IBinding - * @property {string|null} ["var"] Binding var - * @property {flyteidl.core.IBindingData|null} [binding] Binding binding - */ - - /** - * Constructs a new Binding. - * @memberof flyteidl.core - * @classdesc Represents a Binding. - * @implements IBinding - * @constructor - * @param {flyteidl.core.IBinding=} [properties] Properties to set - */ - function Binding(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Binding var. - * @member {string} var - * @memberof flyteidl.core.Binding - * @instance - */ - Binding.prototype["var"] = ""; - - /** - * Binding binding. - * @member {flyteidl.core.IBindingData|null|undefined} binding - * @memberof flyteidl.core.Binding - * @instance - */ - Binding.prototype.binding = null; - - /** - * Creates a new Binding instance using the specified properties. - * @function create - * @memberof flyteidl.core.Binding - * @static - * @param {flyteidl.core.IBinding=} [properties] Properties to set - * @returns {flyteidl.core.Binding} Binding instance - */ - Binding.create = function create(properties) { - return new Binding(properties); - }; - - /** - * Encodes the specified Binding message. Does not implicitly {@link flyteidl.core.Binding.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Binding - * @static - * @param {flyteidl.core.IBinding} message Binding message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Binding.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message["var"] != null && message.hasOwnProperty("var")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message["var"]); - if (message.binding != null && message.hasOwnProperty("binding")) - $root.flyteidl.core.BindingData.encode(message.binding, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Binding message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Binding - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Binding} Binding - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Binding.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Binding(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message["var"] = reader.string(); - break; - case 2: - message.binding = $root.flyteidl.core.BindingData.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Binding message. - * @function verify - * @memberof flyteidl.core.Binding - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Binding.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message["var"] != null && message.hasOwnProperty("var")) - if (!$util.isString(message["var"])) - return "var: string expected"; - if (message.binding != null && message.hasOwnProperty("binding")) { - var error = $root.flyteidl.core.BindingData.verify(message.binding); - if (error) - return "binding." + error; - } - return null; - }; - - return Binding; - })(); - - core.KeyValuePair = (function() { - - /** - * Properties of a KeyValuePair. - * @memberof flyteidl.core - * @interface IKeyValuePair - * @property {string|null} [key] KeyValuePair key - * @property {string|null} [value] KeyValuePair value - */ - - /** - * Constructs a new KeyValuePair. - * @memberof flyteidl.core - * @classdesc Represents a KeyValuePair. - * @implements IKeyValuePair - * @constructor - * @param {flyteidl.core.IKeyValuePair=} [properties] Properties to set - */ - function KeyValuePair(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * KeyValuePair key. - * @member {string} key - * @memberof flyteidl.core.KeyValuePair - * @instance - */ - KeyValuePair.prototype.key = ""; - - /** - * KeyValuePair value. - * @member {string} value - * @memberof flyteidl.core.KeyValuePair - * @instance - */ - KeyValuePair.prototype.value = ""; - - /** - * Creates a new KeyValuePair instance using the specified properties. - * @function create - * @memberof flyteidl.core.KeyValuePair - * @static - * @param {flyteidl.core.IKeyValuePair=} [properties] Properties to set - * @returns {flyteidl.core.KeyValuePair} KeyValuePair instance - */ - KeyValuePair.create = function create(properties) { - return new KeyValuePair(properties); - }; - - /** - * Encodes the specified KeyValuePair message. Does not implicitly {@link flyteidl.core.KeyValuePair.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.KeyValuePair - * @static - * @param {flyteidl.core.IKeyValuePair} message KeyValuePair message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - KeyValuePair.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.key != null && message.hasOwnProperty("key")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.key); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.value); - return writer; - }; - - /** - * Decodes a KeyValuePair message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.KeyValuePair - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.KeyValuePair} KeyValuePair - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - KeyValuePair.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.KeyValuePair(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.key = reader.string(); - break; - case 2: - message.value = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a KeyValuePair message. - * @function verify - * @memberof flyteidl.core.KeyValuePair - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - KeyValuePair.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.key != null && message.hasOwnProperty("key")) - if (!$util.isString(message.key)) - return "key: string expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isString(message.value)) - return "value: string expected"; - return null; - }; - - return KeyValuePair; - })(); - - core.RetryStrategy = (function() { - - /** - * Properties of a RetryStrategy. - * @memberof flyteidl.core - * @interface IRetryStrategy - * @property {number|null} [retries] RetryStrategy retries - */ - - /** - * Constructs a new RetryStrategy. - * @memberof flyteidl.core - * @classdesc Represents a RetryStrategy. - * @implements IRetryStrategy - * @constructor - * @param {flyteidl.core.IRetryStrategy=} [properties] Properties to set - */ - function RetryStrategy(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * RetryStrategy retries. - * @member {number} retries - * @memberof flyteidl.core.RetryStrategy - * @instance - */ - RetryStrategy.prototype.retries = 0; - - /** - * Creates a new RetryStrategy instance using the specified properties. - * @function create - * @memberof flyteidl.core.RetryStrategy - * @static - * @param {flyteidl.core.IRetryStrategy=} [properties] Properties to set - * @returns {flyteidl.core.RetryStrategy} RetryStrategy instance - */ - RetryStrategy.create = function create(properties) { - return new RetryStrategy(properties); - }; - - /** - * Encodes the specified RetryStrategy message. Does not implicitly {@link flyteidl.core.RetryStrategy.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.RetryStrategy - * @static - * @param {flyteidl.core.IRetryStrategy} message RetryStrategy message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - RetryStrategy.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.retries != null && message.hasOwnProperty("retries")) - writer.uint32(/* id 5, wireType 0 =*/40).uint32(message.retries); - return writer; - }; - - /** - * Decodes a RetryStrategy message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.RetryStrategy - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.RetryStrategy} RetryStrategy - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - RetryStrategy.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.RetryStrategy(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 5: - message.retries = reader.uint32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a RetryStrategy message. - * @function verify - * @memberof flyteidl.core.RetryStrategy - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - RetryStrategy.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.retries != null && message.hasOwnProperty("retries")) - if (!$util.isInteger(message.retries)) - return "retries: integer expected"; - return null; - }; - - return RetryStrategy; - })(); - - /** - * SimpleType enum. - * @name flyteidl.core.SimpleType - * @enum {string} - * @property {number} NONE=0 NONE value - * @property {number} INTEGER=1 INTEGER value - * @property {number} FLOAT=2 FLOAT value - * @property {number} STRING=3 STRING value - * @property {number} BOOLEAN=4 BOOLEAN value - * @property {number} DATETIME=5 DATETIME value - * @property {number} DURATION=6 DURATION value - * @property {number} BINARY=7 BINARY value - * @property {number} ERROR=8 ERROR value - * @property {number} STRUCT=9 STRUCT value - */ - core.SimpleType = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "NONE"] = 0; - values[valuesById[1] = "INTEGER"] = 1; - values[valuesById[2] = "FLOAT"] = 2; - values[valuesById[3] = "STRING"] = 3; - values[valuesById[4] = "BOOLEAN"] = 4; - values[valuesById[5] = "DATETIME"] = 5; - values[valuesById[6] = "DURATION"] = 6; - values[valuesById[7] = "BINARY"] = 7; - values[valuesById[8] = "ERROR"] = 8; - values[valuesById[9] = "STRUCT"] = 9; - return values; - })(); - - core.SchemaType = (function() { - - /** - * Properties of a SchemaType. - * @memberof flyteidl.core - * @interface ISchemaType - * @property {Array.|null} [columns] SchemaType columns - */ - - /** - * Constructs a new SchemaType. - * @memberof flyteidl.core - * @classdesc Represents a SchemaType. - * @implements ISchemaType - * @constructor - * @param {flyteidl.core.ISchemaType=} [properties] Properties to set - */ - function SchemaType(properties) { - this.columns = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SchemaType columns. - * @member {Array.} columns - * @memberof flyteidl.core.SchemaType - * @instance - */ - SchemaType.prototype.columns = $util.emptyArray; - - /** - * Creates a new SchemaType instance using the specified properties. - * @function create - * @memberof flyteidl.core.SchemaType - * @static - * @param {flyteidl.core.ISchemaType=} [properties] Properties to set - * @returns {flyteidl.core.SchemaType} SchemaType instance - */ - SchemaType.create = function create(properties) { - return new SchemaType(properties); - }; - - /** - * Encodes the specified SchemaType message. Does not implicitly {@link flyteidl.core.SchemaType.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.SchemaType - * @static - * @param {flyteidl.core.ISchemaType} message SchemaType message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SchemaType.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.columns != null && message.columns.length) - for (var i = 0; i < message.columns.length; ++i) - $root.flyteidl.core.SchemaType.SchemaColumn.encode(message.columns[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a SchemaType message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.SchemaType - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.SchemaType} SchemaType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SchemaType.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.SchemaType(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 3: - if (!(message.columns && message.columns.length)) - message.columns = []; - message.columns.push($root.flyteidl.core.SchemaType.SchemaColumn.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SchemaType message. - * @function verify - * @memberof flyteidl.core.SchemaType - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SchemaType.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.columns != null && message.hasOwnProperty("columns")) { - if (!Array.isArray(message.columns)) - return "columns: array expected"; - for (var i = 0; i < message.columns.length; ++i) { - var error = $root.flyteidl.core.SchemaType.SchemaColumn.verify(message.columns[i]); - if (error) - return "columns." + error; - } - } - return null; - }; - - SchemaType.SchemaColumn = (function() { - - /** - * Properties of a SchemaColumn. - * @memberof flyteidl.core.SchemaType - * @interface ISchemaColumn - * @property {string|null} [name] SchemaColumn name - * @property {flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType|null} [type] SchemaColumn type - */ - - /** - * Constructs a new SchemaColumn. - * @memberof flyteidl.core.SchemaType - * @classdesc Represents a SchemaColumn. - * @implements ISchemaColumn - * @constructor - * @param {flyteidl.core.SchemaType.ISchemaColumn=} [properties] Properties to set - */ - function SchemaColumn(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SchemaColumn name. - * @member {string} name - * @memberof flyteidl.core.SchemaType.SchemaColumn - * @instance - */ - SchemaColumn.prototype.name = ""; - - /** - * SchemaColumn type. - * @member {flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType} type - * @memberof flyteidl.core.SchemaType.SchemaColumn - * @instance - */ - SchemaColumn.prototype.type = 0; - - /** - * Creates a new SchemaColumn instance using the specified properties. - * @function create - * @memberof flyteidl.core.SchemaType.SchemaColumn - * @static - * @param {flyteidl.core.SchemaType.ISchemaColumn=} [properties] Properties to set - * @returns {flyteidl.core.SchemaType.SchemaColumn} SchemaColumn instance - */ - SchemaColumn.create = function create(properties) { - return new SchemaColumn(properties); - }; - - /** - * Encodes the specified SchemaColumn message. Does not implicitly {@link flyteidl.core.SchemaType.SchemaColumn.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.SchemaType.SchemaColumn - * @static - * @param {flyteidl.core.SchemaType.ISchemaColumn} message SchemaColumn message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SchemaColumn.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.type != null && message.hasOwnProperty("type")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.type); - return writer; - }; - - /** - * Decodes a SchemaColumn message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.SchemaType.SchemaColumn - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.SchemaType.SchemaColumn} SchemaColumn - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SchemaColumn.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.SchemaType.SchemaColumn(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - message.type = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SchemaColumn message. - * @function verify - * @memberof flyteidl.core.SchemaType.SchemaColumn - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SchemaColumn.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.type != null && message.hasOwnProperty("type")) - switch (message.type) { - default: - return "type: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - break; - } - return null; - }; - - /** - * SchemaColumnType enum. - * @name flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType - * @enum {string} - * @property {number} INTEGER=0 INTEGER value - * @property {number} FLOAT=1 FLOAT value - * @property {number} STRING=2 STRING value - * @property {number} BOOLEAN=3 BOOLEAN value - * @property {number} DATETIME=4 DATETIME value - * @property {number} DURATION=5 DURATION value - */ - SchemaColumn.SchemaColumnType = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "INTEGER"] = 0; - values[valuesById[1] = "FLOAT"] = 1; - values[valuesById[2] = "STRING"] = 2; - values[valuesById[3] = "BOOLEAN"] = 3; - values[valuesById[4] = "DATETIME"] = 4; - values[valuesById[5] = "DURATION"] = 5; - return values; - })(); - - return SchemaColumn; - })(); - - return SchemaType; - })(); - - core.StructuredDatasetType = (function() { - - /** - * Properties of a StructuredDatasetType. - * @memberof flyteidl.core - * @interface IStructuredDatasetType - * @property {Array.|null} [columns] StructuredDatasetType columns - * @property {string|null} [format] StructuredDatasetType format - * @property {string|null} [externalSchemaType] StructuredDatasetType externalSchemaType - * @property {Uint8Array|null} [externalSchemaBytes] StructuredDatasetType externalSchemaBytes - */ - - /** - * Constructs a new StructuredDatasetType. - * @memberof flyteidl.core - * @classdesc Represents a StructuredDatasetType. - * @implements IStructuredDatasetType - * @constructor - * @param {flyteidl.core.IStructuredDatasetType=} [properties] Properties to set - */ - function StructuredDatasetType(properties) { - this.columns = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * StructuredDatasetType columns. - * @member {Array.} columns - * @memberof flyteidl.core.StructuredDatasetType - * @instance - */ - StructuredDatasetType.prototype.columns = $util.emptyArray; - - /** - * StructuredDatasetType format. - * @member {string} format - * @memberof flyteidl.core.StructuredDatasetType - * @instance - */ - StructuredDatasetType.prototype.format = ""; - - /** - * StructuredDatasetType externalSchemaType. - * @member {string} externalSchemaType - * @memberof flyteidl.core.StructuredDatasetType - * @instance - */ - StructuredDatasetType.prototype.externalSchemaType = ""; - - /** - * StructuredDatasetType externalSchemaBytes. - * @member {Uint8Array} externalSchemaBytes - * @memberof flyteidl.core.StructuredDatasetType - * @instance - */ - StructuredDatasetType.prototype.externalSchemaBytes = $util.newBuffer([]); - - /** - * Creates a new StructuredDatasetType instance using the specified properties. - * @function create - * @memberof flyteidl.core.StructuredDatasetType - * @static - * @param {flyteidl.core.IStructuredDatasetType=} [properties] Properties to set - * @returns {flyteidl.core.StructuredDatasetType} StructuredDatasetType instance - */ - StructuredDatasetType.create = function create(properties) { - return new StructuredDatasetType(properties); - }; - - /** - * Encodes the specified StructuredDatasetType message. Does not implicitly {@link flyteidl.core.StructuredDatasetType.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.StructuredDatasetType - * @static - * @param {flyteidl.core.IStructuredDatasetType} message StructuredDatasetType message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - StructuredDatasetType.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.columns != null && message.columns.length) - for (var i = 0; i < message.columns.length; ++i) - $root.flyteidl.core.StructuredDatasetType.DatasetColumn.encode(message.columns[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.format != null && message.hasOwnProperty("format")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.format); - if (message.externalSchemaType != null && message.hasOwnProperty("externalSchemaType")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.externalSchemaType); - if (message.externalSchemaBytes != null && message.hasOwnProperty("externalSchemaBytes")) - writer.uint32(/* id 4, wireType 2 =*/34).bytes(message.externalSchemaBytes); - return writer; - }; - - /** - * Decodes a StructuredDatasetType message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.StructuredDatasetType - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.StructuredDatasetType} StructuredDatasetType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - StructuredDatasetType.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.StructuredDatasetType(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.columns && message.columns.length)) - message.columns = []; - message.columns.push($root.flyteidl.core.StructuredDatasetType.DatasetColumn.decode(reader, reader.uint32())); - break; - case 2: - message.format = reader.string(); - break; - case 3: - message.externalSchemaType = reader.string(); - break; - case 4: - message.externalSchemaBytes = reader.bytes(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a StructuredDatasetType message. - * @function verify - * @memberof flyteidl.core.StructuredDatasetType - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - StructuredDatasetType.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.columns != null && message.hasOwnProperty("columns")) { - if (!Array.isArray(message.columns)) - return "columns: array expected"; - for (var i = 0; i < message.columns.length; ++i) { - var error = $root.flyteidl.core.StructuredDatasetType.DatasetColumn.verify(message.columns[i]); - if (error) - return "columns." + error; - } - } - if (message.format != null && message.hasOwnProperty("format")) - if (!$util.isString(message.format)) - return "format: string expected"; - if (message.externalSchemaType != null && message.hasOwnProperty("externalSchemaType")) - if (!$util.isString(message.externalSchemaType)) - return "externalSchemaType: string expected"; - if (message.externalSchemaBytes != null && message.hasOwnProperty("externalSchemaBytes")) - if (!(message.externalSchemaBytes && typeof message.externalSchemaBytes.length === "number" || $util.isString(message.externalSchemaBytes))) - return "externalSchemaBytes: buffer expected"; - return null; - }; - - StructuredDatasetType.DatasetColumn = (function() { - - /** - * Properties of a DatasetColumn. - * @memberof flyteidl.core.StructuredDatasetType - * @interface IDatasetColumn - * @property {string|null} [name] DatasetColumn name - * @property {flyteidl.core.ILiteralType|null} [literalType] DatasetColumn literalType - */ - - /** - * Constructs a new DatasetColumn. - * @memberof flyteidl.core.StructuredDatasetType - * @classdesc Represents a DatasetColumn. - * @implements IDatasetColumn - * @constructor - * @param {flyteidl.core.StructuredDatasetType.IDatasetColumn=} [properties] Properties to set - */ - function DatasetColumn(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DatasetColumn name. - * @member {string} name - * @memberof flyteidl.core.StructuredDatasetType.DatasetColumn - * @instance - */ - DatasetColumn.prototype.name = ""; - - /** - * DatasetColumn literalType. - * @member {flyteidl.core.ILiteralType|null|undefined} literalType - * @memberof flyteidl.core.StructuredDatasetType.DatasetColumn - * @instance - */ - DatasetColumn.prototype.literalType = null; - - /** - * Creates a new DatasetColumn instance using the specified properties. - * @function create - * @memberof flyteidl.core.StructuredDatasetType.DatasetColumn - * @static - * @param {flyteidl.core.StructuredDatasetType.IDatasetColumn=} [properties] Properties to set - * @returns {flyteidl.core.StructuredDatasetType.DatasetColumn} DatasetColumn instance - */ - DatasetColumn.create = function create(properties) { - return new DatasetColumn(properties); - }; - - /** - * Encodes the specified DatasetColumn message. Does not implicitly {@link flyteidl.core.StructuredDatasetType.DatasetColumn.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.StructuredDatasetType.DatasetColumn - * @static - * @param {flyteidl.core.StructuredDatasetType.IDatasetColumn} message DatasetColumn message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DatasetColumn.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.literalType != null && message.hasOwnProperty("literalType")) - $root.flyteidl.core.LiteralType.encode(message.literalType, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a DatasetColumn message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.StructuredDatasetType.DatasetColumn - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.StructuredDatasetType.DatasetColumn} DatasetColumn - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DatasetColumn.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.StructuredDatasetType.DatasetColumn(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - message.literalType = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DatasetColumn message. - * @function verify - * @memberof flyteidl.core.StructuredDatasetType.DatasetColumn - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DatasetColumn.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.literalType != null && message.hasOwnProperty("literalType")) { - var error = $root.flyteidl.core.LiteralType.verify(message.literalType); - if (error) - return "literalType." + error; - } - return null; - }; - - return DatasetColumn; - })(); - - return StructuredDatasetType; - })(); - - core.BlobType = (function() { - - /** - * Properties of a BlobType. - * @memberof flyteidl.core - * @interface IBlobType - * @property {string|null} [format] BlobType format - * @property {flyteidl.core.BlobType.BlobDimensionality|null} [dimensionality] BlobType dimensionality - */ - - /** - * Constructs a new BlobType. - * @memberof flyteidl.core - * @classdesc Represents a BlobType. - * @implements IBlobType - * @constructor - * @param {flyteidl.core.IBlobType=} [properties] Properties to set - */ - function BlobType(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BlobType format. - * @member {string} format - * @memberof flyteidl.core.BlobType - * @instance - */ - BlobType.prototype.format = ""; - - /** - * BlobType dimensionality. - * @member {flyteidl.core.BlobType.BlobDimensionality} dimensionality - * @memberof flyteidl.core.BlobType - * @instance - */ - BlobType.prototype.dimensionality = 0; - - /** - * Creates a new BlobType instance using the specified properties. - * @function create - * @memberof flyteidl.core.BlobType - * @static - * @param {flyteidl.core.IBlobType=} [properties] Properties to set - * @returns {flyteidl.core.BlobType} BlobType instance - */ - BlobType.create = function create(properties) { - return new BlobType(properties); - }; - - /** - * Encodes the specified BlobType message. Does not implicitly {@link flyteidl.core.BlobType.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.BlobType - * @static - * @param {flyteidl.core.IBlobType} message BlobType message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BlobType.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.format != null && message.hasOwnProperty("format")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.format); - if (message.dimensionality != null && message.hasOwnProperty("dimensionality")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.dimensionality); - return writer; - }; - - /** - * Decodes a BlobType message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.BlobType - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.BlobType} BlobType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BlobType.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.BlobType(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.format = reader.string(); - break; - case 2: - message.dimensionality = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BlobType message. - * @function verify - * @memberof flyteidl.core.BlobType - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BlobType.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.format != null && message.hasOwnProperty("format")) - if (!$util.isString(message.format)) - return "format: string expected"; - if (message.dimensionality != null && message.hasOwnProperty("dimensionality")) - switch (message.dimensionality) { - default: - return "dimensionality: enum value expected"; - case 0: - case 1: - break; - } - return null; - }; - - /** - * BlobDimensionality enum. - * @name flyteidl.core.BlobType.BlobDimensionality - * @enum {string} - * @property {number} SINGLE=0 SINGLE value - * @property {number} MULTIPART=1 MULTIPART value - */ - BlobType.BlobDimensionality = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "SINGLE"] = 0; - values[valuesById[1] = "MULTIPART"] = 1; - return values; - })(); - - return BlobType; - })(); - - core.EnumType = (function() { - - /** - * Properties of an EnumType. - * @memberof flyteidl.core - * @interface IEnumType - * @property {Array.|null} [values] EnumType values - */ - - /** - * Constructs a new EnumType. - * @memberof flyteidl.core - * @classdesc Represents an EnumType. - * @implements IEnumType - * @constructor - * @param {flyteidl.core.IEnumType=} [properties] Properties to set - */ - function EnumType(properties) { - this.values = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EnumType values. - * @member {Array.} values - * @memberof flyteidl.core.EnumType - * @instance - */ - EnumType.prototype.values = $util.emptyArray; - - /** - * Creates a new EnumType instance using the specified properties. - * @function create - * @memberof flyteidl.core.EnumType - * @static - * @param {flyteidl.core.IEnumType=} [properties] Properties to set - * @returns {flyteidl.core.EnumType} EnumType instance - */ - EnumType.create = function create(properties) { - return new EnumType(properties); - }; - - /** - * Encodes the specified EnumType message. Does not implicitly {@link flyteidl.core.EnumType.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.EnumType - * @static - * @param {flyteidl.core.IEnumType} message EnumType message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EnumType.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.values != null && message.values.length) - for (var i = 0; i < message.values.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.values[i]); - return writer; - }; - - /** - * Decodes an EnumType message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.EnumType - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.EnumType} EnumType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EnumType.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.EnumType(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.values && message.values.length)) - message.values = []; - message.values.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EnumType message. - * @function verify - * @memberof flyteidl.core.EnumType - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EnumType.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.values != null && message.hasOwnProperty("values")) { - if (!Array.isArray(message.values)) - return "values: array expected"; - for (var i = 0; i < message.values.length; ++i) - if (!$util.isString(message.values[i])) - return "values: string[] expected"; - } - return null; - }; - - return EnumType; - })(); - - core.UnionType = (function() { - - /** - * Properties of an UnionType. - * @memberof flyteidl.core - * @interface IUnionType - * @property {Array.|null} [variants] UnionType variants - */ - - /** - * Constructs a new UnionType. - * @memberof flyteidl.core - * @classdesc Represents an UnionType. - * @implements IUnionType - * @constructor - * @param {flyteidl.core.IUnionType=} [properties] Properties to set - */ - function UnionType(properties) { - this.variants = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * UnionType variants. - * @member {Array.} variants - * @memberof flyteidl.core.UnionType - * @instance - */ - UnionType.prototype.variants = $util.emptyArray; - - /** - * Creates a new UnionType instance using the specified properties. - * @function create - * @memberof flyteidl.core.UnionType - * @static - * @param {flyteidl.core.IUnionType=} [properties] Properties to set - * @returns {flyteidl.core.UnionType} UnionType instance - */ - UnionType.create = function create(properties) { - return new UnionType(properties); - }; - - /** - * Encodes the specified UnionType message. Does not implicitly {@link flyteidl.core.UnionType.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.UnionType - * @static - * @param {flyteidl.core.IUnionType} message UnionType message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - UnionType.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.variants != null && message.variants.length) - for (var i = 0; i < message.variants.length; ++i) - $root.flyteidl.core.LiteralType.encode(message.variants[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an UnionType message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.UnionType - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.UnionType} UnionType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - UnionType.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.UnionType(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.variants && message.variants.length)) - message.variants = []; - message.variants.push($root.flyteidl.core.LiteralType.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an UnionType message. - * @function verify - * @memberof flyteidl.core.UnionType - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - UnionType.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.variants != null && message.hasOwnProperty("variants")) { - if (!Array.isArray(message.variants)) - return "variants: array expected"; - for (var i = 0; i < message.variants.length; ++i) { - var error = $root.flyteidl.core.LiteralType.verify(message.variants[i]); - if (error) - return "variants." + error; - } - } - return null; - }; - - return UnionType; - })(); - - core.TypeStructure = (function() { - - /** - * Properties of a TypeStructure. - * @memberof flyteidl.core - * @interface ITypeStructure - * @property {string|null} [tag] TypeStructure tag - * @property {Object.|null} [dataclassType] TypeStructure dataclassType - */ - - /** - * Constructs a new TypeStructure. - * @memberof flyteidl.core - * @classdesc Represents a TypeStructure. - * @implements ITypeStructure - * @constructor - * @param {flyteidl.core.ITypeStructure=} [properties] Properties to set - */ - function TypeStructure(properties) { - this.dataclassType = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TypeStructure tag. - * @member {string} tag - * @memberof flyteidl.core.TypeStructure - * @instance - */ - TypeStructure.prototype.tag = ""; - - /** - * TypeStructure dataclassType. - * @member {Object.} dataclassType - * @memberof flyteidl.core.TypeStructure - * @instance - */ - TypeStructure.prototype.dataclassType = $util.emptyObject; - - /** - * Creates a new TypeStructure instance using the specified properties. - * @function create - * @memberof flyteidl.core.TypeStructure - * @static - * @param {flyteidl.core.ITypeStructure=} [properties] Properties to set - * @returns {flyteidl.core.TypeStructure} TypeStructure instance - */ - TypeStructure.create = function create(properties) { - return new TypeStructure(properties); - }; - - /** - * Encodes the specified TypeStructure message. Does not implicitly {@link flyteidl.core.TypeStructure.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TypeStructure - * @static - * @param {flyteidl.core.ITypeStructure} message TypeStructure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TypeStructure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.tag != null && message.hasOwnProperty("tag")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.tag); - if (message.dataclassType != null && message.hasOwnProperty("dataclassType")) - for (var keys = Object.keys(message.dataclassType), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 2, wireType 2 =*/18).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.flyteidl.core.LiteralType.encode(message.dataclassType[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - return writer; - }; - - /** - * Decodes a TypeStructure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TypeStructure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TypeStructure} TypeStructure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TypeStructure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TypeStructure(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.tag = reader.string(); - break; - case 2: - reader.skip().pos++; - if (message.dataclassType === $util.emptyObject) - message.dataclassType = {}; - key = reader.string(); - reader.pos++; - message.dataclassType[key] = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TypeStructure message. - * @function verify - * @memberof flyteidl.core.TypeStructure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TypeStructure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.tag != null && message.hasOwnProperty("tag")) - if (!$util.isString(message.tag)) - return "tag: string expected"; - if (message.dataclassType != null && message.hasOwnProperty("dataclassType")) { - if (!$util.isObject(message.dataclassType)) - return "dataclassType: object expected"; - var key = Object.keys(message.dataclassType); - for (var i = 0; i < key.length; ++i) { - var error = $root.flyteidl.core.LiteralType.verify(message.dataclassType[key[i]]); - if (error) - return "dataclassType." + error; - } - } - return null; - }; - - return TypeStructure; - })(); - - core.TypeAnnotation = (function() { - - /** - * Properties of a TypeAnnotation. - * @memberof flyteidl.core - * @interface ITypeAnnotation - * @property {google.protobuf.IStruct|null} [annotations] TypeAnnotation annotations - */ - - /** - * Constructs a new TypeAnnotation. - * @memberof flyteidl.core - * @classdesc Represents a TypeAnnotation. - * @implements ITypeAnnotation - * @constructor - * @param {flyteidl.core.ITypeAnnotation=} [properties] Properties to set - */ - function TypeAnnotation(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TypeAnnotation annotations. - * @member {google.protobuf.IStruct|null|undefined} annotations - * @memberof flyteidl.core.TypeAnnotation - * @instance - */ - TypeAnnotation.prototype.annotations = null; - - /** - * Creates a new TypeAnnotation instance using the specified properties. - * @function create - * @memberof flyteidl.core.TypeAnnotation - * @static - * @param {flyteidl.core.ITypeAnnotation=} [properties] Properties to set - * @returns {flyteidl.core.TypeAnnotation} TypeAnnotation instance - */ - TypeAnnotation.create = function create(properties) { - return new TypeAnnotation(properties); - }; - - /** - * Encodes the specified TypeAnnotation message. Does not implicitly {@link flyteidl.core.TypeAnnotation.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TypeAnnotation - * @static - * @param {flyteidl.core.ITypeAnnotation} message TypeAnnotation message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TypeAnnotation.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.annotations != null && message.hasOwnProperty("annotations")) - $root.google.protobuf.Struct.encode(message.annotations, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TypeAnnotation message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TypeAnnotation - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TypeAnnotation} TypeAnnotation - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TypeAnnotation.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TypeAnnotation(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.annotations = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TypeAnnotation message. - * @function verify - * @memberof flyteidl.core.TypeAnnotation - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TypeAnnotation.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.annotations != null && message.hasOwnProperty("annotations")) { - var error = $root.google.protobuf.Struct.verify(message.annotations); - if (error) - return "annotations." + error; - } - return null; - }; - - return TypeAnnotation; - })(); - - core.LiteralType = (function() { - - /** - * Properties of a LiteralType. - * @memberof flyteidl.core - * @interface ILiteralType - * @property {flyteidl.core.SimpleType|null} [simple] LiteralType simple - * @property {flyteidl.core.ISchemaType|null} [schema] LiteralType schema - * @property {flyteidl.core.ILiteralType|null} [collectionType] LiteralType collectionType - * @property {flyteidl.core.ILiteralType|null} [mapValueType] LiteralType mapValueType - * @property {flyteidl.core.IBlobType|null} [blob] LiteralType blob - * @property {flyteidl.core.IEnumType|null} [enumType] LiteralType enumType - * @property {flyteidl.core.IStructuredDatasetType|null} [structuredDatasetType] LiteralType structuredDatasetType - * @property {flyteidl.core.IUnionType|null} [unionType] LiteralType unionType - * @property {google.protobuf.IStruct|null} [metadata] LiteralType metadata - * @property {flyteidl.core.ITypeAnnotation|null} [annotation] LiteralType annotation - * @property {flyteidl.core.ITypeStructure|null} [structure] LiteralType structure - */ - - /** - * Constructs a new LiteralType. - * @memberof flyteidl.core - * @classdesc Represents a LiteralType. - * @implements ILiteralType - * @constructor - * @param {flyteidl.core.ILiteralType=} [properties] Properties to set - */ - function LiteralType(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LiteralType simple. - * @member {flyteidl.core.SimpleType} simple - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.simple = 0; - - /** - * LiteralType schema. - * @member {flyteidl.core.ISchemaType|null|undefined} schema - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.schema = null; - - /** - * LiteralType collectionType. - * @member {flyteidl.core.ILiteralType|null|undefined} collectionType - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.collectionType = null; - - /** - * LiteralType mapValueType. - * @member {flyteidl.core.ILiteralType|null|undefined} mapValueType - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.mapValueType = null; - - /** - * LiteralType blob. - * @member {flyteidl.core.IBlobType|null|undefined} blob - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.blob = null; - - /** - * LiteralType enumType. - * @member {flyteidl.core.IEnumType|null|undefined} enumType - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.enumType = null; - - /** - * LiteralType structuredDatasetType. - * @member {flyteidl.core.IStructuredDatasetType|null|undefined} structuredDatasetType - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.structuredDatasetType = null; - - /** - * LiteralType unionType. - * @member {flyteidl.core.IUnionType|null|undefined} unionType - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.unionType = null; - - /** - * LiteralType metadata. - * @member {google.protobuf.IStruct|null|undefined} metadata - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.metadata = null; - - /** - * LiteralType annotation. - * @member {flyteidl.core.ITypeAnnotation|null|undefined} annotation - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.annotation = null; - - /** - * LiteralType structure. - * @member {flyteidl.core.ITypeStructure|null|undefined} structure - * @memberof flyteidl.core.LiteralType - * @instance - */ - LiteralType.prototype.structure = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * LiteralType type. - * @member {"simple"|"schema"|"collectionType"|"mapValueType"|"blob"|"enumType"|"structuredDatasetType"|"unionType"|undefined} type - * @memberof flyteidl.core.LiteralType - * @instance - */ - Object.defineProperty(LiteralType.prototype, "type", { - get: $util.oneOfGetter($oneOfFields = ["simple", "schema", "collectionType", "mapValueType", "blob", "enumType", "structuredDatasetType", "unionType"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new LiteralType instance using the specified properties. - * @function create - * @memberof flyteidl.core.LiteralType - * @static - * @param {flyteidl.core.ILiteralType=} [properties] Properties to set - * @returns {flyteidl.core.LiteralType} LiteralType instance - */ - LiteralType.create = function create(properties) { - return new LiteralType(properties); - }; - - /** - * Encodes the specified LiteralType message. Does not implicitly {@link flyteidl.core.LiteralType.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.LiteralType - * @static - * @param {flyteidl.core.ILiteralType} message LiteralType message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LiteralType.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.simple != null && message.hasOwnProperty("simple")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.simple); - if (message.schema != null && message.hasOwnProperty("schema")) - $root.flyteidl.core.SchemaType.encode(message.schema, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.collectionType != null && message.hasOwnProperty("collectionType")) - $root.flyteidl.core.LiteralType.encode(message.collectionType, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.mapValueType != null && message.hasOwnProperty("mapValueType")) - $root.flyteidl.core.LiteralType.encode(message.mapValueType, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.blob != null && message.hasOwnProperty("blob")) - $root.flyteidl.core.BlobType.encode(message.blob, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.google.protobuf.Struct.encode(message.metadata, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.enumType != null && message.hasOwnProperty("enumType")) - $root.flyteidl.core.EnumType.encode(message.enumType, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.structuredDatasetType != null && message.hasOwnProperty("structuredDatasetType")) - $root.flyteidl.core.StructuredDatasetType.encode(message.structuredDatasetType, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.annotation != null && message.hasOwnProperty("annotation")) - $root.flyteidl.core.TypeAnnotation.encode(message.annotation, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.unionType != null && message.hasOwnProperty("unionType")) - $root.flyteidl.core.UnionType.encode(message.unionType, writer.uint32(/* id 10, wireType 2 =*/82).fork()).ldelim(); - if (message.structure != null && message.hasOwnProperty("structure")) - $root.flyteidl.core.TypeStructure.encode(message.structure, writer.uint32(/* id 11, wireType 2 =*/90).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a LiteralType message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.LiteralType - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.LiteralType} LiteralType - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LiteralType.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.LiteralType(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.simple = reader.int32(); - break; - case 2: - message.schema = $root.flyteidl.core.SchemaType.decode(reader, reader.uint32()); - break; - case 3: - message.collectionType = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - case 4: - message.mapValueType = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - case 5: - message.blob = $root.flyteidl.core.BlobType.decode(reader, reader.uint32()); - break; - case 7: - message.enumType = $root.flyteidl.core.EnumType.decode(reader, reader.uint32()); - break; - case 8: - message.structuredDatasetType = $root.flyteidl.core.StructuredDatasetType.decode(reader, reader.uint32()); - break; - case 10: - message.unionType = $root.flyteidl.core.UnionType.decode(reader, reader.uint32()); - break; - case 6: - message.metadata = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - case 9: - message.annotation = $root.flyteidl.core.TypeAnnotation.decode(reader, reader.uint32()); - break; - case 11: - message.structure = $root.flyteidl.core.TypeStructure.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LiteralType message. - * @function verify - * @memberof flyteidl.core.LiteralType - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LiteralType.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.simple != null && message.hasOwnProperty("simple")) { - properties.type = 1; - switch (message.simple) { - default: - return "simple: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - break; - } - } - if (message.schema != null && message.hasOwnProperty("schema")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.core.SchemaType.verify(message.schema); - if (error) - return "schema." + error; - } - } - if (message.collectionType != null && message.hasOwnProperty("collectionType")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.core.LiteralType.verify(message.collectionType); - if (error) - return "collectionType." + error; - } - } - if (message.mapValueType != null && message.hasOwnProperty("mapValueType")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.core.LiteralType.verify(message.mapValueType); - if (error) - return "mapValueType." + error; - } - } - if (message.blob != null && message.hasOwnProperty("blob")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.core.BlobType.verify(message.blob); - if (error) - return "blob." + error; - } - } - if (message.enumType != null && message.hasOwnProperty("enumType")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.core.EnumType.verify(message.enumType); - if (error) - return "enumType." + error; - } - } - if (message.structuredDatasetType != null && message.hasOwnProperty("structuredDatasetType")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.core.StructuredDatasetType.verify(message.structuredDatasetType); - if (error) - return "structuredDatasetType." + error; - } - } - if (message.unionType != null && message.hasOwnProperty("unionType")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.core.UnionType.verify(message.unionType); - if (error) - return "unionType." + error; - } - } - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.google.protobuf.Struct.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message.annotation != null && message.hasOwnProperty("annotation")) { - var error = $root.flyteidl.core.TypeAnnotation.verify(message.annotation); - if (error) - return "annotation." + error; - } - if (message.structure != null && message.hasOwnProperty("structure")) { - var error = $root.flyteidl.core.TypeStructure.verify(message.structure); - if (error) - return "structure." + error; - } - return null; - }; - - return LiteralType; - })(); - - core.OutputReference = (function() { - - /** - * Properties of an OutputReference. - * @memberof flyteidl.core - * @interface IOutputReference - * @property {string|null} [nodeId] OutputReference nodeId - * @property {string|null} ["var"] OutputReference var - * @property {Array.|null} [attrPath] OutputReference attrPath - */ - - /** - * Constructs a new OutputReference. - * @memberof flyteidl.core - * @classdesc Represents an OutputReference. - * @implements IOutputReference - * @constructor - * @param {flyteidl.core.IOutputReference=} [properties] Properties to set - */ - function OutputReference(properties) { - this.attrPath = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * OutputReference nodeId. - * @member {string} nodeId - * @memberof flyteidl.core.OutputReference - * @instance - */ - OutputReference.prototype.nodeId = ""; - - /** - * OutputReference var. - * @member {string} var - * @memberof flyteidl.core.OutputReference - * @instance - */ - OutputReference.prototype["var"] = ""; - - /** - * OutputReference attrPath. - * @member {Array.} attrPath - * @memberof flyteidl.core.OutputReference - * @instance - */ - OutputReference.prototype.attrPath = $util.emptyArray; - - /** - * Creates a new OutputReference instance using the specified properties. - * @function create - * @memberof flyteidl.core.OutputReference - * @static - * @param {flyteidl.core.IOutputReference=} [properties] Properties to set - * @returns {flyteidl.core.OutputReference} OutputReference instance - */ - OutputReference.create = function create(properties) { - return new OutputReference(properties); - }; - - /** - * Encodes the specified OutputReference message. Does not implicitly {@link flyteidl.core.OutputReference.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.OutputReference - * @static - * @param {flyteidl.core.IOutputReference} message OutputReference message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - OutputReference.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.nodeId != null && message.hasOwnProperty("nodeId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.nodeId); - if (message["var"] != null && message.hasOwnProperty("var")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message["var"]); - if (message.attrPath != null && message.attrPath.length) - for (var i = 0; i < message.attrPath.length; ++i) - $root.flyteidl.core.PromiseAttribute.encode(message.attrPath[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an OutputReference message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.OutputReference - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.OutputReference} OutputReference - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - OutputReference.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.OutputReference(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.nodeId = reader.string(); - break; - case 2: - message["var"] = reader.string(); - break; - case 3: - if (!(message.attrPath && message.attrPath.length)) - message.attrPath = []; - message.attrPath.push($root.flyteidl.core.PromiseAttribute.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an OutputReference message. - * @function verify - * @memberof flyteidl.core.OutputReference - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - OutputReference.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.nodeId != null && message.hasOwnProperty("nodeId")) - if (!$util.isString(message.nodeId)) - return "nodeId: string expected"; - if (message["var"] != null && message.hasOwnProperty("var")) - if (!$util.isString(message["var"])) - return "var: string expected"; - if (message.attrPath != null && message.hasOwnProperty("attrPath")) { - if (!Array.isArray(message.attrPath)) - return "attrPath: array expected"; - for (var i = 0; i < message.attrPath.length; ++i) { - var error = $root.flyteidl.core.PromiseAttribute.verify(message.attrPath[i]); - if (error) - return "attrPath." + error; - } - } - return null; - }; - - return OutputReference; - })(); - - core.PromiseAttribute = (function() { - - /** - * Properties of a PromiseAttribute. - * @memberof flyteidl.core - * @interface IPromiseAttribute - * @property {string|null} [stringValue] PromiseAttribute stringValue - * @property {number|null} [intValue] PromiseAttribute intValue - */ - - /** - * Constructs a new PromiseAttribute. - * @memberof flyteidl.core - * @classdesc Represents a PromiseAttribute. - * @implements IPromiseAttribute - * @constructor - * @param {flyteidl.core.IPromiseAttribute=} [properties] Properties to set - */ - function PromiseAttribute(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * PromiseAttribute stringValue. - * @member {string} stringValue - * @memberof flyteidl.core.PromiseAttribute - * @instance - */ - PromiseAttribute.prototype.stringValue = ""; - - /** - * PromiseAttribute intValue. - * @member {number} intValue - * @memberof flyteidl.core.PromiseAttribute - * @instance - */ - PromiseAttribute.prototype.intValue = 0; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * PromiseAttribute value. - * @member {"stringValue"|"intValue"|undefined} value - * @memberof flyteidl.core.PromiseAttribute - * @instance - */ - Object.defineProperty(PromiseAttribute.prototype, "value", { - get: $util.oneOfGetter($oneOfFields = ["stringValue", "intValue"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new PromiseAttribute instance using the specified properties. - * @function create - * @memberof flyteidl.core.PromiseAttribute - * @static - * @param {flyteidl.core.IPromiseAttribute=} [properties] Properties to set - * @returns {flyteidl.core.PromiseAttribute} PromiseAttribute instance - */ - PromiseAttribute.create = function create(properties) { - return new PromiseAttribute(properties); - }; - - /** - * Encodes the specified PromiseAttribute message. Does not implicitly {@link flyteidl.core.PromiseAttribute.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.PromiseAttribute - * @static - * @param {flyteidl.core.IPromiseAttribute} message PromiseAttribute message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - PromiseAttribute.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.stringValue != null && message.hasOwnProperty("stringValue")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.stringValue); - if (message.intValue != null && message.hasOwnProperty("intValue")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.intValue); - return writer; - }; - - /** - * Decodes a PromiseAttribute message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.PromiseAttribute - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.PromiseAttribute} PromiseAttribute - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - PromiseAttribute.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.PromiseAttribute(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.stringValue = reader.string(); - break; - case 2: - message.intValue = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a PromiseAttribute message. - * @function verify - * @memberof flyteidl.core.PromiseAttribute - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - PromiseAttribute.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.stringValue != null && message.hasOwnProperty("stringValue")) { - properties.value = 1; - if (!$util.isString(message.stringValue)) - return "stringValue: string expected"; - } - if (message.intValue != null && message.hasOwnProperty("intValue")) { - if (properties.value === 1) - return "value: multiple values"; - properties.value = 1; - if (!$util.isInteger(message.intValue)) - return "intValue: integer expected"; - } - return null; - }; - - return PromiseAttribute; - })(); - - core.Error = (function() { - - /** - * Properties of an Error. - * @memberof flyteidl.core - * @interface IError - * @property {string|null} [failedNodeId] Error failedNodeId - * @property {string|null} [message] Error message - */ - - /** - * Constructs a new Error. - * @memberof flyteidl.core - * @classdesc Represents an Error. - * @implements IError - * @constructor - * @param {flyteidl.core.IError=} [properties] Properties to set - */ - function Error(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Error failedNodeId. - * @member {string} failedNodeId - * @memberof flyteidl.core.Error - * @instance - */ - Error.prototype.failedNodeId = ""; - - /** - * Error message. - * @member {string} message - * @memberof flyteidl.core.Error - * @instance - */ - Error.prototype.message = ""; - - /** - * Creates a new Error instance using the specified properties. - * @function create - * @memberof flyteidl.core.Error - * @static - * @param {flyteidl.core.IError=} [properties] Properties to set - * @returns {flyteidl.core.Error} Error instance - */ - Error.create = function create(properties) { - return new Error(properties); - }; - - /** - * Encodes the specified Error message. Does not implicitly {@link flyteidl.core.Error.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Error - * @static - * @param {flyteidl.core.IError} message Error message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Error.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.failedNodeId != null && message.hasOwnProperty("failedNodeId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.failedNodeId); - if (message.message != null && message.hasOwnProperty("message")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.message); - return writer; - }; - - /** - * Decodes an Error message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Error - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Error} Error - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Error.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Error(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.failedNodeId = reader.string(); - break; - case 2: - message.message = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Error message. - * @function verify - * @memberof flyteidl.core.Error - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Error.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.failedNodeId != null && message.hasOwnProperty("failedNodeId")) - if (!$util.isString(message.failedNodeId)) - return "failedNodeId: string expected"; - if (message.message != null && message.hasOwnProperty("message")) - if (!$util.isString(message.message)) - return "message: string expected"; - return null; - }; - - return Error; - })(); - - core.WorkflowExecution = (function() { - - /** - * Properties of a WorkflowExecution. - * @memberof flyteidl.core - * @interface IWorkflowExecution - */ - - /** - * Constructs a new WorkflowExecution. - * @memberof flyteidl.core - * @classdesc Represents a WorkflowExecution. - * @implements IWorkflowExecution - * @constructor - * @param {flyteidl.core.IWorkflowExecution=} [properties] Properties to set - */ - function WorkflowExecution(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new WorkflowExecution instance using the specified properties. - * @function create - * @memberof flyteidl.core.WorkflowExecution - * @static - * @param {flyteidl.core.IWorkflowExecution=} [properties] Properties to set - * @returns {flyteidl.core.WorkflowExecution} WorkflowExecution instance - */ - WorkflowExecution.create = function create(properties) { - return new WorkflowExecution(properties); - }; - - /** - * Encodes the specified WorkflowExecution message. Does not implicitly {@link flyteidl.core.WorkflowExecution.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.WorkflowExecution - * @static - * @param {flyteidl.core.IWorkflowExecution} message WorkflowExecution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a WorkflowExecution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.WorkflowExecution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.WorkflowExecution} WorkflowExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.WorkflowExecution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecution message. - * @function verify - * @memberof flyteidl.core.WorkflowExecution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - /** - * Phase enum. - * @name flyteidl.core.WorkflowExecution.Phase - * @enum {string} - * @property {number} UNDEFINED=0 UNDEFINED value - * @property {number} QUEUED=1 QUEUED value - * @property {number} RUNNING=2 RUNNING value - * @property {number} SUCCEEDING=3 SUCCEEDING value - * @property {number} SUCCEEDED=4 SUCCEEDED value - * @property {number} FAILING=5 FAILING value - * @property {number} FAILED=6 FAILED value - * @property {number} ABORTED=7 ABORTED value - * @property {number} TIMED_OUT=8 TIMED_OUT value - * @property {number} ABORTING=9 ABORTING value - */ - WorkflowExecution.Phase = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNDEFINED"] = 0; - values[valuesById[1] = "QUEUED"] = 1; - values[valuesById[2] = "RUNNING"] = 2; - values[valuesById[3] = "SUCCEEDING"] = 3; - values[valuesById[4] = "SUCCEEDED"] = 4; - values[valuesById[5] = "FAILING"] = 5; - values[valuesById[6] = "FAILED"] = 6; - values[valuesById[7] = "ABORTED"] = 7; - values[valuesById[8] = "TIMED_OUT"] = 8; - values[valuesById[9] = "ABORTING"] = 9; - return values; - })(); - - return WorkflowExecution; - })(); - - core.NodeExecution = (function() { - - /** - * Properties of a NodeExecution. - * @memberof flyteidl.core - * @interface INodeExecution - */ - - /** - * Constructs a new NodeExecution. - * @memberof flyteidl.core - * @classdesc Represents a NodeExecution. - * @implements INodeExecution - * @constructor - * @param {flyteidl.core.INodeExecution=} [properties] Properties to set - */ - function NodeExecution(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new NodeExecution instance using the specified properties. - * @function create - * @memberof flyteidl.core.NodeExecution - * @static - * @param {flyteidl.core.INodeExecution=} [properties] Properties to set - * @returns {flyteidl.core.NodeExecution} NodeExecution instance - */ - NodeExecution.create = function create(properties) { - return new NodeExecution(properties); - }; - - /** - * Encodes the specified NodeExecution message. Does not implicitly {@link flyteidl.core.NodeExecution.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.NodeExecution - * @static - * @param {flyteidl.core.INodeExecution} message NodeExecution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a NodeExecution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.NodeExecution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.NodeExecution} NodeExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.NodeExecution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecution message. - * @function verify - * @memberof flyteidl.core.NodeExecution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - /** - * Phase enum. - * @name flyteidl.core.NodeExecution.Phase - * @enum {string} - * @property {number} UNDEFINED=0 UNDEFINED value - * @property {number} QUEUED=1 QUEUED value - * @property {number} RUNNING=2 RUNNING value - * @property {number} SUCCEEDED=3 SUCCEEDED value - * @property {number} FAILING=4 FAILING value - * @property {number} FAILED=5 FAILED value - * @property {number} ABORTED=6 ABORTED value - * @property {number} SKIPPED=7 SKIPPED value - * @property {number} TIMED_OUT=8 TIMED_OUT value - * @property {number} DYNAMIC_RUNNING=9 DYNAMIC_RUNNING value - * @property {number} RECOVERED=10 RECOVERED value - */ - NodeExecution.Phase = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNDEFINED"] = 0; - values[valuesById[1] = "QUEUED"] = 1; - values[valuesById[2] = "RUNNING"] = 2; - values[valuesById[3] = "SUCCEEDED"] = 3; - values[valuesById[4] = "FAILING"] = 4; - values[valuesById[5] = "FAILED"] = 5; - values[valuesById[6] = "ABORTED"] = 6; - values[valuesById[7] = "SKIPPED"] = 7; - values[valuesById[8] = "TIMED_OUT"] = 8; - values[valuesById[9] = "DYNAMIC_RUNNING"] = 9; - values[valuesById[10] = "RECOVERED"] = 10; - return values; - })(); - - return NodeExecution; - })(); - - core.TaskExecution = (function() { - - /** - * Properties of a TaskExecution. - * @memberof flyteidl.core - * @interface ITaskExecution - */ - - /** - * Constructs a new TaskExecution. - * @memberof flyteidl.core - * @classdesc Represents a TaskExecution. - * @implements ITaskExecution - * @constructor - * @param {flyteidl.core.ITaskExecution=} [properties] Properties to set - */ - function TaskExecution(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new TaskExecution instance using the specified properties. - * @function create - * @memberof flyteidl.core.TaskExecution - * @static - * @param {flyteidl.core.ITaskExecution=} [properties] Properties to set - * @returns {flyteidl.core.TaskExecution} TaskExecution instance - */ - TaskExecution.create = function create(properties) { - return new TaskExecution(properties); - }; - - /** - * Encodes the specified TaskExecution message. Does not implicitly {@link flyteidl.core.TaskExecution.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TaskExecution - * @static - * @param {flyteidl.core.ITaskExecution} message TaskExecution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a TaskExecution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TaskExecution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TaskExecution} TaskExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TaskExecution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecution message. - * @function verify - * @memberof flyteidl.core.TaskExecution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - /** - * Phase enum. - * @name flyteidl.core.TaskExecution.Phase - * @enum {string} - * @property {number} UNDEFINED=0 UNDEFINED value - * @property {number} QUEUED=1 QUEUED value - * @property {number} RUNNING=2 RUNNING value - * @property {number} SUCCEEDED=3 SUCCEEDED value - * @property {number} ABORTED=4 ABORTED value - * @property {number} FAILED=5 FAILED value - * @property {number} INITIALIZING=6 INITIALIZING value - * @property {number} WAITING_FOR_RESOURCES=7 WAITING_FOR_RESOURCES value - */ - TaskExecution.Phase = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNDEFINED"] = 0; - values[valuesById[1] = "QUEUED"] = 1; - values[valuesById[2] = "RUNNING"] = 2; - values[valuesById[3] = "SUCCEEDED"] = 3; - values[valuesById[4] = "ABORTED"] = 4; - values[valuesById[5] = "FAILED"] = 5; - values[valuesById[6] = "INITIALIZING"] = 6; - values[valuesById[7] = "WAITING_FOR_RESOURCES"] = 7; - return values; - })(); - - return TaskExecution; - })(); - - core.ExecutionError = (function() { - - /** - * Properties of an ExecutionError. - * @memberof flyteidl.core - * @interface IExecutionError - * @property {string|null} [code] ExecutionError code - * @property {string|null} [message] ExecutionError message - * @property {string|null} [errorUri] ExecutionError errorUri - * @property {flyteidl.core.ExecutionError.ErrorKind|null} [kind] ExecutionError kind - */ - - /** - * Constructs a new ExecutionError. - * @memberof flyteidl.core - * @classdesc Represents an ExecutionError. - * @implements IExecutionError - * @constructor - * @param {flyteidl.core.IExecutionError=} [properties] Properties to set - */ - function ExecutionError(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionError code. - * @member {string} code - * @memberof flyteidl.core.ExecutionError - * @instance - */ - ExecutionError.prototype.code = ""; - - /** - * ExecutionError message. - * @member {string} message - * @memberof flyteidl.core.ExecutionError - * @instance - */ - ExecutionError.prototype.message = ""; - - /** - * ExecutionError errorUri. - * @member {string} errorUri - * @memberof flyteidl.core.ExecutionError - * @instance - */ - ExecutionError.prototype.errorUri = ""; - - /** - * ExecutionError kind. - * @member {flyteidl.core.ExecutionError.ErrorKind} kind - * @memberof flyteidl.core.ExecutionError - * @instance - */ - ExecutionError.prototype.kind = 0; - - /** - * Creates a new ExecutionError instance using the specified properties. - * @function create - * @memberof flyteidl.core.ExecutionError - * @static - * @param {flyteidl.core.IExecutionError=} [properties] Properties to set - * @returns {flyteidl.core.ExecutionError} ExecutionError instance - */ - ExecutionError.create = function create(properties) { - return new ExecutionError(properties); - }; - - /** - * Encodes the specified ExecutionError message. Does not implicitly {@link flyteidl.core.ExecutionError.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ExecutionError - * @static - * @param {flyteidl.core.IExecutionError} message ExecutionError message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionError.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.code != null && message.hasOwnProperty("code")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.code); - if (message.message != null && message.hasOwnProperty("message")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.message); - if (message.errorUri != null && message.hasOwnProperty("errorUri")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.errorUri); - if (message.kind != null && message.hasOwnProperty("kind")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.kind); - return writer; - }; - - /** - * Decodes an ExecutionError message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ExecutionError - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ExecutionError} ExecutionError - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionError.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ExecutionError(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.code = reader.string(); - break; - case 2: - message.message = reader.string(); - break; - case 3: - message.errorUri = reader.string(); - break; - case 4: - message.kind = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionError message. - * @function verify - * @memberof flyteidl.core.ExecutionError - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionError.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.code != null && message.hasOwnProperty("code")) - if (!$util.isString(message.code)) - return "code: string expected"; - if (message.message != null && message.hasOwnProperty("message")) - if (!$util.isString(message.message)) - return "message: string expected"; - if (message.errorUri != null && message.hasOwnProperty("errorUri")) - if (!$util.isString(message.errorUri)) - return "errorUri: string expected"; - if (message.kind != null && message.hasOwnProperty("kind")) - switch (message.kind) { - default: - return "kind: enum value expected"; - case 0: - case 1: - case 2: - break; - } - return null; - }; - - /** - * ErrorKind enum. - * @name flyteidl.core.ExecutionError.ErrorKind - * @enum {string} - * @property {number} UNKNOWN=0 UNKNOWN value - * @property {number} USER=1 USER value - * @property {number} SYSTEM=2 SYSTEM value - */ - ExecutionError.ErrorKind = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNKNOWN"] = 0; - values[valuesById[1] = "USER"] = 1; - values[valuesById[2] = "SYSTEM"] = 2; - return values; - })(); - - return ExecutionError; - })(); - - core.TaskLog = (function() { - - /** - * Properties of a TaskLog. - * @memberof flyteidl.core - * @interface ITaskLog - * @property {string|null} [uri] TaskLog uri - * @property {string|null} [name] TaskLog name - * @property {flyteidl.core.TaskLog.MessageFormat|null} [messageFormat] TaskLog messageFormat - * @property {google.protobuf.IDuration|null} [ttl] TaskLog ttl - */ - - /** - * Constructs a new TaskLog. - * @memberof flyteidl.core - * @classdesc Represents a TaskLog. - * @implements ITaskLog - * @constructor - * @param {flyteidl.core.ITaskLog=} [properties] Properties to set - */ - function TaskLog(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskLog uri. - * @member {string} uri - * @memberof flyteidl.core.TaskLog - * @instance - */ - TaskLog.prototype.uri = ""; - - /** - * TaskLog name. - * @member {string} name - * @memberof flyteidl.core.TaskLog - * @instance - */ - TaskLog.prototype.name = ""; - - /** - * TaskLog messageFormat. - * @member {flyteidl.core.TaskLog.MessageFormat} messageFormat - * @memberof flyteidl.core.TaskLog - * @instance - */ - TaskLog.prototype.messageFormat = 0; - - /** - * TaskLog ttl. - * @member {google.protobuf.IDuration|null|undefined} ttl - * @memberof flyteidl.core.TaskLog - * @instance - */ - TaskLog.prototype.ttl = null; - - /** - * Creates a new TaskLog instance using the specified properties. - * @function create - * @memberof flyteidl.core.TaskLog - * @static - * @param {flyteidl.core.ITaskLog=} [properties] Properties to set - * @returns {flyteidl.core.TaskLog} TaskLog instance - */ - TaskLog.create = function create(properties) { - return new TaskLog(properties); - }; - - /** - * Encodes the specified TaskLog message. Does not implicitly {@link flyteidl.core.TaskLog.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TaskLog - * @static - * @param {flyteidl.core.ITaskLog} message TaskLog message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskLog.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.uri != null && message.hasOwnProperty("uri")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.uri); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.name); - if (message.messageFormat != null && message.hasOwnProperty("messageFormat")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.messageFormat); - if (message.ttl != null && message.hasOwnProperty("ttl")) - $root.google.protobuf.Duration.encode(message.ttl, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskLog message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TaskLog - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TaskLog} TaskLog - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskLog.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TaskLog(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.uri = reader.string(); - break; - case 2: - message.name = reader.string(); - break; - case 3: - message.messageFormat = reader.int32(); - break; - case 4: - message.ttl = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskLog message. - * @function verify - * @memberof flyteidl.core.TaskLog - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskLog.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.uri != null && message.hasOwnProperty("uri")) - if (!$util.isString(message.uri)) - return "uri: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.messageFormat != null && message.hasOwnProperty("messageFormat")) - switch (message.messageFormat) { - default: - return "messageFormat: enum value expected"; - case 0: - case 1: - case 2: - break; - } - if (message.ttl != null && message.hasOwnProperty("ttl")) { - var error = $root.google.protobuf.Duration.verify(message.ttl); - if (error) - return "ttl." + error; - } - return null; - }; - - /** - * MessageFormat enum. - * @name flyteidl.core.TaskLog.MessageFormat - * @enum {string} - * @property {number} UNKNOWN=0 UNKNOWN value - * @property {number} CSV=1 CSV value - * @property {number} JSON=2 JSON value - */ - TaskLog.MessageFormat = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNKNOWN"] = 0; - values[valuesById[1] = "CSV"] = 1; - values[valuesById[2] = "JSON"] = 2; - return values; - })(); - - return TaskLog; - })(); - - core.QualityOfServiceSpec = (function() { - - /** - * Properties of a QualityOfServiceSpec. - * @memberof flyteidl.core - * @interface IQualityOfServiceSpec - * @property {google.protobuf.IDuration|null} [queueingBudget] QualityOfServiceSpec queueingBudget - */ - - /** - * Constructs a new QualityOfServiceSpec. - * @memberof flyteidl.core - * @classdesc Represents a QualityOfServiceSpec. - * @implements IQualityOfServiceSpec - * @constructor - * @param {flyteidl.core.IQualityOfServiceSpec=} [properties] Properties to set - */ - function QualityOfServiceSpec(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * QualityOfServiceSpec queueingBudget. - * @member {google.protobuf.IDuration|null|undefined} queueingBudget - * @memberof flyteidl.core.QualityOfServiceSpec - * @instance - */ - QualityOfServiceSpec.prototype.queueingBudget = null; - - /** - * Creates a new QualityOfServiceSpec instance using the specified properties. - * @function create - * @memberof flyteidl.core.QualityOfServiceSpec - * @static - * @param {flyteidl.core.IQualityOfServiceSpec=} [properties] Properties to set - * @returns {flyteidl.core.QualityOfServiceSpec} QualityOfServiceSpec instance - */ - QualityOfServiceSpec.create = function create(properties) { - return new QualityOfServiceSpec(properties); - }; - - /** - * Encodes the specified QualityOfServiceSpec message. Does not implicitly {@link flyteidl.core.QualityOfServiceSpec.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.QualityOfServiceSpec - * @static - * @param {flyteidl.core.IQualityOfServiceSpec} message QualityOfServiceSpec message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - QualityOfServiceSpec.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.queueingBudget != null && message.hasOwnProperty("queueingBudget")) - $root.google.protobuf.Duration.encode(message.queueingBudget, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a QualityOfServiceSpec message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.QualityOfServiceSpec - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.QualityOfServiceSpec} QualityOfServiceSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - QualityOfServiceSpec.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.QualityOfServiceSpec(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.queueingBudget = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a QualityOfServiceSpec message. - * @function verify - * @memberof flyteidl.core.QualityOfServiceSpec - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - QualityOfServiceSpec.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.queueingBudget != null && message.hasOwnProperty("queueingBudget")) { - var error = $root.google.protobuf.Duration.verify(message.queueingBudget); - if (error) - return "queueingBudget." + error; - } - return null; - }; - - return QualityOfServiceSpec; - })(); - - core.QualityOfService = (function() { - - /** - * Properties of a QualityOfService. - * @memberof flyteidl.core - * @interface IQualityOfService - * @property {flyteidl.core.QualityOfService.Tier|null} [tier] QualityOfService tier - * @property {flyteidl.core.IQualityOfServiceSpec|null} [spec] QualityOfService spec - */ - - /** - * Constructs a new QualityOfService. - * @memberof flyteidl.core - * @classdesc Represents a QualityOfService. - * @implements IQualityOfService - * @constructor - * @param {flyteidl.core.IQualityOfService=} [properties] Properties to set - */ - function QualityOfService(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * QualityOfService tier. - * @member {flyteidl.core.QualityOfService.Tier} tier - * @memberof flyteidl.core.QualityOfService - * @instance - */ - QualityOfService.prototype.tier = 0; - - /** - * QualityOfService spec. - * @member {flyteidl.core.IQualityOfServiceSpec|null|undefined} spec - * @memberof flyteidl.core.QualityOfService - * @instance - */ - QualityOfService.prototype.spec = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * QualityOfService designation. - * @member {"tier"|"spec"|undefined} designation - * @memberof flyteidl.core.QualityOfService - * @instance - */ - Object.defineProperty(QualityOfService.prototype, "designation", { - get: $util.oneOfGetter($oneOfFields = ["tier", "spec"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new QualityOfService instance using the specified properties. - * @function create - * @memberof flyteidl.core.QualityOfService - * @static - * @param {flyteidl.core.IQualityOfService=} [properties] Properties to set - * @returns {flyteidl.core.QualityOfService} QualityOfService instance - */ - QualityOfService.create = function create(properties) { - return new QualityOfService(properties); - }; - - /** - * Encodes the specified QualityOfService message. Does not implicitly {@link flyteidl.core.QualityOfService.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.QualityOfService - * @static - * @param {flyteidl.core.IQualityOfService} message QualityOfService message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - QualityOfService.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.tier != null && message.hasOwnProperty("tier")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.tier); - if (message.spec != null && message.hasOwnProperty("spec")) - $root.flyteidl.core.QualityOfServiceSpec.encode(message.spec, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a QualityOfService message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.QualityOfService - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.QualityOfService} QualityOfService - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - QualityOfService.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.QualityOfService(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.tier = reader.int32(); - break; - case 2: - message.spec = $root.flyteidl.core.QualityOfServiceSpec.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a QualityOfService message. - * @function verify - * @memberof flyteidl.core.QualityOfService - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - QualityOfService.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.tier != null && message.hasOwnProperty("tier")) { - properties.designation = 1; - switch (message.tier) { - default: - return "tier: enum value expected"; - case 0: - case 1: - case 2: - case 3: - break; - } - } - if (message.spec != null && message.hasOwnProperty("spec")) { - if (properties.designation === 1) - return "designation: multiple values"; - properties.designation = 1; - { - var error = $root.flyteidl.core.QualityOfServiceSpec.verify(message.spec); - if (error) - return "spec." + error; - } - } - return null; - }; - - /** - * Tier enum. - * @name flyteidl.core.QualityOfService.Tier - * @enum {string} - * @property {number} UNDEFINED=0 UNDEFINED value - * @property {number} HIGH=1 HIGH value - * @property {number} MEDIUM=2 MEDIUM value - * @property {number} LOW=3 LOW value - */ - QualityOfService.Tier = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNDEFINED"] = 0; - values[valuesById[1] = "HIGH"] = 1; - values[valuesById[2] = "MEDIUM"] = 2; - values[valuesById[3] = "LOW"] = 3; - return values; - })(); - - return QualityOfService; - })(); - - core.Variable = (function() { - - /** - * Properties of a Variable. - * @memberof flyteidl.core - * @interface IVariable - * @property {flyteidl.core.ILiteralType|null} [type] Variable type - * @property {string|null} [description] Variable description - * @property {flyteidl.core.IArtifactID|null} [artifactPartialId] Variable artifactPartialId - * @property {flyteidl.core.IArtifactTag|null} [artifactTag] Variable artifactTag - */ - - /** - * Constructs a new Variable. - * @memberof flyteidl.core - * @classdesc Represents a Variable. - * @implements IVariable - * @constructor - * @param {flyteidl.core.IVariable=} [properties] Properties to set - */ - function Variable(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Variable type. - * @member {flyteidl.core.ILiteralType|null|undefined} type - * @memberof flyteidl.core.Variable - * @instance - */ - Variable.prototype.type = null; - - /** - * Variable description. - * @member {string} description - * @memberof flyteidl.core.Variable - * @instance - */ - Variable.prototype.description = ""; - - /** - * Variable artifactPartialId. - * @member {flyteidl.core.IArtifactID|null|undefined} artifactPartialId - * @memberof flyteidl.core.Variable - * @instance - */ - Variable.prototype.artifactPartialId = null; - - /** - * Variable artifactTag. - * @member {flyteidl.core.IArtifactTag|null|undefined} artifactTag - * @memberof flyteidl.core.Variable - * @instance - */ - Variable.prototype.artifactTag = null; - - /** - * Creates a new Variable instance using the specified properties. - * @function create - * @memberof flyteidl.core.Variable - * @static - * @param {flyteidl.core.IVariable=} [properties] Properties to set - * @returns {flyteidl.core.Variable} Variable instance - */ - Variable.create = function create(properties) { - return new Variable(properties); - }; - - /** - * Encodes the specified Variable message. Does not implicitly {@link flyteidl.core.Variable.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Variable - * @static - * @param {flyteidl.core.IVariable} message Variable message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Variable.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.type != null && message.hasOwnProperty("type")) - $root.flyteidl.core.LiteralType.encode(message.type, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.description != null && message.hasOwnProperty("description")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.description); - if (message.artifactPartialId != null && message.hasOwnProperty("artifactPartialId")) - $root.flyteidl.core.ArtifactID.encode(message.artifactPartialId, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.artifactTag != null && message.hasOwnProperty("artifactTag")) - $root.flyteidl.core.ArtifactTag.encode(message.artifactTag, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Variable message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Variable - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Variable} Variable - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Variable.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Variable(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.type = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - case 2: - message.description = reader.string(); - break; - case 3: - message.artifactPartialId = $root.flyteidl.core.ArtifactID.decode(reader, reader.uint32()); - break; - case 4: - message.artifactTag = $root.flyteidl.core.ArtifactTag.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Variable message. - * @function verify - * @memberof flyteidl.core.Variable - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Variable.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.type != null && message.hasOwnProperty("type")) { - var error = $root.flyteidl.core.LiteralType.verify(message.type); - if (error) - return "type." + error; - } - if (message.description != null && message.hasOwnProperty("description")) - if (!$util.isString(message.description)) - return "description: string expected"; - if (message.artifactPartialId != null && message.hasOwnProperty("artifactPartialId")) { - var error = $root.flyteidl.core.ArtifactID.verify(message.artifactPartialId); - if (error) - return "artifactPartialId." + error; - } - if (message.artifactTag != null && message.hasOwnProperty("artifactTag")) { - var error = $root.flyteidl.core.ArtifactTag.verify(message.artifactTag); - if (error) - return "artifactTag." + error; - } - return null; - }; - - return Variable; - })(); - - core.VariableMap = (function() { - - /** - * Properties of a VariableMap. - * @memberof flyteidl.core - * @interface IVariableMap - * @property {Object.|null} [variables] VariableMap variables - */ - - /** - * Constructs a new VariableMap. - * @memberof flyteidl.core - * @classdesc Represents a VariableMap. - * @implements IVariableMap - * @constructor - * @param {flyteidl.core.IVariableMap=} [properties] Properties to set - */ - function VariableMap(properties) { - this.variables = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * VariableMap variables. - * @member {Object.} variables - * @memberof flyteidl.core.VariableMap - * @instance - */ - VariableMap.prototype.variables = $util.emptyObject; - - /** - * Creates a new VariableMap instance using the specified properties. - * @function create - * @memberof flyteidl.core.VariableMap - * @static - * @param {flyteidl.core.IVariableMap=} [properties] Properties to set - * @returns {flyteidl.core.VariableMap} VariableMap instance - */ - VariableMap.create = function create(properties) { - return new VariableMap(properties); - }; - - /** - * Encodes the specified VariableMap message. Does not implicitly {@link flyteidl.core.VariableMap.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.VariableMap - * @static - * @param {flyteidl.core.IVariableMap} message VariableMap message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - VariableMap.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.variables != null && message.hasOwnProperty("variables")) - for (var keys = Object.keys(message.variables), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.flyteidl.core.Variable.encode(message.variables[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - return writer; - }; - - /** - * Decodes a VariableMap message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.VariableMap - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.VariableMap} VariableMap - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - VariableMap.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.VariableMap(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.variables === $util.emptyObject) - message.variables = {}; - key = reader.string(); - reader.pos++; - message.variables[key] = $root.flyteidl.core.Variable.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a VariableMap message. - * @function verify - * @memberof flyteidl.core.VariableMap - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - VariableMap.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.variables != null && message.hasOwnProperty("variables")) { - if (!$util.isObject(message.variables)) - return "variables: object expected"; - var key = Object.keys(message.variables); - for (var i = 0; i < key.length; ++i) { - var error = $root.flyteidl.core.Variable.verify(message.variables[key[i]]); - if (error) - return "variables." + error; - } - } - return null; - }; - - return VariableMap; - })(); - - core.TypedInterface = (function() { - - /** - * Properties of a TypedInterface. - * @memberof flyteidl.core - * @interface ITypedInterface - * @property {flyteidl.core.IVariableMap|null} [inputs] TypedInterface inputs - * @property {flyteidl.core.IVariableMap|null} [outputs] TypedInterface outputs - */ - - /** - * Constructs a new TypedInterface. - * @memberof flyteidl.core - * @classdesc Represents a TypedInterface. - * @implements ITypedInterface - * @constructor - * @param {flyteidl.core.ITypedInterface=} [properties] Properties to set - */ - function TypedInterface(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TypedInterface inputs. - * @member {flyteidl.core.IVariableMap|null|undefined} inputs - * @memberof flyteidl.core.TypedInterface - * @instance - */ - TypedInterface.prototype.inputs = null; - - /** - * TypedInterface outputs. - * @member {flyteidl.core.IVariableMap|null|undefined} outputs - * @memberof flyteidl.core.TypedInterface - * @instance - */ - TypedInterface.prototype.outputs = null; - - /** - * Creates a new TypedInterface instance using the specified properties. - * @function create - * @memberof flyteidl.core.TypedInterface - * @static - * @param {flyteidl.core.ITypedInterface=} [properties] Properties to set - * @returns {flyteidl.core.TypedInterface} TypedInterface instance - */ - TypedInterface.create = function create(properties) { - return new TypedInterface(properties); - }; - - /** - * Encodes the specified TypedInterface message. Does not implicitly {@link flyteidl.core.TypedInterface.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TypedInterface - * @static - * @param {flyteidl.core.ITypedInterface} message TypedInterface message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TypedInterface.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - $root.flyteidl.core.VariableMap.encode(message.inputs, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.outputs != null && message.hasOwnProperty("outputs")) - $root.flyteidl.core.VariableMap.encode(message.outputs, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TypedInterface message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TypedInterface - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TypedInterface} TypedInterface - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TypedInterface.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TypedInterface(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.inputs = $root.flyteidl.core.VariableMap.decode(reader, reader.uint32()); - break; - case 2: - message.outputs = $root.flyteidl.core.VariableMap.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TypedInterface message. - * @function verify - * @memberof flyteidl.core.TypedInterface - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TypedInterface.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.inputs != null && message.hasOwnProperty("inputs")) { - var error = $root.flyteidl.core.VariableMap.verify(message.inputs); - if (error) - return "inputs." + error; - } - if (message.outputs != null && message.hasOwnProperty("outputs")) { - var error = $root.flyteidl.core.VariableMap.verify(message.outputs); - if (error) - return "outputs." + error; - } - return null; - }; - - return TypedInterface; - })(); - - core.Parameter = (function() { - - /** - * Properties of a Parameter. - * @memberof flyteidl.core - * @interface IParameter - * @property {flyteidl.core.IVariable|null} ["var"] Parameter var - * @property {flyteidl.core.ILiteral|null} ["default"] Parameter default - * @property {boolean|null} [required] Parameter required - * @property {flyteidl.core.IArtifactQuery|null} [artifactQuery] Parameter artifactQuery - * @property {flyteidl.core.IArtifactID|null} [artifactId] Parameter artifactId - */ - - /** - * Constructs a new Parameter. - * @memberof flyteidl.core - * @classdesc Represents a Parameter. - * @implements IParameter - * @constructor - * @param {flyteidl.core.IParameter=} [properties] Properties to set - */ - function Parameter(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Parameter var. - * @member {flyteidl.core.IVariable|null|undefined} var - * @memberof flyteidl.core.Parameter - * @instance - */ - Parameter.prototype["var"] = null; - - /** - * Parameter default. - * @member {flyteidl.core.ILiteral|null|undefined} default - * @memberof flyteidl.core.Parameter - * @instance - */ - Parameter.prototype["default"] = null; - - /** - * Parameter required. - * @member {boolean} required - * @memberof flyteidl.core.Parameter - * @instance - */ - Parameter.prototype.required = false; - - /** - * Parameter artifactQuery. - * @member {flyteidl.core.IArtifactQuery|null|undefined} artifactQuery - * @memberof flyteidl.core.Parameter - * @instance - */ - Parameter.prototype.artifactQuery = null; - - /** - * Parameter artifactId. - * @member {flyteidl.core.IArtifactID|null|undefined} artifactId - * @memberof flyteidl.core.Parameter - * @instance - */ - Parameter.prototype.artifactId = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Parameter behavior. - * @member {"default"|"required"|"artifactQuery"|"artifactId"|undefined} behavior - * @memberof flyteidl.core.Parameter - * @instance - */ - Object.defineProperty(Parameter.prototype, "behavior", { - get: $util.oneOfGetter($oneOfFields = ["default", "required", "artifactQuery", "artifactId"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Parameter instance using the specified properties. - * @function create - * @memberof flyteidl.core.Parameter - * @static - * @param {flyteidl.core.IParameter=} [properties] Properties to set - * @returns {flyteidl.core.Parameter} Parameter instance - */ - Parameter.create = function create(properties) { - return new Parameter(properties); - }; - - /** - * Encodes the specified Parameter message. Does not implicitly {@link flyteidl.core.Parameter.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Parameter - * @static - * @param {flyteidl.core.IParameter} message Parameter message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Parameter.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message["var"] != null && message.hasOwnProperty("var")) - $root.flyteidl.core.Variable.encode(message["var"], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message["default"] != null && message.hasOwnProperty("default")) - $root.flyteidl.core.Literal.encode(message["default"], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.required != null && message.hasOwnProperty("required")) - writer.uint32(/* id 3, wireType 0 =*/24).bool(message.required); - if (message.artifactQuery != null && message.hasOwnProperty("artifactQuery")) - $root.flyteidl.core.ArtifactQuery.encode(message.artifactQuery, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.artifactId != null && message.hasOwnProperty("artifactId")) - $root.flyteidl.core.ArtifactID.encode(message.artifactId, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Parameter message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Parameter - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Parameter} Parameter - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Parameter.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Parameter(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message["var"] = $root.flyteidl.core.Variable.decode(reader, reader.uint32()); - break; - case 2: - message["default"] = $root.flyteidl.core.Literal.decode(reader, reader.uint32()); - break; - case 3: - message.required = reader.bool(); - break; - case 4: - message.artifactQuery = $root.flyteidl.core.ArtifactQuery.decode(reader, reader.uint32()); - break; - case 5: - message.artifactId = $root.flyteidl.core.ArtifactID.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Parameter message. - * @function verify - * @memberof flyteidl.core.Parameter - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Parameter.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message["var"] != null && message.hasOwnProperty("var")) { - var error = $root.flyteidl.core.Variable.verify(message["var"]); - if (error) - return "var." + error; - } - if (message["default"] != null && message.hasOwnProperty("default")) { - properties.behavior = 1; - { - var error = $root.flyteidl.core.Literal.verify(message["default"]); - if (error) - return "default." + error; - } - } - if (message.required != null && message.hasOwnProperty("required")) { - if (properties.behavior === 1) - return "behavior: multiple values"; - properties.behavior = 1; - if (typeof message.required !== "boolean") - return "required: boolean expected"; - } - if (message.artifactQuery != null && message.hasOwnProperty("artifactQuery")) { - if (properties.behavior === 1) - return "behavior: multiple values"; - properties.behavior = 1; - { - var error = $root.flyteidl.core.ArtifactQuery.verify(message.artifactQuery); - if (error) - return "artifactQuery." + error; - } - } - if (message.artifactId != null && message.hasOwnProperty("artifactId")) { - if (properties.behavior === 1) - return "behavior: multiple values"; - properties.behavior = 1; - { - var error = $root.flyteidl.core.ArtifactID.verify(message.artifactId); - if (error) - return "artifactId." + error; - } - } - return null; - }; - - return Parameter; - })(); - - core.ParameterMap = (function() { - - /** - * Properties of a ParameterMap. - * @memberof flyteidl.core - * @interface IParameterMap - * @property {Object.|null} [parameters] ParameterMap parameters - */ - - /** - * Constructs a new ParameterMap. - * @memberof flyteidl.core - * @classdesc Represents a ParameterMap. - * @implements IParameterMap - * @constructor - * @param {flyteidl.core.IParameterMap=} [properties] Properties to set - */ - function ParameterMap(properties) { - this.parameters = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ParameterMap parameters. - * @member {Object.} parameters - * @memberof flyteidl.core.ParameterMap - * @instance - */ - ParameterMap.prototype.parameters = $util.emptyObject; - - /** - * Creates a new ParameterMap instance using the specified properties. - * @function create - * @memberof flyteidl.core.ParameterMap - * @static - * @param {flyteidl.core.IParameterMap=} [properties] Properties to set - * @returns {flyteidl.core.ParameterMap} ParameterMap instance - */ - ParameterMap.create = function create(properties) { - return new ParameterMap(properties); - }; - - /** - * Encodes the specified ParameterMap message. Does not implicitly {@link flyteidl.core.ParameterMap.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ParameterMap - * @static - * @param {flyteidl.core.IParameterMap} message ParameterMap message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ParameterMap.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.parameters != null && message.hasOwnProperty("parameters")) - for (var keys = Object.keys(message.parameters), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.flyteidl.core.Parameter.encode(message.parameters[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - return writer; - }; - - /** - * Decodes a ParameterMap message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ParameterMap - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ParameterMap} ParameterMap - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ParameterMap.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ParameterMap(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.parameters === $util.emptyObject) - message.parameters = {}; - key = reader.string(); - reader.pos++; - message.parameters[key] = $root.flyteidl.core.Parameter.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ParameterMap message. - * @function verify - * @memberof flyteidl.core.ParameterMap - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ParameterMap.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.parameters != null && message.hasOwnProperty("parameters")) { - if (!$util.isObject(message.parameters)) - return "parameters: object expected"; - var key = Object.keys(message.parameters); - for (var i = 0; i < key.length; ++i) { - var error = $root.flyteidl.core.Parameter.verify(message.parameters[key[i]]); - if (error) - return "parameters." + error; - } - } - return null; - }; - - return ParameterMap; - })(); - - core.Resources = (function() { - - /** - * Properties of a Resources. - * @memberof flyteidl.core - * @interface IResources - * @property {Array.|null} [requests] Resources requests - * @property {Array.|null} [limits] Resources limits - */ - - /** - * Constructs a new Resources. - * @memberof flyteidl.core - * @classdesc Represents a Resources. - * @implements IResources - * @constructor - * @param {flyteidl.core.IResources=} [properties] Properties to set - */ - function Resources(properties) { - this.requests = []; - this.limits = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Resources requests. - * @member {Array.} requests - * @memberof flyteidl.core.Resources - * @instance - */ - Resources.prototype.requests = $util.emptyArray; - - /** - * Resources limits. - * @member {Array.} limits - * @memberof flyteidl.core.Resources - * @instance - */ - Resources.prototype.limits = $util.emptyArray; - - /** - * Creates a new Resources instance using the specified properties. - * @function create - * @memberof flyteidl.core.Resources - * @static - * @param {flyteidl.core.IResources=} [properties] Properties to set - * @returns {flyteidl.core.Resources} Resources instance - */ - Resources.create = function create(properties) { - return new Resources(properties); - }; - - /** - * Encodes the specified Resources message. Does not implicitly {@link flyteidl.core.Resources.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Resources - * @static - * @param {flyteidl.core.IResources} message Resources message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Resources.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.requests != null && message.requests.length) - for (var i = 0; i < message.requests.length; ++i) - $root.flyteidl.core.Resources.ResourceEntry.encode(message.requests[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.limits != null && message.limits.length) - for (var i = 0; i < message.limits.length; ++i) - $root.flyteidl.core.Resources.ResourceEntry.encode(message.limits[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Resources message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Resources - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Resources} Resources - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Resources.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Resources(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.requests && message.requests.length)) - message.requests = []; - message.requests.push($root.flyteidl.core.Resources.ResourceEntry.decode(reader, reader.uint32())); - break; - case 2: - if (!(message.limits && message.limits.length)) - message.limits = []; - message.limits.push($root.flyteidl.core.Resources.ResourceEntry.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Resources message. - * @function verify - * @memberof flyteidl.core.Resources - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Resources.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.requests != null && message.hasOwnProperty("requests")) { - if (!Array.isArray(message.requests)) - return "requests: array expected"; - for (var i = 0; i < message.requests.length; ++i) { - var error = $root.flyteidl.core.Resources.ResourceEntry.verify(message.requests[i]); - if (error) - return "requests." + error; - } - } - if (message.limits != null && message.hasOwnProperty("limits")) { - if (!Array.isArray(message.limits)) - return "limits: array expected"; - for (var i = 0; i < message.limits.length; ++i) { - var error = $root.flyteidl.core.Resources.ResourceEntry.verify(message.limits[i]); - if (error) - return "limits." + error; - } - } - return null; - }; - - /** - * ResourceName enum. - * @name flyteidl.core.Resources.ResourceName - * @enum {string} - * @property {number} UNKNOWN=0 UNKNOWN value - * @property {number} CPU=1 CPU value - * @property {number} GPU=2 GPU value - * @property {number} MEMORY=3 MEMORY value - * @property {number} STORAGE=4 STORAGE value - * @property {number} EPHEMERAL_STORAGE=5 EPHEMERAL_STORAGE value - */ - Resources.ResourceName = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNKNOWN"] = 0; - values[valuesById[1] = "CPU"] = 1; - values[valuesById[2] = "GPU"] = 2; - values[valuesById[3] = "MEMORY"] = 3; - values[valuesById[4] = "STORAGE"] = 4; - values[valuesById[5] = "EPHEMERAL_STORAGE"] = 5; - return values; - })(); - - Resources.ResourceEntry = (function() { - - /** - * Properties of a ResourceEntry. - * @memberof flyteidl.core.Resources - * @interface IResourceEntry - * @property {flyteidl.core.Resources.ResourceName|null} [name] ResourceEntry name - * @property {string|null} [value] ResourceEntry value - */ - - /** - * Constructs a new ResourceEntry. - * @memberof flyteidl.core.Resources - * @classdesc Represents a ResourceEntry. - * @implements IResourceEntry - * @constructor - * @param {flyteidl.core.Resources.IResourceEntry=} [properties] Properties to set - */ - function ResourceEntry(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ResourceEntry name. - * @member {flyteidl.core.Resources.ResourceName} name - * @memberof flyteidl.core.Resources.ResourceEntry - * @instance - */ - ResourceEntry.prototype.name = 0; - - /** - * ResourceEntry value. - * @member {string} value - * @memberof flyteidl.core.Resources.ResourceEntry - * @instance - */ - ResourceEntry.prototype.value = ""; - - /** - * Creates a new ResourceEntry instance using the specified properties. - * @function create - * @memberof flyteidl.core.Resources.ResourceEntry - * @static - * @param {flyteidl.core.Resources.IResourceEntry=} [properties] Properties to set - * @returns {flyteidl.core.Resources.ResourceEntry} ResourceEntry instance - */ - ResourceEntry.create = function create(properties) { - return new ResourceEntry(properties); - }; - - /** - * Encodes the specified ResourceEntry message. Does not implicitly {@link flyteidl.core.Resources.ResourceEntry.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Resources.ResourceEntry - * @static - * @param {flyteidl.core.Resources.IResourceEntry} message ResourceEntry message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ResourceEntry.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.name); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.value); - return writer; - }; - - /** - * Decodes a ResourceEntry message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Resources.ResourceEntry - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Resources.ResourceEntry} ResourceEntry - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ResourceEntry.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Resources.ResourceEntry(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.int32(); - break; - case 2: - message.value = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ResourceEntry message. - * @function verify - * @memberof flyteidl.core.Resources.ResourceEntry - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ResourceEntry.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - switch (message.name) { - default: - return "name: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - break; - } - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isString(message.value)) - return "value: string expected"; - return null; - }; - - return ResourceEntry; - })(); - - return Resources; - })(); - - core.GPUAccelerator = (function() { - - /** - * Properties of a GPUAccelerator. - * @memberof flyteidl.core - * @interface IGPUAccelerator - * @property {string|null} [device] GPUAccelerator device - * @property {boolean|null} [unpartitioned] GPUAccelerator unpartitioned - * @property {string|null} [partitionSize] GPUAccelerator partitionSize - */ - - /** - * Constructs a new GPUAccelerator. - * @memberof flyteidl.core - * @classdesc Represents a GPUAccelerator. - * @implements IGPUAccelerator - * @constructor - * @param {flyteidl.core.IGPUAccelerator=} [properties] Properties to set - */ - function GPUAccelerator(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GPUAccelerator device. - * @member {string} device - * @memberof flyteidl.core.GPUAccelerator - * @instance - */ - GPUAccelerator.prototype.device = ""; - - /** - * GPUAccelerator unpartitioned. - * @member {boolean} unpartitioned - * @memberof flyteidl.core.GPUAccelerator - * @instance - */ - GPUAccelerator.prototype.unpartitioned = false; - - /** - * GPUAccelerator partitionSize. - * @member {string} partitionSize - * @memberof flyteidl.core.GPUAccelerator - * @instance - */ - GPUAccelerator.prototype.partitionSize = ""; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * GPUAccelerator partitionSizeValue. - * @member {"unpartitioned"|"partitionSize"|undefined} partitionSizeValue - * @memberof flyteidl.core.GPUAccelerator - * @instance - */ - Object.defineProperty(GPUAccelerator.prototype, "partitionSizeValue", { - get: $util.oneOfGetter($oneOfFields = ["unpartitioned", "partitionSize"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new GPUAccelerator instance using the specified properties. - * @function create - * @memberof flyteidl.core.GPUAccelerator - * @static - * @param {flyteidl.core.IGPUAccelerator=} [properties] Properties to set - * @returns {flyteidl.core.GPUAccelerator} GPUAccelerator instance - */ - GPUAccelerator.create = function create(properties) { - return new GPUAccelerator(properties); - }; - - /** - * Encodes the specified GPUAccelerator message. Does not implicitly {@link flyteidl.core.GPUAccelerator.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.GPUAccelerator - * @static - * @param {flyteidl.core.IGPUAccelerator} message GPUAccelerator message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GPUAccelerator.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.device != null && message.hasOwnProperty("device")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.device); - if (message.unpartitioned != null && message.hasOwnProperty("unpartitioned")) - writer.uint32(/* id 2, wireType 0 =*/16).bool(message.unpartitioned); - if (message.partitionSize != null && message.hasOwnProperty("partitionSize")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.partitionSize); - return writer; - }; - - /** - * Decodes a GPUAccelerator message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.GPUAccelerator - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.GPUAccelerator} GPUAccelerator - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GPUAccelerator.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.GPUAccelerator(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.device = reader.string(); - break; - case 2: - message.unpartitioned = reader.bool(); - break; - case 3: - message.partitionSize = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GPUAccelerator message. - * @function verify - * @memberof flyteidl.core.GPUAccelerator - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GPUAccelerator.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.device != null && message.hasOwnProperty("device")) - if (!$util.isString(message.device)) - return "device: string expected"; - if (message.unpartitioned != null && message.hasOwnProperty("unpartitioned")) { - properties.partitionSizeValue = 1; - if (typeof message.unpartitioned !== "boolean") - return "unpartitioned: boolean expected"; - } - if (message.partitionSize != null && message.hasOwnProperty("partitionSize")) { - if (properties.partitionSizeValue === 1) - return "partitionSizeValue: multiple values"; - properties.partitionSizeValue = 1; - if (!$util.isString(message.partitionSize)) - return "partitionSize: string expected"; - } - return null; - }; - - return GPUAccelerator; - })(); - - core.ExtendedResources = (function() { - - /** - * Properties of an ExtendedResources. - * @memberof flyteidl.core - * @interface IExtendedResources - * @property {flyteidl.core.IGPUAccelerator|null} [gpuAccelerator] ExtendedResources gpuAccelerator - */ - - /** - * Constructs a new ExtendedResources. - * @memberof flyteidl.core - * @classdesc Represents an ExtendedResources. - * @implements IExtendedResources - * @constructor - * @param {flyteidl.core.IExtendedResources=} [properties] Properties to set - */ - function ExtendedResources(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExtendedResources gpuAccelerator. - * @member {flyteidl.core.IGPUAccelerator|null|undefined} gpuAccelerator - * @memberof flyteidl.core.ExtendedResources - * @instance - */ - ExtendedResources.prototype.gpuAccelerator = null; - - /** - * Creates a new ExtendedResources instance using the specified properties. - * @function create - * @memberof flyteidl.core.ExtendedResources - * @static - * @param {flyteidl.core.IExtendedResources=} [properties] Properties to set - * @returns {flyteidl.core.ExtendedResources} ExtendedResources instance - */ - ExtendedResources.create = function create(properties) { - return new ExtendedResources(properties); - }; - - /** - * Encodes the specified ExtendedResources message. Does not implicitly {@link flyteidl.core.ExtendedResources.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ExtendedResources - * @static - * @param {flyteidl.core.IExtendedResources} message ExtendedResources message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExtendedResources.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.gpuAccelerator != null && message.hasOwnProperty("gpuAccelerator")) - $root.flyteidl.core.GPUAccelerator.encode(message.gpuAccelerator, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ExtendedResources message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ExtendedResources - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ExtendedResources} ExtendedResources - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExtendedResources.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ExtendedResources(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.gpuAccelerator = $root.flyteidl.core.GPUAccelerator.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExtendedResources message. - * @function verify - * @memberof flyteidl.core.ExtendedResources - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExtendedResources.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.gpuAccelerator != null && message.hasOwnProperty("gpuAccelerator")) { - var error = $root.flyteidl.core.GPUAccelerator.verify(message.gpuAccelerator); - if (error) - return "gpuAccelerator." + error; - } - return null; - }; - - return ExtendedResources; - })(); - - core.RuntimeMetadata = (function() { - - /** - * Properties of a RuntimeMetadata. - * @memberof flyteidl.core - * @interface IRuntimeMetadata - * @property {flyteidl.core.RuntimeMetadata.RuntimeType|null} [type] RuntimeMetadata type - * @property {string|null} [version] RuntimeMetadata version - * @property {string|null} [flavor] RuntimeMetadata flavor - */ - - /** - * Constructs a new RuntimeMetadata. - * @memberof flyteidl.core - * @classdesc Represents a RuntimeMetadata. - * @implements IRuntimeMetadata - * @constructor - * @param {flyteidl.core.IRuntimeMetadata=} [properties] Properties to set - */ - function RuntimeMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * RuntimeMetadata type. - * @member {flyteidl.core.RuntimeMetadata.RuntimeType} type - * @memberof flyteidl.core.RuntimeMetadata - * @instance - */ - RuntimeMetadata.prototype.type = 0; - - /** - * RuntimeMetadata version. - * @member {string} version - * @memberof flyteidl.core.RuntimeMetadata - * @instance - */ - RuntimeMetadata.prototype.version = ""; - - /** - * RuntimeMetadata flavor. - * @member {string} flavor - * @memberof flyteidl.core.RuntimeMetadata - * @instance - */ - RuntimeMetadata.prototype.flavor = ""; - - /** - * Creates a new RuntimeMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.RuntimeMetadata - * @static - * @param {flyteidl.core.IRuntimeMetadata=} [properties] Properties to set - * @returns {flyteidl.core.RuntimeMetadata} RuntimeMetadata instance - */ - RuntimeMetadata.create = function create(properties) { - return new RuntimeMetadata(properties); - }; - - /** - * Encodes the specified RuntimeMetadata message. Does not implicitly {@link flyteidl.core.RuntimeMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.RuntimeMetadata - * @static - * @param {flyteidl.core.IRuntimeMetadata} message RuntimeMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - RuntimeMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.type != null && message.hasOwnProperty("type")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.type); - if (message.version != null && message.hasOwnProperty("version")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.version); - if (message.flavor != null && message.hasOwnProperty("flavor")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.flavor); - return writer; - }; - - /** - * Decodes a RuntimeMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.RuntimeMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.RuntimeMetadata} RuntimeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - RuntimeMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.RuntimeMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.type = reader.int32(); - break; - case 2: - message.version = reader.string(); - break; - case 3: - message.flavor = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a RuntimeMetadata message. - * @function verify - * @memberof flyteidl.core.RuntimeMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - RuntimeMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.type != null && message.hasOwnProperty("type")) - switch (message.type) { - default: - return "type: enum value expected"; - case 0: - case 1: - break; - } - if (message.version != null && message.hasOwnProperty("version")) - if (!$util.isString(message.version)) - return "version: string expected"; - if (message.flavor != null && message.hasOwnProperty("flavor")) - if (!$util.isString(message.flavor)) - return "flavor: string expected"; - return null; - }; - - /** - * RuntimeType enum. - * @name flyteidl.core.RuntimeMetadata.RuntimeType - * @enum {string} - * @property {number} OTHER=0 OTHER value - * @property {number} FLYTE_SDK=1 FLYTE_SDK value - */ - RuntimeMetadata.RuntimeType = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "OTHER"] = 0; - values[valuesById[1] = "FLYTE_SDK"] = 1; - return values; - })(); - - return RuntimeMetadata; - })(); - - core.TaskMetadata = (function() { - - /** - * Properties of a TaskMetadata. - * @memberof flyteidl.core - * @interface ITaskMetadata - * @property {boolean|null} [discoverable] TaskMetadata discoverable - * @property {flyteidl.core.IRuntimeMetadata|null} [runtime] TaskMetadata runtime - * @property {google.protobuf.IDuration|null} [timeout] TaskMetadata timeout - * @property {flyteidl.core.IRetryStrategy|null} [retries] TaskMetadata retries - * @property {string|null} [discoveryVersion] TaskMetadata discoveryVersion - * @property {string|null} [deprecatedErrorMessage] TaskMetadata deprecatedErrorMessage - * @property {boolean|null} [interruptible] TaskMetadata interruptible - * @property {boolean|null} [cacheSerializable] TaskMetadata cacheSerializable - * @property {boolean|null} [generatesDeck] TaskMetadata generatesDeck - * @property {Object.|null} [tags] TaskMetadata tags - * @property {string|null} [podTemplateName] TaskMetadata podTemplateName - * @property {Array.|null} [cacheIgnoreInputVars] TaskMetadata cacheIgnoreInputVars - */ - - /** - * Constructs a new TaskMetadata. - * @memberof flyteidl.core - * @classdesc Represents a TaskMetadata. - * @implements ITaskMetadata - * @constructor - * @param {flyteidl.core.ITaskMetadata=} [properties] Properties to set - */ - function TaskMetadata(properties) { - this.tags = {}; - this.cacheIgnoreInputVars = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskMetadata discoverable. - * @member {boolean} discoverable - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.discoverable = false; - - /** - * TaskMetadata runtime. - * @member {flyteidl.core.IRuntimeMetadata|null|undefined} runtime - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.runtime = null; - - /** - * TaskMetadata timeout. - * @member {google.protobuf.IDuration|null|undefined} timeout - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.timeout = null; - - /** - * TaskMetadata retries. - * @member {flyteidl.core.IRetryStrategy|null|undefined} retries - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.retries = null; - - /** - * TaskMetadata discoveryVersion. - * @member {string} discoveryVersion - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.discoveryVersion = ""; - - /** - * TaskMetadata deprecatedErrorMessage. - * @member {string} deprecatedErrorMessage - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.deprecatedErrorMessage = ""; - - /** - * TaskMetadata interruptible. - * @member {boolean} interruptible - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.interruptible = false; - - /** - * TaskMetadata cacheSerializable. - * @member {boolean} cacheSerializable - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.cacheSerializable = false; - - /** - * TaskMetadata generatesDeck. - * @member {boolean} generatesDeck - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.generatesDeck = false; - - /** - * TaskMetadata tags. - * @member {Object.} tags - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.tags = $util.emptyObject; - - /** - * TaskMetadata podTemplateName. - * @member {string} podTemplateName - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.podTemplateName = ""; - - /** - * TaskMetadata cacheIgnoreInputVars. - * @member {Array.} cacheIgnoreInputVars - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - TaskMetadata.prototype.cacheIgnoreInputVars = $util.emptyArray; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * TaskMetadata interruptibleValue. - * @member {"interruptible"|undefined} interruptibleValue - * @memberof flyteidl.core.TaskMetadata - * @instance - */ - Object.defineProperty(TaskMetadata.prototype, "interruptibleValue", { - get: $util.oneOfGetter($oneOfFields = ["interruptible"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new TaskMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.TaskMetadata - * @static - * @param {flyteidl.core.ITaskMetadata=} [properties] Properties to set - * @returns {flyteidl.core.TaskMetadata} TaskMetadata instance - */ - TaskMetadata.create = function create(properties) { - return new TaskMetadata(properties); - }; - - /** - * Encodes the specified TaskMetadata message. Does not implicitly {@link flyteidl.core.TaskMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TaskMetadata - * @static - * @param {flyteidl.core.ITaskMetadata} message TaskMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.discoverable != null && message.hasOwnProperty("discoverable")) - writer.uint32(/* id 1, wireType 0 =*/8).bool(message.discoverable); - if (message.runtime != null && message.hasOwnProperty("runtime")) - $root.flyteidl.core.RuntimeMetadata.encode(message.runtime, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.timeout != null && message.hasOwnProperty("timeout")) - $root.google.protobuf.Duration.encode(message.timeout, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.retries != null && message.hasOwnProperty("retries")) - $root.flyteidl.core.RetryStrategy.encode(message.retries, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.discoveryVersion != null && message.hasOwnProperty("discoveryVersion")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.discoveryVersion); - if (message.deprecatedErrorMessage != null && message.hasOwnProperty("deprecatedErrorMessage")) - writer.uint32(/* id 7, wireType 2 =*/58).string(message.deprecatedErrorMessage); - if (message.interruptible != null && message.hasOwnProperty("interruptible")) - writer.uint32(/* id 8, wireType 0 =*/64).bool(message.interruptible); - if (message.cacheSerializable != null && message.hasOwnProperty("cacheSerializable")) - writer.uint32(/* id 9, wireType 0 =*/72).bool(message.cacheSerializable); - if (message.generatesDeck != null && message.hasOwnProperty("generatesDeck")) - writer.uint32(/* id 10, wireType 0 =*/80).bool(message.generatesDeck); - if (message.tags != null && message.hasOwnProperty("tags")) - for (var keys = Object.keys(message.tags), i = 0; i < keys.length; ++i) - writer.uint32(/* id 11, wireType 2 =*/90).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.tags[keys[i]]).ldelim(); - if (message.podTemplateName != null && message.hasOwnProperty("podTemplateName")) - writer.uint32(/* id 12, wireType 2 =*/98).string(message.podTemplateName); - if (message.cacheIgnoreInputVars != null && message.cacheIgnoreInputVars.length) - for (var i = 0; i < message.cacheIgnoreInputVars.length; ++i) - writer.uint32(/* id 13, wireType 2 =*/106).string(message.cacheIgnoreInputVars[i]); - return writer; - }; - - /** - * Decodes a TaskMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TaskMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TaskMetadata} TaskMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TaskMetadata(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.discoverable = reader.bool(); - break; - case 2: - message.runtime = $root.flyteidl.core.RuntimeMetadata.decode(reader, reader.uint32()); - break; - case 4: - message.timeout = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - case 5: - message.retries = $root.flyteidl.core.RetryStrategy.decode(reader, reader.uint32()); - break; - case 6: - message.discoveryVersion = reader.string(); - break; - case 7: - message.deprecatedErrorMessage = reader.string(); - break; - case 8: - message.interruptible = reader.bool(); - break; - case 9: - message.cacheSerializable = reader.bool(); - break; - case 10: - message.generatesDeck = reader.bool(); - break; - case 11: - reader.skip().pos++; - if (message.tags === $util.emptyObject) - message.tags = {}; - key = reader.string(); - reader.pos++; - message.tags[key] = reader.string(); - break; - case 12: - message.podTemplateName = reader.string(); - break; - case 13: - if (!(message.cacheIgnoreInputVars && message.cacheIgnoreInputVars.length)) - message.cacheIgnoreInputVars = []; - message.cacheIgnoreInputVars.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskMetadata message. - * @function verify - * @memberof flyteidl.core.TaskMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.discoverable != null && message.hasOwnProperty("discoverable")) - if (typeof message.discoverable !== "boolean") - return "discoverable: boolean expected"; - if (message.runtime != null && message.hasOwnProperty("runtime")) { - var error = $root.flyteidl.core.RuntimeMetadata.verify(message.runtime); - if (error) - return "runtime." + error; - } - if (message.timeout != null && message.hasOwnProperty("timeout")) { - var error = $root.google.protobuf.Duration.verify(message.timeout); - if (error) - return "timeout." + error; - } - if (message.retries != null && message.hasOwnProperty("retries")) { - var error = $root.flyteidl.core.RetryStrategy.verify(message.retries); - if (error) - return "retries." + error; - } - if (message.discoveryVersion != null && message.hasOwnProperty("discoveryVersion")) - if (!$util.isString(message.discoveryVersion)) - return "discoveryVersion: string expected"; - if (message.deprecatedErrorMessage != null && message.hasOwnProperty("deprecatedErrorMessage")) - if (!$util.isString(message.deprecatedErrorMessage)) - return "deprecatedErrorMessage: string expected"; - if (message.interruptible != null && message.hasOwnProperty("interruptible")) { - properties.interruptibleValue = 1; - if (typeof message.interruptible !== "boolean") - return "interruptible: boolean expected"; - } - if (message.cacheSerializable != null && message.hasOwnProperty("cacheSerializable")) - if (typeof message.cacheSerializable !== "boolean") - return "cacheSerializable: boolean expected"; - if (message.generatesDeck != null && message.hasOwnProperty("generatesDeck")) - if (typeof message.generatesDeck !== "boolean") - return "generatesDeck: boolean expected"; - if (message.tags != null && message.hasOwnProperty("tags")) { - if (!$util.isObject(message.tags)) - return "tags: object expected"; - var key = Object.keys(message.tags); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.tags[key[i]])) - return "tags: string{k:string} expected"; - } - if (message.podTemplateName != null && message.hasOwnProperty("podTemplateName")) - if (!$util.isString(message.podTemplateName)) - return "podTemplateName: string expected"; - if (message.cacheIgnoreInputVars != null && message.hasOwnProperty("cacheIgnoreInputVars")) { - if (!Array.isArray(message.cacheIgnoreInputVars)) - return "cacheIgnoreInputVars: array expected"; - for (var i = 0; i < message.cacheIgnoreInputVars.length; ++i) - if (!$util.isString(message.cacheIgnoreInputVars[i])) - return "cacheIgnoreInputVars: string[] expected"; - } - return null; - }; - - return TaskMetadata; - })(); - - core.TaskTemplate = (function() { - - /** - * Properties of a TaskTemplate. - * @memberof flyteidl.core - * @interface ITaskTemplate - * @property {flyteidl.core.IIdentifier|null} [id] TaskTemplate id - * @property {string|null} [type] TaskTemplate type - * @property {flyteidl.core.ITaskMetadata|null} [metadata] TaskTemplate metadata - * @property {flyteidl.core.ITypedInterface|null} ["interface"] TaskTemplate interface - * @property {google.protobuf.IStruct|null} [custom] TaskTemplate custom - * @property {flyteidl.core.IContainer|null} [container] TaskTemplate container - * @property {flyteidl.core.IK8sPod|null} [k8sPod] TaskTemplate k8sPod - * @property {flyteidl.core.ISql|null} [sql] TaskTemplate sql - * @property {number|null} [taskTypeVersion] TaskTemplate taskTypeVersion - * @property {flyteidl.core.ISecurityContext|null} [securityContext] TaskTemplate securityContext - * @property {flyteidl.core.IExtendedResources|null} [extendedResources] TaskTemplate extendedResources - * @property {Object.|null} [config] TaskTemplate config - */ - - /** - * Constructs a new TaskTemplate. - * @memberof flyteidl.core - * @classdesc Represents a TaskTemplate. - * @implements ITaskTemplate - * @constructor - * @param {flyteidl.core.ITaskTemplate=} [properties] Properties to set - */ - function TaskTemplate(properties) { - this.config = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskTemplate id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.id = null; - - /** - * TaskTemplate type. - * @member {string} type - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.type = ""; - - /** - * TaskTemplate metadata. - * @member {flyteidl.core.ITaskMetadata|null|undefined} metadata - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.metadata = null; - - /** - * TaskTemplate interface. - * @member {flyteidl.core.ITypedInterface|null|undefined} interface - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype["interface"] = null; - - /** - * TaskTemplate custom. - * @member {google.protobuf.IStruct|null|undefined} custom - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.custom = null; - - /** - * TaskTemplate container. - * @member {flyteidl.core.IContainer|null|undefined} container - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.container = null; - - /** - * TaskTemplate k8sPod. - * @member {flyteidl.core.IK8sPod|null|undefined} k8sPod - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.k8sPod = null; - - /** - * TaskTemplate sql. - * @member {flyteidl.core.ISql|null|undefined} sql - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.sql = null; - - /** - * TaskTemplate taskTypeVersion. - * @member {number} taskTypeVersion - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.taskTypeVersion = 0; - - /** - * TaskTemplate securityContext. - * @member {flyteidl.core.ISecurityContext|null|undefined} securityContext - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.securityContext = null; - - /** - * TaskTemplate extendedResources. - * @member {flyteidl.core.IExtendedResources|null|undefined} extendedResources - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.extendedResources = null; - - /** - * TaskTemplate config. - * @member {Object.} config - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - TaskTemplate.prototype.config = $util.emptyObject; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * TaskTemplate target. - * @member {"container"|"k8sPod"|"sql"|undefined} target - * @memberof flyteidl.core.TaskTemplate - * @instance - */ - Object.defineProperty(TaskTemplate.prototype, "target", { - get: $util.oneOfGetter($oneOfFields = ["container", "k8sPod", "sql"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new TaskTemplate instance using the specified properties. - * @function create - * @memberof flyteidl.core.TaskTemplate - * @static - * @param {flyteidl.core.ITaskTemplate=} [properties] Properties to set - * @returns {flyteidl.core.TaskTemplate} TaskTemplate instance - */ - TaskTemplate.create = function create(properties) { - return new TaskTemplate(properties); - }; - - /** - * Encodes the specified TaskTemplate message. Does not implicitly {@link flyteidl.core.TaskTemplate.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.TaskTemplate - * @static - * @param {flyteidl.core.ITaskTemplate} message TaskTemplate message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskTemplate.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.type != null && message.hasOwnProperty("type")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.type); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.core.TaskMetadata.encode(message.metadata, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message["interface"] != null && message.hasOwnProperty("interface")) - $root.flyteidl.core.TypedInterface.encode(message["interface"], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.custom != null && message.hasOwnProperty("custom")) - $root.google.protobuf.Struct.encode(message.custom, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.container != null && message.hasOwnProperty("container")) - $root.flyteidl.core.Container.encode(message.container, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.taskTypeVersion != null && message.hasOwnProperty("taskTypeVersion")) - writer.uint32(/* id 7, wireType 0 =*/56).int32(message.taskTypeVersion); - if (message.securityContext != null && message.hasOwnProperty("securityContext")) - $root.flyteidl.core.SecurityContext.encode(message.securityContext, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.extendedResources != null && message.hasOwnProperty("extendedResources")) - $root.flyteidl.core.ExtendedResources.encode(message.extendedResources, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.config != null && message.hasOwnProperty("config")) - for (var keys = Object.keys(message.config), i = 0; i < keys.length; ++i) - writer.uint32(/* id 16, wireType 2 =*/130).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.config[keys[i]]).ldelim(); - if (message.k8sPod != null && message.hasOwnProperty("k8sPod")) - $root.flyteidl.core.K8sPod.encode(message.k8sPod, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim(); - if (message.sql != null && message.hasOwnProperty("sql")) - $root.flyteidl.core.Sql.encode(message.sql, writer.uint32(/* id 18, wireType 2 =*/146).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskTemplate message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.TaskTemplate - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.TaskTemplate} TaskTemplate - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskTemplate.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.TaskTemplate(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.type = reader.string(); - break; - case 3: - message.metadata = $root.flyteidl.core.TaskMetadata.decode(reader, reader.uint32()); - break; - case 4: - message["interface"] = $root.flyteidl.core.TypedInterface.decode(reader, reader.uint32()); - break; - case 5: - message.custom = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - case 6: - message.container = $root.flyteidl.core.Container.decode(reader, reader.uint32()); - break; - case 17: - message.k8sPod = $root.flyteidl.core.K8sPod.decode(reader, reader.uint32()); - break; - case 18: - message.sql = $root.flyteidl.core.Sql.decode(reader, reader.uint32()); - break; - case 7: - message.taskTypeVersion = reader.int32(); - break; - case 8: - message.securityContext = $root.flyteidl.core.SecurityContext.decode(reader, reader.uint32()); - break; - case 9: - message.extendedResources = $root.flyteidl.core.ExtendedResources.decode(reader, reader.uint32()); - break; - case 16: - reader.skip().pos++; - if (message.config === $util.emptyObject) - message.config = {}; - key = reader.string(); - reader.pos++; - message.config[key] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskTemplate message. - * @function verify - * @memberof flyteidl.core.TaskTemplate - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskTemplate.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.type != null && message.hasOwnProperty("type")) - if (!$util.isString(message.type)) - return "type: string expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.core.TaskMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message["interface"] != null && message.hasOwnProperty("interface")) { - var error = $root.flyteidl.core.TypedInterface.verify(message["interface"]); - if (error) - return "interface." + error; - } - if (message.custom != null && message.hasOwnProperty("custom")) { - var error = $root.google.protobuf.Struct.verify(message.custom); - if (error) - return "custom." + error; - } - if (message.container != null && message.hasOwnProperty("container")) { - properties.target = 1; - { - var error = $root.flyteidl.core.Container.verify(message.container); - if (error) - return "container." + error; - } - } - if (message.k8sPod != null && message.hasOwnProperty("k8sPod")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.core.K8sPod.verify(message.k8sPod); - if (error) - return "k8sPod." + error; - } - } - if (message.sql != null && message.hasOwnProperty("sql")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.core.Sql.verify(message.sql); - if (error) - return "sql." + error; - } - } - if (message.taskTypeVersion != null && message.hasOwnProperty("taskTypeVersion")) - if (!$util.isInteger(message.taskTypeVersion)) - return "taskTypeVersion: integer expected"; - if (message.securityContext != null && message.hasOwnProperty("securityContext")) { - var error = $root.flyteidl.core.SecurityContext.verify(message.securityContext); - if (error) - return "securityContext." + error; - } - if (message.extendedResources != null && message.hasOwnProperty("extendedResources")) { - var error = $root.flyteidl.core.ExtendedResources.verify(message.extendedResources); - if (error) - return "extendedResources." + error; - } - if (message.config != null && message.hasOwnProperty("config")) { - if (!$util.isObject(message.config)) - return "config: object expected"; - var key = Object.keys(message.config); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.config[key[i]])) - return "config: string{k:string} expected"; - } - return null; - }; - - return TaskTemplate; - })(); - - core.ContainerPort = (function() { - - /** - * Properties of a ContainerPort. - * @memberof flyteidl.core - * @interface IContainerPort - * @property {number|null} [containerPort] ContainerPort containerPort - */ - - /** - * Constructs a new ContainerPort. - * @memberof flyteidl.core - * @classdesc Represents a ContainerPort. - * @implements IContainerPort - * @constructor - * @param {flyteidl.core.IContainerPort=} [properties] Properties to set - */ - function ContainerPort(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ContainerPort containerPort. - * @member {number} containerPort - * @memberof flyteidl.core.ContainerPort - * @instance - */ - ContainerPort.prototype.containerPort = 0; - - /** - * Creates a new ContainerPort instance using the specified properties. - * @function create - * @memberof flyteidl.core.ContainerPort - * @static - * @param {flyteidl.core.IContainerPort=} [properties] Properties to set - * @returns {flyteidl.core.ContainerPort} ContainerPort instance - */ - ContainerPort.create = function create(properties) { - return new ContainerPort(properties); - }; - - /** - * Encodes the specified ContainerPort message. Does not implicitly {@link flyteidl.core.ContainerPort.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ContainerPort - * @static - * @param {flyteidl.core.IContainerPort} message ContainerPort message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ContainerPort.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.containerPort != null && message.hasOwnProperty("containerPort")) - writer.uint32(/* id 1, wireType 0 =*/8).uint32(message.containerPort); - return writer; - }; - - /** - * Decodes a ContainerPort message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ContainerPort - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ContainerPort} ContainerPort - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ContainerPort.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ContainerPort(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.containerPort = reader.uint32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ContainerPort message. - * @function verify - * @memberof flyteidl.core.ContainerPort - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ContainerPort.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.containerPort != null && message.hasOwnProperty("containerPort")) - if (!$util.isInteger(message.containerPort)) - return "containerPort: integer expected"; - return null; - }; - - return ContainerPort; - })(); - - core.Container = (function() { - - /** - * Properties of a Container. - * @memberof flyteidl.core - * @interface IContainer - * @property {string|null} [image] Container image - * @property {Array.|null} [command] Container command - * @property {Array.|null} [args] Container args - * @property {flyteidl.core.IResources|null} [resources] Container resources - * @property {Array.|null} [env] Container env - * @property {Array.|null} [config] Container config - * @property {Array.|null} [ports] Container ports - * @property {flyteidl.core.IDataLoadingConfig|null} [dataConfig] Container dataConfig - * @property {flyteidl.core.Container.Architecture|null} [architecture] Container architecture - */ - - /** - * Constructs a new Container. - * @memberof flyteidl.core - * @classdesc Represents a Container. - * @implements IContainer - * @constructor - * @param {flyteidl.core.IContainer=} [properties] Properties to set - */ - function Container(properties) { - this.command = []; - this.args = []; - this.env = []; - this.config = []; - this.ports = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Container image. - * @member {string} image - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.image = ""; - - /** - * Container command. - * @member {Array.} command - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.command = $util.emptyArray; - - /** - * Container args. - * @member {Array.} args - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.args = $util.emptyArray; - - /** - * Container resources. - * @member {flyteidl.core.IResources|null|undefined} resources - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.resources = null; - - /** - * Container env. - * @member {Array.} env - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.env = $util.emptyArray; - - /** - * Container config. - * @member {Array.} config - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.config = $util.emptyArray; - - /** - * Container ports. - * @member {Array.} ports - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.ports = $util.emptyArray; - - /** - * Container dataConfig. - * @member {flyteidl.core.IDataLoadingConfig|null|undefined} dataConfig - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.dataConfig = null; - - /** - * Container architecture. - * @member {flyteidl.core.Container.Architecture} architecture - * @memberof flyteidl.core.Container - * @instance - */ - Container.prototype.architecture = 0; - - /** - * Creates a new Container instance using the specified properties. - * @function create - * @memberof flyteidl.core.Container - * @static - * @param {flyteidl.core.IContainer=} [properties] Properties to set - * @returns {flyteidl.core.Container} Container instance - */ - Container.create = function create(properties) { - return new Container(properties); - }; - - /** - * Encodes the specified Container message. Does not implicitly {@link flyteidl.core.Container.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Container - * @static - * @param {flyteidl.core.IContainer} message Container message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Container.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.image != null && message.hasOwnProperty("image")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.image); - if (message.command != null && message.command.length) - for (var i = 0; i < message.command.length; ++i) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.command[i]); - if (message.args != null && message.args.length) - for (var i = 0; i < message.args.length; ++i) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.args[i]); - if (message.resources != null && message.hasOwnProperty("resources")) - $root.flyteidl.core.Resources.encode(message.resources, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.env != null && message.env.length) - for (var i = 0; i < message.env.length; ++i) - $root.flyteidl.core.KeyValuePair.encode(message.env[i], writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.config != null && message.config.length) - for (var i = 0; i < message.config.length; ++i) - $root.flyteidl.core.KeyValuePair.encode(message.config[i], writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.ports != null && message.ports.length) - for (var i = 0; i < message.ports.length; ++i) - $root.flyteidl.core.ContainerPort.encode(message.ports[i], writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.dataConfig != null && message.hasOwnProperty("dataConfig")) - $root.flyteidl.core.DataLoadingConfig.encode(message.dataConfig, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.architecture != null && message.hasOwnProperty("architecture")) - writer.uint32(/* id 10, wireType 0 =*/80).int32(message.architecture); - return writer; - }; - - /** - * Decodes a Container message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Container - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Container} Container - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Container.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Container(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.image = reader.string(); - break; - case 2: - if (!(message.command && message.command.length)) - message.command = []; - message.command.push(reader.string()); - break; - case 3: - if (!(message.args && message.args.length)) - message.args = []; - message.args.push(reader.string()); - break; - case 4: - message.resources = $root.flyteidl.core.Resources.decode(reader, reader.uint32()); - break; - case 5: - if (!(message.env && message.env.length)) - message.env = []; - message.env.push($root.flyteidl.core.KeyValuePair.decode(reader, reader.uint32())); - break; - case 6: - if (!(message.config && message.config.length)) - message.config = []; - message.config.push($root.flyteidl.core.KeyValuePair.decode(reader, reader.uint32())); - break; - case 7: - if (!(message.ports && message.ports.length)) - message.ports = []; - message.ports.push($root.flyteidl.core.ContainerPort.decode(reader, reader.uint32())); - break; - case 9: - message.dataConfig = $root.flyteidl.core.DataLoadingConfig.decode(reader, reader.uint32()); - break; - case 10: - message.architecture = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Container message. - * @function verify - * @memberof flyteidl.core.Container - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Container.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.image != null && message.hasOwnProperty("image")) - if (!$util.isString(message.image)) - return "image: string expected"; - if (message.command != null && message.hasOwnProperty("command")) { - if (!Array.isArray(message.command)) - return "command: array expected"; - for (var i = 0; i < message.command.length; ++i) - if (!$util.isString(message.command[i])) - return "command: string[] expected"; - } - if (message.args != null && message.hasOwnProperty("args")) { - if (!Array.isArray(message.args)) - return "args: array expected"; - for (var i = 0; i < message.args.length; ++i) - if (!$util.isString(message.args[i])) - return "args: string[] expected"; - } - if (message.resources != null && message.hasOwnProperty("resources")) { - var error = $root.flyteidl.core.Resources.verify(message.resources); - if (error) - return "resources." + error; - } - if (message.env != null && message.hasOwnProperty("env")) { - if (!Array.isArray(message.env)) - return "env: array expected"; - for (var i = 0; i < message.env.length; ++i) { - var error = $root.flyteidl.core.KeyValuePair.verify(message.env[i]); - if (error) - return "env." + error; - } - } - if (message.config != null && message.hasOwnProperty("config")) { - if (!Array.isArray(message.config)) - return "config: array expected"; - for (var i = 0; i < message.config.length; ++i) { - var error = $root.flyteidl.core.KeyValuePair.verify(message.config[i]); - if (error) - return "config." + error; - } - } - if (message.ports != null && message.hasOwnProperty("ports")) { - if (!Array.isArray(message.ports)) - return "ports: array expected"; - for (var i = 0; i < message.ports.length; ++i) { - var error = $root.flyteidl.core.ContainerPort.verify(message.ports[i]); - if (error) - return "ports." + error; - } - } - if (message.dataConfig != null && message.hasOwnProperty("dataConfig")) { - var error = $root.flyteidl.core.DataLoadingConfig.verify(message.dataConfig); - if (error) - return "dataConfig." + error; - } - if (message.architecture != null && message.hasOwnProperty("architecture")) - switch (message.architecture) { - default: - return "architecture: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - return null; - }; - - /** - * Architecture enum. - * @name flyteidl.core.Container.Architecture - * @enum {string} - * @property {number} UNKNOWN=0 UNKNOWN value - * @property {number} AMD64=1 AMD64 value - * @property {number} ARM64=2 ARM64 value - * @property {number} ARM_V6=3 ARM_V6 value - * @property {number} ARM_V7=4 ARM_V7 value - */ - Container.Architecture = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNKNOWN"] = 0; - values[valuesById[1] = "AMD64"] = 1; - values[valuesById[2] = "ARM64"] = 2; - values[valuesById[3] = "ARM_V6"] = 3; - values[valuesById[4] = "ARM_V7"] = 4; - return values; - })(); - - return Container; - })(); - - core.IOStrategy = (function() { - - /** - * Properties of a IOStrategy. - * @memberof flyteidl.core - * @interface IIOStrategy - * @property {flyteidl.core.IOStrategy.DownloadMode|null} [downloadMode] IOStrategy downloadMode - * @property {flyteidl.core.IOStrategy.UploadMode|null} [uploadMode] IOStrategy uploadMode - */ - - /** - * Constructs a new IOStrategy. - * @memberof flyteidl.core - * @classdesc Represents a IOStrategy. - * @implements IIOStrategy - * @constructor - * @param {flyteidl.core.IIOStrategy=} [properties] Properties to set - */ - function IOStrategy(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * IOStrategy downloadMode. - * @member {flyteidl.core.IOStrategy.DownloadMode} downloadMode - * @memberof flyteidl.core.IOStrategy - * @instance - */ - IOStrategy.prototype.downloadMode = 0; - - /** - * IOStrategy uploadMode. - * @member {flyteidl.core.IOStrategy.UploadMode} uploadMode - * @memberof flyteidl.core.IOStrategy - * @instance - */ - IOStrategy.prototype.uploadMode = 0; - - /** - * Creates a new IOStrategy instance using the specified properties. - * @function create - * @memberof flyteidl.core.IOStrategy - * @static - * @param {flyteidl.core.IIOStrategy=} [properties] Properties to set - * @returns {flyteidl.core.IOStrategy} IOStrategy instance - */ - IOStrategy.create = function create(properties) { - return new IOStrategy(properties); - }; - - /** - * Encodes the specified IOStrategy message. Does not implicitly {@link flyteidl.core.IOStrategy.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.IOStrategy - * @static - * @param {flyteidl.core.IIOStrategy} message IOStrategy message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - IOStrategy.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.downloadMode != null && message.hasOwnProperty("downloadMode")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.downloadMode); - if (message.uploadMode != null && message.hasOwnProperty("uploadMode")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.uploadMode); - return writer; - }; - - /** - * Decodes a IOStrategy message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.IOStrategy - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.IOStrategy} IOStrategy - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - IOStrategy.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.IOStrategy(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.downloadMode = reader.int32(); - break; - case 2: - message.uploadMode = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a IOStrategy message. - * @function verify - * @memberof flyteidl.core.IOStrategy - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - IOStrategy.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.downloadMode != null && message.hasOwnProperty("downloadMode")) - switch (message.downloadMode) { - default: - return "downloadMode: enum value expected"; - case 0: - case 1: - case 2: - break; - } - if (message.uploadMode != null && message.hasOwnProperty("uploadMode")) - switch (message.uploadMode) { - default: - return "uploadMode: enum value expected"; - case 0: - case 1: - case 2: - break; - } - return null; - }; - - /** - * DownloadMode enum. - * @name flyteidl.core.IOStrategy.DownloadMode - * @enum {string} - * @property {number} DOWNLOAD_EAGER=0 DOWNLOAD_EAGER value - * @property {number} DOWNLOAD_STREAM=1 DOWNLOAD_STREAM value - * @property {number} DO_NOT_DOWNLOAD=2 DO_NOT_DOWNLOAD value - */ - IOStrategy.DownloadMode = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "DOWNLOAD_EAGER"] = 0; - values[valuesById[1] = "DOWNLOAD_STREAM"] = 1; - values[valuesById[2] = "DO_NOT_DOWNLOAD"] = 2; - return values; - })(); - - /** - * UploadMode enum. - * @name flyteidl.core.IOStrategy.UploadMode - * @enum {string} - * @property {number} UPLOAD_ON_EXIT=0 UPLOAD_ON_EXIT value - * @property {number} UPLOAD_EAGER=1 UPLOAD_EAGER value - * @property {number} DO_NOT_UPLOAD=2 DO_NOT_UPLOAD value - */ - IOStrategy.UploadMode = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UPLOAD_ON_EXIT"] = 0; - values[valuesById[1] = "UPLOAD_EAGER"] = 1; - values[valuesById[2] = "DO_NOT_UPLOAD"] = 2; - return values; - })(); - - return IOStrategy; - })(); - - core.DataLoadingConfig = (function() { - - /** - * Properties of a DataLoadingConfig. - * @memberof flyteidl.core - * @interface IDataLoadingConfig - * @property {boolean|null} [enabled] DataLoadingConfig enabled - * @property {string|null} [inputPath] DataLoadingConfig inputPath - * @property {string|null} [outputPath] DataLoadingConfig outputPath - * @property {flyteidl.core.DataLoadingConfig.LiteralMapFormat|null} [format] DataLoadingConfig format - * @property {flyteidl.core.IIOStrategy|null} [ioStrategy] DataLoadingConfig ioStrategy - */ - - /** - * Constructs a new DataLoadingConfig. - * @memberof flyteidl.core - * @classdesc Represents a DataLoadingConfig. - * @implements IDataLoadingConfig - * @constructor - * @param {flyteidl.core.IDataLoadingConfig=} [properties] Properties to set - */ - function DataLoadingConfig(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DataLoadingConfig enabled. - * @member {boolean} enabled - * @memberof flyteidl.core.DataLoadingConfig - * @instance - */ - DataLoadingConfig.prototype.enabled = false; - - /** - * DataLoadingConfig inputPath. - * @member {string} inputPath - * @memberof flyteidl.core.DataLoadingConfig - * @instance - */ - DataLoadingConfig.prototype.inputPath = ""; - - /** - * DataLoadingConfig outputPath. - * @member {string} outputPath - * @memberof flyteidl.core.DataLoadingConfig - * @instance - */ - DataLoadingConfig.prototype.outputPath = ""; - - /** - * DataLoadingConfig format. - * @member {flyteidl.core.DataLoadingConfig.LiteralMapFormat} format - * @memberof flyteidl.core.DataLoadingConfig - * @instance - */ - DataLoadingConfig.prototype.format = 0; - - /** - * DataLoadingConfig ioStrategy. - * @member {flyteidl.core.IIOStrategy|null|undefined} ioStrategy - * @memberof flyteidl.core.DataLoadingConfig - * @instance - */ - DataLoadingConfig.prototype.ioStrategy = null; - - /** - * Creates a new DataLoadingConfig instance using the specified properties. - * @function create - * @memberof flyteidl.core.DataLoadingConfig - * @static - * @param {flyteidl.core.IDataLoadingConfig=} [properties] Properties to set - * @returns {flyteidl.core.DataLoadingConfig} DataLoadingConfig instance - */ - DataLoadingConfig.create = function create(properties) { - return new DataLoadingConfig(properties); - }; - - /** - * Encodes the specified DataLoadingConfig message. Does not implicitly {@link flyteidl.core.DataLoadingConfig.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.DataLoadingConfig - * @static - * @param {flyteidl.core.IDataLoadingConfig} message DataLoadingConfig message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DataLoadingConfig.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.enabled != null && message.hasOwnProperty("enabled")) - writer.uint32(/* id 1, wireType 0 =*/8).bool(message.enabled); - if (message.inputPath != null && message.hasOwnProperty("inputPath")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.inputPath); - if (message.outputPath != null && message.hasOwnProperty("outputPath")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.outputPath); - if (message.format != null && message.hasOwnProperty("format")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.format); - if (message.ioStrategy != null && message.hasOwnProperty("ioStrategy")) - $root.flyteidl.core.IOStrategy.encode(message.ioStrategy, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a DataLoadingConfig message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.DataLoadingConfig - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.DataLoadingConfig} DataLoadingConfig - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DataLoadingConfig.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.DataLoadingConfig(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.enabled = reader.bool(); - break; - case 2: - message.inputPath = reader.string(); - break; - case 3: - message.outputPath = reader.string(); - break; - case 4: - message.format = reader.int32(); - break; - case 5: - message.ioStrategy = $root.flyteidl.core.IOStrategy.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DataLoadingConfig message. - * @function verify - * @memberof flyteidl.core.DataLoadingConfig - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DataLoadingConfig.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.enabled != null && message.hasOwnProperty("enabled")) - if (typeof message.enabled !== "boolean") - return "enabled: boolean expected"; - if (message.inputPath != null && message.hasOwnProperty("inputPath")) - if (!$util.isString(message.inputPath)) - return "inputPath: string expected"; - if (message.outputPath != null && message.hasOwnProperty("outputPath")) - if (!$util.isString(message.outputPath)) - return "outputPath: string expected"; - if (message.format != null && message.hasOwnProperty("format")) - switch (message.format) { - default: - return "format: enum value expected"; - case 0: - case 1: - case 2: - break; - } - if (message.ioStrategy != null && message.hasOwnProperty("ioStrategy")) { - var error = $root.flyteidl.core.IOStrategy.verify(message.ioStrategy); - if (error) - return "ioStrategy." + error; - } - return null; - }; - - /** - * LiteralMapFormat enum. - * @name flyteidl.core.DataLoadingConfig.LiteralMapFormat - * @enum {string} - * @property {number} JSON=0 JSON value - * @property {number} YAML=1 YAML value - * @property {number} PROTO=2 PROTO value - */ - DataLoadingConfig.LiteralMapFormat = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "JSON"] = 0; - values[valuesById[1] = "YAML"] = 1; - values[valuesById[2] = "PROTO"] = 2; - return values; - })(); - - return DataLoadingConfig; - })(); - - core.K8sPod = (function() { - - /** - * Properties of a K8sPod. - * @memberof flyteidl.core - * @interface IK8sPod - * @property {flyteidl.core.IK8sObjectMetadata|null} [metadata] K8sPod metadata - * @property {google.protobuf.IStruct|null} [podSpec] K8sPod podSpec - * @property {flyteidl.core.IDataLoadingConfig|null} [dataConfig] K8sPod dataConfig - */ - - /** - * Constructs a new K8sPod. - * @memberof flyteidl.core - * @classdesc Represents a K8sPod. - * @implements IK8sPod - * @constructor - * @param {flyteidl.core.IK8sPod=} [properties] Properties to set - */ - function K8sPod(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * K8sPod metadata. - * @member {flyteidl.core.IK8sObjectMetadata|null|undefined} metadata - * @memberof flyteidl.core.K8sPod - * @instance - */ - K8sPod.prototype.metadata = null; - - /** - * K8sPod podSpec. - * @member {google.protobuf.IStruct|null|undefined} podSpec - * @memberof flyteidl.core.K8sPod - * @instance - */ - K8sPod.prototype.podSpec = null; - - /** - * K8sPod dataConfig. - * @member {flyteidl.core.IDataLoadingConfig|null|undefined} dataConfig - * @memberof flyteidl.core.K8sPod - * @instance - */ - K8sPod.prototype.dataConfig = null; - - /** - * Creates a new K8sPod instance using the specified properties. - * @function create - * @memberof flyteidl.core.K8sPod - * @static - * @param {flyteidl.core.IK8sPod=} [properties] Properties to set - * @returns {flyteidl.core.K8sPod} K8sPod instance - */ - K8sPod.create = function create(properties) { - return new K8sPod(properties); - }; - - /** - * Encodes the specified K8sPod message. Does not implicitly {@link flyteidl.core.K8sPod.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.K8sPod - * @static - * @param {flyteidl.core.IK8sPod} message K8sPod message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - K8sPod.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.core.K8sObjectMetadata.encode(message.metadata, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.podSpec != null && message.hasOwnProperty("podSpec")) - $root.google.protobuf.Struct.encode(message.podSpec, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.dataConfig != null && message.hasOwnProperty("dataConfig")) - $root.flyteidl.core.DataLoadingConfig.encode(message.dataConfig, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a K8sPod message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.K8sPod - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.K8sPod} K8sPod - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - K8sPod.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.K8sPod(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.metadata = $root.flyteidl.core.K8sObjectMetadata.decode(reader, reader.uint32()); - break; - case 2: - message.podSpec = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - case 3: - message.dataConfig = $root.flyteidl.core.DataLoadingConfig.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a K8sPod message. - * @function verify - * @memberof flyteidl.core.K8sPod - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - K8sPod.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.core.K8sObjectMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message.podSpec != null && message.hasOwnProperty("podSpec")) { - var error = $root.google.protobuf.Struct.verify(message.podSpec); - if (error) - return "podSpec." + error; - } - if (message.dataConfig != null && message.hasOwnProperty("dataConfig")) { - var error = $root.flyteidl.core.DataLoadingConfig.verify(message.dataConfig); - if (error) - return "dataConfig." + error; - } - return null; - }; - - return K8sPod; - })(); - - core.K8sObjectMetadata = (function() { - - /** - * Properties of a K8sObjectMetadata. - * @memberof flyteidl.core - * @interface IK8sObjectMetadata - * @property {Object.|null} [labels] K8sObjectMetadata labels - * @property {Object.|null} [annotations] K8sObjectMetadata annotations - */ - - /** - * Constructs a new K8sObjectMetadata. - * @memberof flyteidl.core - * @classdesc Represents a K8sObjectMetadata. - * @implements IK8sObjectMetadata - * @constructor - * @param {flyteidl.core.IK8sObjectMetadata=} [properties] Properties to set - */ - function K8sObjectMetadata(properties) { - this.labels = {}; - this.annotations = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * K8sObjectMetadata labels. - * @member {Object.} labels - * @memberof flyteidl.core.K8sObjectMetadata - * @instance - */ - K8sObjectMetadata.prototype.labels = $util.emptyObject; - - /** - * K8sObjectMetadata annotations. - * @member {Object.} annotations - * @memberof flyteidl.core.K8sObjectMetadata - * @instance - */ - K8sObjectMetadata.prototype.annotations = $util.emptyObject; - - /** - * Creates a new K8sObjectMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.core.K8sObjectMetadata - * @static - * @param {flyteidl.core.IK8sObjectMetadata=} [properties] Properties to set - * @returns {flyteidl.core.K8sObjectMetadata} K8sObjectMetadata instance - */ - K8sObjectMetadata.create = function create(properties) { - return new K8sObjectMetadata(properties); - }; - - /** - * Encodes the specified K8sObjectMetadata message. Does not implicitly {@link flyteidl.core.K8sObjectMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.K8sObjectMetadata - * @static - * @param {flyteidl.core.IK8sObjectMetadata} message K8sObjectMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - K8sObjectMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.labels != null && message.hasOwnProperty("labels")) - for (var keys = Object.keys(message.labels), i = 0; i < keys.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.labels[keys[i]]).ldelim(); - if (message.annotations != null && message.hasOwnProperty("annotations")) - for (var keys = Object.keys(message.annotations), i = 0; i < keys.length; ++i) - writer.uint32(/* id 2, wireType 2 =*/18).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.annotations[keys[i]]).ldelim(); - return writer; - }; - - /** - * Decodes a K8sObjectMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.K8sObjectMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.K8sObjectMetadata} K8sObjectMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - K8sObjectMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.K8sObjectMetadata(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.labels === $util.emptyObject) - message.labels = {}; - key = reader.string(); - reader.pos++; - message.labels[key] = reader.string(); - break; - case 2: - reader.skip().pos++; - if (message.annotations === $util.emptyObject) - message.annotations = {}; - key = reader.string(); - reader.pos++; - message.annotations[key] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a K8sObjectMetadata message. - * @function verify - * @memberof flyteidl.core.K8sObjectMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - K8sObjectMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.labels != null && message.hasOwnProperty("labels")) { - if (!$util.isObject(message.labels)) - return "labels: object expected"; - var key = Object.keys(message.labels); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.labels[key[i]])) - return "labels: string{k:string} expected"; - } - if (message.annotations != null && message.hasOwnProperty("annotations")) { - if (!$util.isObject(message.annotations)) - return "annotations: object expected"; - var key = Object.keys(message.annotations); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.annotations[key[i]])) - return "annotations: string{k:string} expected"; - } - return null; - }; - - return K8sObjectMetadata; - })(); - - core.Sql = (function() { - - /** - * Properties of a Sql. - * @memberof flyteidl.core - * @interface ISql - * @property {string|null} [statement] Sql statement - * @property {flyteidl.core.Sql.Dialect|null} [dialect] Sql dialect - */ - - /** - * Constructs a new Sql. - * @memberof flyteidl.core - * @classdesc Represents a Sql. - * @implements ISql - * @constructor - * @param {flyteidl.core.ISql=} [properties] Properties to set - */ - function Sql(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Sql statement. - * @member {string} statement - * @memberof flyteidl.core.Sql - * @instance - */ - Sql.prototype.statement = ""; - - /** - * Sql dialect. - * @member {flyteidl.core.Sql.Dialect} dialect - * @memberof flyteidl.core.Sql - * @instance - */ - Sql.prototype.dialect = 0; - - /** - * Creates a new Sql instance using the specified properties. - * @function create - * @memberof flyteidl.core.Sql - * @static - * @param {flyteidl.core.ISql=} [properties] Properties to set - * @returns {flyteidl.core.Sql} Sql instance - */ - Sql.create = function create(properties) { - return new Sql(properties); - }; - - /** - * Encodes the specified Sql message. Does not implicitly {@link flyteidl.core.Sql.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Sql - * @static - * @param {flyteidl.core.ISql} message Sql message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Sql.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.statement != null && message.hasOwnProperty("statement")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.statement); - if (message.dialect != null && message.hasOwnProperty("dialect")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.dialect); - return writer; - }; - - /** - * Decodes a Sql message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Sql - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Sql} Sql - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Sql.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Sql(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.statement = reader.string(); - break; - case 2: - message.dialect = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Sql message. - * @function verify - * @memberof flyteidl.core.Sql - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Sql.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.statement != null && message.hasOwnProperty("statement")) - if (!$util.isString(message.statement)) - return "statement: string expected"; - if (message.dialect != null && message.hasOwnProperty("dialect")) - switch (message.dialect) { - default: - return "dialect: enum value expected"; - case 0: - case 1: - case 2: - case 3: - break; - } - return null; - }; - - /** - * Dialect enum. - * @name flyteidl.core.Sql.Dialect - * @enum {string} - * @property {number} UNDEFINED=0 UNDEFINED value - * @property {number} ANSI=1 ANSI value - * @property {number} HIVE=2 HIVE value - * @property {number} OTHER=3 OTHER value - */ - Sql.Dialect = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "UNDEFINED"] = 0; - values[valuesById[1] = "ANSI"] = 1; - values[valuesById[2] = "HIVE"] = 2; - values[valuesById[3] = "OTHER"] = 3; - return values; - })(); - - return Sql; - })(); - - core.Secret = (function() { - - /** - * Properties of a Secret. - * @memberof flyteidl.core - * @interface ISecret - * @property {string|null} [group] Secret group - * @property {string|null} [groupVersion] Secret groupVersion - * @property {string|null} [key] Secret key - * @property {flyteidl.core.Secret.MountType|null} [mountRequirement] Secret mountRequirement - */ - - /** - * Constructs a new Secret. - * @memberof flyteidl.core - * @classdesc Represents a Secret. - * @implements ISecret - * @constructor - * @param {flyteidl.core.ISecret=} [properties] Properties to set - */ - function Secret(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Secret group. - * @member {string} group - * @memberof flyteidl.core.Secret - * @instance - */ - Secret.prototype.group = ""; - - /** - * Secret groupVersion. - * @member {string} groupVersion - * @memberof flyteidl.core.Secret - * @instance - */ - Secret.prototype.groupVersion = ""; - - /** - * Secret key. - * @member {string} key - * @memberof flyteidl.core.Secret - * @instance - */ - Secret.prototype.key = ""; - - /** - * Secret mountRequirement. - * @member {flyteidl.core.Secret.MountType} mountRequirement - * @memberof flyteidl.core.Secret - * @instance - */ - Secret.prototype.mountRequirement = 0; - - /** - * Creates a new Secret instance using the specified properties. - * @function create - * @memberof flyteidl.core.Secret - * @static - * @param {flyteidl.core.ISecret=} [properties] Properties to set - * @returns {flyteidl.core.Secret} Secret instance - */ - Secret.create = function create(properties) { - return new Secret(properties); - }; - - /** - * Encodes the specified Secret message. Does not implicitly {@link flyteidl.core.Secret.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Secret - * @static - * @param {flyteidl.core.ISecret} message Secret message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Secret.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.group != null && message.hasOwnProperty("group")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.group); - if (message.groupVersion != null && message.hasOwnProperty("groupVersion")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.groupVersion); - if (message.key != null && message.hasOwnProperty("key")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.key); - if (message.mountRequirement != null && message.hasOwnProperty("mountRequirement")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.mountRequirement); - return writer; - }; - - /** - * Decodes a Secret message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Secret - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Secret} Secret - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Secret.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Secret(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.group = reader.string(); - break; - case 2: - message.groupVersion = reader.string(); - break; - case 3: - message.key = reader.string(); - break; - case 4: - message.mountRequirement = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Secret message. - * @function verify - * @memberof flyteidl.core.Secret - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Secret.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.group != null && message.hasOwnProperty("group")) - if (!$util.isString(message.group)) - return "group: string expected"; - if (message.groupVersion != null && message.hasOwnProperty("groupVersion")) - if (!$util.isString(message.groupVersion)) - return "groupVersion: string expected"; - if (message.key != null && message.hasOwnProperty("key")) - if (!$util.isString(message.key)) - return "key: string expected"; - if (message.mountRequirement != null && message.hasOwnProperty("mountRequirement")) - switch (message.mountRequirement) { - default: - return "mountRequirement: enum value expected"; - case 0: - case 1: - case 2: - break; - } - return null; - }; - - /** - * MountType enum. - * @name flyteidl.core.Secret.MountType - * @enum {string} - * @property {number} ANY=0 ANY value - * @property {number} ENV_VAR=1 ENV_VAR value - * @property {number} FILE=2 FILE value - */ - Secret.MountType = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "ANY"] = 0; - values[valuesById[1] = "ENV_VAR"] = 1; - values[valuesById[2] = "FILE"] = 2; - return values; - })(); - - return Secret; - })(); - - core.OAuth2Client = (function() { - - /** - * Properties of a OAuth2Client. - * @memberof flyteidl.core - * @interface IOAuth2Client - * @property {string|null} [clientId] OAuth2Client clientId - * @property {flyteidl.core.ISecret|null} [clientSecret] OAuth2Client clientSecret - */ - - /** - * Constructs a new OAuth2Client. - * @memberof flyteidl.core - * @classdesc Represents a OAuth2Client. - * @implements IOAuth2Client - * @constructor - * @param {flyteidl.core.IOAuth2Client=} [properties] Properties to set - */ - function OAuth2Client(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * OAuth2Client clientId. - * @member {string} clientId - * @memberof flyteidl.core.OAuth2Client - * @instance - */ - OAuth2Client.prototype.clientId = ""; - - /** - * OAuth2Client clientSecret. - * @member {flyteidl.core.ISecret|null|undefined} clientSecret - * @memberof flyteidl.core.OAuth2Client - * @instance - */ - OAuth2Client.prototype.clientSecret = null; - - /** - * Creates a new OAuth2Client instance using the specified properties. - * @function create - * @memberof flyteidl.core.OAuth2Client - * @static - * @param {flyteidl.core.IOAuth2Client=} [properties] Properties to set - * @returns {flyteidl.core.OAuth2Client} OAuth2Client instance - */ - OAuth2Client.create = function create(properties) { - return new OAuth2Client(properties); - }; - - /** - * Encodes the specified OAuth2Client message. Does not implicitly {@link flyteidl.core.OAuth2Client.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.OAuth2Client - * @static - * @param {flyteidl.core.IOAuth2Client} message OAuth2Client message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - OAuth2Client.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.clientId != null && message.hasOwnProperty("clientId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.clientId); - if (message.clientSecret != null && message.hasOwnProperty("clientSecret")) - $root.flyteidl.core.Secret.encode(message.clientSecret, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a OAuth2Client message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.OAuth2Client - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.OAuth2Client} OAuth2Client - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - OAuth2Client.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.OAuth2Client(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.clientId = reader.string(); - break; - case 2: - message.clientSecret = $root.flyteidl.core.Secret.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a OAuth2Client message. - * @function verify - * @memberof flyteidl.core.OAuth2Client - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - OAuth2Client.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.clientId != null && message.hasOwnProperty("clientId")) - if (!$util.isString(message.clientId)) - return "clientId: string expected"; - if (message.clientSecret != null && message.hasOwnProperty("clientSecret")) { - var error = $root.flyteidl.core.Secret.verify(message.clientSecret); - if (error) - return "clientSecret." + error; - } - return null; - }; - - return OAuth2Client; - })(); - - core.Identity = (function() { - - /** - * Properties of an Identity. - * @memberof flyteidl.core - * @interface IIdentity - * @property {string|null} [iamRole] Identity iamRole - * @property {string|null} [k8sServiceAccount] Identity k8sServiceAccount - * @property {flyteidl.core.IOAuth2Client|null} [oauth2Client] Identity oauth2Client - * @property {string|null} [executionIdentity] Identity executionIdentity - */ - - /** - * Constructs a new Identity. - * @memberof flyteidl.core - * @classdesc Represents an Identity. - * @implements IIdentity - * @constructor - * @param {flyteidl.core.IIdentity=} [properties] Properties to set - */ - function Identity(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Identity iamRole. - * @member {string} iamRole - * @memberof flyteidl.core.Identity - * @instance - */ - Identity.prototype.iamRole = ""; - - /** - * Identity k8sServiceAccount. - * @member {string} k8sServiceAccount - * @memberof flyteidl.core.Identity - * @instance - */ - Identity.prototype.k8sServiceAccount = ""; - - /** - * Identity oauth2Client. - * @member {flyteidl.core.IOAuth2Client|null|undefined} oauth2Client - * @memberof flyteidl.core.Identity - * @instance - */ - Identity.prototype.oauth2Client = null; - - /** - * Identity executionIdentity. - * @member {string} executionIdentity - * @memberof flyteidl.core.Identity - * @instance - */ - Identity.prototype.executionIdentity = ""; - - /** - * Creates a new Identity instance using the specified properties. - * @function create - * @memberof flyteidl.core.Identity - * @static - * @param {flyteidl.core.IIdentity=} [properties] Properties to set - * @returns {flyteidl.core.Identity} Identity instance - */ - Identity.create = function create(properties) { - return new Identity(properties); - }; - - /** - * Encodes the specified Identity message. Does not implicitly {@link flyteidl.core.Identity.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Identity - * @static - * @param {flyteidl.core.IIdentity} message Identity message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Identity.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.iamRole != null && message.hasOwnProperty("iamRole")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.iamRole); - if (message.k8sServiceAccount != null && message.hasOwnProperty("k8sServiceAccount")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.k8sServiceAccount); - if (message.oauth2Client != null && message.hasOwnProperty("oauth2Client")) - $root.flyteidl.core.OAuth2Client.encode(message.oauth2Client, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.executionIdentity != null && message.hasOwnProperty("executionIdentity")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.executionIdentity); - return writer; - }; - - /** - * Decodes an Identity message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Identity - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Identity} Identity - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Identity.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Identity(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.iamRole = reader.string(); - break; - case 2: - message.k8sServiceAccount = reader.string(); - break; - case 3: - message.oauth2Client = $root.flyteidl.core.OAuth2Client.decode(reader, reader.uint32()); - break; - case 4: - message.executionIdentity = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Identity message. - * @function verify - * @memberof flyteidl.core.Identity - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Identity.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.iamRole != null && message.hasOwnProperty("iamRole")) - if (!$util.isString(message.iamRole)) - return "iamRole: string expected"; - if (message.k8sServiceAccount != null && message.hasOwnProperty("k8sServiceAccount")) - if (!$util.isString(message.k8sServiceAccount)) - return "k8sServiceAccount: string expected"; - if (message.oauth2Client != null && message.hasOwnProperty("oauth2Client")) { - var error = $root.flyteidl.core.OAuth2Client.verify(message.oauth2Client); - if (error) - return "oauth2Client." + error; - } - if (message.executionIdentity != null && message.hasOwnProperty("executionIdentity")) - if (!$util.isString(message.executionIdentity)) - return "executionIdentity: string expected"; - return null; - }; - - return Identity; - })(); - - core.OAuth2TokenRequest = (function() { - - /** - * Properties of a OAuth2TokenRequest. - * @memberof flyteidl.core - * @interface IOAuth2TokenRequest - * @property {string|null} [name] OAuth2TokenRequest name - * @property {flyteidl.core.OAuth2TokenRequest.Type|null} [type] OAuth2TokenRequest type - * @property {flyteidl.core.IOAuth2Client|null} [client] OAuth2TokenRequest client - * @property {string|null} [idpDiscoveryEndpoint] OAuth2TokenRequest idpDiscoveryEndpoint - * @property {string|null} [tokenEndpoint] OAuth2TokenRequest tokenEndpoint - */ - - /** - * Constructs a new OAuth2TokenRequest. - * @memberof flyteidl.core - * @classdesc Represents a OAuth2TokenRequest. - * @implements IOAuth2TokenRequest - * @constructor - * @param {flyteidl.core.IOAuth2TokenRequest=} [properties] Properties to set - */ - function OAuth2TokenRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * OAuth2TokenRequest name. - * @member {string} name - * @memberof flyteidl.core.OAuth2TokenRequest - * @instance - */ - OAuth2TokenRequest.prototype.name = ""; - - /** - * OAuth2TokenRequest type. - * @member {flyteidl.core.OAuth2TokenRequest.Type} type - * @memberof flyteidl.core.OAuth2TokenRequest - * @instance - */ - OAuth2TokenRequest.prototype.type = 0; - - /** - * OAuth2TokenRequest client. - * @member {flyteidl.core.IOAuth2Client|null|undefined} client - * @memberof flyteidl.core.OAuth2TokenRequest - * @instance - */ - OAuth2TokenRequest.prototype.client = null; - - /** - * OAuth2TokenRequest idpDiscoveryEndpoint. - * @member {string} idpDiscoveryEndpoint - * @memberof flyteidl.core.OAuth2TokenRequest - * @instance - */ - OAuth2TokenRequest.prototype.idpDiscoveryEndpoint = ""; - - /** - * OAuth2TokenRequest tokenEndpoint. - * @member {string} tokenEndpoint - * @memberof flyteidl.core.OAuth2TokenRequest - * @instance - */ - OAuth2TokenRequest.prototype.tokenEndpoint = ""; - - /** - * Creates a new OAuth2TokenRequest instance using the specified properties. - * @function create - * @memberof flyteidl.core.OAuth2TokenRequest - * @static - * @param {flyteidl.core.IOAuth2TokenRequest=} [properties] Properties to set - * @returns {flyteidl.core.OAuth2TokenRequest} OAuth2TokenRequest instance - */ - OAuth2TokenRequest.create = function create(properties) { - return new OAuth2TokenRequest(properties); - }; - - /** - * Encodes the specified OAuth2TokenRequest message. Does not implicitly {@link flyteidl.core.OAuth2TokenRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.OAuth2TokenRequest - * @static - * @param {flyteidl.core.IOAuth2TokenRequest} message OAuth2TokenRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - OAuth2TokenRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.type != null && message.hasOwnProperty("type")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.type); - if (message.client != null && message.hasOwnProperty("client")) - $root.flyteidl.core.OAuth2Client.encode(message.client, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.idpDiscoveryEndpoint != null && message.hasOwnProperty("idpDiscoveryEndpoint")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.idpDiscoveryEndpoint); - if (message.tokenEndpoint != null && message.hasOwnProperty("tokenEndpoint")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.tokenEndpoint); - return writer; - }; - - /** - * Decodes a OAuth2TokenRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.OAuth2TokenRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.OAuth2TokenRequest} OAuth2TokenRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - OAuth2TokenRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.OAuth2TokenRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - message.type = reader.int32(); - break; - case 3: - message.client = $root.flyteidl.core.OAuth2Client.decode(reader, reader.uint32()); - break; - case 4: - message.idpDiscoveryEndpoint = reader.string(); - break; - case 5: - message.tokenEndpoint = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a OAuth2TokenRequest message. - * @function verify - * @memberof flyteidl.core.OAuth2TokenRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - OAuth2TokenRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.type != null && message.hasOwnProperty("type")) - switch (message.type) { - default: - return "type: enum value expected"; - case 0: - break; - } - if (message.client != null && message.hasOwnProperty("client")) { - var error = $root.flyteidl.core.OAuth2Client.verify(message.client); - if (error) - return "client." + error; - } - if (message.idpDiscoveryEndpoint != null && message.hasOwnProperty("idpDiscoveryEndpoint")) - if (!$util.isString(message.idpDiscoveryEndpoint)) - return "idpDiscoveryEndpoint: string expected"; - if (message.tokenEndpoint != null && message.hasOwnProperty("tokenEndpoint")) - if (!$util.isString(message.tokenEndpoint)) - return "tokenEndpoint: string expected"; - return null; - }; - - /** - * Type enum. - * @name flyteidl.core.OAuth2TokenRequest.Type - * @enum {string} - * @property {number} CLIENT_CREDENTIALS=0 CLIENT_CREDENTIALS value - */ - OAuth2TokenRequest.Type = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "CLIENT_CREDENTIALS"] = 0; - return values; - })(); - - return OAuth2TokenRequest; - })(); - - core.SecurityContext = (function() { - - /** - * Properties of a SecurityContext. - * @memberof flyteidl.core - * @interface ISecurityContext - * @property {flyteidl.core.IIdentity|null} [runAs] SecurityContext runAs - * @property {Array.|null} [secrets] SecurityContext secrets - * @property {Array.|null} [tokens] SecurityContext tokens - */ - - /** - * Constructs a new SecurityContext. - * @memberof flyteidl.core - * @classdesc Represents a SecurityContext. - * @implements ISecurityContext - * @constructor - * @param {flyteidl.core.ISecurityContext=} [properties] Properties to set - */ - function SecurityContext(properties) { - this.secrets = []; - this.tokens = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SecurityContext runAs. - * @member {flyteidl.core.IIdentity|null|undefined} runAs - * @memberof flyteidl.core.SecurityContext - * @instance - */ - SecurityContext.prototype.runAs = null; - - /** - * SecurityContext secrets. - * @member {Array.} secrets - * @memberof flyteidl.core.SecurityContext - * @instance - */ - SecurityContext.prototype.secrets = $util.emptyArray; - - /** - * SecurityContext tokens. - * @member {Array.} tokens - * @memberof flyteidl.core.SecurityContext - * @instance - */ - SecurityContext.prototype.tokens = $util.emptyArray; - - /** - * Creates a new SecurityContext instance using the specified properties. - * @function create - * @memberof flyteidl.core.SecurityContext - * @static - * @param {flyteidl.core.ISecurityContext=} [properties] Properties to set - * @returns {flyteidl.core.SecurityContext} SecurityContext instance - */ - SecurityContext.create = function create(properties) { - return new SecurityContext(properties); - }; - - /** - * Encodes the specified SecurityContext message. Does not implicitly {@link flyteidl.core.SecurityContext.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.SecurityContext - * @static - * @param {flyteidl.core.ISecurityContext} message SecurityContext message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SecurityContext.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.runAs != null && message.hasOwnProperty("runAs")) - $root.flyteidl.core.Identity.encode(message.runAs, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.secrets != null && message.secrets.length) - for (var i = 0; i < message.secrets.length; ++i) - $root.flyteidl.core.Secret.encode(message.secrets[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.tokens != null && message.tokens.length) - for (var i = 0; i < message.tokens.length; ++i) - $root.flyteidl.core.OAuth2TokenRequest.encode(message.tokens[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a SecurityContext message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.SecurityContext - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.SecurityContext} SecurityContext - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SecurityContext.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.SecurityContext(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.runAs = $root.flyteidl.core.Identity.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.secrets && message.secrets.length)) - message.secrets = []; - message.secrets.push($root.flyteidl.core.Secret.decode(reader, reader.uint32())); - break; - case 3: - if (!(message.tokens && message.tokens.length)) - message.tokens = []; - message.tokens.push($root.flyteidl.core.OAuth2TokenRequest.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SecurityContext message. - * @function verify - * @memberof flyteidl.core.SecurityContext - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SecurityContext.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.runAs != null && message.hasOwnProperty("runAs")) { - var error = $root.flyteidl.core.Identity.verify(message.runAs); - if (error) - return "runAs." + error; - } - if (message.secrets != null && message.hasOwnProperty("secrets")) { - if (!Array.isArray(message.secrets)) - return "secrets: array expected"; - for (var i = 0; i < message.secrets.length; ++i) { - var error = $root.flyteidl.core.Secret.verify(message.secrets[i]); - if (error) - return "secrets." + error; - } - } - if (message.tokens != null && message.hasOwnProperty("tokens")) { - if (!Array.isArray(message.tokens)) - return "tokens: array expected"; - for (var i = 0; i < message.tokens.length; ++i) { - var error = $root.flyteidl.core.OAuth2TokenRequest.verify(message.tokens[i]); - if (error) - return "tokens." + error; - } - } - return null; - }; - - return SecurityContext; - })(); - - core.DynamicJobSpec = (function() { - - /** - * Properties of a DynamicJobSpec. - * @memberof flyteidl.core - * @interface IDynamicJobSpec - * @property {Array.|null} [nodes] DynamicJobSpec nodes - * @property {Long|null} [minSuccesses] DynamicJobSpec minSuccesses - * @property {Array.|null} [outputs] DynamicJobSpec outputs - * @property {Array.|null} [tasks] DynamicJobSpec tasks - * @property {Array.|null} [subworkflows] DynamicJobSpec subworkflows - */ - - /** - * Constructs a new DynamicJobSpec. - * @memberof flyteidl.core - * @classdesc Represents a DynamicJobSpec. - * @implements IDynamicJobSpec - * @constructor - * @param {flyteidl.core.IDynamicJobSpec=} [properties] Properties to set - */ - function DynamicJobSpec(properties) { - this.nodes = []; - this.outputs = []; - this.tasks = []; - this.subworkflows = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DynamicJobSpec nodes. - * @member {Array.} nodes - * @memberof flyteidl.core.DynamicJobSpec - * @instance - */ - DynamicJobSpec.prototype.nodes = $util.emptyArray; - - /** - * DynamicJobSpec minSuccesses. - * @member {Long} minSuccesses - * @memberof flyteidl.core.DynamicJobSpec - * @instance - */ - DynamicJobSpec.prototype.minSuccesses = $util.Long ? $util.Long.fromBits(0,0,false) : 0; - - /** - * DynamicJobSpec outputs. - * @member {Array.} outputs - * @memberof flyteidl.core.DynamicJobSpec - * @instance - */ - DynamicJobSpec.prototype.outputs = $util.emptyArray; - - /** - * DynamicJobSpec tasks. - * @member {Array.} tasks - * @memberof flyteidl.core.DynamicJobSpec - * @instance - */ - DynamicJobSpec.prototype.tasks = $util.emptyArray; - - /** - * DynamicJobSpec subworkflows. - * @member {Array.} subworkflows - * @memberof flyteidl.core.DynamicJobSpec - * @instance - */ - DynamicJobSpec.prototype.subworkflows = $util.emptyArray; - - /** - * Creates a new DynamicJobSpec instance using the specified properties. - * @function create - * @memberof flyteidl.core.DynamicJobSpec - * @static - * @param {flyteidl.core.IDynamicJobSpec=} [properties] Properties to set - * @returns {flyteidl.core.DynamicJobSpec} DynamicJobSpec instance - */ - DynamicJobSpec.create = function create(properties) { - return new DynamicJobSpec(properties); - }; - - /** - * Encodes the specified DynamicJobSpec message. Does not implicitly {@link flyteidl.core.DynamicJobSpec.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.DynamicJobSpec - * @static - * @param {flyteidl.core.IDynamicJobSpec} message DynamicJobSpec message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DynamicJobSpec.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.nodes != null && message.nodes.length) - for (var i = 0; i < message.nodes.length; ++i) - $root.flyteidl.core.Node.encode(message.nodes[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.minSuccesses != null && message.hasOwnProperty("minSuccesses")) - writer.uint32(/* id 2, wireType 0 =*/16).int64(message.minSuccesses); - if (message.outputs != null && message.outputs.length) - for (var i = 0; i < message.outputs.length; ++i) - $root.flyteidl.core.Binding.encode(message.outputs[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.tasks != null && message.tasks.length) - for (var i = 0; i < message.tasks.length; ++i) - $root.flyteidl.core.TaskTemplate.encode(message.tasks[i], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.subworkflows != null && message.subworkflows.length) - for (var i = 0; i < message.subworkflows.length; ++i) - $root.flyteidl.core.WorkflowTemplate.encode(message.subworkflows[i], writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a DynamicJobSpec message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.DynamicJobSpec - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.DynamicJobSpec} DynamicJobSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DynamicJobSpec.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.DynamicJobSpec(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.nodes && message.nodes.length)) - message.nodes = []; - message.nodes.push($root.flyteidl.core.Node.decode(reader, reader.uint32())); - break; - case 2: - message.minSuccesses = reader.int64(); - break; - case 3: - if (!(message.outputs && message.outputs.length)) - message.outputs = []; - message.outputs.push($root.flyteidl.core.Binding.decode(reader, reader.uint32())); - break; - case 4: - if (!(message.tasks && message.tasks.length)) - message.tasks = []; - message.tasks.push($root.flyteidl.core.TaskTemplate.decode(reader, reader.uint32())); - break; - case 5: - if (!(message.subworkflows && message.subworkflows.length)) - message.subworkflows = []; - message.subworkflows.push($root.flyteidl.core.WorkflowTemplate.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DynamicJobSpec message. - * @function verify - * @memberof flyteidl.core.DynamicJobSpec - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DynamicJobSpec.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.nodes != null && message.hasOwnProperty("nodes")) { - if (!Array.isArray(message.nodes)) - return "nodes: array expected"; - for (var i = 0; i < message.nodes.length; ++i) { - var error = $root.flyteidl.core.Node.verify(message.nodes[i]); - if (error) - return "nodes." + error; - } - } - if (message.minSuccesses != null && message.hasOwnProperty("minSuccesses")) - if (!$util.isInteger(message.minSuccesses) && !(message.minSuccesses && $util.isInteger(message.minSuccesses.low) && $util.isInteger(message.minSuccesses.high))) - return "minSuccesses: integer|Long expected"; - if (message.outputs != null && message.hasOwnProperty("outputs")) { - if (!Array.isArray(message.outputs)) - return "outputs: array expected"; - for (var i = 0; i < message.outputs.length; ++i) { - var error = $root.flyteidl.core.Binding.verify(message.outputs[i]); - if (error) - return "outputs." + error; - } - } - if (message.tasks != null && message.hasOwnProperty("tasks")) { - if (!Array.isArray(message.tasks)) - return "tasks: array expected"; - for (var i = 0; i < message.tasks.length; ++i) { - var error = $root.flyteidl.core.TaskTemplate.verify(message.tasks[i]); - if (error) - return "tasks." + error; - } - } - if (message.subworkflows != null && message.hasOwnProperty("subworkflows")) { - if (!Array.isArray(message.subworkflows)) - return "subworkflows: array expected"; - for (var i = 0; i < message.subworkflows.length; ++i) { - var error = $root.flyteidl.core.WorkflowTemplate.verify(message.subworkflows[i]); - if (error) - return "subworkflows." + error; - } - } - return null; - }; - - return DynamicJobSpec; - })(); - - core.ContainerError = (function() { - - /** - * Properties of a ContainerError. - * @memberof flyteidl.core - * @interface IContainerError - * @property {string|null} [code] ContainerError code - * @property {string|null} [message] ContainerError message - * @property {flyteidl.core.ContainerError.Kind|null} [kind] ContainerError kind - * @property {flyteidl.core.ExecutionError.ErrorKind|null} [origin] ContainerError origin - */ - - /** - * Constructs a new ContainerError. - * @memberof flyteidl.core - * @classdesc Represents a ContainerError. - * @implements IContainerError - * @constructor - * @param {flyteidl.core.IContainerError=} [properties] Properties to set - */ - function ContainerError(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ContainerError code. - * @member {string} code - * @memberof flyteidl.core.ContainerError - * @instance - */ - ContainerError.prototype.code = ""; - - /** - * ContainerError message. - * @member {string} message - * @memberof flyteidl.core.ContainerError - * @instance - */ - ContainerError.prototype.message = ""; - - /** - * ContainerError kind. - * @member {flyteidl.core.ContainerError.Kind} kind - * @memberof flyteidl.core.ContainerError - * @instance - */ - ContainerError.prototype.kind = 0; - - /** - * ContainerError origin. - * @member {flyteidl.core.ExecutionError.ErrorKind} origin - * @memberof flyteidl.core.ContainerError - * @instance - */ - ContainerError.prototype.origin = 0; - - /** - * Creates a new ContainerError instance using the specified properties. - * @function create - * @memberof flyteidl.core.ContainerError - * @static - * @param {flyteidl.core.IContainerError=} [properties] Properties to set - * @returns {flyteidl.core.ContainerError} ContainerError instance - */ - ContainerError.create = function create(properties) { - return new ContainerError(properties); - }; - - /** - * Encodes the specified ContainerError message. Does not implicitly {@link flyteidl.core.ContainerError.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ContainerError - * @static - * @param {flyteidl.core.IContainerError} message ContainerError message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ContainerError.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.code != null && message.hasOwnProperty("code")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.code); - if (message.message != null && message.hasOwnProperty("message")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.message); - if (message.kind != null && message.hasOwnProperty("kind")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.kind); - if (message.origin != null && message.hasOwnProperty("origin")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.origin); - return writer; - }; - - /** - * Decodes a ContainerError message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ContainerError - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ContainerError} ContainerError - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ContainerError.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ContainerError(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.code = reader.string(); - break; - case 2: - message.message = reader.string(); - break; - case 3: - message.kind = reader.int32(); - break; - case 4: - message.origin = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ContainerError message. - * @function verify - * @memberof flyteidl.core.ContainerError - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ContainerError.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.code != null && message.hasOwnProperty("code")) - if (!$util.isString(message.code)) - return "code: string expected"; - if (message.message != null && message.hasOwnProperty("message")) - if (!$util.isString(message.message)) - return "message: string expected"; - if (message.kind != null && message.hasOwnProperty("kind")) - switch (message.kind) { - default: - return "kind: enum value expected"; - case 0: - case 1: - break; - } - if (message.origin != null && message.hasOwnProperty("origin")) - switch (message.origin) { - default: - return "origin: enum value expected"; - case 0: - case 1: - case 2: - break; - } - return null; - }; - - /** - * Kind enum. - * @name flyteidl.core.ContainerError.Kind - * @enum {string} - * @property {number} NON_RECOVERABLE=0 NON_RECOVERABLE value - * @property {number} RECOVERABLE=1 RECOVERABLE value - */ - ContainerError.Kind = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "NON_RECOVERABLE"] = 0; - values[valuesById[1] = "RECOVERABLE"] = 1; - return values; - })(); - - return ContainerError; - })(); - - core.ErrorDocument = (function() { - - /** - * Properties of an ErrorDocument. - * @memberof flyteidl.core - * @interface IErrorDocument - * @property {flyteidl.core.IContainerError|null} [error] ErrorDocument error - */ - - /** - * Constructs a new ErrorDocument. - * @memberof flyteidl.core - * @classdesc Represents an ErrorDocument. - * @implements IErrorDocument - * @constructor - * @param {flyteidl.core.IErrorDocument=} [properties] Properties to set - */ - function ErrorDocument(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ErrorDocument error. - * @member {flyteidl.core.IContainerError|null|undefined} error - * @memberof flyteidl.core.ErrorDocument - * @instance - */ - ErrorDocument.prototype.error = null; - - /** - * Creates a new ErrorDocument instance using the specified properties. - * @function create - * @memberof flyteidl.core.ErrorDocument - * @static - * @param {flyteidl.core.IErrorDocument=} [properties] Properties to set - * @returns {flyteidl.core.ErrorDocument} ErrorDocument instance - */ - ErrorDocument.create = function create(properties) { - return new ErrorDocument(properties); - }; - - /** - * Encodes the specified ErrorDocument message. Does not implicitly {@link flyteidl.core.ErrorDocument.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ErrorDocument - * @static - * @param {flyteidl.core.IErrorDocument} message ErrorDocument message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ErrorDocument.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.ContainerError.encode(message.error, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ErrorDocument message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ErrorDocument - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ErrorDocument} ErrorDocument - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ErrorDocument.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ErrorDocument(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.error = $root.flyteidl.core.ContainerError.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ErrorDocument message. - * @function verify - * @memberof flyteidl.core.ErrorDocument - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ErrorDocument.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.error != null && message.hasOwnProperty("error")) { - var error = $root.flyteidl.core.ContainerError.verify(message.error); - if (error) - return "error." + error; - } - return null; - }; - - return ErrorDocument; - })(); - - core.Span = (function() { - - /** - * Properties of a Span. - * @memberof flyteidl.core - * @interface ISpan - * @property {google.protobuf.ITimestamp|null} [startTime] Span startTime - * @property {google.protobuf.ITimestamp|null} [endTime] Span endTime - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [workflowId] Span workflowId - * @property {flyteidl.core.INodeExecutionIdentifier|null} [nodeId] Span nodeId - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [taskId] Span taskId - * @property {string|null} [operationId] Span operationId - * @property {Array.|null} [spans] Span spans - */ - - /** - * Constructs a new Span. - * @memberof flyteidl.core - * @classdesc Represents a Span. - * @implements ISpan - * @constructor - * @param {flyteidl.core.ISpan=} [properties] Properties to set - */ - function Span(properties) { - this.spans = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Span startTime. - * @member {google.protobuf.ITimestamp|null|undefined} startTime - * @memberof flyteidl.core.Span - * @instance - */ - Span.prototype.startTime = null; - - /** - * Span endTime. - * @member {google.protobuf.ITimestamp|null|undefined} endTime - * @memberof flyteidl.core.Span - * @instance - */ - Span.prototype.endTime = null; - - /** - * Span workflowId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} workflowId - * @memberof flyteidl.core.Span - * @instance - */ - Span.prototype.workflowId = null; - - /** - * Span nodeId. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} nodeId - * @memberof flyteidl.core.Span - * @instance - */ - Span.prototype.nodeId = null; - - /** - * Span taskId. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} taskId - * @memberof flyteidl.core.Span - * @instance - */ - Span.prototype.taskId = null; - - /** - * Span operationId. - * @member {string} operationId - * @memberof flyteidl.core.Span - * @instance - */ - Span.prototype.operationId = ""; - - /** - * Span spans. - * @member {Array.} spans - * @memberof flyteidl.core.Span - * @instance - */ - Span.prototype.spans = $util.emptyArray; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Span id. - * @member {"workflowId"|"nodeId"|"taskId"|"operationId"|undefined} id - * @memberof flyteidl.core.Span - * @instance - */ - Object.defineProperty(Span.prototype, "id", { - get: $util.oneOfGetter($oneOfFields = ["workflowId", "nodeId", "taskId", "operationId"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Span instance using the specified properties. - * @function create - * @memberof flyteidl.core.Span - * @static - * @param {flyteidl.core.ISpan=} [properties] Properties to set - * @returns {flyteidl.core.Span} Span instance - */ - Span.create = function create(properties) { - return new Span(properties); - }; - - /** - * Encodes the specified Span message. Does not implicitly {@link flyteidl.core.Span.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.Span - * @static - * @param {flyteidl.core.ISpan} message Span message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Span.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.startTime != null && message.hasOwnProperty("startTime")) - $root.google.protobuf.Timestamp.encode(message.startTime, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.endTime != null && message.hasOwnProperty("endTime")) - $root.google.protobuf.Timestamp.encode(message.endTime, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.workflowId != null && message.hasOwnProperty("workflowId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.workflowId, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.nodeId != null && message.hasOwnProperty("nodeId")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.nodeId, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.taskId != null && message.hasOwnProperty("taskId")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.taskId, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.operationId != null && message.hasOwnProperty("operationId")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.operationId); - if (message.spans != null && message.spans.length) - for (var i = 0; i < message.spans.length; ++i) - $root.flyteidl.core.Span.encode(message.spans[i], writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Span message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.Span - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.Span} Span - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Span.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.Span(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.startTime = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 2: - message.endTime = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 3: - message.workflowId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 4: - message.nodeId = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 5: - message.taskId = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 6: - message.operationId = reader.string(); - break; - case 7: - if (!(message.spans && message.spans.length)) - message.spans = []; - message.spans.push($root.flyteidl.core.Span.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Span message. - * @function verify - * @memberof flyteidl.core.Span - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Span.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.startTime != null && message.hasOwnProperty("startTime")) { - var error = $root.google.protobuf.Timestamp.verify(message.startTime); - if (error) - return "startTime." + error; - } - if (message.endTime != null && message.hasOwnProperty("endTime")) { - var error = $root.google.protobuf.Timestamp.verify(message.endTime); - if (error) - return "endTime." + error; - } - if (message.workflowId != null && message.hasOwnProperty("workflowId")) { - properties.id = 1; - { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.workflowId); - if (error) - return "workflowId." + error; - } - } - if (message.nodeId != null && message.hasOwnProperty("nodeId")) { - if (properties.id === 1) - return "id: multiple values"; - properties.id = 1; - { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.nodeId); - if (error) - return "nodeId." + error; - } - } - if (message.taskId != null && message.hasOwnProperty("taskId")) { - if (properties.id === 1) - return "id: multiple values"; - properties.id = 1; - { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.taskId); - if (error) - return "taskId." + error; - } - } - if (message.operationId != null && message.hasOwnProperty("operationId")) { - if (properties.id === 1) - return "id: multiple values"; - properties.id = 1; - if (!$util.isString(message.operationId)) - return "operationId: string expected"; - } - if (message.spans != null && message.hasOwnProperty("spans")) { - if (!Array.isArray(message.spans)) - return "spans: array expected"; - for (var i = 0; i < message.spans.length; ++i) { - var error = $root.flyteidl.core.Span.verify(message.spans[i]); - if (error) - return "spans." + error; - } - } - return null; - }; - - return Span; - })(); - - core.ExecutionMetricResult = (function() { - - /** - * Properties of an ExecutionMetricResult. - * @memberof flyteidl.core - * @interface IExecutionMetricResult - * @property {string|null} [metric] ExecutionMetricResult metric - * @property {google.protobuf.IStruct|null} [data] ExecutionMetricResult data - */ - - /** - * Constructs a new ExecutionMetricResult. - * @memberof flyteidl.core - * @classdesc Represents an ExecutionMetricResult. - * @implements IExecutionMetricResult - * @constructor - * @param {flyteidl.core.IExecutionMetricResult=} [properties] Properties to set - */ - function ExecutionMetricResult(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionMetricResult metric. - * @member {string} metric - * @memberof flyteidl.core.ExecutionMetricResult - * @instance - */ - ExecutionMetricResult.prototype.metric = ""; - - /** - * ExecutionMetricResult data. - * @member {google.protobuf.IStruct|null|undefined} data - * @memberof flyteidl.core.ExecutionMetricResult - * @instance - */ - ExecutionMetricResult.prototype.data = null; - - /** - * Creates a new ExecutionMetricResult instance using the specified properties. - * @function create - * @memberof flyteidl.core.ExecutionMetricResult - * @static - * @param {flyteidl.core.IExecutionMetricResult=} [properties] Properties to set - * @returns {flyteidl.core.ExecutionMetricResult} ExecutionMetricResult instance - */ - ExecutionMetricResult.create = function create(properties) { - return new ExecutionMetricResult(properties); - }; - - /** - * Encodes the specified ExecutionMetricResult message. Does not implicitly {@link flyteidl.core.ExecutionMetricResult.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.ExecutionMetricResult - * @static - * @param {flyteidl.core.IExecutionMetricResult} message ExecutionMetricResult message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionMetricResult.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.metric != null && message.hasOwnProperty("metric")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.metric); - if (message.data != null && message.hasOwnProperty("data")) - $root.google.protobuf.Struct.encode(message.data, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ExecutionMetricResult message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.ExecutionMetricResult - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.ExecutionMetricResult} ExecutionMetricResult - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionMetricResult.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.ExecutionMetricResult(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.metric = reader.string(); - break; - case 2: - message.data = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionMetricResult message. - * @function verify - * @memberof flyteidl.core.ExecutionMetricResult - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionMetricResult.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.metric != null && message.hasOwnProperty("metric")) - if (!$util.isString(message.metric)) - return "metric: string expected"; - if (message.data != null && message.hasOwnProperty("data")) { - var error = $root.google.protobuf.Struct.verify(message.data); - if (error) - return "data." + error; - } - return null; - }; - - return ExecutionMetricResult; - })(); - - core.WorkflowClosure = (function() { - - /** - * Properties of a WorkflowClosure. - * @memberof flyteidl.core - * @interface IWorkflowClosure - * @property {flyteidl.core.IWorkflowTemplate|null} [workflow] WorkflowClosure workflow - * @property {Array.|null} [tasks] WorkflowClosure tasks - */ - - /** - * Constructs a new WorkflowClosure. - * @memberof flyteidl.core - * @classdesc Represents a WorkflowClosure. - * @implements IWorkflowClosure - * @constructor - * @param {flyteidl.core.IWorkflowClosure=} [properties] Properties to set - */ - function WorkflowClosure(properties) { - this.tasks = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowClosure workflow. - * @member {flyteidl.core.IWorkflowTemplate|null|undefined} workflow - * @memberof flyteidl.core.WorkflowClosure - * @instance - */ - WorkflowClosure.prototype.workflow = null; - - /** - * WorkflowClosure tasks. - * @member {Array.} tasks - * @memberof flyteidl.core.WorkflowClosure - * @instance - */ - WorkflowClosure.prototype.tasks = $util.emptyArray; - - /** - * Creates a new WorkflowClosure instance using the specified properties. - * @function create - * @memberof flyteidl.core.WorkflowClosure - * @static - * @param {flyteidl.core.IWorkflowClosure=} [properties] Properties to set - * @returns {flyteidl.core.WorkflowClosure} WorkflowClosure instance - */ - WorkflowClosure.create = function create(properties) { - return new WorkflowClosure(properties); - }; - - /** - * Encodes the specified WorkflowClosure message. Does not implicitly {@link flyteidl.core.WorkflowClosure.verify|verify} messages. - * @function encode - * @memberof flyteidl.core.WorkflowClosure - * @static - * @param {flyteidl.core.IWorkflowClosure} message WorkflowClosure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowClosure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.workflow != null && message.hasOwnProperty("workflow")) - $root.flyteidl.core.WorkflowTemplate.encode(message.workflow, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.tasks != null && message.tasks.length) - for (var i = 0; i < message.tasks.length; ++i) - $root.flyteidl.core.TaskTemplate.encode(message.tasks[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowClosure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.core.WorkflowClosure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.core.WorkflowClosure} WorkflowClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowClosure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.core.WorkflowClosure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.workflow = $root.flyteidl.core.WorkflowTemplate.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.tasks && message.tasks.length)) - message.tasks = []; - message.tasks.push($root.flyteidl.core.TaskTemplate.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowClosure message. - * @function verify - * @memberof flyteidl.core.WorkflowClosure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowClosure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.workflow != null && message.hasOwnProperty("workflow")) { - var error = $root.flyteidl.core.WorkflowTemplate.verify(message.workflow); - if (error) - return "workflow." + error; - } - if (message.tasks != null && message.hasOwnProperty("tasks")) { - if (!Array.isArray(message.tasks)) - return "tasks: array expected"; - for (var i = 0; i < message.tasks.length; ++i) { - var error = $root.flyteidl.core.TaskTemplate.verify(message.tasks[i]); - if (error) - return "tasks." + error; - } - } - return null; - }; - - return WorkflowClosure; - })(); - - return core; - })(); - - flyteidl.event = (function() { - - /** - * Namespace event. - * @memberof flyteidl - * @namespace - */ - var event = {}; - - event.CloudEventWorkflowExecution = (function() { - - /** - * Properties of a CloudEventWorkflowExecution. - * @memberof flyteidl.event - * @interface ICloudEventWorkflowExecution - * @property {flyteidl.event.IWorkflowExecutionEvent|null} [rawEvent] CloudEventWorkflowExecution rawEvent - * @property {flyteidl.core.ITypedInterface|null} [outputInterface] CloudEventWorkflowExecution outputInterface - * @property {Array.|null} [artifactIds] CloudEventWorkflowExecution artifactIds - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [referenceExecution] CloudEventWorkflowExecution referenceExecution - * @property {string|null} [principal] CloudEventWorkflowExecution principal - * @property {flyteidl.core.IIdentifier|null} [launchPlanId] CloudEventWorkflowExecution launchPlanId - */ - - /** - * Constructs a new CloudEventWorkflowExecution. - * @memberof flyteidl.event - * @classdesc Represents a CloudEventWorkflowExecution. - * @implements ICloudEventWorkflowExecution - * @constructor - * @param {flyteidl.event.ICloudEventWorkflowExecution=} [properties] Properties to set - */ - function CloudEventWorkflowExecution(properties) { - this.artifactIds = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CloudEventWorkflowExecution rawEvent. - * @member {flyteidl.event.IWorkflowExecutionEvent|null|undefined} rawEvent - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @instance - */ - CloudEventWorkflowExecution.prototype.rawEvent = null; - - /** - * CloudEventWorkflowExecution outputInterface. - * @member {flyteidl.core.ITypedInterface|null|undefined} outputInterface - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @instance - */ - CloudEventWorkflowExecution.prototype.outputInterface = null; - - /** - * CloudEventWorkflowExecution artifactIds. - * @member {Array.} artifactIds - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @instance - */ - CloudEventWorkflowExecution.prototype.artifactIds = $util.emptyArray; - - /** - * CloudEventWorkflowExecution referenceExecution. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} referenceExecution - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @instance - */ - CloudEventWorkflowExecution.prototype.referenceExecution = null; - - /** - * CloudEventWorkflowExecution principal. - * @member {string} principal - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @instance - */ - CloudEventWorkflowExecution.prototype.principal = ""; - - /** - * CloudEventWorkflowExecution launchPlanId. - * @member {flyteidl.core.IIdentifier|null|undefined} launchPlanId - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @instance - */ - CloudEventWorkflowExecution.prototype.launchPlanId = null; - - /** - * Creates a new CloudEventWorkflowExecution instance using the specified properties. - * @function create - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @static - * @param {flyteidl.event.ICloudEventWorkflowExecution=} [properties] Properties to set - * @returns {flyteidl.event.CloudEventWorkflowExecution} CloudEventWorkflowExecution instance - */ - CloudEventWorkflowExecution.create = function create(properties) { - return new CloudEventWorkflowExecution(properties); - }; - - /** - * Encodes the specified CloudEventWorkflowExecution message. Does not implicitly {@link flyteidl.event.CloudEventWorkflowExecution.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @static - * @param {flyteidl.event.ICloudEventWorkflowExecution} message CloudEventWorkflowExecution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CloudEventWorkflowExecution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.rawEvent != null && message.hasOwnProperty("rawEvent")) - $root.flyteidl.event.WorkflowExecutionEvent.encode(message.rawEvent, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.outputInterface != null && message.hasOwnProperty("outputInterface")) - $root.flyteidl.core.TypedInterface.encode(message.outputInterface, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.artifactIds != null && message.artifactIds.length) - for (var i = 0; i < message.artifactIds.length; ++i) - $root.flyteidl.core.ArtifactID.encode(message.artifactIds[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.referenceExecution != null && message.hasOwnProperty("referenceExecution")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.referenceExecution, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.principal != null && message.hasOwnProperty("principal")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.principal); - if (message.launchPlanId != null && message.hasOwnProperty("launchPlanId")) - $root.flyteidl.core.Identifier.encode(message.launchPlanId, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CloudEventWorkflowExecution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.CloudEventWorkflowExecution} CloudEventWorkflowExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CloudEventWorkflowExecution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.CloudEventWorkflowExecution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.rawEvent = $root.flyteidl.event.WorkflowExecutionEvent.decode(reader, reader.uint32()); - break; - case 2: - message.outputInterface = $root.flyteidl.core.TypedInterface.decode(reader, reader.uint32()); - break; - case 3: - if (!(message.artifactIds && message.artifactIds.length)) - message.artifactIds = []; - message.artifactIds.push($root.flyteidl.core.ArtifactID.decode(reader, reader.uint32())); - break; - case 4: - message.referenceExecution = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 5: - message.principal = reader.string(); - break; - case 6: - message.launchPlanId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CloudEventWorkflowExecution message. - * @function verify - * @memberof flyteidl.event.CloudEventWorkflowExecution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CloudEventWorkflowExecution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.rawEvent != null && message.hasOwnProperty("rawEvent")) { - var error = $root.flyteidl.event.WorkflowExecutionEvent.verify(message.rawEvent); - if (error) - return "rawEvent." + error; - } - if (message.outputInterface != null && message.hasOwnProperty("outputInterface")) { - var error = $root.flyteidl.core.TypedInterface.verify(message.outputInterface); - if (error) - return "outputInterface." + error; - } - if (message.artifactIds != null && message.hasOwnProperty("artifactIds")) { - if (!Array.isArray(message.artifactIds)) - return "artifactIds: array expected"; - for (var i = 0; i < message.artifactIds.length; ++i) { - var error = $root.flyteidl.core.ArtifactID.verify(message.artifactIds[i]); - if (error) - return "artifactIds." + error; - } - } - if (message.referenceExecution != null && message.hasOwnProperty("referenceExecution")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.referenceExecution); - if (error) - return "referenceExecution." + error; - } - if (message.principal != null && message.hasOwnProperty("principal")) - if (!$util.isString(message.principal)) - return "principal: string expected"; - if (message.launchPlanId != null && message.hasOwnProperty("launchPlanId")) { - var error = $root.flyteidl.core.Identifier.verify(message.launchPlanId); - if (error) - return "launchPlanId." + error; - } - return null; - }; - - return CloudEventWorkflowExecution; - })(); - - event.CloudEventNodeExecution = (function() { - - /** - * Properties of a CloudEventNodeExecution. - * @memberof flyteidl.event - * @interface ICloudEventNodeExecution - * @property {flyteidl.event.INodeExecutionEvent|null} [rawEvent] CloudEventNodeExecution rawEvent - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [taskExecId] CloudEventNodeExecution taskExecId - * @property {flyteidl.core.ITypedInterface|null} [outputInterface] CloudEventNodeExecution outputInterface - * @property {Array.|null} [artifactIds] CloudEventNodeExecution artifactIds - * @property {string|null} [principal] CloudEventNodeExecution principal - * @property {flyteidl.core.IIdentifier|null} [launchPlanId] CloudEventNodeExecution launchPlanId - */ - - /** - * Constructs a new CloudEventNodeExecution. - * @memberof flyteidl.event - * @classdesc Represents a CloudEventNodeExecution. - * @implements ICloudEventNodeExecution - * @constructor - * @param {flyteidl.event.ICloudEventNodeExecution=} [properties] Properties to set - */ - function CloudEventNodeExecution(properties) { - this.artifactIds = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CloudEventNodeExecution rawEvent. - * @member {flyteidl.event.INodeExecutionEvent|null|undefined} rawEvent - * @memberof flyteidl.event.CloudEventNodeExecution - * @instance - */ - CloudEventNodeExecution.prototype.rawEvent = null; - - /** - * CloudEventNodeExecution taskExecId. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} taskExecId - * @memberof flyteidl.event.CloudEventNodeExecution - * @instance - */ - CloudEventNodeExecution.prototype.taskExecId = null; - - /** - * CloudEventNodeExecution outputInterface. - * @member {flyteidl.core.ITypedInterface|null|undefined} outputInterface - * @memberof flyteidl.event.CloudEventNodeExecution - * @instance - */ - CloudEventNodeExecution.prototype.outputInterface = null; - - /** - * CloudEventNodeExecution artifactIds. - * @member {Array.} artifactIds - * @memberof flyteidl.event.CloudEventNodeExecution - * @instance - */ - CloudEventNodeExecution.prototype.artifactIds = $util.emptyArray; - - /** - * CloudEventNodeExecution principal. - * @member {string} principal - * @memberof flyteidl.event.CloudEventNodeExecution - * @instance - */ - CloudEventNodeExecution.prototype.principal = ""; - - /** - * CloudEventNodeExecution launchPlanId. - * @member {flyteidl.core.IIdentifier|null|undefined} launchPlanId - * @memberof flyteidl.event.CloudEventNodeExecution - * @instance - */ - CloudEventNodeExecution.prototype.launchPlanId = null; - - /** - * Creates a new CloudEventNodeExecution instance using the specified properties. - * @function create - * @memberof flyteidl.event.CloudEventNodeExecution - * @static - * @param {flyteidl.event.ICloudEventNodeExecution=} [properties] Properties to set - * @returns {flyteidl.event.CloudEventNodeExecution} CloudEventNodeExecution instance - */ - CloudEventNodeExecution.create = function create(properties) { - return new CloudEventNodeExecution(properties); - }; - - /** - * Encodes the specified CloudEventNodeExecution message. Does not implicitly {@link flyteidl.event.CloudEventNodeExecution.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.CloudEventNodeExecution - * @static - * @param {flyteidl.event.ICloudEventNodeExecution} message CloudEventNodeExecution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CloudEventNodeExecution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.rawEvent != null && message.hasOwnProperty("rawEvent")) - $root.flyteidl.event.NodeExecutionEvent.encode(message.rawEvent, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.taskExecId != null && message.hasOwnProperty("taskExecId")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.taskExecId, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.outputInterface != null && message.hasOwnProperty("outputInterface")) - $root.flyteidl.core.TypedInterface.encode(message.outputInterface, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.artifactIds != null && message.artifactIds.length) - for (var i = 0; i < message.artifactIds.length; ++i) - $root.flyteidl.core.ArtifactID.encode(message.artifactIds[i], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.principal != null && message.hasOwnProperty("principal")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.principal); - if (message.launchPlanId != null && message.hasOwnProperty("launchPlanId")) - $root.flyteidl.core.Identifier.encode(message.launchPlanId, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CloudEventNodeExecution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.CloudEventNodeExecution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.CloudEventNodeExecution} CloudEventNodeExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CloudEventNodeExecution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.CloudEventNodeExecution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.rawEvent = $root.flyteidl.event.NodeExecutionEvent.decode(reader, reader.uint32()); - break; - case 2: - message.taskExecId = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 3: - message.outputInterface = $root.flyteidl.core.TypedInterface.decode(reader, reader.uint32()); - break; - case 4: - if (!(message.artifactIds && message.artifactIds.length)) - message.artifactIds = []; - message.artifactIds.push($root.flyteidl.core.ArtifactID.decode(reader, reader.uint32())); - break; - case 5: - message.principal = reader.string(); - break; - case 6: - message.launchPlanId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CloudEventNodeExecution message. - * @function verify - * @memberof flyteidl.event.CloudEventNodeExecution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CloudEventNodeExecution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.rawEvent != null && message.hasOwnProperty("rawEvent")) { - var error = $root.flyteidl.event.NodeExecutionEvent.verify(message.rawEvent); - if (error) - return "rawEvent." + error; - } - if (message.taskExecId != null && message.hasOwnProperty("taskExecId")) { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.taskExecId); - if (error) - return "taskExecId." + error; - } - if (message.outputInterface != null && message.hasOwnProperty("outputInterface")) { - var error = $root.flyteidl.core.TypedInterface.verify(message.outputInterface); - if (error) - return "outputInterface." + error; - } - if (message.artifactIds != null && message.hasOwnProperty("artifactIds")) { - if (!Array.isArray(message.artifactIds)) - return "artifactIds: array expected"; - for (var i = 0; i < message.artifactIds.length; ++i) { - var error = $root.flyteidl.core.ArtifactID.verify(message.artifactIds[i]); - if (error) - return "artifactIds." + error; - } - } - if (message.principal != null && message.hasOwnProperty("principal")) - if (!$util.isString(message.principal)) - return "principal: string expected"; - if (message.launchPlanId != null && message.hasOwnProperty("launchPlanId")) { - var error = $root.flyteidl.core.Identifier.verify(message.launchPlanId); - if (error) - return "launchPlanId." + error; - } - return null; - }; - - return CloudEventNodeExecution; - })(); - - event.CloudEventTaskExecution = (function() { - - /** - * Properties of a CloudEventTaskExecution. - * @memberof flyteidl.event - * @interface ICloudEventTaskExecution - * @property {flyteidl.event.ITaskExecutionEvent|null} [rawEvent] CloudEventTaskExecution rawEvent - */ - - /** - * Constructs a new CloudEventTaskExecution. - * @memberof flyteidl.event - * @classdesc Represents a CloudEventTaskExecution. - * @implements ICloudEventTaskExecution - * @constructor - * @param {flyteidl.event.ICloudEventTaskExecution=} [properties] Properties to set - */ - function CloudEventTaskExecution(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CloudEventTaskExecution rawEvent. - * @member {flyteidl.event.ITaskExecutionEvent|null|undefined} rawEvent - * @memberof flyteidl.event.CloudEventTaskExecution - * @instance - */ - CloudEventTaskExecution.prototype.rawEvent = null; - - /** - * Creates a new CloudEventTaskExecution instance using the specified properties. - * @function create - * @memberof flyteidl.event.CloudEventTaskExecution - * @static - * @param {flyteidl.event.ICloudEventTaskExecution=} [properties] Properties to set - * @returns {flyteidl.event.CloudEventTaskExecution} CloudEventTaskExecution instance - */ - CloudEventTaskExecution.create = function create(properties) { - return new CloudEventTaskExecution(properties); - }; - - /** - * Encodes the specified CloudEventTaskExecution message. Does not implicitly {@link flyteidl.event.CloudEventTaskExecution.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.CloudEventTaskExecution - * @static - * @param {flyteidl.event.ICloudEventTaskExecution} message CloudEventTaskExecution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CloudEventTaskExecution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.rawEvent != null && message.hasOwnProperty("rawEvent")) - $root.flyteidl.event.TaskExecutionEvent.encode(message.rawEvent, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CloudEventTaskExecution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.CloudEventTaskExecution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.CloudEventTaskExecution} CloudEventTaskExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CloudEventTaskExecution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.CloudEventTaskExecution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.rawEvent = $root.flyteidl.event.TaskExecutionEvent.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CloudEventTaskExecution message. - * @function verify - * @memberof flyteidl.event.CloudEventTaskExecution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CloudEventTaskExecution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.rawEvent != null && message.hasOwnProperty("rawEvent")) { - var error = $root.flyteidl.event.TaskExecutionEvent.verify(message.rawEvent); - if (error) - return "rawEvent." + error; - } - return null; - }; - - return CloudEventTaskExecution; - })(); - - event.CloudEventExecutionStart = (function() { - - /** - * Properties of a CloudEventExecutionStart. - * @memberof flyteidl.event - * @interface ICloudEventExecutionStart - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [executionId] CloudEventExecutionStart executionId - * @property {flyteidl.core.IIdentifier|null} [launchPlanId] CloudEventExecutionStart launchPlanId - * @property {flyteidl.core.IIdentifier|null} [workflowId] CloudEventExecutionStart workflowId - * @property {Array.|null} [artifactIds] CloudEventExecutionStart artifactIds - * @property {Array.|null} [artifactTrackers] CloudEventExecutionStart artifactTrackers - * @property {string|null} [principal] CloudEventExecutionStart principal - */ - - /** - * Constructs a new CloudEventExecutionStart. - * @memberof flyteidl.event - * @classdesc Represents a CloudEventExecutionStart. - * @implements ICloudEventExecutionStart - * @constructor - * @param {flyteidl.event.ICloudEventExecutionStart=} [properties] Properties to set - */ - function CloudEventExecutionStart(properties) { - this.artifactIds = []; - this.artifactTrackers = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CloudEventExecutionStart executionId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} executionId - * @memberof flyteidl.event.CloudEventExecutionStart - * @instance - */ - CloudEventExecutionStart.prototype.executionId = null; - - /** - * CloudEventExecutionStart launchPlanId. - * @member {flyteidl.core.IIdentifier|null|undefined} launchPlanId - * @memberof flyteidl.event.CloudEventExecutionStart - * @instance - */ - CloudEventExecutionStart.prototype.launchPlanId = null; - - /** - * CloudEventExecutionStart workflowId. - * @member {flyteidl.core.IIdentifier|null|undefined} workflowId - * @memberof flyteidl.event.CloudEventExecutionStart - * @instance - */ - CloudEventExecutionStart.prototype.workflowId = null; - - /** - * CloudEventExecutionStart artifactIds. - * @member {Array.} artifactIds - * @memberof flyteidl.event.CloudEventExecutionStart - * @instance - */ - CloudEventExecutionStart.prototype.artifactIds = $util.emptyArray; - - /** - * CloudEventExecutionStart artifactTrackers. - * @member {Array.} artifactTrackers - * @memberof flyteidl.event.CloudEventExecutionStart - * @instance - */ - CloudEventExecutionStart.prototype.artifactTrackers = $util.emptyArray; - - /** - * CloudEventExecutionStart principal. - * @member {string} principal - * @memberof flyteidl.event.CloudEventExecutionStart - * @instance - */ - CloudEventExecutionStart.prototype.principal = ""; - - /** - * Creates a new CloudEventExecutionStart instance using the specified properties. - * @function create - * @memberof flyteidl.event.CloudEventExecutionStart - * @static - * @param {flyteidl.event.ICloudEventExecutionStart=} [properties] Properties to set - * @returns {flyteidl.event.CloudEventExecutionStart} CloudEventExecutionStart instance - */ - CloudEventExecutionStart.create = function create(properties) { - return new CloudEventExecutionStart(properties); - }; - - /** - * Encodes the specified CloudEventExecutionStart message. Does not implicitly {@link flyteidl.event.CloudEventExecutionStart.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.CloudEventExecutionStart - * @static - * @param {flyteidl.event.ICloudEventExecutionStart} message CloudEventExecutionStart message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CloudEventExecutionStart.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.executionId != null && message.hasOwnProperty("executionId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.executionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.launchPlanId != null && message.hasOwnProperty("launchPlanId")) - $root.flyteidl.core.Identifier.encode(message.launchPlanId, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.workflowId != null && message.hasOwnProperty("workflowId")) - $root.flyteidl.core.Identifier.encode(message.workflowId, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.artifactIds != null && message.artifactIds.length) - for (var i = 0; i < message.artifactIds.length; ++i) - $root.flyteidl.core.ArtifactID.encode(message.artifactIds[i], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.artifactTrackers != null && message.artifactTrackers.length) - for (var i = 0; i < message.artifactTrackers.length; ++i) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.artifactTrackers[i]); - if (message.principal != null && message.hasOwnProperty("principal")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.principal); - return writer; - }; - - /** - * Decodes a CloudEventExecutionStart message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.CloudEventExecutionStart - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.CloudEventExecutionStart} CloudEventExecutionStart - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CloudEventExecutionStart.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.CloudEventExecutionStart(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.executionId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.launchPlanId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 3: - message.workflowId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 4: - if (!(message.artifactIds && message.artifactIds.length)) - message.artifactIds = []; - message.artifactIds.push($root.flyteidl.core.ArtifactID.decode(reader, reader.uint32())); - break; - case 5: - if (!(message.artifactTrackers && message.artifactTrackers.length)) - message.artifactTrackers = []; - message.artifactTrackers.push(reader.string()); - break; - case 6: - message.principal = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CloudEventExecutionStart message. - * @function verify - * @memberof flyteidl.event.CloudEventExecutionStart - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CloudEventExecutionStart.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.executionId != null && message.hasOwnProperty("executionId")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.executionId); - if (error) - return "executionId." + error; - } - if (message.launchPlanId != null && message.hasOwnProperty("launchPlanId")) { - var error = $root.flyteidl.core.Identifier.verify(message.launchPlanId); - if (error) - return "launchPlanId." + error; - } - if (message.workflowId != null && message.hasOwnProperty("workflowId")) { - var error = $root.flyteidl.core.Identifier.verify(message.workflowId); - if (error) - return "workflowId." + error; - } - if (message.artifactIds != null && message.hasOwnProperty("artifactIds")) { - if (!Array.isArray(message.artifactIds)) - return "artifactIds: array expected"; - for (var i = 0; i < message.artifactIds.length; ++i) { - var error = $root.flyteidl.core.ArtifactID.verify(message.artifactIds[i]); - if (error) - return "artifactIds." + error; - } - } - if (message.artifactTrackers != null && message.hasOwnProperty("artifactTrackers")) { - if (!Array.isArray(message.artifactTrackers)) - return "artifactTrackers: array expected"; - for (var i = 0; i < message.artifactTrackers.length; ++i) - if (!$util.isString(message.artifactTrackers[i])) - return "artifactTrackers: string[] expected"; - } - if (message.principal != null && message.hasOwnProperty("principal")) - if (!$util.isString(message.principal)) - return "principal: string expected"; - return null; - }; - - return CloudEventExecutionStart; - })(); - - event.WorkflowExecutionEvent = (function() { - - /** - * Properties of a WorkflowExecutionEvent. - * @memberof flyteidl.event - * @interface IWorkflowExecutionEvent - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [executionId] WorkflowExecutionEvent executionId - * @property {string|null} [producerId] WorkflowExecutionEvent producerId - * @property {flyteidl.core.WorkflowExecution.Phase|null} [phase] WorkflowExecutionEvent phase - * @property {google.protobuf.ITimestamp|null} [occurredAt] WorkflowExecutionEvent occurredAt - * @property {string|null} [outputUri] WorkflowExecutionEvent outputUri - * @property {flyteidl.core.IExecutionError|null} [error] WorkflowExecutionEvent error - * @property {flyteidl.core.ILiteralMap|null} [outputData] WorkflowExecutionEvent outputData - */ - - /** - * Constructs a new WorkflowExecutionEvent. - * @memberof flyteidl.event - * @classdesc Represents a WorkflowExecutionEvent. - * @implements IWorkflowExecutionEvent - * @constructor - * @param {flyteidl.event.IWorkflowExecutionEvent=} [properties] Properties to set - */ - function WorkflowExecutionEvent(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionEvent executionId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} executionId - * @memberof flyteidl.event.WorkflowExecutionEvent - * @instance - */ - WorkflowExecutionEvent.prototype.executionId = null; - - /** - * WorkflowExecutionEvent producerId. - * @member {string} producerId - * @memberof flyteidl.event.WorkflowExecutionEvent - * @instance - */ - WorkflowExecutionEvent.prototype.producerId = ""; - - /** - * WorkflowExecutionEvent phase. - * @member {flyteidl.core.WorkflowExecution.Phase} phase - * @memberof flyteidl.event.WorkflowExecutionEvent - * @instance - */ - WorkflowExecutionEvent.prototype.phase = 0; - - /** - * WorkflowExecutionEvent occurredAt. - * @member {google.protobuf.ITimestamp|null|undefined} occurredAt - * @memberof flyteidl.event.WorkflowExecutionEvent - * @instance - */ - WorkflowExecutionEvent.prototype.occurredAt = null; - - /** - * WorkflowExecutionEvent outputUri. - * @member {string} outputUri - * @memberof flyteidl.event.WorkflowExecutionEvent - * @instance - */ - WorkflowExecutionEvent.prototype.outputUri = ""; - - /** - * WorkflowExecutionEvent error. - * @member {flyteidl.core.IExecutionError|null|undefined} error - * @memberof flyteidl.event.WorkflowExecutionEvent - * @instance - */ - WorkflowExecutionEvent.prototype.error = null; - - /** - * WorkflowExecutionEvent outputData. - * @member {flyteidl.core.ILiteralMap|null|undefined} outputData - * @memberof flyteidl.event.WorkflowExecutionEvent - * @instance - */ - WorkflowExecutionEvent.prototype.outputData = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * WorkflowExecutionEvent outputResult. - * @member {"outputUri"|"error"|"outputData"|undefined} outputResult - * @memberof flyteidl.event.WorkflowExecutionEvent - * @instance - */ - Object.defineProperty(WorkflowExecutionEvent.prototype, "outputResult", { - get: $util.oneOfGetter($oneOfFields = ["outputUri", "error", "outputData"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new WorkflowExecutionEvent instance using the specified properties. - * @function create - * @memberof flyteidl.event.WorkflowExecutionEvent - * @static - * @param {flyteidl.event.IWorkflowExecutionEvent=} [properties] Properties to set - * @returns {flyteidl.event.WorkflowExecutionEvent} WorkflowExecutionEvent instance - */ - WorkflowExecutionEvent.create = function create(properties) { - return new WorkflowExecutionEvent(properties); - }; - - /** - * Encodes the specified WorkflowExecutionEvent message. Does not implicitly {@link flyteidl.event.WorkflowExecutionEvent.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.WorkflowExecutionEvent - * @static - * @param {flyteidl.event.IWorkflowExecutionEvent} message WorkflowExecutionEvent message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionEvent.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.executionId != null && message.hasOwnProperty("executionId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.executionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.producerId != null && message.hasOwnProperty("producerId")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.producerId); - if (message.phase != null && message.hasOwnProperty("phase")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.phase); - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) - $root.google.protobuf.Timestamp.encode(message.occurredAt, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.outputUri != null && message.hasOwnProperty("outputUri")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.outputUri); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.ExecutionError.encode(message.error, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.outputData != null && message.hasOwnProperty("outputData")) - $root.flyteidl.core.LiteralMap.encode(message.outputData, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowExecutionEvent message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.WorkflowExecutionEvent - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.WorkflowExecutionEvent} WorkflowExecutionEvent - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionEvent.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.WorkflowExecutionEvent(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.executionId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.producerId = reader.string(); - break; - case 3: - message.phase = reader.int32(); - break; - case 4: - message.occurredAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 5: - message.outputUri = reader.string(); - break; - case 6: - message.error = $root.flyteidl.core.ExecutionError.decode(reader, reader.uint32()); - break; - case 7: - message.outputData = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionEvent message. - * @function verify - * @memberof flyteidl.event.WorkflowExecutionEvent - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionEvent.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.executionId != null && message.hasOwnProperty("executionId")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.executionId); - if (error) - return "executionId." + error; - } - if (message.producerId != null && message.hasOwnProperty("producerId")) - if (!$util.isString(message.producerId)) - return "producerId: string expected"; - if (message.phase != null && message.hasOwnProperty("phase")) - switch (message.phase) { - default: - return "phase: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - break; - } - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.occurredAt); - if (error) - return "occurredAt." + error; - } - if (message.outputUri != null && message.hasOwnProperty("outputUri")) { - properties.outputResult = 1; - if (!$util.isString(message.outputUri)) - return "outputUri: string expected"; - } - if (message.error != null && message.hasOwnProperty("error")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.ExecutionError.verify(message.error); - if (error) - return "error." + error; - } - } - if (message.outputData != null && message.hasOwnProperty("outputData")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.outputData); - if (error) - return "outputData." + error; - } - } - return null; - }; - - return WorkflowExecutionEvent; - })(); - - event.NodeExecutionEvent = (function() { - - /** - * Properties of a NodeExecutionEvent. - * @memberof flyteidl.event - * @interface INodeExecutionEvent - * @property {flyteidl.core.INodeExecutionIdentifier|null} [id] NodeExecutionEvent id - * @property {string|null} [producerId] NodeExecutionEvent producerId - * @property {flyteidl.core.NodeExecution.Phase|null} [phase] NodeExecutionEvent phase - * @property {google.protobuf.ITimestamp|null} [occurredAt] NodeExecutionEvent occurredAt - * @property {string|null} [inputUri] NodeExecutionEvent inputUri - * @property {flyteidl.core.ILiteralMap|null} [inputData] NodeExecutionEvent inputData - * @property {string|null} [outputUri] NodeExecutionEvent outputUri - * @property {flyteidl.core.IExecutionError|null} [error] NodeExecutionEvent error - * @property {flyteidl.core.ILiteralMap|null} [outputData] NodeExecutionEvent outputData - * @property {flyteidl.event.IWorkflowNodeMetadata|null} [workflowNodeMetadata] NodeExecutionEvent workflowNodeMetadata - * @property {flyteidl.event.ITaskNodeMetadata|null} [taskNodeMetadata] NodeExecutionEvent taskNodeMetadata - * @property {flyteidl.event.IParentTaskExecutionMetadata|null} [parentTaskMetadata] NodeExecutionEvent parentTaskMetadata - * @property {flyteidl.event.IParentNodeExecutionMetadata|null} [parentNodeMetadata] NodeExecutionEvent parentNodeMetadata - * @property {string|null} [retryGroup] NodeExecutionEvent retryGroup - * @property {string|null} [specNodeId] NodeExecutionEvent specNodeId - * @property {string|null} [nodeName] NodeExecutionEvent nodeName - * @property {number|null} [eventVersion] NodeExecutionEvent eventVersion - * @property {boolean|null} [isParent] NodeExecutionEvent isParent - * @property {boolean|null} [isDynamic] NodeExecutionEvent isDynamic - * @property {string|null} [deckUri] NodeExecutionEvent deckUri - * @property {google.protobuf.ITimestamp|null} [reportedAt] NodeExecutionEvent reportedAt - * @property {boolean|null} [isArray] NodeExecutionEvent isArray - */ - - /** - * Constructs a new NodeExecutionEvent. - * @memberof flyteidl.event - * @classdesc Represents a NodeExecutionEvent. - * @implements INodeExecutionEvent - * @constructor - * @param {flyteidl.event.INodeExecutionEvent=} [properties] Properties to set - */ - function NodeExecutionEvent(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionEvent id. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} id - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.id = null; - - /** - * NodeExecutionEvent producerId. - * @member {string} producerId - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.producerId = ""; - - /** - * NodeExecutionEvent phase. - * @member {flyteidl.core.NodeExecution.Phase} phase - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.phase = 0; - - /** - * NodeExecutionEvent occurredAt. - * @member {google.protobuf.ITimestamp|null|undefined} occurredAt - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.occurredAt = null; - - /** - * NodeExecutionEvent inputUri. - * @member {string} inputUri - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.inputUri = ""; - - /** - * NodeExecutionEvent inputData. - * @member {flyteidl.core.ILiteralMap|null|undefined} inputData - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.inputData = null; - - /** - * NodeExecutionEvent outputUri. - * @member {string} outputUri - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.outputUri = ""; - - /** - * NodeExecutionEvent error. - * @member {flyteidl.core.IExecutionError|null|undefined} error - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.error = null; - - /** - * NodeExecutionEvent outputData. - * @member {flyteidl.core.ILiteralMap|null|undefined} outputData - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.outputData = null; - - /** - * NodeExecutionEvent workflowNodeMetadata. - * @member {flyteidl.event.IWorkflowNodeMetadata|null|undefined} workflowNodeMetadata - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.workflowNodeMetadata = null; - - /** - * NodeExecutionEvent taskNodeMetadata. - * @member {flyteidl.event.ITaskNodeMetadata|null|undefined} taskNodeMetadata - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.taskNodeMetadata = null; - - /** - * NodeExecutionEvent parentTaskMetadata. - * @member {flyteidl.event.IParentTaskExecutionMetadata|null|undefined} parentTaskMetadata - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.parentTaskMetadata = null; - - /** - * NodeExecutionEvent parentNodeMetadata. - * @member {flyteidl.event.IParentNodeExecutionMetadata|null|undefined} parentNodeMetadata - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.parentNodeMetadata = null; - - /** - * NodeExecutionEvent retryGroup. - * @member {string} retryGroup - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.retryGroup = ""; - - /** - * NodeExecutionEvent specNodeId. - * @member {string} specNodeId - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.specNodeId = ""; - - /** - * NodeExecutionEvent nodeName. - * @member {string} nodeName - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.nodeName = ""; - - /** - * NodeExecutionEvent eventVersion. - * @member {number} eventVersion - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.eventVersion = 0; - - /** - * NodeExecutionEvent isParent. - * @member {boolean} isParent - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.isParent = false; - - /** - * NodeExecutionEvent isDynamic. - * @member {boolean} isDynamic - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.isDynamic = false; - - /** - * NodeExecutionEvent deckUri. - * @member {string} deckUri - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.deckUri = ""; - - /** - * NodeExecutionEvent reportedAt. - * @member {google.protobuf.ITimestamp|null|undefined} reportedAt - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.reportedAt = null; - - /** - * NodeExecutionEvent isArray. - * @member {boolean} isArray - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - NodeExecutionEvent.prototype.isArray = false; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * NodeExecutionEvent inputValue. - * @member {"inputUri"|"inputData"|undefined} inputValue - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - Object.defineProperty(NodeExecutionEvent.prototype, "inputValue", { - get: $util.oneOfGetter($oneOfFields = ["inputUri", "inputData"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * NodeExecutionEvent outputResult. - * @member {"outputUri"|"error"|"outputData"|undefined} outputResult - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - Object.defineProperty(NodeExecutionEvent.prototype, "outputResult", { - get: $util.oneOfGetter($oneOfFields = ["outputUri", "error", "outputData"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * NodeExecutionEvent targetMetadata. - * @member {"workflowNodeMetadata"|"taskNodeMetadata"|undefined} targetMetadata - * @memberof flyteidl.event.NodeExecutionEvent - * @instance - */ - Object.defineProperty(NodeExecutionEvent.prototype, "targetMetadata", { - get: $util.oneOfGetter($oneOfFields = ["workflowNodeMetadata", "taskNodeMetadata"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new NodeExecutionEvent instance using the specified properties. - * @function create - * @memberof flyteidl.event.NodeExecutionEvent - * @static - * @param {flyteidl.event.INodeExecutionEvent=} [properties] Properties to set - * @returns {flyteidl.event.NodeExecutionEvent} NodeExecutionEvent instance - */ - NodeExecutionEvent.create = function create(properties) { - return new NodeExecutionEvent(properties); - }; - - /** - * Encodes the specified NodeExecutionEvent message. Does not implicitly {@link flyteidl.event.NodeExecutionEvent.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.NodeExecutionEvent - * @static - * @param {flyteidl.event.INodeExecutionEvent} message NodeExecutionEvent message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionEvent.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.producerId != null && message.hasOwnProperty("producerId")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.producerId); - if (message.phase != null && message.hasOwnProperty("phase")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.phase); - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) - $root.google.protobuf.Timestamp.encode(message.occurredAt, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.inputUri != null && message.hasOwnProperty("inputUri")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.inputUri); - if (message.outputUri != null && message.hasOwnProperty("outputUri")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.outputUri); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.ExecutionError.encode(message.error, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.workflowNodeMetadata != null && message.hasOwnProperty("workflowNodeMetadata")) - $root.flyteidl.event.WorkflowNodeMetadata.encode(message.workflowNodeMetadata, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.parentTaskMetadata != null && message.hasOwnProperty("parentTaskMetadata")) - $root.flyteidl.event.ParentTaskExecutionMetadata.encode(message.parentTaskMetadata, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.parentNodeMetadata != null && message.hasOwnProperty("parentNodeMetadata")) - $root.flyteidl.event.ParentNodeExecutionMetadata.encode(message.parentNodeMetadata, writer.uint32(/* id 10, wireType 2 =*/82).fork()).ldelim(); - if (message.retryGroup != null && message.hasOwnProperty("retryGroup")) - writer.uint32(/* id 11, wireType 2 =*/90).string(message.retryGroup); - if (message.specNodeId != null && message.hasOwnProperty("specNodeId")) - writer.uint32(/* id 12, wireType 2 =*/98).string(message.specNodeId); - if (message.nodeName != null && message.hasOwnProperty("nodeName")) - writer.uint32(/* id 13, wireType 2 =*/106).string(message.nodeName); - if (message.taskNodeMetadata != null && message.hasOwnProperty("taskNodeMetadata")) - $root.flyteidl.event.TaskNodeMetadata.encode(message.taskNodeMetadata, writer.uint32(/* id 14, wireType 2 =*/114).fork()).ldelim(); - if (message.outputData != null && message.hasOwnProperty("outputData")) - $root.flyteidl.core.LiteralMap.encode(message.outputData, writer.uint32(/* id 15, wireType 2 =*/122).fork()).ldelim(); - if (message.eventVersion != null && message.hasOwnProperty("eventVersion")) - writer.uint32(/* id 16, wireType 0 =*/128).int32(message.eventVersion); - if (message.isParent != null && message.hasOwnProperty("isParent")) - writer.uint32(/* id 17, wireType 0 =*/136).bool(message.isParent); - if (message.isDynamic != null && message.hasOwnProperty("isDynamic")) - writer.uint32(/* id 18, wireType 0 =*/144).bool(message.isDynamic); - if (message.deckUri != null && message.hasOwnProperty("deckUri")) - writer.uint32(/* id 19, wireType 2 =*/154).string(message.deckUri); - if (message.inputData != null && message.hasOwnProperty("inputData")) - $root.flyteidl.core.LiteralMap.encode(message.inputData, writer.uint32(/* id 20, wireType 2 =*/162).fork()).ldelim(); - if (message.reportedAt != null && message.hasOwnProperty("reportedAt")) - $root.google.protobuf.Timestamp.encode(message.reportedAt, writer.uint32(/* id 21, wireType 2 =*/170).fork()).ldelim(); - if (message.isArray != null && message.hasOwnProperty("isArray")) - writer.uint32(/* id 22, wireType 0 =*/176).bool(message.isArray); - return writer; - }; - - /** - * Decodes a NodeExecutionEvent message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.NodeExecutionEvent - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.NodeExecutionEvent} NodeExecutionEvent - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionEvent.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.NodeExecutionEvent(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.producerId = reader.string(); - break; - case 3: - message.phase = reader.int32(); - break; - case 4: - message.occurredAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 5: - message.inputUri = reader.string(); - break; - case 20: - message.inputData = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 6: - message.outputUri = reader.string(); - break; - case 7: - message.error = $root.flyteidl.core.ExecutionError.decode(reader, reader.uint32()); - break; - case 15: - message.outputData = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 8: - message.workflowNodeMetadata = $root.flyteidl.event.WorkflowNodeMetadata.decode(reader, reader.uint32()); - break; - case 14: - message.taskNodeMetadata = $root.flyteidl.event.TaskNodeMetadata.decode(reader, reader.uint32()); - break; - case 9: - message.parentTaskMetadata = $root.flyteidl.event.ParentTaskExecutionMetadata.decode(reader, reader.uint32()); - break; - case 10: - message.parentNodeMetadata = $root.flyteidl.event.ParentNodeExecutionMetadata.decode(reader, reader.uint32()); - break; - case 11: - message.retryGroup = reader.string(); - break; - case 12: - message.specNodeId = reader.string(); - break; - case 13: - message.nodeName = reader.string(); - break; - case 16: - message.eventVersion = reader.int32(); - break; - case 17: - message.isParent = reader.bool(); - break; - case 18: - message.isDynamic = reader.bool(); - break; - case 19: - message.deckUri = reader.string(); - break; - case 21: - message.reportedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 22: - message.isArray = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionEvent message. - * @function verify - * @memberof flyteidl.event.NodeExecutionEvent - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionEvent.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.producerId != null && message.hasOwnProperty("producerId")) - if (!$util.isString(message.producerId)) - return "producerId: string expected"; - if (message.phase != null && message.hasOwnProperty("phase")) - switch (message.phase) { - default: - return "phase: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - case 10: - break; - } - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.occurredAt); - if (error) - return "occurredAt." + error; - } - if (message.inputUri != null && message.hasOwnProperty("inputUri")) { - properties.inputValue = 1; - if (!$util.isString(message.inputUri)) - return "inputUri: string expected"; - } - if (message.inputData != null && message.hasOwnProperty("inputData")) { - if (properties.inputValue === 1) - return "inputValue: multiple values"; - properties.inputValue = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.inputData); - if (error) - return "inputData." + error; - } - } - if (message.outputUri != null && message.hasOwnProperty("outputUri")) { - properties.outputResult = 1; - if (!$util.isString(message.outputUri)) - return "outputUri: string expected"; - } - if (message.error != null && message.hasOwnProperty("error")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.ExecutionError.verify(message.error); - if (error) - return "error." + error; - } - } - if (message.outputData != null && message.hasOwnProperty("outputData")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.outputData); - if (error) - return "outputData." + error; - } - } - if (message.workflowNodeMetadata != null && message.hasOwnProperty("workflowNodeMetadata")) { - properties.targetMetadata = 1; - { - var error = $root.flyteidl.event.WorkflowNodeMetadata.verify(message.workflowNodeMetadata); - if (error) - return "workflowNodeMetadata." + error; - } - } - if (message.taskNodeMetadata != null && message.hasOwnProperty("taskNodeMetadata")) { - if (properties.targetMetadata === 1) - return "targetMetadata: multiple values"; - properties.targetMetadata = 1; - { - var error = $root.flyteidl.event.TaskNodeMetadata.verify(message.taskNodeMetadata); - if (error) - return "taskNodeMetadata." + error; - } - } - if (message.parentTaskMetadata != null && message.hasOwnProperty("parentTaskMetadata")) { - var error = $root.flyteidl.event.ParentTaskExecutionMetadata.verify(message.parentTaskMetadata); - if (error) - return "parentTaskMetadata." + error; - } - if (message.parentNodeMetadata != null && message.hasOwnProperty("parentNodeMetadata")) { - var error = $root.flyteidl.event.ParentNodeExecutionMetadata.verify(message.parentNodeMetadata); - if (error) - return "parentNodeMetadata." + error; - } - if (message.retryGroup != null && message.hasOwnProperty("retryGroup")) - if (!$util.isString(message.retryGroup)) - return "retryGroup: string expected"; - if (message.specNodeId != null && message.hasOwnProperty("specNodeId")) - if (!$util.isString(message.specNodeId)) - return "specNodeId: string expected"; - if (message.nodeName != null && message.hasOwnProperty("nodeName")) - if (!$util.isString(message.nodeName)) - return "nodeName: string expected"; - if (message.eventVersion != null && message.hasOwnProperty("eventVersion")) - if (!$util.isInteger(message.eventVersion)) - return "eventVersion: integer expected"; - if (message.isParent != null && message.hasOwnProperty("isParent")) - if (typeof message.isParent !== "boolean") - return "isParent: boolean expected"; - if (message.isDynamic != null && message.hasOwnProperty("isDynamic")) - if (typeof message.isDynamic !== "boolean") - return "isDynamic: boolean expected"; - if (message.deckUri != null && message.hasOwnProperty("deckUri")) - if (!$util.isString(message.deckUri)) - return "deckUri: string expected"; - if (message.reportedAt != null && message.hasOwnProperty("reportedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.reportedAt); - if (error) - return "reportedAt." + error; - } - if (message.isArray != null && message.hasOwnProperty("isArray")) - if (typeof message.isArray !== "boolean") - return "isArray: boolean expected"; - return null; - }; - - return NodeExecutionEvent; - })(); - - event.WorkflowNodeMetadata = (function() { - - /** - * Properties of a WorkflowNodeMetadata. - * @memberof flyteidl.event - * @interface IWorkflowNodeMetadata - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [executionId] WorkflowNodeMetadata executionId - */ - - /** - * Constructs a new WorkflowNodeMetadata. - * @memberof flyteidl.event - * @classdesc Represents a WorkflowNodeMetadata. - * @implements IWorkflowNodeMetadata - * @constructor - * @param {flyteidl.event.IWorkflowNodeMetadata=} [properties] Properties to set - */ - function WorkflowNodeMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowNodeMetadata executionId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} executionId - * @memberof flyteidl.event.WorkflowNodeMetadata - * @instance - */ - WorkflowNodeMetadata.prototype.executionId = null; - - /** - * Creates a new WorkflowNodeMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.event.WorkflowNodeMetadata - * @static - * @param {flyteidl.event.IWorkflowNodeMetadata=} [properties] Properties to set - * @returns {flyteidl.event.WorkflowNodeMetadata} WorkflowNodeMetadata instance - */ - WorkflowNodeMetadata.create = function create(properties) { - return new WorkflowNodeMetadata(properties); - }; - - /** - * Encodes the specified WorkflowNodeMetadata message. Does not implicitly {@link flyteidl.event.WorkflowNodeMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.WorkflowNodeMetadata - * @static - * @param {flyteidl.event.IWorkflowNodeMetadata} message WorkflowNodeMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowNodeMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.executionId != null && message.hasOwnProperty("executionId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.executionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowNodeMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.WorkflowNodeMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.WorkflowNodeMetadata} WorkflowNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowNodeMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.WorkflowNodeMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.executionId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowNodeMetadata message. - * @function verify - * @memberof flyteidl.event.WorkflowNodeMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowNodeMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.executionId != null && message.hasOwnProperty("executionId")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.executionId); - if (error) - return "executionId." + error; - } - return null; - }; - - return WorkflowNodeMetadata; - })(); - - event.TaskNodeMetadata = (function() { - - /** - * Properties of a TaskNodeMetadata. - * @memberof flyteidl.event - * @interface ITaskNodeMetadata - * @property {flyteidl.core.CatalogCacheStatus|null} [cacheStatus] TaskNodeMetadata cacheStatus - * @property {flyteidl.core.ICatalogMetadata|null} [catalogKey] TaskNodeMetadata catalogKey - * @property {flyteidl.core.CatalogReservation.Status|null} [reservationStatus] TaskNodeMetadata reservationStatus - * @property {string|null} [checkpointUri] TaskNodeMetadata checkpointUri - * @property {flyteidl.event.IDynamicWorkflowNodeMetadata|null} [dynamicWorkflow] TaskNodeMetadata dynamicWorkflow - */ - - /** - * Constructs a new TaskNodeMetadata. - * @memberof flyteidl.event - * @classdesc Represents a TaskNodeMetadata. - * @implements ITaskNodeMetadata - * @constructor - * @param {flyteidl.event.ITaskNodeMetadata=} [properties] Properties to set - */ - function TaskNodeMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskNodeMetadata cacheStatus. - * @member {flyteidl.core.CatalogCacheStatus} cacheStatus - * @memberof flyteidl.event.TaskNodeMetadata - * @instance - */ - TaskNodeMetadata.prototype.cacheStatus = 0; - - /** - * TaskNodeMetadata catalogKey. - * @member {flyteidl.core.ICatalogMetadata|null|undefined} catalogKey - * @memberof flyteidl.event.TaskNodeMetadata - * @instance - */ - TaskNodeMetadata.prototype.catalogKey = null; - - /** - * TaskNodeMetadata reservationStatus. - * @member {flyteidl.core.CatalogReservation.Status} reservationStatus - * @memberof flyteidl.event.TaskNodeMetadata - * @instance - */ - TaskNodeMetadata.prototype.reservationStatus = 0; - - /** - * TaskNodeMetadata checkpointUri. - * @member {string} checkpointUri - * @memberof flyteidl.event.TaskNodeMetadata - * @instance - */ - TaskNodeMetadata.prototype.checkpointUri = ""; - - /** - * TaskNodeMetadata dynamicWorkflow. - * @member {flyteidl.event.IDynamicWorkflowNodeMetadata|null|undefined} dynamicWorkflow - * @memberof flyteidl.event.TaskNodeMetadata - * @instance - */ - TaskNodeMetadata.prototype.dynamicWorkflow = null; - - /** - * Creates a new TaskNodeMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.event.TaskNodeMetadata - * @static - * @param {flyteidl.event.ITaskNodeMetadata=} [properties] Properties to set - * @returns {flyteidl.event.TaskNodeMetadata} TaskNodeMetadata instance - */ - TaskNodeMetadata.create = function create(properties) { - return new TaskNodeMetadata(properties); - }; - - /** - * Encodes the specified TaskNodeMetadata message. Does not implicitly {@link flyteidl.event.TaskNodeMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.TaskNodeMetadata - * @static - * @param {flyteidl.event.ITaskNodeMetadata} message TaskNodeMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskNodeMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.cacheStatus != null && message.hasOwnProperty("cacheStatus")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.cacheStatus); - if (message.catalogKey != null && message.hasOwnProperty("catalogKey")) - $root.flyteidl.core.CatalogMetadata.encode(message.catalogKey, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.reservationStatus != null && message.hasOwnProperty("reservationStatus")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.reservationStatus); - if (message.checkpointUri != null && message.hasOwnProperty("checkpointUri")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.checkpointUri); - if (message.dynamicWorkflow != null && message.hasOwnProperty("dynamicWorkflow")) - $root.flyteidl.event.DynamicWorkflowNodeMetadata.encode(message.dynamicWorkflow, writer.uint32(/* id 16, wireType 2 =*/130).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskNodeMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.TaskNodeMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.TaskNodeMetadata} TaskNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskNodeMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.TaskNodeMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.cacheStatus = reader.int32(); - break; - case 2: - message.catalogKey = $root.flyteidl.core.CatalogMetadata.decode(reader, reader.uint32()); - break; - case 3: - message.reservationStatus = reader.int32(); - break; - case 4: - message.checkpointUri = reader.string(); - break; - case 16: - message.dynamicWorkflow = $root.flyteidl.event.DynamicWorkflowNodeMetadata.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskNodeMetadata message. - * @function verify - * @memberof flyteidl.event.TaskNodeMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskNodeMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.cacheStatus != null && message.hasOwnProperty("cacheStatus")) - switch (message.cacheStatus) { - default: - return "cacheStatus: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.catalogKey != null && message.hasOwnProperty("catalogKey")) { - var error = $root.flyteidl.core.CatalogMetadata.verify(message.catalogKey); - if (error) - return "catalogKey." + error; - } - if (message.reservationStatus != null && message.hasOwnProperty("reservationStatus")) - switch (message.reservationStatus) { - default: - return "reservationStatus: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.checkpointUri != null && message.hasOwnProperty("checkpointUri")) - if (!$util.isString(message.checkpointUri)) - return "checkpointUri: string expected"; - if (message.dynamicWorkflow != null && message.hasOwnProperty("dynamicWorkflow")) { - var error = $root.flyteidl.event.DynamicWorkflowNodeMetadata.verify(message.dynamicWorkflow); - if (error) - return "dynamicWorkflow." + error; - } - return null; - }; - - return TaskNodeMetadata; - })(); - - event.DynamicWorkflowNodeMetadata = (function() { - - /** - * Properties of a DynamicWorkflowNodeMetadata. - * @memberof flyteidl.event - * @interface IDynamicWorkflowNodeMetadata - * @property {flyteidl.core.IIdentifier|null} [id] DynamicWorkflowNodeMetadata id - * @property {flyteidl.core.ICompiledWorkflowClosure|null} [compiledWorkflow] DynamicWorkflowNodeMetadata compiledWorkflow - * @property {string|null} [dynamicJobSpecUri] DynamicWorkflowNodeMetadata dynamicJobSpecUri - */ - - /** - * Constructs a new DynamicWorkflowNodeMetadata. - * @memberof flyteidl.event - * @classdesc Represents a DynamicWorkflowNodeMetadata. - * @implements IDynamicWorkflowNodeMetadata - * @constructor - * @param {flyteidl.event.IDynamicWorkflowNodeMetadata=} [properties] Properties to set - */ - function DynamicWorkflowNodeMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DynamicWorkflowNodeMetadata id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.event.DynamicWorkflowNodeMetadata - * @instance - */ - DynamicWorkflowNodeMetadata.prototype.id = null; - - /** - * DynamicWorkflowNodeMetadata compiledWorkflow. - * @member {flyteidl.core.ICompiledWorkflowClosure|null|undefined} compiledWorkflow - * @memberof flyteidl.event.DynamicWorkflowNodeMetadata - * @instance - */ - DynamicWorkflowNodeMetadata.prototype.compiledWorkflow = null; - - /** - * DynamicWorkflowNodeMetadata dynamicJobSpecUri. - * @member {string} dynamicJobSpecUri - * @memberof flyteidl.event.DynamicWorkflowNodeMetadata - * @instance - */ - DynamicWorkflowNodeMetadata.prototype.dynamicJobSpecUri = ""; - - /** - * Creates a new DynamicWorkflowNodeMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.event.DynamicWorkflowNodeMetadata - * @static - * @param {flyteidl.event.IDynamicWorkflowNodeMetadata=} [properties] Properties to set - * @returns {flyteidl.event.DynamicWorkflowNodeMetadata} DynamicWorkflowNodeMetadata instance - */ - DynamicWorkflowNodeMetadata.create = function create(properties) { - return new DynamicWorkflowNodeMetadata(properties); - }; - - /** - * Encodes the specified DynamicWorkflowNodeMetadata message. Does not implicitly {@link flyteidl.event.DynamicWorkflowNodeMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.DynamicWorkflowNodeMetadata - * @static - * @param {flyteidl.event.IDynamicWorkflowNodeMetadata} message DynamicWorkflowNodeMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DynamicWorkflowNodeMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.compiledWorkflow != null && message.hasOwnProperty("compiledWorkflow")) - $root.flyteidl.core.CompiledWorkflowClosure.encode(message.compiledWorkflow, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.dynamicJobSpecUri != null && message.hasOwnProperty("dynamicJobSpecUri")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.dynamicJobSpecUri); - return writer; - }; - - /** - * Decodes a DynamicWorkflowNodeMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.DynamicWorkflowNodeMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.DynamicWorkflowNodeMetadata} DynamicWorkflowNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DynamicWorkflowNodeMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.DynamicWorkflowNodeMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.compiledWorkflow = $root.flyteidl.core.CompiledWorkflowClosure.decode(reader, reader.uint32()); - break; - case 3: - message.dynamicJobSpecUri = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DynamicWorkflowNodeMetadata message. - * @function verify - * @memberof flyteidl.event.DynamicWorkflowNodeMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DynamicWorkflowNodeMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.compiledWorkflow != null && message.hasOwnProperty("compiledWorkflow")) { - var error = $root.flyteidl.core.CompiledWorkflowClosure.verify(message.compiledWorkflow); - if (error) - return "compiledWorkflow." + error; - } - if (message.dynamicJobSpecUri != null && message.hasOwnProperty("dynamicJobSpecUri")) - if (!$util.isString(message.dynamicJobSpecUri)) - return "dynamicJobSpecUri: string expected"; - return null; - }; - - return DynamicWorkflowNodeMetadata; - })(); - - event.ParentTaskExecutionMetadata = (function() { - - /** - * Properties of a ParentTaskExecutionMetadata. - * @memberof flyteidl.event - * @interface IParentTaskExecutionMetadata - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [id] ParentTaskExecutionMetadata id - */ - - /** - * Constructs a new ParentTaskExecutionMetadata. - * @memberof flyteidl.event - * @classdesc Represents a ParentTaskExecutionMetadata. - * @implements IParentTaskExecutionMetadata - * @constructor - * @param {flyteidl.event.IParentTaskExecutionMetadata=} [properties] Properties to set - */ - function ParentTaskExecutionMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ParentTaskExecutionMetadata id. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} id - * @memberof flyteidl.event.ParentTaskExecutionMetadata - * @instance - */ - ParentTaskExecutionMetadata.prototype.id = null; - - /** - * Creates a new ParentTaskExecutionMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.event.ParentTaskExecutionMetadata - * @static - * @param {flyteidl.event.IParentTaskExecutionMetadata=} [properties] Properties to set - * @returns {flyteidl.event.ParentTaskExecutionMetadata} ParentTaskExecutionMetadata instance - */ - ParentTaskExecutionMetadata.create = function create(properties) { - return new ParentTaskExecutionMetadata(properties); - }; - - /** - * Encodes the specified ParentTaskExecutionMetadata message. Does not implicitly {@link flyteidl.event.ParentTaskExecutionMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.ParentTaskExecutionMetadata - * @static - * @param {flyteidl.event.IParentTaskExecutionMetadata} message ParentTaskExecutionMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ParentTaskExecutionMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ParentTaskExecutionMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.ParentTaskExecutionMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.ParentTaskExecutionMetadata} ParentTaskExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ParentTaskExecutionMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.ParentTaskExecutionMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ParentTaskExecutionMetadata message. - * @function verify - * @memberof flyteidl.event.ParentTaskExecutionMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ParentTaskExecutionMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return ParentTaskExecutionMetadata; - })(); - - event.ParentNodeExecutionMetadata = (function() { - - /** - * Properties of a ParentNodeExecutionMetadata. - * @memberof flyteidl.event - * @interface IParentNodeExecutionMetadata - * @property {string|null} [nodeId] ParentNodeExecutionMetadata nodeId - */ - - /** - * Constructs a new ParentNodeExecutionMetadata. - * @memberof flyteidl.event - * @classdesc Represents a ParentNodeExecutionMetadata. - * @implements IParentNodeExecutionMetadata - * @constructor - * @param {flyteidl.event.IParentNodeExecutionMetadata=} [properties] Properties to set - */ - function ParentNodeExecutionMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ParentNodeExecutionMetadata nodeId. - * @member {string} nodeId - * @memberof flyteidl.event.ParentNodeExecutionMetadata - * @instance - */ - ParentNodeExecutionMetadata.prototype.nodeId = ""; - - /** - * Creates a new ParentNodeExecutionMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.event.ParentNodeExecutionMetadata - * @static - * @param {flyteidl.event.IParentNodeExecutionMetadata=} [properties] Properties to set - * @returns {flyteidl.event.ParentNodeExecutionMetadata} ParentNodeExecutionMetadata instance - */ - ParentNodeExecutionMetadata.create = function create(properties) { - return new ParentNodeExecutionMetadata(properties); - }; - - /** - * Encodes the specified ParentNodeExecutionMetadata message. Does not implicitly {@link flyteidl.event.ParentNodeExecutionMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.ParentNodeExecutionMetadata - * @static - * @param {flyteidl.event.IParentNodeExecutionMetadata} message ParentNodeExecutionMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ParentNodeExecutionMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.nodeId != null && message.hasOwnProperty("nodeId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.nodeId); - return writer; - }; - - /** - * Decodes a ParentNodeExecutionMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.ParentNodeExecutionMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.ParentNodeExecutionMetadata} ParentNodeExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ParentNodeExecutionMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.ParentNodeExecutionMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.nodeId = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ParentNodeExecutionMetadata message. - * @function verify - * @memberof flyteidl.event.ParentNodeExecutionMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ParentNodeExecutionMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.nodeId != null && message.hasOwnProperty("nodeId")) - if (!$util.isString(message.nodeId)) - return "nodeId: string expected"; - return null; - }; - - return ParentNodeExecutionMetadata; - })(); - - event.EventReason = (function() { - - /** - * Properties of an EventReason. - * @memberof flyteidl.event - * @interface IEventReason - * @property {string|null} [reason] EventReason reason - * @property {google.protobuf.ITimestamp|null} [occurredAt] EventReason occurredAt - */ - - /** - * Constructs a new EventReason. - * @memberof flyteidl.event - * @classdesc Represents an EventReason. - * @implements IEventReason - * @constructor - * @param {flyteidl.event.IEventReason=} [properties] Properties to set - */ - function EventReason(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EventReason reason. - * @member {string} reason - * @memberof flyteidl.event.EventReason - * @instance - */ - EventReason.prototype.reason = ""; - - /** - * EventReason occurredAt. - * @member {google.protobuf.ITimestamp|null|undefined} occurredAt - * @memberof flyteidl.event.EventReason - * @instance - */ - EventReason.prototype.occurredAt = null; - - /** - * Creates a new EventReason instance using the specified properties. - * @function create - * @memberof flyteidl.event.EventReason - * @static - * @param {flyteidl.event.IEventReason=} [properties] Properties to set - * @returns {flyteidl.event.EventReason} EventReason instance - */ - EventReason.create = function create(properties) { - return new EventReason(properties); - }; - - /** - * Encodes the specified EventReason message. Does not implicitly {@link flyteidl.event.EventReason.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.EventReason - * @static - * @param {flyteidl.event.IEventReason} message EventReason message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EventReason.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.reason != null && message.hasOwnProperty("reason")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.reason); - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) - $root.google.protobuf.Timestamp.encode(message.occurredAt, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an EventReason message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.EventReason - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.EventReason} EventReason - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EventReason.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.EventReason(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.reason = reader.string(); - break; - case 2: - message.occurredAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EventReason message. - * @function verify - * @memberof flyteidl.event.EventReason - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EventReason.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.reason != null && message.hasOwnProperty("reason")) - if (!$util.isString(message.reason)) - return "reason: string expected"; - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.occurredAt); - if (error) - return "occurredAt." + error; - } - return null; - }; - - return EventReason; - })(); - - event.TaskExecutionEvent = (function() { - - /** - * Properties of a TaskExecutionEvent. - * @memberof flyteidl.event - * @interface ITaskExecutionEvent - * @property {flyteidl.core.IIdentifier|null} [taskId] TaskExecutionEvent taskId - * @property {flyteidl.core.INodeExecutionIdentifier|null} [parentNodeExecutionId] TaskExecutionEvent parentNodeExecutionId - * @property {number|null} [retryAttempt] TaskExecutionEvent retryAttempt - * @property {flyteidl.core.TaskExecution.Phase|null} [phase] TaskExecutionEvent phase - * @property {string|null} [producerId] TaskExecutionEvent producerId - * @property {Array.|null} [logs] TaskExecutionEvent logs - * @property {google.protobuf.ITimestamp|null} [occurredAt] TaskExecutionEvent occurredAt - * @property {string|null} [inputUri] TaskExecutionEvent inputUri - * @property {flyteidl.core.ILiteralMap|null} [inputData] TaskExecutionEvent inputData - * @property {string|null} [outputUri] TaskExecutionEvent outputUri - * @property {flyteidl.core.IExecutionError|null} [error] TaskExecutionEvent error - * @property {flyteidl.core.ILiteralMap|null} [outputData] TaskExecutionEvent outputData - * @property {google.protobuf.IStruct|null} [customInfo] TaskExecutionEvent customInfo - * @property {number|null} [phaseVersion] TaskExecutionEvent phaseVersion - * @property {string|null} [reason] TaskExecutionEvent reason - * @property {Array.|null} [reasons] TaskExecutionEvent reasons - * @property {string|null} [taskType] TaskExecutionEvent taskType - * @property {flyteidl.event.ITaskExecutionMetadata|null} [metadata] TaskExecutionEvent metadata - * @property {number|null} [eventVersion] TaskExecutionEvent eventVersion - * @property {google.protobuf.ITimestamp|null} [reportedAt] TaskExecutionEvent reportedAt - */ - - /** - * Constructs a new TaskExecutionEvent. - * @memberof flyteidl.event - * @classdesc Represents a TaskExecutionEvent. - * @implements ITaskExecutionEvent - * @constructor - * @param {flyteidl.event.ITaskExecutionEvent=} [properties] Properties to set - */ - function TaskExecutionEvent(properties) { - this.logs = []; - this.reasons = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionEvent taskId. - * @member {flyteidl.core.IIdentifier|null|undefined} taskId - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.taskId = null; - - /** - * TaskExecutionEvent parentNodeExecutionId. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} parentNodeExecutionId - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.parentNodeExecutionId = null; - - /** - * TaskExecutionEvent retryAttempt. - * @member {number} retryAttempt - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.retryAttempt = 0; - - /** - * TaskExecutionEvent phase. - * @member {flyteidl.core.TaskExecution.Phase} phase - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.phase = 0; - - /** - * TaskExecutionEvent producerId. - * @member {string} producerId - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.producerId = ""; - - /** - * TaskExecutionEvent logs. - * @member {Array.} logs - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.logs = $util.emptyArray; - - /** - * TaskExecutionEvent occurredAt. - * @member {google.protobuf.ITimestamp|null|undefined} occurredAt - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.occurredAt = null; - - /** - * TaskExecutionEvent inputUri. - * @member {string} inputUri - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.inputUri = ""; - - /** - * TaskExecutionEvent inputData. - * @member {flyteidl.core.ILiteralMap|null|undefined} inputData - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.inputData = null; - - /** - * TaskExecutionEvent outputUri. - * @member {string} outputUri - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.outputUri = ""; - - /** - * TaskExecutionEvent error. - * @member {flyteidl.core.IExecutionError|null|undefined} error - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.error = null; - - /** - * TaskExecutionEvent outputData. - * @member {flyteidl.core.ILiteralMap|null|undefined} outputData - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.outputData = null; - - /** - * TaskExecutionEvent customInfo. - * @member {google.protobuf.IStruct|null|undefined} customInfo - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.customInfo = null; - - /** - * TaskExecutionEvent phaseVersion. - * @member {number} phaseVersion - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.phaseVersion = 0; - - /** - * TaskExecutionEvent reason. - * @member {string} reason - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.reason = ""; - - /** - * TaskExecutionEvent reasons. - * @member {Array.} reasons - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.reasons = $util.emptyArray; - - /** - * TaskExecutionEvent taskType. - * @member {string} taskType - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.taskType = ""; - - /** - * TaskExecutionEvent metadata. - * @member {flyteidl.event.ITaskExecutionMetadata|null|undefined} metadata - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.metadata = null; - - /** - * TaskExecutionEvent eventVersion. - * @member {number} eventVersion - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.eventVersion = 0; - - /** - * TaskExecutionEvent reportedAt. - * @member {google.protobuf.ITimestamp|null|undefined} reportedAt - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - TaskExecutionEvent.prototype.reportedAt = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * TaskExecutionEvent inputValue. - * @member {"inputUri"|"inputData"|undefined} inputValue - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - Object.defineProperty(TaskExecutionEvent.prototype, "inputValue", { - get: $util.oneOfGetter($oneOfFields = ["inputUri", "inputData"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * TaskExecutionEvent outputResult. - * @member {"outputUri"|"error"|"outputData"|undefined} outputResult - * @memberof flyteidl.event.TaskExecutionEvent - * @instance - */ - Object.defineProperty(TaskExecutionEvent.prototype, "outputResult", { - get: $util.oneOfGetter($oneOfFields = ["outputUri", "error", "outputData"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new TaskExecutionEvent instance using the specified properties. - * @function create - * @memberof flyteidl.event.TaskExecutionEvent - * @static - * @param {flyteidl.event.ITaskExecutionEvent=} [properties] Properties to set - * @returns {flyteidl.event.TaskExecutionEvent} TaskExecutionEvent instance - */ - TaskExecutionEvent.create = function create(properties) { - return new TaskExecutionEvent(properties); - }; - - /** - * Encodes the specified TaskExecutionEvent message. Does not implicitly {@link flyteidl.event.TaskExecutionEvent.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.TaskExecutionEvent - * @static - * @param {flyteidl.event.ITaskExecutionEvent} message TaskExecutionEvent message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionEvent.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskId != null && message.hasOwnProperty("taskId")) - $root.flyteidl.core.Identifier.encode(message.taskId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.parentNodeExecutionId != null && message.hasOwnProperty("parentNodeExecutionId")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.parentNodeExecutionId, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.retryAttempt != null && message.hasOwnProperty("retryAttempt")) - writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.retryAttempt); - if (message.phase != null && message.hasOwnProperty("phase")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.phase); - if (message.producerId != null && message.hasOwnProperty("producerId")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.producerId); - if (message.logs != null && message.logs.length) - for (var i = 0; i < message.logs.length; ++i) - $root.flyteidl.core.TaskLog.encode(message.logs[i], writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) - $root.google.protobuf.Timestamp.encode(message.occurredAt, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.inputUri != null && message.hasOwnProperty("inputUri")) - writer.uint32(/* id 8, wireType 2 =*/66).string(message.inputUri); - if (message.outputUri != null && message.hasOwnProperty("outputUri")) - writer.uint32(/* id 9, wireType 2 =*/74).string(message.outputUri); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.ExecutionError.encode(message.error, writer.uint32(/* id 10, wireType 2 =*/82).fork()).ldelim(); - if (message.customInfo != null && message.hasOwnProperty("customInfo")) - $root.google.protobuf.Struct.encode(message.customInfo, writer.uint32(/* id 11, wireType 2 =*/90).fork()).ldelim(); - if (message.phaseVersion != null && message.hasOwnProperty("phaseVersion")) - writer.uint32(/* id 12, wireType 0 =*/96).uint32(message.phaseVersion); - if (message.reason != null && message.hasOwnProperty("reason")) - writer.uint32(/* id 13, wireType 2 =*/106).string(message.reason); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 14, wireType 2 =*/114).string(message.taskType); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.event.TaskExecutionMetadata.encode(message.metadata, writer.uint32(/* id 16, wireType 2 =*/130).fork()).ldelim(); - if (message.outputData != null && message.hasOwnProperty("outputData")) - $root.flyteidl.core.LiteralMap.encode(message.outputData, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim(); - if (message.eventVersion != null && message.hasOwnProperty("eventVersion")) - writer.uint32(/* id 18, wireType 0 =*/144).int32(message.eventVersion); - if (message.inputData != null && message.hasOwnProperty("inputData")) - $root.flyteidl.core.LiteralMap.encode(message.inputData, writer.uint32(/* id 19, wireType 2 =*/154).fork()).ldelim(); - if (message.reportedAt != null && message.hasOwnProperty("reportedAt")) - $root.google.protobuf.Timestamp.encode(message.reportedAt, writer.uint32(/* id 20, wireType 2 =*/162).fork()).ldelim(); - if (message.reasons != null && message.reasons.length) - for (var i = 0; i < message.reasons.length; ++i) - $root.flyteidl.event.EventReason.encode(message.reasons[i], writer.uint32(/* id 21, wireType 2 =*/170).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskExecutionEvent message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.TaskExecutionEvent - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.TaskExecutionEvent} TaskExecutionEvent - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionEvent.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.TaskExecutionEvent(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.parentNodeExecutionId = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 3: - message.retryAttempt = reader.uint32(); - break; - case 4: - message.phase = reader.int32(); - break; - case 5: - message.producerId = reader.string(); - break; - case 6: - if (!(message.logs && message.logs.length)) - message.logs = []; - message.logs.push($root.flyteidl.core.TaskLog.decode(reader, reader.uint32())); - break; - case 7: - message.occurredAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 8: - message.inputUri = reader.string(); - break; - case 19: - message.inputData = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 9: - message.outputUri = reader.string(); - break; - case 10: - message.error = $root.flyteidl.core.ExecutionError.decode(reader, reader.uint32()); - break; - case 17: - message.outputData = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 11: - message.customInfo = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - case 12: - message.phaseVersion = reader.uint32(); - break; - case 13: - message.reason = reader.string(); - break; - case 21: - if (!(message.reasons && message.reasons.length)) - message.reasons = []; - message.reasons.push($root.flyteidl.event.EventReason.decode(reader, reader.uint32())); - break; - case 14: - message.taskType = reader.string(); - break; - case 16: - message.metadata = $root.flyteidl.event.TaskExecutionMetadata.decode(reader, reader.uint32()); - break; - case 18: - message.eventVersion = reader.int32(); - break; - case 20: - message.reportedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionEvent message. - * @function verify - * @memberof flyteidl.event.TaskExecutionEvent - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionEvent.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.taskId != null && message.hasOwnProperty("taskId")) { - var error = $root.flyteidl.core.Identifier.verify(message.taskId); - if (error) - return "taskId." + error; - } - if (message.parentNodeExecutionId != null && message.hasOwnProperty("parentNodeExecutionId")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.parentNodeExecutionId); - if (error) - return "parentNodeExecutionId." + error; - } - if (message.retryAttempt != null && message.hasOwnProperty("retryAttempt")) - if (!$util.isInteger(message.retryAttempt)) - return "retryAttempt: integer expected"; - if (message.phase != null && message.hasOwnProperty("phase")) - switch (message.phase) { - default: - return "phase: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.producerId != null && message.hasOwnProperty("producerId")) - if (!$util.isString(message.producerId)) - return "producerId: string expected"; - if (message.logs != null && message.hasOwnProperty("logs")) { - if (!Array.isArray(message.logs)) - return "logs: array expected"; - for (var i = 0; i < message.logs.length; ++i) { - var error = $root.flyteidl.core.TaskLog.verify(message.logs[i]); - if (error) - return "logs." + error; - } - } - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.occurredAt); - if (error) - return "occurredAt." + error; - } - if (message.inputUri != null && message.hasOwnProperty("inputUri")) { - properties.inputValue = 1; - if (!$util.isString(message.inputUri)) - return "inputUri: string expected"; - } - if (message.inputData != null && message.hasOwnProperty("inputData")) { - if (properties.inputValue === 1) - return "inputValue: multiple values"; - properties.inputValue = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.inputData); - if (error) - return "inputData." + error; - } - } - if (message.outputUri != null && message.hasOwnProperty("outputUri")) { - properties.outputResult = 1; - if (!$util.isString(message.outputUri)) - return "outputUri: string expected"; - } - if (message.error != null && message.hasOwnProperty("error")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.ExecutionError.verify(message.error); - if (error) - return "error." + error; - } - } - if (message.outputData != null && message.hasOwnProperty("outputData")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.outputData); - if (error) - return "outputData." + error; - } - } - if (message.customInfo != null && message.hasOwnProperty("customInfo")) { - var error = $root.google.protobuf.Struct.verify(message.customInfo); - if (error) - return "customInfo." + error; - } - if (message.phaseVersion != null && message.hasOwnProperty("phaseVersion")) - if (!$util.isInteger(message.phaseVersion)) - return "phaseVersion: integer expected"; - if (message.reason != null && message.hasOwnProperty("reason")) - if (!$util.isString(message.reason)) - return "reason: string expected"; - if (message.reasons != null && message.hasOwnProperty("reasons")) { - if (!Array.isArray(message.reasons)) - return "reasons: array expected"; - for (var i = 0; i < message.reasons.length; ++i) { - var error = $root.flyteidl.event.EventReason.verify(message.reasons[i]); - if (error) - return "reasons." + error; - } - } - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.event.TaskExecutionMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message.eventVersion != null && message.hasOwnProperty("eventVersion")) - if (!$util.isInteger(message.eventVersion)) - return "eventVersion: integer expected"; - if (message.reportedAt != null && message.hasOwnProperty("reportedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.reportedAt); - if (error) - return "reportedAt." + error; - } - return null; - }; - - return TaskExecutionEvent; - })(); - - event.ExternalResourceInfo = (function() { - - /** - * Properties of an ExternalResourceInfo. - * @memberof flyteidl.event - * @interface IExternalResourceInfo - * @property {string|null} [externalId] ExternalResourceInfo externalId - * @property {number|null} [index] ExternalResourceInfo index - * @property {number|null} [retryAttempt] ExternalResourceInfo retryAttempt - * @property {flyteidl.core.TaskExecution.Phase|null} [phase] ExternalResourceInfo phase - * @property {flyteidl.core.CatalogCacheStatus|null} [cacheStatus] ExternalResourceInfo cacheStatus - * @property {Array.|null} [logs] ExternalResourceInfo logs - */ - - /** - * Constructs a new ExternalResourceInfo. - * @memberof flyteidl.event - * @classdesc Represents an ExternalResourceInfo. - * @implements IExternalResourceInfo - * @constructor - * @param {flyteidl.event.IExternalResourceInfo=} [properties] Properties to set - */ - function ExternalResourceInfo(properties) { - this.logs = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExternalResourceInfo externalId. - * @member {string} externalId - * @memberof flyteidl.event.ExternalResourceInfo - * @instance - */ - ExternalResourceInfo.prototype.externalId = ""; - - /** - * ExternalResourceInfo index. - * @member {number} index - * @memberof flyteidl.event.ExternalResourceInfo - * @instance - */ - ExternalResourceInfo.prototype.index = 0; - - /** - * ExternalResourceInfo retryAttempt. - * @member {number} retryAttempt - * @memberof flyteidl.event.ExternalResourceInfo - * @instance - */ - ExternalResourceInfo.prototype.retryAttempt = 0; - - /** - * ExternalResourceInfo phase. - * @member {flyteidl.core.TaskExecution.Phase} phase - * @memberof flyteidl.event.ExternalResourceInfo - * @instance - */ - ExternalResourceInfo.prototype.phase = 0; - - /** - * ExternalResourceInfo cacheStatus. - * @member {flyteidl.core.CatalogCacheStatus} cacheStatus - * @memberof flyteidl.event.ExternalResourceInfo - * @instance - */ - ExternalResourceInfo.prototype.cacheStatus = 0; - - /** - * ExternalResourceInfo logs. - * @member {Array.} logs - * @memberof flyteidl.event.ExternalResourceInfo - * @instance - */ - ExternalResourceInfo.prototype.logs = $util.emptyArray; - - /** - * Creates a new ExternalResourceInfo instance using the specified properties. - * @function create - * @memberof flyteidl.event.ExternalResourceInfo - * @static - * @param {flyteidl.event.IExternalResourceInfo=} [properties] Properties to set - * @returns {flyteidl.event.ExternalResourceInfo} ExternalResourceInfo instance - */ - ExternalResourceInfo.create = function create(properties) { - return new ExternalResourceInfo(properties); - }; - - /** - * Encodes the specified ExternalResourceInfo message. Does not implicitly {@link flyteidl.event.ExternalResourceInfo.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.ExternalResourceInfo - * @static - * @param {flyteidl.event.IExternalResourceInfo} message ExternalResourceInfo message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExternalResourceInfo.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.externalId != null && message.hasOwnProperty("externalId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.externalId); - if (message.index != null && message.hasOwnProperty("index")) - writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.index); - if (message.retryAttempt != null && message.hasOwnProperty("retryAttempt")) - writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.retryAttempt); - if (message.phase != null && message.hasOwnProperty("phase")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.phase); - if (message.cacheStatus != null && message.hasOwnProperty("cacheStatus")) - writer.uint32(/* id 5, wireType 0 =*/40).int32(message.cacheStatus); - if (message.logs != null && message.logs.length) - for (var i = 0; i < message.logs.length; ++i) - $root.flyteidl.core.TaskLog.encode(message.logs[i], writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ExternalResourceInfo message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.ExternalResourceInfo - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.ExternalResourceInfo} ExternalResourceInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExternalResourceInfo.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.ExternalResourceInfo(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.externalId = reader.string(); - break; - case 2: - message.index = reader.uint32(); - break; - case 3: - message.retryAttempt = reader.uint32(); - break; - case 4: - message.phase = reader.int32(); - break; - case 5: - message.cacheStatus = reader.int32(); - break; - case 6: - if (!(message.logs && message.logs.length)) - message.logs = []; - message.logs.push($root.flyteidl.core.TaskLog.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExternalResourceInfo message. - * @function verify - * @memberof flyteidl.event.ExternalResourceInfo - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExternalResourceInfo.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.externalId != null && message.hasOwnProperty("externalId")) - if (!$util.isString(message.externalId)) - return "externalId: string expected"; - if (message.index != null && message.hasOwnProperty("index")) - if (!$util.isInteger(message.index)) - return "index: integer expected"; - if (message.retryAttempt != null && message.hasOwnProperty("retryAttempt")) - if (!$util.isInteger(message.retryAttempt)) - return "retryAttempt: integer expected"; - if (message.phase != null && message.hasOwnProperty("phase")) - switch (message.phase) { - default: - return "phase: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.cacheStatus != null && message.hasOwnProperty("cacheStatus")) - switch (message.cacheStatus) { - default: - return "cacheStatus: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.logs != null && message.hasOwnProperty("logs")) { - if (!Array.isArray(message.logs)) - return "logs: array expected"; - for (var i = 0; i < message.logs.length; ++i) { - var error = $root.flyteidl.core.TaskLog.verify(message.logs[i]); - if (error) - return "logs." + error; - } - } - return null; - }; - - return ExternalResourceInfo; - })(); - - event.ResourcePoolInfo = (function() { - - /** - * Properties of a ResourcePoolInfo. - * @memberof flyteidl.event - * @interface IResourcePoolInfo - * @property {string|null} [allocationToken] ResourcePoolInfo allocationToken - * @property {string|null} [namespace] ResourcePoolInfo namespace - */ - - /** - * Constructs a new ResourcePoolInfo. - * @memberof flyteidl.event - * @classdesc Represents a ResourcePoolInfo. - * @implements IResourcePoolInfo - * @constructor - * @param {flyteidl.event.IResourcePoolInfo=} [properties] Properties to set - */ - function ResourcePoolInfo(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ResourcePoolInfo allocationToken. - * @member {string} allocationToken - * @memberof flyteidl.event.ResourcePoolInfo - * @instance - */ - ResourcePoolInfo.prototype.allocationToken = ""; - - /** - * ResourcePoolInfo namespace. - * @member {string} namespace - * @memberof flyteidl.event.ResourcePoolInfo - * @instance - */ - ResourcePoolInfo.prototype.namespace = ""; - - /** - * Creates a new ResourcePoolInfo instance using the specified properties. - * @function create - * @memberof flyteidl.event.ResourcePoolInfo - * @static - * @param {flyteidl.event.IResourcePoolInfo=} [properties] Properties to set - * @returns {flyteidl.event.ResourcePoolInfo} ResourcePoolInfo instance - */ - ResourcePoolInfo.create = function create(properties) { - return new ResourcePoolInfo(properties); - }; - - /** - * Encodes the specified ResourcePoolInfo message. Does not implicitly {@link flyteidl.event.ResourcePoolInfo.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.ResourcePoolInfo - * @static - * @param {flyteidl.event.IResourcePoolInfo} message ResourcePoolInfo message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ResourcePoolInfo.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.allocationToken != null && message.hasOwnProperty("allocationToken")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.allocationToken); - if (message.namespace != null && message.hasOwnProperty("namespace")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.namespace); - return writer; - }; - - /** - * Decodes a ResourcePoolInfo message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.ResourcePoolInfo - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.ResourcePoolInfo} ResourcePoolInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ResourcePoolInfo.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.ResourcePoolInfo(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.allocationToken = reader.string(); - break; - case 2: - message.namespace = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ResourcePoolInfo message. - * @function verify - * @memberof flyteidl.event.ResourcePoolInfo - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ResourcePoolInfo.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.allocationToken != null && message.hasOwnProperty("allocationToken")) - if (!$util.isString(message.allocationToken)) - return "allocationToken: string expected"; - if (message.namespace != null && message.hasOwnProperty("namespace")) - if (!$util.isString(message.namespace)) - return "namespace: string expected"; - return null; - }; - - return ResourcePoolInfo; - })(); - - event.TaskExecutionMetadata = (function() { - - /** - * Properties of a TaskExecutionMetadata. - * @memberof flyteidl.event - * @interface ITaskExecutionMetadata - * @property {string|null} [generatedName] TaskExecutionMetadata generatedName - * @property {Array.|null} [externalResources] TaskExecutionMetadata externalResources - * @property {Array.|null} [resourcePoolInfo] TaskExecutionMetadata resourcePoolInfo - * @property {string|null} [pluginIdentifier] TaskExecutionMetadata pluginIdentifier - * @property {flyteidl.event.TaskExecutionMetadata.InstanceClass|null} [instanceClass] TaskExecutionMetadata instanceClass - */ - - /** - * Constructs a new TaskExecutionMetadata. - * @memberof flyteidl.event - * @classdesc Represents a TaskExecutionMetadata. - * @implements ITaskExecutionMetadata - * @constructor - * @param {flyteidl.event.ITaskExecutionMetadata=} [properties] Properties to set - */ - function TaskExecutionMetadata(properties) { - this.externalResources = []; - this.resourcePoolInfo = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionMetadata generatedName. - * @member {string} generatedName - * @memberof flyteidl.event.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.generatedName = ""; - - /** - * TaskExecutionMetadata externalResources. - * @member {Array.} externalResources - * @memberof flyteidl.event.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.externalResources = $util.emptyArray; - - /** - * TaskExecutionMetadata resourcePoolInfo. - * @member {Array.} resourcePoolInfo - * @memberof flyteidl.event.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.resourcePoolInfo = $util.emptyArray; - - /** - * TaskExecutionMetadata pluginIdentifier. - * @member {string} pluginIdentifier - * @memberof flyteidl.event.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.pluginIdentifier = ""; - - /** - * TaskExecutionMetadata instanceClass. - * @member {flyteidl.event.TaskExecutionMetadata.InstanceClass} instanceClass - * @memberof flyteidl.event.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.instanceClass = 0; - - /** - * Creates a new TaskExecutionMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.event.TaskExecutionMetadata - * @static - * @param {flyteidl.event.ITaskExecutionMetadata=} [properties] Properties to set - * @returns {flyteidl.event.TaskExecutionMetadata} TaskExecutionMetadata instance - */ - TaskExecutionMetadata.create = function create(properties) { - return new TaskExecutionMetadata(properties); - }; - - /** - * Encodes the specified TaskExecutionMetadata message. Does not implicitly {@link flyteidl.event.TaskExecutionMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.event.TaskExecutionMetadata - * @static - * @param {flyteidl.event.ITaskExecutionMetadata} message TaskExecutionMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.generatedName != null && message.hasOwnProperty("generatedName")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.generatedName); - if (message.externalResources != null && message.externalResources.length) - for (var i = 0; i < message.externalResources.length; ++i) - $root.flyteidl.event.ExternalResourceInfo.encode(message.externalResources[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.resourcePoolInfo != null && message.resourcePoolInfo.length) - for (var i = 0; i < message.resourcePoolInfo.length; ++i) - $root.flyteidl.event.ResourcePoolInfo.encode(message.resourcePoolInfo[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.pluginIdentifier != null && message.hasOwnProperty("pluginIdentifier")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.pluginIdentifier); - if (message.instanceClass != null && message.hasOwnProperty("instanceClass")) - writer.uint32(/* id 16, wireType 0 =*/128).int32(message.instanceClass); - return writer; - }; - - /** - * Decodes a TaskExecutionMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.event.TaskExecutionMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.event.TaskExecutionMetadata} TaskExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.event.TaskExecutionMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.generatedName = reader.string(); - break; - case 2: - if (!(message.externalResources && message.externalResources.length)) - message.externalResources = []; - message.externalResources.push($root.flyteidl.event.ExternalResourceInfo.decode(reader, reader.uint32())); - break; - case 3: - if (!(message.resourcePoolInfo && message.resourcePoolInfo.length)) - message.resourcePoolInfo = []; - message.resourcePoolInfo.push($root.flyteidl.event.ResourcePoolInfo.decode(reader, reader.uint32())); - break; - case 4: - message.pluginIdentifier = reader.string(); - break; - case 16: - message.instanceClass = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionMetadata message. - * @function verify - * @memberof flyteidl.event.TaskExecutionMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.generatedName != null && message.hasOwnProperty("generatedName")) - if (!$util.isString(message.generatedName)) - return "generatedName: string expected"; - if (message.externalResources != null && message.hasOwnProperty("externalResources")) { - if (!Array.isArray(message.externalResources)) - return "externalResources: array expected"; - for (var i = 0; i < message.externalResources.length; ++i) { - var error = $root.flyteidl.event.ExternalResourceInfo.verify(message.externalResources[i]); - if (error) - return "externalResources." + error; - } - } - if (message.resourcePoolInfo != null && message.hasOwnProperty("resourcePoolInfo")) { - if (!Array.isArray(message.resourcePoolInfo)) - return "resourcePoolInfo: array expected"; - for (var i = 0; i < message.resourcePoolInfo.length; ++i) { - var error = $root.flyteidl.event.ResourcePoolInfo.verify(message.resourcePoolInfo[i]); - if (error) - return "resourcePoolInfo." + error; - } - } - if (message.pluginIdentifier != null && message.hasOwnProperty("pluginIdentifier")) - if (!$util.isString(message.pluginIdentifier)) - return "pluginIdentifier: string expected"; - if (message.instanceClass != null && message.hasOwnProperty("instanceClass")) - switch (message.instanceClass) { - default: - return "instanceClass: enum value expected"; - case 0: - case 1: - break; - } - return null; - }; - - /** - * InstanceClass enum. - * @name flyteidl.event.TaskExecutionMetadata.InstanceClass - * @enum {string} - * @property {number} DEFAULT=0 DEFAULT value - * @property {number} INTERRUPTIBLE=1 INTERRUPTIBLE value - */ - TaskExecutionMetadata.InstanceClass = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "DEFAULT"] = 0; - values[valuesById[1] = "INTERRUPTIBLE"] = 1; - return values; - })(); - - return TaskExecutionMetadata; - })(); - - return event; - })(); - - flyteidl.admin = (function() { - - /** - * Namespace admin. - * @memberof flyteidl - * @namespace - */ - var admin = {}; - - /** - * State enum. - * @name flyteidl.admin.State - * @enum {string} - * @property {number} RETRYABLE_FAILURE=0 RETRYABLE_FAILURE value - * @property {number} PERMANENT_FAILURE=1 PERMANENT_FAILURE value - * @property {number} PENDING=2 PENDING value - * @property {number} RUNNING=3 RUNNING value - * @property {number} SUCCEEDED=4 SUCCEEDED value - */ - admin.State = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "RETRYABLE_FAILURE"] = 0; - values[valuesById[1] = "PERMANENT_FAILURE"] = 1; - values[valuesById[2] = "PENDING"] = 2; - values[valuesById[3] = "RUNNING"] = 3; - values[valuesById[4] = "SUCCEEDED"] = 4; - return values; - })(); - - admin.TaskExecutionMetadata = (function() { - - /** - * Properties of a TaskExecutionMetadata. - * @memberof flyteidl.admin - * @interface ITaskExecutionMetadata - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [taskExecutionId] TaskExecutionMetadata taskExecutionId - * @property {string|null} [namespace] TaskExecutionMetadata namespace - * @property {Object.|null} [labels] TaskExecutionMetadata labels - * @property {Object.|null} [annotations] TaskExecutionMetadata annotations - * @property {string|null} [k8sServiceAccount] TaskExecutionMetadata k8sServiceAccount - * @property {Object.|null} [environmentVariables] TaskExecutionMetadata environmentVariables - */ - - /** - * Constructs a new TaskExecutionMetadata. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionMetadata. - * @implements ITaskExecutionMetadata - * @constructor - * @param {flyteidl.admin.ITaskExecutionMetadata=} [properties] Properties to set - */ - function TaskExecutionMetadata(properties) { - this.labels = {}; - this.annotations = {}; - this.environmentVariables = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionMetadata taskExecutionId. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} taskExecutionId - * @memberof flyteidl.admin.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.taskExecutionId = null; - - /** - * TaskExecutionMetadata namespace. - * @member {string} namespace - * @memberof flyteidl.admin.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.namespace = ""; - - /** - * TaskExecutionMetadata labels. - * @member {Object.} labels - * @memberof flyteidl.admin.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.labels = $util.emptyObject; - - /** - * TaskExecutionMetadata annotations. - * @member {Object.} annotations - * @memberof flyteidl.admin.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.annotations = $util.emptyObject; - - /** - * TaskExecutionMetadata k8sServiceAccount. - * @member {string} k8sServiceAccount - * @memberof flyteidl.admin.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.k8sServiceAccount = ""; - - /** - * TaskExecutionMetadata environmentVariables. - * @member {Object.} environmentVariables - * @memberof flyteidl.admin.TaskExecutionMetadata - * @instance - */ - TaskExecutionMetadata.prototype.environmentVariables = $util.emptyObject; - - /** - * Creates a new TaskExecutionMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionMetadata - * @static - * @param {flyteidl.admin.ITaskExecutionMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionMetadata} TaskExecutionMetadata instance - */ - TaskExecutionMetadata.create = function create(properties) { - return new TaskExecutionMetadata(properties); - }; - - /** - * Encodes the specified TaskExecutionMetadata message. Does not implicitly {@link flyteidl.admin.TaskExecutionMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionMetadata - * @static - * @param {flyteidl.admin.ITaskExecutionMetadata} message TaskExecutionMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskExecutionId != null && message.hasOwnProperty("taskExecutionId")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.taskExecutionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.namespace != null && message.hasOwnProperty("namespace")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.namespace); - if (message.labels != null && message.hasOwnProperty("labels")) - for (var keys = Object.keys(message.labels), i = 0; i < keys.length; ++i) - writer.uint32(/* id 3, wireType 2 =*/26).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.labels[keys[i]]).ldelim(); - if (message.annotations != null && message.hasOwnProperty("annotations")) - for (var keys = Object.keys(message.annotations), i = 0; i < keys.length; ++i) - writer.uint32(/* id 4, wireType 2 =*/34).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.annotations[keys[i]]).ldelim(); - if (message.k8sServiceAccount != null && message.hasOwnProperty("k8sServiceAccount")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.k8sServiceAccount); - if (message.environmentVariables != null && message.hasOwnProperty("environmentVariables")) - for (var keys = Object.keys(message.environmentVariables), i = 0; i < keys.length; ++i) - writer.uint32(/* id 6, wireType 2 =*/50).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.environmentVariables[keys[i]]).ldelim(); - return writer; - }; - - /** - * Decodes a TaskExecutionMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionMetadata} TaskExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionMetadata(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskExecutionId = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.namespace = reader.string(); - break; - case 3: - reader.skip().pos++; - if (message.labels === $util.emptyObject) - message.labels = {}; - key = reader.string(); - reader.pos++; - message.labels[key] = reader.string(); - break; - case 4: - reader.skip().pos++; - if (message.annotations === $util.emptyObject) - message.annotations = {}; - key = reader.string(); - reader.pos++; - message.annotations[key] = reader.string(); - break; - case 5: - message.k8sServiceAccount = reader.string(); - break; - case 6: - reader.skip().pos++; - if (message.environmentVariables === $util.emptyObject) - message.environmentVariables = {}; - key = reader.string(); - reader.pos++; - message.environmentVariables[key] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionMetadata message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskExecutionId != null && message.hasOwnProperty("taskExecutionId")) { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.taskExecutionId); - if (error) - return "taskExecutionId." + error; - } - if (message.namespace != null && message.hasOwnProperty("namespace")) - if (!$util.isString(message.namespace)) - return "namespace: string expected"; - if (message.labels != null && message.hasOwnProperty("labels")) { - if (!$util.isObject(message.labels)) - return "labels: object expected"; - var key = Object.keys(message.labels); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.labels[key[i]])) - return "labels: string{k:string} expected"; - } - if (message.annotations != null && message.hasOwnProperty("annotations")) { - if (!$util.isObject(message.annotations)) - return "annotations: object expected"; - var key = Object.keys(message.annotations); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.annotations[key[i]])) - return "annotations: string{k:string} expected"; - } - if (message.k8sServiceAccount != null && message.hasOwnProperty("k8sServiceAccount")) - if (!$util.isString(message.k8sServiceAccount)) - return "k8sServiceAccount: string expected"; - if (message.environmentVariables != null && message.hasOwnProperty("environmentVariables")) { - if (!$util.isObject(message.environmentVariables)) - return "environmentVariables: object expected"; - var key = Object.keys(message.environmentVariables); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.environmentVariables[key[i]])) - return "environmentVariables: string{k:string} expected"; - } - return null; - }; - - return TaskExecutionMetadata; - })(); - - admin.CreateTaskRequest = (function() { - - /** - * Properties of a CreateTaskRequest. - * @memberof flyteidl.admin - * @interface ICreateTaskRequest - * @property {flyteidl.core.ILiteralMap|null} [inputs] CreateTaskRequest inputs - * @property {flyteidl.core.ITaskTemplate|null} [template] CreateTaskRequest template - * @property {string|null} [outputPrefix] CreateTaskRequest outputPrefix - * @property {flyteidl.admin.ITaskExecutionMetadata|null} [taskExecutionMetadata] CreateTaskRequest taskExecutionMetadata - */ - - /** - * Constructs a new CreateTaskRequest. - * @memberof flyteidl.admin - * @classdesc Represents a CreateTaskRequest. - * @implements ICreateTaskRequest - * @constructor - * @param {flyteidl.admin.ICreateTaskRequest=} [properties] Properties to set - */ - function CreateTaskRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateTaskRequest inputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} inputs - * @memberof flyteidl.admin.CreateTaskRequest - * @instance - */ - CreateTaskRequest.prototype.inputs = null; - - /** - * CreateTaskRequest template. - * @member {flyteidl.core.ITaskTemplate|null|undefined} template - * @memberof flyteidl.admin.CreateTaskRequest - * @instance - */ - CreateTaskRequest.prototype.template = null; - - /** - * CreateTaskRequest outputPrefix. - * @member {string} outputPrefix - * @memberof flyteidl.admin.CreateTaskRequest - * @instance - */ - CreateTaskRequest.prototype.outputPrefix = ""; - - /** - * CreateTaskRequest taskExecutionMetadata. - * @member {flyteidl.admin.ITaskExecutionMetadata|null|undefined} taskExecutionMetadata - * @memberof flyteidl.admin.CreateTaskRequest - * @instance - */ - CreateTaskRequest.prototype.taskExecutionMetadata = null; - - /** - * Creates a new CreateTaskRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.CreateTaskRequest - * @static - * @param {flyteidl.admin.ICreateTaskRequest=} [properties] Properties to set - * @returns {flyteidl.admin.CreateTaskRequest} CreateTaskRequest instance - */ - CreateTaskRequest.create = function create(properties) { - return new CreateTaskRequest(properties); - }; - - /** - * Encodes the specified CreateTaskRequest message. Does not implicitly {@link flyteidl.admin.CreateTaskRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.CreateTaskRequest - * @static - * @param {flyteidl.admin.ICreateTaskRequest} message CreateTaskRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateTaskRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - $root.flyteidl.core.LiteralMap.encode(message.inputs, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.template != null && message.hasOwnProperty("template")) - $root.flyteidl.core.TaskTemplate.encode(message.template, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.outputPrefix != null && message.hasOwnProperty("outputPrefix")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.outputPrefix); - if (message.taskExecutionMetadata != null && message.hasOwnProperty("taskExecutionMetadata")) - $root.flyteidl.admin.TaskExecutionMetadata.encode(message.taskExecutionMetadata, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CreateTaskRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.CreateTaskRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.CreateTaskRequest} CreateTaskRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateTaskRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.CreateTaskRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.inputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 2: - message.template = $root.flyteidl.core.TaskTemplate.decode(reader, reader.uint32()); - break; - case 3: - message.outputPrefix = reader.string(); - break; - case 4: - message.taskExecutionMetadata = $root.flyteidl.admin.TaskExecutionMetadata.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateTaskRequest message. - * @function verify - * @memberof flyteidl.admin.CreateTaskRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateTaskRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.inputs != null && message.hasOwnProperty("inputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.inputs); - if (error) - return "inputs." + error; - } - if (message.template != null && message.hasOwnProperty("template")) { - var error = $root.flyteidl.core.TaskTemplate.verify(message.template); - if (error) - return "template." + error; - } - if (message.outputPrefix != null && message.hasOwnProperty("outputPrefix")) - if (!$util.isString(message.outputPrefix)) - return "outputPrefix: string expected"; - if (message.taskExecutionMetadata != null && message.hasOwnProperty("taskExecutionMetadata")) { - var error = $root.flyteidl.admin.TaskExecutionMetadata.verify(message.taskExecutionMetadata); - if (error) - return "taskExecutionMetadata." + error; - } - return null; - }; - - return CreateTaskRequest; - })(); - - admin.CreateTaskResponse = (function() { - - /** - * Properties of a CreateTaskResponse. - * @memberof flyteidl.admin - * @interface ICreateTaskResponse - * @property {Uint8Array|null} [resourceMeta] CreateTaskResponse resourceMeta - * @property {flyteidl.admin.IResource|null} [resource] CreateTaskResponse resource - */ - - /** - * Constructs a new CreateTaskResponse. - * @memberof flyteidl.admin - * @classdesc Represents a CreateTaskResponse. - * @implements ICreateTaskResponse - * @constructor - * @param {flyteidl.admin.ICreateTaskResponse=} [properties] Properties to set - */ - function CreateTaskResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateTaskResponse resourceMeta. - * @member {Uint8Array} resourceMeta - * @memberof flyteidl.admin.CreateTaskResponse - * @instance - */ - CreateTaskResponse.prototype.resourceMeta = $util.newBuffer([]); - - /** - * CreateTaskResponse resource. - * @member {flyteidl.admin.IResource|null|undefined} resource - * @memberof flyteidl.admin.CreateTaskResponse - * @instance - */ - CreateTaskResponse.prototype.resource = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * CreateTaskResponse res. - * @member {"resourceMeta"|"resource"|undefined} res - * @memberof flyteidl.admin.CreateTaskResponse - * @instance - */ - Object.defineProperty(CreateTaskResponse.prototype, "res", { - get: $util.oneOfGetter($oneOfFields = ["resourceMeta", "resource"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new CreateTaskResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.CreateTaskResponse - * @static - * @param {flyteidl.admin.ICreateTaskResponse=} [properties] Properties to set - * @returns {flyteidl.admin.CreateTaskResponse} CreateTaskResponse instance - */ - CreateTaskResponse.create = function create(properties) { - return new CreateTaskResponse(properties); - }; - - /** - * Encodes the specified CreateTaskResponse message. Does not implicitly {@link flyteidl.admin.CreateTaskResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.CreateTaskResponse - * @static - * @param {flyteidl.admin.ICreateTaskResponse} message CreateTaskResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateTaskResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - writer.uint32(/* id 1, wireType 2 =*/10).bytes(message.resourceMeta); - if (message.resource != null && message.hasOwnProperty("resource")) - $root.flyteidl.admin.Resource.encode(message.resource, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CreateTaskResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.CreateTaskResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.CreateTaskResponse} CreateTaskResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateTaskResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.CreateTaskResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resourceMeta = reader.bytes(); - break; - case 2: - message.resource = $root.flyteidl.admin.Resource.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateTaskResponse message. - * @function verify - * @memberof flyteidl.admin.CreateTaskResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateTaskResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) { - properties.res = 1; - if (!(message.resourceMeta && typeof message.resourceMeta.length === "number" || $util.isString(message.resourceMeta))) - return "resourceMeta: buffer expected"; - } - if (message.resource != null && message.hasOwnProperty("resource")) { - if (properties.res === 1) - return "res: multiple values"; - properties.res = 1; - { - var error = $root.flyteidl.admin.Resource.verify(message.resource); - if (error) - return "resource." + error; - } - } - return null; - }; - - return CreateTaskResponse; - })(); - - admin.GetTaskRequest = (function() { - - /** - * Properties of a GetTaskRequest. - * @memberof flyteidl.admin - * @interface IGetTaskRequest - * @property {string|null} [taskType] GetTaskRequest taskType - * @property {Uint8Array|null} [resourceMeta] GetTaskRequest resourceMeta - */ - - /** - * Constructs a new GetTaskRequest. - * @memberof flyteidl.admin - * @classdesc Represents a GetTaskRequest. - * @implements IGetTaskRequest - * @constructor - * @param {flyteidl.admin.IGetTaskRequest=} [properties] Properties to set - */ - function GetTaskRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetTaskRequest taskType. - * @member {string} taskType - * @memberof flyteidl.admin.GetTaskRequest - * @instance - */ - GetTaskRequest.prototype.taskType = ""; - - /** - * GetTaskRequest resourceMeta. - * @member {Uint8Array} resourceMeta - * @memberof flyteidl.admin.GetTaskRequest - * @instance - */ - GetTaskRequest.prototype.resourceMeta = $util.newBuffer([]); - - /** - * Creates a new GetTaskRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetTaskRequest - * @static - * @param {flyteidl.admin.IGetTaskRequest=} [properties] Properties to set - * @returns {flyteidl.admin.GetTaskRequest} GetTaskRequest instance - */ - GetTaskRequest.create = function create(properties) { - return new GetTaskRequest(properties); - }; - - /** - * Encodes the specified GetTaskRequest message. Does not implicitly {@link flyteidl.admin.GetTaskRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetTaskRequest - * @static - * @param {flyteidl.admin.IGetTaskRequest} message GetTaskRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetTaskRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.taskType); - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - writer.uint32(/* id 2, wireType 2 =*/18).bytes(message.resourceMeta); - return writer; - }; - - /** - * Decodes a GetTaskRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetTaskRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetTaskRequest} GetTaskRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetTaskRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetTaskRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskType = reader.string(); - break; - case 2: - message.resourceMeta = reader.bytes(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetTaskRequest message. - * @function verify - * @memberof flyteidl.admin.GetTaskRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetTaskRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - if (!(message.resourceMeta && typeof message.resourceMeta.length === "number" || $util.isString(message.resourceMeta))) - return "resourceMeta: buffer expected"; - return null; - }; - - return GetTaskRequest; - })(); - - admin.GetTaskResponse = (function() { - - /** - * Properties of a GetTaskResponse. - * @memberof flyteidl.admin - * @interface IGetTaskResponse - * @property {flyteidl.admin.IResource|null} [resource] GetTaskResponse resource - * @property {Array.|null} [logLinks] GetTaskResponse logLinks - */ - - /** - * Constructs a new GetTaskResponse. - * @memberof flyteidl.admin - * @classdesc Represents a GetTaskResponse. - * @implements IGetTaskResponse - * @constructor - * @param {flyteidl.admin.IGetTaskResponse=} [properties] Properties to set - */ - function GetTaskResponse(properties) { - this.logLinks = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetTaskResponse resource. - * @member {flyteidl.admin.IResource|null|undefined} resource - * @memberof flyteidl.admin.GetTaskResponse - * @instance - */ - GetTaskResponse.prototype.resource = null; - - /** - * GetTaskResponse logLinks. - * @member {Array.} logLinks - * @memberof flyteidl.admin.GetTaskResponse - * @instance - */ - GetTaskResponse.prototype.logLinks = $util.emptyArray; - - /** - * Creates a new GetTaskResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetTaskResponse - * @static - * @param {flyteidl.admin.IGetTaskResponse=} [properties] Properties to set - * @returns {flyteidl.admin.GetTaskResponse} GetTaskResponse instance - */ - GetTaskResponse.create = function create(properties) { - return new GetTaskResponse(properties); - }; - - /** - * Encodes the specified GetTaskResponse message. Does not implicitly {@link flyteidl.admin.GetTaskResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetTaskResponse - * @static - * @param {flyteidl.admin.IGetTaskResponse} message GetTaskResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetTaskResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resource != null && message.hasOwnProperty("resource")) - $root.flyteidl.admin.Resource.encode(message.resource, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.logLinks != null && message.logLinks.length) - for (var i = 0; i < message.logLinks.length; ++i) - $root.flyteidl.core.TaskLog.encode(message.logLinks[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GetTaskResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetTaskResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetTaskResponse} GetTaskResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetTaskResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetTaskResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resource = $root.flyteidl.admin.Resource.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.logLinks && message.logLinks.length)) - message.logLinks = []; - message.logLinks.push($root.flyteidl.core.TaskLog.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetTaskResponse message. - * @function verify - * @memberof flyteidl.admin.GetTaskResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetTaskResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resource != null && message.hasOwnProperty("resource")) { - var error = $root.flyteidl.admin.Resource.verify(message.resource); - if (error) - return "resource." + error; - } - if (message.logLinks != null && message.hasOwnProperty("logLinks")) { - if (!Array.isArray(message.logLinks)) - return "logLinks: array expected"; - for (var i = 0; i < message.logLinks.length; ++i) { - var error = $root.flyteidl.core.TaskLog.verify(message.logLinks[i]); - if (error) - return "logLinks." + error; - } - } - return null; - }; - - return GetTaskResponse; - })(); - - admin.Resource = (function() { - - /** - * Properties of a Resource. - * @memberof flyteidl.admin - * @interface IResource - * @property {flyteidl.admin.State|null} [state] Resource state - * @property {flyteidl.core.ILiteralMap|null} [outputs] Resource outputs - * @property {string|null} [message] Resource message - * @property {Array.|null} [logLinks] Resource logLinks - */ - - /** - * Constructs a new Resource. - * @memberof flyteidl.admin - * @classdesc Represents a Resource. - * @implements IResource - * @constructor - * @param {flyteidl.admin.IResource=} [properties] Properties to set - */ - function Resource(properties) { - this.logLinks = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Resource state. - * @member {flyteidl.admin.State} state - * @memberof flyteidl.admin.Resource - * @instance - */ - Resource.prototype.state = 0; - - /** - * Resource outputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} outputs - * @memberof flyteidl.admin.Resource - * @instance - */ - Resource.prototype.outputs = null; - - /** - * Resource message. - * @member {string} message - * @memberof flyteidl.admin.Resource - * @instance - */ - Resource.prototype.message = ""; - - /** - * Resource logLinks. - * @member {Array.} logLinks - * @memberof flyteidl.admin.Resource - * @instance - */ - Resource.prototype.logLinks = $util.emptyArray; - - /** - * Creates a new Resource instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Resource - * @static - * @param {flyteidl.admin.IResource=} [properties] Properties to set - * @returns {flyteidl.admin.Resource} Resource instance - */ - Resource.create = function create(properties) { - return new Resource(properties); - }; - - /** - * Encodes the specified Resource message. Does not implicitly {@link flyteidl.admin.Resource.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Resource - * @static - * @param {flyteidl.admin.IResource} message Resource message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Resource.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.state); - if (message.outputs != null && message.hasOwnProperty("outputs")) - $root.flyteidl.core.LiteralMap.encode(message.outputs, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.message != null && message.hasOwnProperty("message")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.message); - if (message.logLinks != null && message.logLinks.length) - for (var i = 0; i < message.logLinks.length; ++i) - $root.flyteidl.core.TaskLog.encode(message.logLinks[i], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Resource message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Resource - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Resource} Resource - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Resource.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Resource(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.state = reader.int32(); - break; - case 2: - message.outputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 3: - message.message = reader.string(); - break; - case 4: - if (!(message.logLinks && message.logLinks.length)) - message.logLinks = []; - message.logLinks.push($root.flyteidl.core.TaskLog.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Resource message. - * @function verify - * @memberof flyteidl.admin.Resource - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Resource.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.outputs != null && message.hasOwnProperty("outputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.outputs); - if (error) - return "outputs." + error; - } - if (message.message != null && message.hasOwnProperty("message")) - if (!$util.isString(message.message)) - return "message: string expected"; - if (message.logLinks != null && message.hasOwnProperty("logLinks")) { - if (!Array.isArray(message.logLinks)) - return "logLinks: array expected"; - for (var i = 0; i < message.logLinks.length; ++i) { - var error = $root.flyteidl.core.TaskLog.verify(message.logLinks[i]); - if (error) - return "logLinks." + error; - } - } - return null; - }; - - return Resource; - })(); - - admin.DeleteTaskRequest = (function() { - - /** - * Properties of a DeleteTaskRequest. - * @memberof flyteidl.admin - * @interface IDeleteTaskRequest - * @property {string|null} [taskType] DeleteTaskRequest taskType - * @property {Uint8Array|null} [resourceMeta] DeleteTaskRequest resourceMeta - */ - - /** - * Constructs a new DeleteTaskRequest. - * @memberof flyteidl.admin - * @classdesc Represents a DeleteTaskRequest. - * @implements IDeleteTaskRequest - * @constructor - * @param {flyteidl.admin.IDeleteTaskRequest=} [properties] Properties to set - */ - function DeleteTaskRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DeleteTaskRequest taskType. - * @member {string} taskType - * @memberof flyteidl.admin.DeleteTaskRequest - * @instance - */ - DeleteTaskRequest.prototype.taskType = ""; - - /** - * DeleteTaskRequest resourceMeta. - * @member {Uint8Array} resourceMeta - * @memberof flyteidl.admin.DeleteTaskRequest - * @instance - */ - DeleteTaskRequest.prototype.resourceMeta = $util.newBuffer([]); - - /** - * Creates a new DeleteTaskRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.DeleteTaskRequest - * @static - * @param {flyteidl.admin.IDeleteTaskRequest=} [properties] Properties to set - * @returns {flyteidl.admin.DeleteTaskRequest} DeleteTaskRequest instance - */ - DeleteTaskRequest.create = function create(properties) { - return new DeleteTaskRequest(properties); - }; - - /** - * Encodes the specified DeleteTaskRequest message. Does not implicitly {@link flyteidl.admin.DeleteTaskRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.DeleteTaskRequest - * @static - * @param {flyteidl.admin.IDeleteTaskRequest} message DeleteTaskRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DeleteTaskRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.taskType); - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - writer.uint32(/* id 2, wireType 2 =*/18).bytes(message.resourceMeta); - return writer; - }; - - /** - * Decodes a DeleteTaskRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.DeleteTaskRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.DeleteTaskRequest} DeleteTaskRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DeleteTaskRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.DeleteTaskRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskType = reader.string(); - break; - case 2: - message.resourceMeta = reader.bytes(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DeleteTaskRequest message. - * @function verify - * @memberof flyteidl.admin.DeleteTaskRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DeleteTaskRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - if (!(message.resourceMeta && typeof message.resourceMeta.length === "number" || $util.isString(message.resourceMeta))) - return "resourceMeta: buffer expected"; - return null; - }; - - return DeleteTaskRequest; - })(); - - admin.DeleteTaskResponse = (function() { - - /** - * Properties of a DeleteTaskResponse. - * @memberof flyteidl.admin - * @interface IDeleteTaskResponse - */ - - /** - * Constructs a new DeleteTaskResponse. - * @memberof flyteidl.admin - * @classdesc Represents a DeleteTaskResponse. - * @implements IDeleteTaskResponse - * @constructor - * @param {flyteidl.admin.IDeleteTaskResponse=} [properties] Properties to set - */ - function DeleteTaskResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new DeleteTaskResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.DeleteTaskResponse - * @static - * @param {flyteidl.admin.IDeleteTaskResponse=} [properties] Properties to set - * @returns {flyteidl.admin.DeleteTaskResponse} DeleteTaskResponse instance - */ - DeleteTaskResponse.create = function create(properties) { - return new DeleteTaskResponse(properties); - }; - - /** - * Encodes the specified DeleteTaskResponse message. Does not implicitly {@link flyteidl.admin.DeleteTaskResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.DeleteTaskResponse - * @static - * @param {flyteidl.admin.IDeleteTaskResponse} message DeleteTaskResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DeleteTaskResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a DeleteTaskResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.DeleteTaskResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.DeleteTaskResponse} DeleteTaskResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DeleteTaskResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.DeleteTaskResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DeleteTaskResponse message. - * @function verify - * @memberof flyteidl.admin.DeleteTaskResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DeleteTaskResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return DeleteTaskResponse; - })(); - - admin.Agent = (function() { - - /** - * Properties of an Agent. - * @memberof flyteidl.admin - * @interface IAgent - * @property {string|null} [name] Agent name - * @property {Array.|null} [supportedTaskTypes] Agent supportedTaskTypes - */ - - /** - * Constructs a new Agent. - * @memberof flyteidl.admin - * @classdesc Represents an Agent. - * @implements IAgent - * @constructor - * @param {flyteidl.admin.IAgent=} [properties] Properties to set - */ - function Agent(properties) { - this.supportedTaskTypes = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Agent name. - * @member {string} name - * @memberof flyteidl.admin.Agent - * @instance - */ - Agent.prototype.name = ""; - - /** - * Agent supportedTaskTypes. - * @member {Array.} supportedTaskTypes - * @memberof flyteidl.admin.Agent - * @instance - */ - Agent.prototype.supportedTaskTypes = $util.emptyArray; - - /** - * Creates a new Agent instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Agent - * @static - * @param {flyteidl.admin.IAgent=} [properties] Properties to set - * @returns {flyteidl.admin.Agent} Agent instance - */ - Agent.create = function create(properties) { - return new Agent(properties); - }; - - /** - * Encodes the specified Agent message. Does not implicitly {@link flyteidl.admin.Agent.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Agent - * @static - * @param {flyteidl.admin.IAgent} message Agent message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Agent.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.supportedTaskTypes != null && message.supportedTaskTypes.length) - for (var i = 0; i < message.supportedTaskTypes.length; ++i) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.supportedTaskTypes[i]); - return writer; - }; - - /** - * Decodes an Agent message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Agent - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Agent} Agent - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Agent.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Agent(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - if (!(message.supportedTaskTypes && message.supportedTaskTypes.length)) - message.supportedTaskTypes = []; - message.supportedTaskTypes.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Agent message. - * @function verify - * @memberof flyteidl.admin.Agent - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Agent.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.supportedTaskTypes != null && message.hasOwnProperty("supportedTaskTypes")) { - if (!Array.isArray(message.supportedTaskTypes)) - return "supportedTaskTypes: array expected"; - for (var i = 0; i < message.supportedTaskTypes.length; ++i) - if (!$util.isString(message.supportedTaskTypes[i])) - return "supportedTaskTypes: string[] expected"; - } - return null; - }; - - return Agent; - })(); - - admin.GetAgentRequest = (function() { - - /** - * Properties of a GetAgentRequest. - * @memberof flyteidl.admin - * @interface IGetAgentRequest - * @property {string|null} [name] GetAgentRequest name - */ - - /** - * Constructs a new GetAgentRequest. - * @memberof flyteidl.admin - * @classdesc Represents a GetAgentRequest. - * @implements IGetAgentRequest - * @constructor - * @param {flyteidl.admin.IGetAgentRequest=} [properties] Properties to set - */ - function GetAgentRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetAgentRequest name. - * @member {string} name - * @memberof flyteidl.admin.GetAgentRequest - * @instance - */ - GetAgentRequest.prototype.name = ""; - - /** - * Creates a new GetAgentRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetAgentRequest - * @static - * @param {flyteidl.admin.IGetAgentRequest=} [properties] Properties to set - * @returns {flyteidl.admin.GetAgentRequest} GetAgentRequest instance - */ - GetAgentRequest.create = function create(properties) { - return new GetAgentRequest(properties); - }; - - /** - * Encodes the specified GetAgentRequest message. Does not implicitly {@link flyteidl.admin.GetAgentRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetAgentRequest - * @static - * @param {flyteidl.admin.IGetAgentRequest} message GetAgentRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetAgentRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - return writer; - }; - - /** - * Decodes a GetAgentRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetAgentRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetAgentRequest} GetAgentRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetAgentRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetAgentRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetAgentRequest message. - * @function verify - * @memberof flyteidl.admin.GetAgentRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetAgentRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - return null; - }; - - return GetAgentRequest; - })(); - - admin.GetAgentResponse = (function() { - - /** - * Properties of a GetAgentResponse. - * @memberof flyteidl.admin - * @interface IGetAgentResponse - * @property {flyteidl.admin.IAgent|null} [agent] GetAgentResponse agent - */ - - /** - * Constructs a new GetAgentResponse. - * @memberof flyteidl.admin - * @classdesc Represents a GetAgentResponse. - * @implements IGetAgentResponse - * @constructor - * @param {flyteidl.admin.IGetAgentResponse=} [properties] Properties to set - */ - function GetAgentResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetAgentResponse agent. - * @member {flyteidl.admin.IAgent|null|undefined} agent - * @memberof flyteidl.admin.GetAgentResponse - * @instance - */ - GetAgentResponse.prototype.agent = null; - - /** - * Creates a new GetAgentResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetAgentResponse - * @static - * @param {flyteidl.admin.IGetAgentResponse=} [properties] Properties to set - * @returns {flyteidl.admin.GetAgentResponse} GetAgentResponse instance - */ - GetAgentResponse.create = function create(properties) { - return new GetAgentResponse(properties); - }; - - /** - * Encodes the specified GetAgentResponse message. Does not implicitly {@link flyteidl.admin.GetAgentResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetAgentResponse - * @static - * @param {flyteidl.admin.IGetAgentResponse} message GetAgentResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetAgentResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.agent != null && message.hasOwnProperty("agent")) - $root.flyteidl.admin.Agent.encode(message.agent, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GetAgentResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetAgentResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetAgentResponse} GetAgentResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetAgentResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetAgentResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.agent = $root.flyteidl.admin.Agent.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetAgentResponse message. - * @function verify - * @memberof flyteidl.admin.GetAgentResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetAgentResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.agent != null && message.hasOwnProperty("agent")) { - var error = $root.flyteidl.admin.Agent.verify(message.agent); - if (error) - return "agent." + error; - } - return null; - }; - - return GetAgentResponse; - })(); - - admin.ListAgentsRequest = (function() { - - /** - * Properties of a ListAgentsRequest. - * @memberof flyteidl.admin - * @interface IListAgentsRequest - */ - - /** - * Constructs a new ListAgentsRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ListAgentsRequest. - * @implements IListAgentsRequest - * @constructor - * @param {flyteidl.admin.IListAgentsRequest=} [properties] Properties to set - */ - function ListAgentsRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ListAgentsRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ListAgentsRequest - * @static - * @param {flyteidl.admin.IListAgentsRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ListAgentsRequest} ListAgentsRequest instance - */ - ListAgentsRequest.create = function create(properties) { - return new ListAgentsRequest(properties); - }; - - /** - * Encodes the specified ListAgentsRequest message. Does not implicitly {@link flyteidl.admin.ListAgentsRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ListAgentsRequest - * @static - * @param {flyteidl.admin.IListAgentsRequest} message ListAgentsRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ListAgentsRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a ListAgentsRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ListAgentsRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ListAgentsRequest} ListAgentsRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ListAgentsRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ListAgentsRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ListAgentsRequest message. - * @function verify - * @memberof flyteidl.admin.ListAgentsRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ListAgentsRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ListAgentsRequest; - })(); - - admin.ListAgentsResponse = (function() { - - /** - * Properties of a ListAgentsResponse. - * @memberof flyteidl.admin - * @interface IListAgentsResponse - * @property {Array.|null} [agents] ListAgentsResponse agents - */ - - /** - * Constructs a new ListAgentsResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ListAgentsResponse. - * @implements IListAgentsResponse - * @constructor - * @param {flyteidl.admin.IListAgentsResponse=} [properties] Properties to set - */ - function ListAgentsResponse(properties) { - this.agents = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ListAgentsResponse agents. - * @member {Array.} agents - * @memberof flyteidl.admin.ListAgentsResponse - * @instance - */ - ListAgentsResponse.prototype.agents = $util.emptyArray; - - /** - * Creates a new ListAgentsResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ListAgentsResponse - * @static - * @param {flyteidl.admin.IListAgentsResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ListAgentsResponse} ListAgentsResponse instance - */ - ListAgentsResponse.create = function create(properties) { - return new ListAgentsResponse(properties); - }; - - /** - * Encodes the specified ListAgentsResponse message. Does not implicitly {@link flyteidl.admin.ListAgentsResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ListAgentsResponse - * @static - * @param {flyteidl.admin.IListAgentsResponse} message ListAgentsResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ListAgentsResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.agents != null && message.agents.length) - for (var i = 0; i < message.agents.length; ++i) - $root.flyteidl.admin.Agent.encode(message.agents[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ListAgentsResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ListAgentsResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ListAgentsResponse} ListAgentsResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ListAgentsResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ListAgentsResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.agents && message.agents.length)) - message.agents = []; - message.agents.push($root.flyteidl.admin.Agent.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ListAgentsResponse message. - * @function verify - * @memberof flyteidl.admin.ListAgentsResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ListAgentsResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.agents != null && message.hasOwnProperty("agents")) { - if (!Array.isArray(message.agents)) - return "agents: array expected"; - for (var i = 0; i < message.agents.length; ++i) { - var error = $root.flyteidl.admin.Agent.verify(message.agents[i]); - if (error) - return "agents." + error; - } - } - return null; - }; - - return ListAgentsResponse; - })(); - - admin.GetTaskMetricsRequest = (function() { - - /** - * Properties of a GetTaskMetricsRequest. - * @memberof flyteidl.admin - * @interface IGetTaskMetricsRequest - * @property {string|null} [taskType] GetTaskMetricsRequest taskType - * @property {Uint8Array|null} [resourceMeta] GetTaskMetricsRequest resourceMeta - * @property {Array.|null} [queries] GetTaskMetricsRequest queries - * @property {google.protobuf.ITimestamp|null} [startTime] GetTaskMetricsRequest startTime - * @property {google.protobuf.ITimestamp|null} [endTime] GetTaskMetricsRequest endTime - * @property {google.protobuf.IDuration|null} [step] GetTaskMetricsRequest step - */ - - /** - * Constructs a new GetTaskMetricsRequest. - * @memberof flyteidl.admin - * @classdesc Represents a GetTaskMetricsRequest. - * @implements IGetTaskMetricsRequest - * @constructor - * @param {flyteidl.admin.IGetTaskMetricsRequest=} [properties] Properties to set - */ - function GetTaskMetricsRequest(properties) { - this.queries = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetTaskMetricsRequest taskType. - * @member {string} taskType - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @instance - */ - GetTaskMetricsRequest.prototype.taskType = ""; - - /** - * GetTaskMetricsRequest resourceMeta. - * @member {Uint8Array} resourceMeta - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @instance - */ - GetTaskMetricsRequest.prototype.resourceMeta = $util.newBuffer([]); - - /** - * GetTaskMetricsRequest queries. - * @member {Array.} queries - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @instance - */ - GetTaskMetricsRequest.prototype.queries = $util.emptyArray; - - /** - * GetTaskMetricsRequest startTime. - * @member {google.protobuf.ITimestamp|null|undefined} startTime - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @instance - */ - GetTaskMetricsRequest.prototype.startTime = null; - - /** - * GetTaskMetricsRequest endTime. - * @member {google.protobuf.ITimestamp|null|undefined} endTime - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @instance - */ - GetTaskMetricsRequest.prototype.endTime = null; - - /** - * GetTaskMetricsRequest step. - * @member {google.protobuf.IDuration|null|undefined} step - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @instance - */ - GetTaskMetricsRequest.prototype.step = null; - - /** - * Creates a new GetTaskMetricsRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @static - * @param {flyteidl.admin.IGetTaskMetricsRequest=} [properties] Properties to set - * @returns {flyteidl.admin.GetTaskMetricsRequest} GetTaskMetricsRequest instance - */ - GetTaskMetricsRequest.create = function create(properties) { - return new GetTaskMetricsRequest(properties); - }; - - /** - * Encodes the specified GetTaskMetricsRequest message. Does not implicitly {@link flyteidl.admin.GetTaskMetricsRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @static - * @param {flyteidl.admin.IGetTaskMetricsRequest} message GetTaskMetricsRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetTaskMetricsRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.taskType); - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - writer.uint32(/* id 2, wireType 2 =*/18).bytes(message.resourceMeta); - if (message.queries != null && message.queries.length) - for (var i = 0; i < message.queries.length; ++i) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.queries[i]); - if (message.startTime != null && message.hasOwnProperty("startTime")) - $root.google.protobuf.Timestamp.encode(message.startTime, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.endTime != null && message.hasOwnProperty("endTime")) - $root.google.protobuf.Timestamp.encode(message.endTime, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.step != null && message.hasOwnProperty("step")) - $root.google.protobuf.Duration.encode(message.step, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GetTaskMetricsRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetTaskMetricsRequest} GetTaskMetricsRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetTaskMetricsRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetTaskMetricsRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskType = reader.string(); - break; - case 2: - message.resourceMeta = reader.bytes(); - break; - case 3: - if (!(message.queries && message.queries.length)) - message.queries = []; - message.queries.push(reader.string()); - break; - case 4: - message.startTime = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 5: - message.endTime = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 6: - message.step = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetTaskMetricsRequest message. - * @function verify - * @memberof flyteidl.admin.GetTaskMetricsRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetTaskMetricsRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - if (!(message.resourceMeta && typeof message.resourceMeta.length === "number" || $util.isString(message.resourceMeta))) - return "resourceMeta: buffer expected"; - if (message.queries != null && message.hasOwnProperty("queries")) { - if (!Array.isArray(message.queries)) - return "queries: array expected"; - for (var i = 0; i < message.queries.length; ++i) - if (!$util.isString(message.queries[i])) - return "queries: string[] expected"; - } - if (message.startTime != null && message.hasOwnProperty("startTime")) { - var error = $root.google.protobuf.Timestamp.verify(message.startTime); - if (error) - return "startTime." + error; - } - if (message.endTime != null && message.hasOwnProperty("endTime")) { - var error = $root.google.protobuf.Timestamp.verify(message.endTime); - if (error) - return "endTime." + error; - } - if (message.step != null && message.hasOwnProperty("step")) { - var error = $root.google.protobuf.Duration.verify(message.step); - if (error) - return "step." + error; - } - return null; - }; - - return GetTaskMetricsRequest; - })(); - - admin.GetTaskMetricsResponse = (function() { - - /** - * Properties of a GetTaskMetricsResponse. - * @memberof flyteidl.admin - * @interface IGetTaskMetricsResponse - * @property {Array.|null} [results] GetTaskMetricsResponse results - */ - - /** - * Constructs a new GetTaskMetricsResponse. - * @memberof flyteidl.admin - * @classdesc Represents a GetTaskMetricsResponse. - * @implements IGetTaskMetricsResponse - * @constructor - * @param {flyteidl.admin.IGetTaskMetricsResponse=} [properties] Properties to set - */ - function GetTaskMetricsResponse(properties) { - this.results = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetTaskMetricsResponse results. - * @member {Array.} results - * @memberof flyteidl.admin.GetTaskMetricsResponse - * @instance - */ - GetTaskMetricsResponse.prototype.results = $util.emptyArray; - - /** - * Creates a new GetTaskMetricsResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetTaskMetricsResponse - * @static - * @param {flyteidl.admin.IGetTaskMetricsResponse=} [properties] Properties to set - * @returns {flyteidl.admin.GetTaskMetricsResponse} GetTaskMetricsResponse instance - */ - GetTaskMetricsResponse.create = function create(properties) { - return new GetTaskMetricsResponse(properties); - }; - - /** - * Encodes the specified GetTaskMetricsResponse message. Does not implicitly {@link flyteidl.admin.GetTaskMetricsResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetTaskMetricsResponse - * @static - * @param {flyteidl.admin.IGetTaskMetricsResponse} message GetTaskMetricsResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetTaskMetricsResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.results != null && message.results.length) - for (var i = 0; i < message.results.length; ++i) - $root.flyteidl.core.ExecutionMetricResult.encode(message.results[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GetTaskMetricsResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetTaskMetricsResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetTaskMetricsResponse} GetTaskMetricsResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetTaskMetricsResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetTaskMetricsResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.results && message.results.length)) - message.results = []; - message.results.push($root.flyteidl.core.ExecutionMetricResult.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetTaskMetricsResponse message. - * @function verify - * @memberof flyteidl.admin.GetTaskMetricsResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetTaskMetricsResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.results != null && message.hasOwnProperty("results")) { - if (!Array.isArray(message.results)) - return "results: array expected"; - for (var i = 0; i < message.results.length; ++i) { - var error = $root.flyteidl.core.ExecutionMetricResult.verify(message.results[i]); - if (error) - return "results." + error; - } - } - return null; - }; - - return GetTaskMetricsResponse; - })(); - - admin.GetTaskLogsRequest = (function() { - - /** - * Properties of a GetTaskLogsRequest. - * @memberof flyteidl.admin - * @interface IGetTaskLogsRequest - * @property {string|null} [taskType] GetTaskLogsRequest taskType - * @property {Uint8Array|null} [resourceMeta] GetTaskLogsRequest resourceMeta - * @property {Long|null} [lines] GetTaskLogsRequest lines - * @property {string|null} [token] GetTaskLogsRequest token - */ - - /** - * Constructs a new GetTaskLogsRequest. - * @memberof flyteidl.admin - * @classdesc Represents a GetTaskLogsRequest. - * @implements IGetTaskLogsRequest - * @constructor - * @param {flyteidl.admin.IGetTaskLogsRequest=} [properties] Properties to set - */ - function GetTaskLogsRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetTaskLogsRequest taskType. - * @member {string} taskType - * @memberof flyteidl.admin.GetTaskLogsRequest - * @instance - */ - GetTaskLogsRequest.prototype.taskType = ""; - - /** - * GetTaskLogsRequest resourceMeta. - * @member {Uint8Array} resourceMeta - * @memberof flyteidl.admin.GetTaskLogsRequest - * @instance - */ - GetTaskLogsRequest.prototype.resourceMeta = $util.newBuffer([]); - - /** - * GetTaskLogsRequest lines. - * @member {Long} lines - * @memberof flyteidl.admin.GetTaskLogsRequest - * @instance - */ - GetTaskLogsRequest.prototype.lines = $util.Long ? $util.Long.fromBits(0,0,true) : 0; - - /** - * GetTaskLogsRequest token. - * @member {string} token - * @memberof flyteidl.admin.GetTaskLogsRequest - * @instance - */ - GetTaskLogsRequest.prototype.token = ""; - - /** - * Creates a new GetTaskLogsRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetTaskLogsRequest - * @static - * @param {flyteidl.admin.IGetTaskLogsRequest=} [properties] Properties to set - * @returns {flyteidl.admin.GetTaskLogsRequest} GetTaskLogsRequest instance - */ - GetTaskLogsRequest.create = function create(properties) { - return new GetTaskLogsRequest(properties); - }; - - /** - * Encodes the specified GetTaskLogsRequest message. Does not implicitly {@link flyteidl.admin.GetTaskLogsRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetTaskLogsRequest - * @static - * @param {flyteidl.admin.IGetTaskLogsRequest} message GetTaskLogsRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetTaskLogsRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.taskType); - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - writer.uint32(/* id 2, wireType 2 =*/18).bytes(message.resourceMeta); - if (message.lines != null && message.hasOwnProperty("lines")) - writer.uint32(/* id 3, wireType 0 =*/24).uint64(message.lines); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.token); - return writer; - }; - - /** - * Decodes a GetTaskLogsRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetTaskLogsRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetTaskLogsRequest} GetTaskLogsRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetTaskLogsRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetTaskLogsRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskType = reader.string(); - break; - case 2: - message.resourceMeta = reader.bytes(); - break; - case 3: - message.lines = reader.uint64(); - break; - case 4: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetTaskLogsRequest message. - * @function verify - * @memberof flyteidl.admin.GetTaskLogsRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetTaskLogsRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.resourceMeta != null && message.hasOwnProperty("resourceMeta")) - if (!(message.resourceMeta && typeof message.resourceMeta.length === "number" || $util.isString(message.resourceMeta))) - return "resourceMeta: buffer expected"; - if (message.lines != null && message.hasOwnProperty("lines")) - if (!$util.isInteger(message.lines) && !(message.lines && $util.isInteger(message.lines.low) && $util.isInteger(message.lines.high))) - return "lines: integer|Long expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return GetTaskLogsRequest; - })(); - - admin.GetTaskLogsResponse = (function() { - - /** - * Properties of a GetTaskLogsResponse. - * @memberof flyteidl.admin - * @interface IGetTaskLogsResponse - * @property {Array.|null} [results] GetTaskLogsResponse results - * @property {string|null} [token] GetTaskLogsResponse token - */ - - /** - * Constructs a new GetTaskLogsResponse. - * @memberof flyteidl.admin - * @classdesc Represents a GetTaskLogsResponse. - * @implements IGetTaskLogsResponse - * @constructor - * @param {flyteidl.admin.IGetTaskLogsResponse=} [properties] Properties to set - */ - function GetTaskLogsResponse(properties) { - this.results = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetTaskLogsResponse results. - * @member {Array.} results - * @memberof flyteidl.admin.GetTaskLogsResponse - * @instance - */ - GetTaskLogsResponse.prototype.results = $util.emptyArray; - - /** - * GetTaskLogsResponse token. - * @member {string} token - * @memberof flyteidl.admin.GetTaskLogsResponse - * @instance - */ - GetTaskLogsResponse.prototype.token = ""; - - /** - * Creates a new GetTaskLogsResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetTaskLogsResponse - * @static - * @param {flyteidl.admin.IGetTaskLogsResponse=} [properties] Properties to set - * @returns {flyteidl.admin.GetTaskLogsResponse} GetTaskLogsResponse instance - */ - GetTaskLogsResponse.create = function create(properties) { - return new GetTaskLogsResponse(properties); - }; - - /** - * Encodes the specified GetTaskLogsResponse message. Does not implicitly {@link flyteidl.admin.GetTaskLogsResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetTaskLogsResponse - * @static - * @param {flyteidl.admin.IGetTaskLogsResponse} message GetTaskLogsResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetTaskLogsResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.results != null && message.results.length) - for (var i = 0; i < message.results.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.results[i]); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a GetTaskLogsResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetTaskLogsResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetTaskLogsResponse} GetTaskLogsResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetTaskLogsResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetTaskLogsResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.results && message.results.length)) - message.results = []; - message.results.push(reader.string()); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetTaskLogsResponse message. - * @function verify - * @memberof flyteidl.admin.GetTaskLogsResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetTaskLogsResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.results != null && message.hasOwnProperty("results")) { - if (!Array.isArray(message.results)) - return "results: array expected"; - for (var i = 0; i < message.results.length; ++i) - if (!$util.isString(message.results[i])) - return "results: string[] expected"; - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return GetTaskLogsResponse; - })(); - - admin.ClusterAssignment = (function() { - - /** - * Properties of a ClusterAssignment. - * @memberof flyteidl.admin - * @interface IClusterAssignment - * @property {string|null} [clusterPoolName] ClusterAssignment clusterPoolName - */ - - /** - * Constructs a new ClusterAssignment. - * @memberof flyteidl.admin - * @classdesc Represents a ClusterAssignment. - * @implements IClusterAssignment - * @constructor - * @param {flyteidl.admin.IClusterAssignment=} [properties] Properties to set - */ - function ClusterAssignment(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ClusterAssignment clusterPoolName. - * @member {string} clusterPoolName - * @memberof flyteidl.admin.ClusterAssignment - * @instance - */ - ClusterAssignment.prototype.clusterPoolName = ""; - - /** - * Creates a new ClusterAssignment instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ClusterAssignment - * @static - * @param {flyteidl.admin.IClusterAssignment=} [properties] Properties to set - * @returns {flyteidl.admin.ClusterAssignment} ClusterAssignment instance - */ - ClusterAssignment.create = function create(properties) { - return new ClusterAssignment(properties); - }; - - /** - * Encodes the specified ClusterAssignment message. Does not implicitly {@link flyteidl.admin.ClusterAssignment.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ClusterAssignment - * @static - * @param {flyteidl.admin.IClusterAssignment} message ClusterAssignment message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ClusterAssignment.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.clusterPoolName != null && message.hasOwnProperty("clusterPoolName")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.clusterPoolName); - return writer; - }; - - /** - * Decodes a ClusterAssignment message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ClusterAssignment - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ClusterAssignment} ClusterAssignment - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ClusterAssignment.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ClusterAssignment(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 3: - message.clusterPoolName = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ClusterAssignment message. - * @function verify - * @memberof flyteidl.admin.ClusterAssignment - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ClusterAssignment.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.clusterPoolName != null && message.hasOwnProperty("clusterPoolName")) - if (!$util.isString(message.clusterPoolName)) - return "clusterPoolName: string expected"; - return null; - }; - - return ClusterAssignment; - })(); - - admin.NamedEntityIdentifier = (function() { - - /** - * Properties of a NamedEntityIdentifier. - * @memberof flyteidl.admin - * @interface INamedEntityIdentifier - * @property {string|null} [project] NamedEntityIdentifier project - * @property {string|null} [domain] NamedEntityIdentifier domain - * @property {string|null} [name] NamedEntityIdentifier name - * @property {string|null} [org] NamedEntityIdentifier org - */ - - /** - * Constructs a new NamedEntityIdentifier. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityIdentifier. - * @implements INamedEntityIdentifier - * @constructor - * @param {flyteidl.admin.INamedEntityIdentifier=} [properties] Properties to set - */ - function NamedEntityIdentifier(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntityIdentifier project. - * @member {string} project - * @memberof flyteidl.admin.NamedEntityIdentifier - * @instance - */ - NamedEntityIdentifier.prototype.project = ""; - - /** - * NamedEntityIdentifier domain. - * @member {string} domain - * @memberof flyteidl.admin.NamedEntityIdentifier - * @instance - */ - NamedEntityIdentifier.prototype.domain = ""; - - /** - * NamedEntityIdentifier name. - * @member {string} name - * @memberof flyteidl.admin.NamedEntityIdentifier - * @instance - */ - NamedEntityIdentifier.prototype.name = ""; - - /** - * NamedEntityIdentifier org. - * @member {string} org - * @memberof flyteidl.admin.NamedEntityIdentifier - * @instance - */ - NamedEntityIdentifier.prototype.org = ""; - - /** - * Creates a new NamedEntityIdentifier instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityIdentifier - * @static - * @param {flyteidl.admin.INamedEntityIdentifier=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityIdentifier} NamedEntityIdentifier instance - */ - NamedEntityIdentifier.create = function create(properties) { - return new NamedEntityIdentifier(properties); - }; - - /** - * Encodes the specified NamedEntityIdentifier message. Does not implicitly {@link flyteidl.admin.NamedEntityIdentifier.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityIdentifier - * @static - * @param {flyteidl.admin.INamedEntityIdentifier} message NamedEntityIdentifier message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityIdentifier.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.name); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.org); - return writer; - }; - - /** - * Decodes a NamedEntityIdentifier message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityIdentifier - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityIdentifier} NamedEntityIdentifier - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityIdentifier.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityIdentifier(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.name = reader.string(); - break; - case 4: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityIdentifier message. - * @function verify - * @memberof flyteidl.admin.NamedEntityIdentifier - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityIdentifier.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return NamedEntityIdentifier; - })(); - - /** - * NamedEntityState enum. - * @name flyteidl.admin.NamedEntityState - * @enum {string} - * @property {number} NAMED_ENTITY_ACTIVE=0 NAMED_ENTITY_ACTIVE value - * @property {number} NAMED_ENTITY_ARCHIVED=1 NAMED_ENTITY_ARCHIVED value - * @property {number} SYSTEM_GENERATED=2 SYSTEM_GENERATED value - */ - admin.NamedEntityState = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "NAMED_ENTITY_ACTIVE"] = 0; - values[valuesById[1] = "NAMED_ENTITY_ARCHIVED"] = 1; - values[valuesById[2] = "SYSTEM_GENERATED"] = 2; - return values; - })(); - - admin.NamedEntityMetadata = (function() { - - /** - * Properties of a NamedEntityMetadata. - * @memberof flyteidl.admin - * @interface INamedEntityMetadata - * @property {string|null} [description] NamedEntityMetadata description - * @property {flyteidl.admin.NamedEntityState|null} [state] NamedEntityMetadata state - */ - - /** - * Constructs a new NamedEntityMetadata. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityMetadata. - * @implements INamedEntityMetadata - * @constructor - * @param {flyteidl.admin.INamedEntityMetadata=} [properties] Properties to set - */ - function NamedEntityMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntityMetadata description. - * @member {string} description - * @memberof flyteidl.admin.NamedEntityMetadata - * @instance - */ - NamedEntityMetadata.prototype.description = ""; - - /** - * NamedEntityMetadata state. - * @member {flyteidl.admin.NamedEntityState} state - * @memberof flyteidl.admin.NamedEntityMetadata - * @instance - */ - NamedEntityMetadata.prototype.state = 0; - - /** - * Creates a new NamedEntityMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityMetadata - * @static - * @param {flyteidl.admin.INamedEntityMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityMetadata} NamedEntityMetadata instance - */ - NamedEntityMetadata.create = function create(properties) { - return new NamedEntityMetadata(properties); - }; - - /** - * Encodes the specified NamedEntityMetadata message. Does not implicitly {@link flyteidl.admin.NamedEntityMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityMetadata - * @static - * @param {flyteidl.admin.INamedEntityMetadata} message NamedEntityMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.description != null && message.hasOwnProperty("description")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.description); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.state); - return writer; - }; - - /** - * Decodes a NamedEntityMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityMetadata} NamedEntityMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.description = reader.string(); - break; - case 2: - message.state = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityMetadata message. - * @function verify - * @memberof flyteidl.admin.NamedEntityMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.description != null && message.hasOwnProperty("description")) - if (!$util.isString(message.description)) - return "description: string expected"; - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - case 2: - break; - } - return null; - }; - - return NamedEntityMetadata; - })(); - - admin.NamedEntity = (function() { - - /** - * Properties of a NamedEntity. - * @memberof flyteidl.admin - * @interface INamedEntity - * @property {flyteidl.core.ResourceType|null} [resourceType] NamedEntity resourceType - * @property {flyteidl.admin.INamedEntityIdentifier|null} [id] NamedEntity id - * @property {flyteidl.admin.INamedEntityMetadata|null} [metadata] NamedEntity metadata - */ - - /** - * Constructs a new NamedEntity. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntity. - * @implements INamedEntity - * @constructor - * @param {flyteidl.admin.INamedEntity=} [properties] Properties to set - */ - function NamedEntity(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntity resourceType. - * @member {flyteidl.core.ResourceType} resourceType - * @memberof flyteidl.admin.NamedEntity - * @instance - */ - NamedEntity.prototype.resourceType = 0; - - /** - * NamedEntity id. - * @member {flyteidl.admin.INamedEntityIdentifier|null|undefined} id - * @memberof flyteidl.admin.NamedEntity - * @instance - */ - NamedEntity.prototype.id = null; - - /** - * NamedEntity metadata. - * @member {flyteidl.admin.INamedEntityMetadata|null|undefined} metadata - * @memberof flyteidl.admin.NamedEntity - * @instance - */ - NamedEntity.prototype.metadata = null; - - /** - * Creates a new NamedEntity instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntity - * @static - * @param {flyteidl.admin.INamedEntity=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntity} NamedEntity instance - */ - NamedEntity.create = function create(properties) { - return new NamedEntity(properties); - }; - - /** - * Encodes the specified NamedEntity message. Does not implicitly {@link flyteidl.admin.NamedEntity.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntity - * @static - * @param {flyteidl.admin.INamedEntity} message NamedEntity message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntity.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.resourceType); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.admin.NamedEntityIdentifier.encode(message.id, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.admin.NamedEntityMetadata.encode(message.metadata, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NamedEntity message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntity - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntity} NamedEntity - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntity.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntity(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resourceType = reader.int32(); - break; - case 2: - message.id = $root.flyteidl.admin.NamedEntityIdentifier.decode(reader, reader.uint32()); - break; - case 3: - message.metadata = $root.flyteidl.admin.NamedEntityMetadata.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntity message. - * @function verify - * @memberof flyteidl.admin.NamedEntity - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntity.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.admin.NamedEntityIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.admin.NamedEntityMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - return null; - }; - - return NamedEntity; - })(); - - admin.Sort = (function() { - - /** - * Properties of a Sort. - * @memberof flyteidl.admin - * @interface ISort - * @property {string|null} [key] Sort key - * @property {flyteidl.admin.Sort.Direction|null} [direction] Sort direction - */ - - /** - * Constructs a new Sort. - * @memberof flyteidl.admin - * @classdesc Represents a Sort. - * @implements ISort - * @constructor - * @param {flyteidl.admin.ISort=} [properties] Properties to set - */ - function Sort(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Sort key. - * @member {string} key - * @memberof flyteidl.admin.Sort - * @instance - */ - Sort.prototype.key = ""; - - /** - * Sort direction. - * @member {flyteidl.admin.Sort.Direction} direction - * @memberof flyteidl.admin.Sort - * @instance - */ - Sort.prototype.direction = 0; - - /** - * Creates a new Sort instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Sort - * @static - * @param {flyteidl.admin.ISort=} [properties] Properties to set - * @returns {flyteidl.admin.Sort} Sort instance - */ - Sort.create = function create(properties) { - return new Sort(properties); - }; - - /** - * Encodes the specified Sort message. Does not implicitly {@link flyteidl.admin.Sort.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Sort - * @static - * @param {flyteidl.admin.ISort} message Sort message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Sort.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.key != null && message.hasOwnProperty("key")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.key); - if (message.direction != null && message.hasOwnProperty("direction")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.direction); - return writer; - }; - - /** - * Decodes a Sort message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Sort - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Sort} Sort - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Sort.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Sort(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.key = reader.string(); - break; - case 2: - message.direction = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Sort message. - * @function verify - * @memberof flyteidl.admin.Sort - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Sort.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.key != null && message.hasOwnProperty("key")) - if (!$util.isString(message.key)) - return "key: string expected"; - if (message.direction != null && message.hasOwnProperty("direction")) - switch (message.direction) { - default: - return "direction: enum value expected"; - case 0: - case 1: - break; - } - return null; - }; - - /** - * Direction enum. - * @name flyteidl.admin.Sort.Direction - * @enum {string} - * @property {number} DESCENDING=0 DESCENDING value - * @property {number} ASCENDING=1 ASCENDING value - */ - Sort.Direction = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "DESCENDING"] = 0; - values[valuesById[1] = "ASCENDING"] = 1; - return values; - })(); - - return Sort; - })(); - - admin.NamedEntityIdentifierListRequest = (function() { - - /** - * Properties of a NamedEntityIdentifierListRequest. - * @memberof flyteidl.admin - * @interface INamedEntityIdentifierListRequest - * @property {string|null} [project] NamedEntityIdentifierListRequest project - * @property {string|null} [domain] NamedEntityIdentifierListRequest domain - * @property {number|null} [limit] NamedEntityIdentifierListRequest limit - * @property {string|null} [token] NamedEntityIdentifierListRequest token - * @property {flyteidl.admin.ISort|null} [sortBy] NamedEntityIdentifierListRequest sortBy - * @property {string|null} [filters] NamedEntityIdentifierListRequest filters - * @property {string|null} [org] NamedEntityIdentifierListRequest org - */ - - /** - * Constructs a new NamedEntityIdentifierListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityIdentifierListRequest. - * @implements INamedEntityIdentifierListRequest - * @constructor - * @param {flyteidl.admin.INamedEntityIdentifierListRequest=} [properties] Properties to set - */ - function NamedEntityIdentifierListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntityIdentifierListRequest project. - * @member {string} project - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @instance - */ - NamedEntityIdentifierListRequest.prototype.project = ""; - - /** - * NamedEntityIdentifierListRequest domain. - * @member {string} domain - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @instance - */ - NamedEntityIdentifierListRequest.prototype.domain = ""; - - /** - * NamedEntityIdentifierListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @instance - */ - NamedEntityIdentifierListRequest.prototype.limit = 0; - - /** - * NamedEntityIdentifierListRequest token. - * @member {string} token - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @instance - */ - NamedEntityIdentifierListRequest.prototype.token = ""; - - /** - * NamedEntityIdentifierListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @instance - */ - NamedEntityIdentifierListRequest.prototype.sortBy = null; - - /** - * NamedEntityIdentifierListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @instance - */ - NamedEntityIdentifierListRequest.prototype.filters = ""; - - /** - * NamedEntityIdentifierListRequest org. - * @member {string} org - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @instance - */ - NamedEntityIdentifierListRequest.prototype.org = ""; - - /** - * Creates a new NamedEntityIdentifierListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @static - * @param {flyteidl.admin.INamedEntityIdentifierListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityIdentifierListRequest} NamedEntityIdentifierListRequest instance - */ - NamedEntityIdentifierListRequest.create = function create(properties) { - return new NamedEntityIdentifierListRequest(properties); - }; - - /** - * Encodes the specified NamedEntityIdentifierListRequest message. Does not implicitly {@link flyteidl.admin.NamedEntityIdentifierListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @static - * @param {flyteidl.admin.INamedEntityIdentifierListRequest} message NamedEntityIdentifierListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityIdentifierListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.token); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.filters); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 7, wireType 2 =*/58).string(message.org); - return writer; - }; - - /** - * Decodes a NamedEntityIdentifierListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityIdentifierListRequest} NamedEntityIdentifierListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityIdentifierListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityIdentifierListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.limit = reader.uint32(); - break; - case 4: - message.token = reader.string(); - break; - case 5: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - case 6: - message.filters = reader.string(); - break; - case 7: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityIdentifierListRequest message. - * @function verify - * @memberof flyteidl.admin.NamedEntityIdentifierListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityIdentifierListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return NamedEntityIdentifierListRequest; - })(); - - admin.NamedEntityListRequest = (function() { - - /** - * Properties of a NamedEntityListRequest. - * @memberof flyteidl.admin - * @interface INamedEntityListRequest - * @property {flyteidl.core.ResourceType|null} [resourceType] NamedEntityListRequest resourceType - * @property {string|null} [project] NamedEntityListRequest project - * @property {string|null} [domain] NamedEntityListRequest domain - * @property {number|null} [limit] NamedEntityListRequest limit - * @property {string|null} [token] NamedEntityListRequest token - * @property {flyteidl.admin.ISort|null} [sortBy] NamedEntityListRequest sortBy - * @property {string|null} [filters] NamedEntityListRequest filters - * @property {string|null} [org] NamedEntityListRequest org - */ - - /** - * Constructs a new NamedEntityListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityListRequest. - * @implements INamedEntityListRequest - * @constructor - * @param {flyteidl.admin.INamedEntityListRequest=} [properties] Properties to set - */ - function NamedEntityListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntityListRequest resourceType. - * @member {flyteidl.core.ResourceType} resourceType - * @memberof flyteidl.admin.NamedEntityListRequest - * @instance - */ - NamedEntityListRequest.prototype.resourceType = 0; - - /** - * NamedEntityListRequest project. - * @member {string} project - * @memberof flyteidl.admin.NamedEntityListRequest - * @instance - */ - NamedEntityListRequest.prototype.project = ""; - - /** - * NamedEntityListRequest domain. - * @member {string} domain - * @memberof flyteidl.admin.NamedEntityListRequest - * @instance - */ - NamedEntityListRequest.prototype.domain = ""; - - /** - * NamedEntityListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.NamedEntityListRequest - * @instance - */ - NamedEntityListRequest.prototype.limit = 0; - - /** - * NamedEntityListRequest token. - * @member {string} token - * @memberof flyteidl.admin.NamedEntityListRequest - * @instance - */ - NamedEntityListRequest.prototype.token = ""; - - /** - * NamedEntityListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.NamedEntityListRequest - * @instance - */ - NamedEntityListRequest.prototype.sortBy = null; - - /** - * NamedEntityListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.NamedEntityListRequest - * @instance - */ - NamedEntityListRequest.prototype.filters = ""; - - /** - * NamedEntityListRequest org. - * @member {string} org - * @memberof flyteidl.admin.NamedEntityListRequest - * @instance - */ - NamedEntityListRequest.prototype.org = ""; - - /** - * Creates a new NamedEntityListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityListRequest - * @static - * @param {flyteidl.admin.INamedEntityListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityListRequest} NamedEntityListRequest instance - */ - NamedEntityListRequest.create = function create(properties) { - return new NamedEntityListRequest(properties); - }; - - /** - * Encodes the specified NamedEntityListRequest message. Does not implicitly {@link flyteidl.admin.NamedEntityListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityListRequest - * @static - * @param {flyteidl.admin.INamedEntityListRequest} message NamedEntityListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.resourceType); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.domain); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 4, wireType 0 =*/32).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.token); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 7, wireType 2 =*/58).string(message.filters); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 8, wireType 2 =*/66).string(message.org); - return writer; - }; - - /** - * Decodes a NamedEntityListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityListRequest} NamedEntityListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resourceType = reader.int32(); - break; - case 2: - message.project = reader.string(); - break; - case 3: - message.domain = reader.string(); - break; - case 4: - message.limit = reader.uint32(); - break; - case 5: - message.token = reader.string(); - break; - case 6: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - case 7: - message.filters = reader.string(); - break; - case 8: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityListRequest message. - * @function verify - * @memberof flyteidl.admin.NamedEntityListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return NamedEntityListRequest; - })(); - - admin.NamedEntityIdentifierList = (function() { - - /** - * Properties of a NamedEntityIdentifierList. - * @memberof flyteidl.admin - * @interface INamedEntityIdentifierList - * @property {Array.|null} [entities] NamedEntityIdentifierList entities - * @property {string|null} [token] NamedEntityIdentifierList token - */ - - /** - * Constructs a new NamedEntityIdentifierList. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityIdentifierList. - * @implements INamedEntityIdentifierList - * @constructor - * @param {flyteidl.admin.INamedEntityIdentifierList=} [properties] Properties to set - */ - function NamedEntityIdentifierList(properties) { - this.entities = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntityIdentifierList entities. - * @member {Array.} entities - * @memberof flyteidl.admin.NamedEntityIdentifierList - * @instance - */ - NamedEntityIdentifierList.prototype.entities = $util.emptyArray; - - /** - * NamedEntityIdentifierList token. - * @member {string} token - * @memberof flyteidl.admin.NamedEntityIdentifierList - * @instance - */ - NamedEntityIdentifierList.prototype.token = ""; - - /** - * Creates a new NamedEntityIdentifierList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityIdentifierList - * @static - * @param {flyteidl.admin.INamedEntityIdentifierList=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityIdentifierList} NamedEntityIdentifierList instance - */ - NamedEntityIdentifierList.create = function create(properties) { - return new NamedEntityIdentifierList(properties); - }; - - /** - * Encodes the specified NamedEntityIdentifierList message. Does not implicitly {@link flyteidl.admin.NamedEntityIdentifierList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityIdentifierList - * @static - * @param {flyteidl.admin.INamedEntityIdentifierList} message NamedEntityIdentifierList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityIdentifierList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.entities != null && message.entities.length) - for (var i = 0; i < message.entities.length; ++i) - $root.flyteidl.admin.NamedEntityIdentifier.encode(message.entities[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a NamedEntityIdentifierList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityIdentifierList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityIdentifierList} NamedEntityIdentifierList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityIdentifierList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityIdentifierList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.entities && message.entities.length)) - message.entities = []; - message.entities.push($root.flyteidl.admin.NamedEntityIdentifier.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityIdentifierList message. - * @function verify - * @memberof flyteidl.admin.NamedEntityIdentifierList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityIdentifierList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.entities != null && message.hasOwnProperty("entities")) { - if (!Array.isArray(message.entities)) - return "entities: array expected"; - for (var i = 0; i < message.entities.length; ++i) { - var error = $root.flyteidl.admin.NamedEntityIdentifier.verify(message.entities[i]); - if (error) - return "entities." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return NamedEntityIdentifierList; - })(); - - admin.NamedEntityList = (function() { - - /** - * Properties of a NamedEntityList. - * @memberof flyteidl.admin - * @interface INamedEntityList - * @property {Array.|null} [entities] NamedEntityList entities - * @property {string|null} [token] NamedEntityList token - */ - - /** - * Constructs a new NamedEntityList. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityList. - * @implements INamedEntityList - * @constructor - * @param {flyteidl.admin.INamedEntityList=} [properties] Properties to set - */ - function NamedEntityList(properties) { - this.entities = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntityList entities. - * @member {Array.} entities - * @memberof flyteidl.admin.NamedEntityList - * @instance - */ - NamedEntityList.prototype.entities = $util.emptyArray; - - /** - * NamedEntityList token. - * @member {string} token - * @memberof flyteidl.admin.NamedEntityList - * @instance - */ - NamedEntityList.prototype.token = ""; - - /** - * Creates a new NamedEntityList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityList - * @static - * @param {flyteidl.admin.INamedEntityList=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityList} NamedEntityList instance - */ - NamedEntityList.create = function create(properties) { - return new NamedEntityList(properties); - }; - - /** - * Encodes the specified NamedEntityList message. Does not implicitly {@link flyteidl.admin.NamedEntityList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityList - * @static - * @param {flyteidl.admin.INamedEntityList} message NamedEntityList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.entities != null && message.entities.length) - for (var i = 0; i < message.entities.length; ++i) - $root.flyteidl.admin.NamedEntity.encode(message.entities[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a NamedEntityList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityList} NamedEntityList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.entities && message.entities.length)) - message.entities = []; - message.entities.push($root.flyteidl.admin.NamedEntity.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityList message. - * @function verify - * @memberof flyteidl.admin.NamedEntityList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.entities != null && message.hasOwnProperty("entities")) { - if (!Array.isArray(message.entities)) - return "entities: array expected"; - for (var i = 0; i < message.entities.length; ++i) { - var error = $root.flyteidl.admin.NamedEntity.verify(message.entities[i]); - if (error) - return "entities." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return NamedEntityList; - })(); - - admin.NamedEntityGetRequest = (function() { - - /** - * Properties of a NamedEntityGetRequest. - * @memberof flyteidl.admin - * @interface INamedEntityGetRequest - * @property {flyteidl.core.ResourceType|null} [resourceType] NamedEntityGetRequest resourceType - * @property {flyteidl.admin.INamedEntityIdentifier|null} [id] NamedEntityGetRequest id - */ - - /** - * Constructs a new NamedEntityGetRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityGetRequest. - * @implements INamedEntityGetRequest - * @constructor - * @param {flyteidl.admin.INamedEntityGetRequest=} [properties] Properties to set - */ - function NamedEntityGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntityGetRequest resourceType. - * @member {flyteidl.core.ResourceType} resourceType - * @memberof flyteidl.admin.NamedEntityGetRequest - * @instance - */ - NamedEntityGetRequest.prototype.resourceType = 0; - - /** - * NamedEntityGetRequest id. - * @member {flyteidl.admin.INamedEntityIdentifier|null|undefined} id - * @memberof flyteidl.admin.NamedEntityGetRequest - * @instance - */ - NamedEntityGetRequest.prototype.id = null; - - /** - * Creates a new NamedEntityGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityGetRequest - * @static - * @param {flyteidl.admin.INamedEntityGetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityGetRequest} NamedEntityGetRequest instance - */ - NamedEntityGetRequest.create = function create(properties) { - return new NamedEntityGetRequest(properties); - }; - - /** - * Encodes the specified NamedEntityGetRequest message. Does not implicitly {@link flyteidl.admin.NamedEntityGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityGetRequest - * @static - * @param {flyteidl.admin.INamedEntityGetRequest} message NamedEntityGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.resourceType); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.admin.NamedEntityIdentifier.encode(message.id, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NamedEntityGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityGetRequest} NamedEntityGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resourceType = reader.int32(); - break; - case 2: - message.id = $root.flyteidl.admin.NamedEntityIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityGetRequest message. - * @function verify - * @memberof flyteidl.admin.NamedEntityGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.admin.NamedEntityIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return NamedEntityGetRequest; - })(); - - admin.NamedEntityUpdateRequest = (function() { - - /** - * Properties of a NamedEntityUpdateRequest. - * @memberof flyteidl.admin - * @interface INamedEntityUpdateRequest - * @property {flyteidl.core.ResourceType|null} [resourceType] NamedEntityUpdateRequest resourceType - * @property {flyteidl.admin.INamedEntityIdentifier|null} [id] NamedEntityUpdateRequest id - * @property {flyteidl.admin.INamedEntityMetadata|null} [metadata] NamedEntityUpdateRequest metadata - */ - - /** - * Constructs a new NamedEntityUpdateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityUpdateRequest. - * @implements INamedEntityUpdateRequest - * @constructor - * @param {flyteidl.admin.INamedEntityUpdateRequest=} [properties] Properties to set - */ - function NamedEntityUpdateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamedEntityUpdateRequest resourceType. - * @member {flyteidl.core.ResourceType} resourceType - * @memberof flyteidl.admin.NamedEntityUpdateRequest - * @instance - */ - NamedEntityUpdateRequest.prototype.resourceType = 0; - - /** - * NamedEntityUpdateRequest id. - * @member {flyteidl.admin.INamedEntityIdentifier|null|undefined} id - * @memberof flyteidl.admin.NamedEntityUpdateRequest - * @instance - */ - NamedEntityUpdateRequest.prototype.id = null; - - /** - * NamedEntityUpdateRequest metadata. - * @member {flyteidl.admin.INamedEntityMetadata|null|undefined} metadata - * @memberof flyteidl.admin.NamedEntityUpdateRequest - * @instance - */ - NamedEntityUpdateRequest.prototype.metadata = null; - - /** - * Creates a new NamedEntityUpdateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityUpdateRequest - * @static - * @param {flyteidl.admin.INamedEntityUpdateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityUpdateRequest} NamedEntityUpdateRequest instance - */ - NamedEntityUpdateRequest.create = function create(properties) { - return new NamedEntityUpdateRequest(properties); - }; - - /** - * Encodes the specified NamedEntityUpdateRequest message. Does not implicitly {@link flyteidl.admin.NamedEntityUpdateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityUpdateRequest - * @static - * @param {flyteidl.admin.INamedEntityUpdateRequest} message NamedEntityUpdateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityUpdateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.resourceType); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.admin.NamedEntityIdentifier.encode(message.id, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.admin.NamedEntityMetadata.encode(message.metadata, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NamedEntityUpdateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityUpdateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityUpdateRequest} NamedEntityUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityUpdateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityUpdateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resourceType = reader.int32(); - break; - case 2: - message.id = $root.flyteidl.admin.NamedEntityIdentifier.decode(reader, reader.uint32()); - break; - case 3: - message.metadata = $root.flyteidl.admin.NamedEntityMetadata.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityUpdateRequest message. - * @function verify - * @memberof flyteidl.admin.NamedEntityUpdateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityUpdateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.admin.NamedEntityIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.admin.NamedEntityMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - return null; - }; - - return NamedEntityUpdateRequest; - })(); - - admin.NamedEntityUpdateResponse = (function() { - - /** - * Properties of a NamedEntityUpdateResponse. - * @memberof flyteidl.admin - * @interface INamedEntityUpdateResponse - */ - - /** - * Constructs a new NamedEntityUpdateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a NamedEntityUpdateResponse. - * @implements INamedEntityUpdateResponse - * @constructor - * @param {flyteidl.admin.INamedEntityUpdateResponse=} [properties] Properties to set - */ - function NamedEntityUpdateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new NamedEntityUpdateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NamedEntityUpdateResponse - * @static - * @param {flyteidl.admin.INamedEntityUpdateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.NamedEntityUpdateResponse} NamedEntityUpdateResponse instance - */ - NamedEntityUpdateResponse.create = function create(properties) { - return new NamedEntityUpdateResponse(properties); - }; - - /** - * Encodes the specified NamedEntityUpdateResponse message. Does not implicitly {@link flyteidl.admin.NamedEntityUpdateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NamedEntityUpdateResponse - * @static - * @param {flyteidl.admin.INamedEntityUpdateResponse} message NamedEntityUpdateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamedEntityUpdateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a NamedEntityUpdateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NamedEntityUpdateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NamedEntityUpdateResponse} NamedEntityUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamedEntityUpdateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NamedEntityUpdateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NamedEntityUpdateResponse message. - * @function verify - * @memberof flyteidl.admin.NamedEntityUpdateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamedEntityUpdateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return NamedEntityUpdateResponse; - })(); - - admin.ObjectGetRequest = (function() { - - /** - * Properties of an ObjectGetRequest. - * @memberof flyteidl.admin - * @interface IObjectGetRequest - * @property {flyteidl.core.IIdentifier|null} [id] ObjectGetRequest id - */ - - /** - * Constructs a new ObjectGetRequest. - * @memberof flyteidl.admin - * @classdesc Represents an ObjectGetRequest. - * @implements IObjectGetRequest - * @constructor - * @param {flyteidl.admin.IObjectGetRequest=} [properties] Properties to set - */ - function ObjectGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ObjectGetRequest id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.ObjectGetRequest - * @instance - */ - ObjectGetRequest.prototype.id = null; - - /** - * Creates a new ObjectGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ObjectGetRequest - * @static - * @param {flyteidl.admin.IObjectGetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ObjectGetRequest} ObjectGetRequest instance - */ - ObjectGetRequest.create = function create(properties) { - return new ObjectGetRequest(properties); - }; - - /** - * Encodes the specified ObjectGetRequest message. Does not implicitly {@link flyteidl.admin.ObjectGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ObjectGetRequest - * @static - * @param {flyteidl.admin.IObjectGetRequest} message ObjectGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ObjectGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ObjectGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ObjectGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ObjectGetRequest} ObjectGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ObjectGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ObjectGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ObjectGetRequest message. - * @function verify - * @memberof flyteidl.admin.ObjectGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ObjectGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return ObjectGetRequest; - })(); - - admin.ResourceListRequest = (function() { - - /** - * Properties of a ResourceListRequest. - * @memberof flyteidl.admin - * @interface IResourceListRequest - * @property {flyteidl.admin.INamedEntityIdentifier|null} [id] ResourceListRequest id - * @property {number|null} [limit] ResourceListRequest limit - * @property {string|null} [token] ResourceListRequest token - * @property {string|null} [filters] ResourceListRequest filters - * @property {flyteidl.admin.ISort|null} [sortBy] ResourceListRequest sortBy - */ - - /** - * Constructs a new ResourceListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ResourceListRequest. - * @implements IResourceListRequest - * @constructor - * @param {flyteidl.admin.IResourceListRequest=} [properties] Properties to set - */ - function ResourceListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ResourceListRequest id. - * @member {flyteidl.admin.INamedEntityIdentifier|null|undefined} id - * @memberof flyteidl.admin.ResourceListRequest - * @instance - */ - ResourceListRequest.prototype.id = null; - - /** - * ResourceListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.ResourceListRequest - * @instance - */ - ResourceListRequest.prototype.limit = 0; - - /** - * ResourceListRequest token. - * @member {string} token - * @memberof flyteidl.admin.ResourceListRequest - * @instance - */ - ResourceListRequest.prototype.token = ""; - - /** - * ResourceListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.ResourceListRequest - * @instance - */ - ResourceListRequest.prototype.filters = ""; - - /** - * ResourceListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.ResourceListRequest - * @instance - */ - ResourceListRequest.prototype.sortBy = null; - - /** - * Creates a new ResourceListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ResourceListRequest - * @static - * @param {flyteidl.admin.IResourceListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ResourceListRequest} ResourceListRequest instance - */ - ResourceListRequest.create = function create(properties) { - return new ResourceListRequest(properties); - }; - - /** - * Encodes the specified ResourceListRequest message. Does not implicitly {@link flyteidl.admin.ResourceListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ResourceListRequest - * @static - * @param {flyteidl.admin.IResourceListRequest} message ResourceListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ResourceListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.admin.NamedEntityIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.token); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.filters); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ResourceListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ResourceListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ResourceListRequest} ResourceListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ResourceListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ResourceListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.admin.NamedEntityIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.limit = reader.uint32(); - break; - case 3: - message.token = reader.string(); - break; - case 4: - message.filters = reader.string(); - break; - case 5: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ResourceListRequest message. - * @function verify - * @memberof flyteidl.admin.ResourceListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ResourceListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.admin.NamedEntityIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - return null; - }; - - return ResourceListRequest; - })(); - - admin.EmailNotification = (function() { - - /** - * Properties of an EmailNotification. - * @memberof flyteidl.admin - * @interface IEmailNotification - * @property {Array.|null} [recipientsEmail] EmailNotification recipientsEmail - */ - - /** - * Constructs a new EmailNotification. - * @memberof flyteidl.admin - * @classdesc Represents an EmailNotification. - * @implements IEmailNotification - * @constructor - * @param {flyteidl.admin.IEmailNotification=} [properties] Properties to set - */ - function EmailNotification(properties) { - this.recipientsEmail = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EmailNotification recipientsEmail. - * @member {Array.} recipientsEmail - * @memberof flyteidl.admin.EmailNotification - * @instance - */ - EmailNotification.prototype.recipientsEmail = $util.emptyArray; - - /** - * Creates a new EmailNotification instance using the specified properties. - * @function create - * @memberof flyteidl.admin.EmailNotification - * @static - * @param {flyteidl.admin.IEmailNotification=} [properties] Properties to set - * @returns {flyteidl.admin.EmailNotification} EmailNotification instance - */ - EmailNotification.create = function create(properties) { - return new EmailNotification(properties); - }; - - /** - * Encodes the specified EmailNotification message. Does not implicitly {@link flyteidl.admin.EmailNotification.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.EmailNotification - * @static - * @param {flyteidl.admin.IEmailNotification} message EmailNotification message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EmailNotification.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.recipientsEmail != null && message.recipientsEmail.length) - for (var i = 0; i < message.recipientsEmail.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.recipientsEmail[i]); - return writer; - }; - - /** - * Decodes an EmailNotification message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.EmailNotification - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.EmailNotification} EmailNotification - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EmailNotification.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.EmailNotification(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.recipientsEmail && message.recipientsEmail.length)) - message.recipientsEmail = []; - message.recipientsEmail.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EmailNotification message. - * @function verify - * @memberof flyteidl.admin.EmailNotification - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EmailNotification.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.recipientsEmail != null && message.hasOwnProperty("recipientsEmail")) { - if (!Array.isArray(message.recipientsEmail)) - return "recipientsEmail: array expected"; - for (var i = 0; i < message.recipientsEmail.length; ++i) - if (!$util.isString(message.recipientsEmail[i])) - return "recipientsEmail: string[] expected"; - } - return null; - }; - - return EmailNotification; - })(); - - admin.PagerDutyNotification = (function() { - - /** - * Properties of a PagerDutyNotification. - * @memberof flyteidl.admin - * @interface IPagerDutyNotification - * @property {Array.|null} [recipientsEmail] PagerDutyNotification recipientsEmail - */ - - /** - * Constructs a new PagerDutyNotification. - * @memberof flyteidl.admin - * @classdesc Represents a PagerDutyNotification. - * @implements IPagerDutyNotification - * @constructor - * @param {flyteidl.admin.IPagerDutyNotification=} [properties] Properties to set - */ - function PagerDutyNotification(properties) { - this.recipientsEmail = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * PagerDutyNotification recipientsEmail. - * @member {Array.} recipientsEmail - * @memberof flyteidl.admin.PagerDutyNotification - * @instance - */ - PagerDutyNotification.prototype.recipientsEmail = $util.emptyArray; - - /** - * Creates a new PagerDutyNotification instance using the specified properties. - * @function create - * @memberof flyteidl.admin.PagerDutyNotification - * @static - * @param {flyteidl.admin.IPagerDutyNotification=} [properties] Properties to set - * @returns {flyteidl.admin.PagerDutyNotification} PagerDutyNotification instance - */ - PagerDutyNotification.create = function create(properties) { - return new PagerDutyNotification(properties); - }; - - /** - * Encodes the specified PagerDutyNotification message. Does not implicitly {@link flyteidl.admin.PagerDutyNotification.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.PagerDutyNotification - * @static - * @param {flyteidl.admin.IPagerDutyNotification} message PagerDutyNotification message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - PagerDutyNotification.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.recipientsEmail != null && message.recipientsEmail.length) - for (var i = 0; i < message.recipientsEmail.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.recipientsEmail[i]); - return writer; - }; - - /** - * Decodes a PagerDutyNotification message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.PagerDutyNotification - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.PagerDutyNotification} PagerDutyNotification - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - PagerDutyNotification.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.PagerDutyNotification(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.recipientsEmail && message.recipientsEmail.length)) - message.recipientsEmail = []; - message.recipientsEmail.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a PagerDutyNotification message. - * @function verify - * @memberof flyteidl.admin.PagerDutyNotification - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - PagerDutyNotification.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.recipientsEmail != null && message.hasOwnProperty("recipientsEmail")) { - if (!Array.isArray(message.recipientsEmail)) - return "recipientsEmail: array expected"; - for (var i = 0; i < message.recipientsEmail.length; ++i) - if (!$util.isString(message.recipientsEmail[i])) - return "recipientsEmail: string[] expected"; - } - return null; - }; - - return PagerDutyNotification; - })(); - - admin.SlackNotification = (function() { - - /** - * Properties of a SlackNotification. - * @memberof flyteidl.admin - * @interface ISlackNotification - * @property {Array.|null} [recipientsEmail] SlackNotification recipientsEmail - */ - - /** - * Constructs a new SlackNotification. - * @memberof flyteidl.admin - * @classdesc Represents a SlackNotification. - * @implements ISlackNotification - * @constructor - * @param {flyteidl.admin.ISlackNotification=} [properties] Properties to set - */ - function SlackNotification(properties) { - this.recipientsEmail = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SlackNotification recipientsEmail. - * @member {Array.} recipientsEmail - * @memberof flyteidl.admin.SlackNotification - * @instance - */ - SlackNotification.prototype.recipientsEmail = $util.emptyArray; - - /** - * Creates a new SlackNotification instance using the specified properties. - * @function create - * @memberof flyteidl.admin.SlackNotification - * @static - * @param {flyteidl.admin.ISlackNotification=} [properties] Properties to set - * @returns {flyteidl.admin.SlackNotification} SlackNotification instance - */ - SlackNotification.create = function create(properties) { - return new SlackNotification(properties); - }; - - /** - * Encodes the specified SlackNotification message. Does not implicitly {@link flyteidl.admin.SlackNotification.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.SlackNotification - * @static - * @param {flyteidl.admin.ISlackNotification} message SlackNotification message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SlackNotification.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.recipientsEmail != null && message.recipientsEmail.length) - for (var i = 0; i < message.recipientsEmail.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.recipientsEmail[i]); - return writer; - }; - - /** - * Decodes a SlackNotification message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.SlackNotification - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.SlackNotification} SlackNotification - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SlackNotification.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.SlackNotification(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.recipientsEmail && message.recipientsEmail.length)) - message.recipientsEmail = []; - message.recipientsEmail.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SlackNotification message. - * @function verify - * @memberof flyteidl.admin.SlackNotification - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SlackNotification.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.recipientsEmail != null && message.hasOwnProperty("recipientsEmail")) { - if (!Array.isArray(message.recipientsEmail)) - return "recipientsEmail: array expected"; - for (var i = 0; i < message.recipientsEmail.length; ++i) - if (!$util.isString(message.recipientsEmail[i])) - return "recipientsEmail: string[] expected"; - } - return null; - }; - - return SlackNotification; - })(); - - admin.Notification = (function() { - - /** - * Properties of a Notification. - * @memberof flyteidl.admin - * @interface INotification - * @property {Array.|null} [phases] Notification phases - * @property {flyteidl.admin.IEmailNotification|null} [email] Notification email - * @property {flyteidl.admin.IPagerDutyNotification|null} [pagerDuty] Notification pagerDuty - * @property {flyteidl.admin.ISlackNotification|null} [slack] Notification slack - */ - - /** - * Constructs a new Notification. - * @memberof flyteidl.admin - * @classdesc Represents a Notification. - * @implements INotification - * @constructor - * @param {flyteidl.admin.INotification=} [properties] Properties to set - */ - function Notification(properties) { - this.phases = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Notification phases. - * @member {Array.} phases - * @memberof flyteidl.admin.Notification - * @instance - */ - Notification.prototype.phases = $util.emptyArray; - - /** - * Notification email. - * @member {flyteidl.admin.IEmailNotification|null|undefined} email - * @memberof flyteidl.admin.Notification - * @instance - */ - Notification.prototype.email = null; - - /** - * Notification pagerDuty. - * @member {flyteidl.admin.IPagerDutyNotification|null|undefined} pagerDuty - * @memberof flyteidl.admin.Notification - * @instance - */ - Notification.prototype.pagerDuty = null; - - /** - * Notification slack. - * @member {flyteidl.admin.ISlackNotification|null|undefined} slack - * @memberof flyteidl.admin.Notification - * @instance - */ - Notification.prototype.slack = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Notification type. - * @member {"email"|"pagerDuty"|"slack"|undefined} type - * @memberof flyteidl.admin.Notification - * @instance - */ - Object.defineProperty(Notification.prototype, "type", { - get: $util.oneOfGetter($oneOfFields = ["email", "pagerDuty", "slack"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Notification instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Notification - * @static - * @param {flyteidl.admin.INotification=} [properties] Properties to set - * @returns {flyteidl.admin.Notification} Notification instance - */ - Notification.create = function create(properties) { - return new Notification(properties); - }; - - /** - * Encodes the specified Notification message. Does not implicitly {@link flyteidl.admin.Notification.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Notification - * @static - * @param {flyteidl.admin.INotification} message Notification message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Notification.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.phases != null && message.phases.length) { - writer.uint32(/* id 1, wireType 2 =*/10).fork(); - for (var i = 0; i < message.phases.length; ++i) - writer.int32(message.phases[i]); - writer.ldelim(); - } - if (message.email != null && message.hasOwnProperty("email")) - $root.flyteidl.admin.EmailNotification.encode(message.email, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.pagerDuty != null && message.hasOwnProperty("pagerDuty")) - $root.flyteidl.admin.PagerDutyNotification.encode(message.pagerDuty, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.slack != null && message.hasOwnProperty("slack")) - $root.flyteidl.admin.SlackNotification.encode(message.slack, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Notification message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Notification - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Notification} Notification - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Notification.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Notification(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.phases && message.phases.length)) - message.phases = []; - if ((tag & 7) === 2) { - var end2 = reader.uint32() + reader.pos; - while (reader.pos < end2) - message.phases.push(reader.int32()); - } else - message.phases.push(reader.int32()); - break; - case 2: - message.email = $root.flyteidl.admin.EmailNotification.decode(reader, reader.uint32()); - break; - case 3: - message.pagerDuty = $root.flyteidl.admin.PagerDutyNotification.decode(reader, reader.uint32()); - break; - case 4: - message.slack = $root.flyteidl.admin.SlackNotification.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Notification message. - * @function verify - * @memberof flyteidl.admin.Notification - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Notification.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.phases != null && message.hasOwnProperty("phases")) { - if (!Array.isArray(message.phases)) - return "phases: array expected"; - for (var i = 0; i < message.phases.length; ++i) - switch (message.phases[i]) { - default: - return "phases: enum value[] expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - break; - } - } - if (message.email != null && message.hasOwnProperty("email")) { - properties.type = 1; - { - var error = $root.flyteidl.admin.EmailNotification.verify(message.email); - if (error) - return "email." + error; - } - } - if (message.pagerDuty != null && message.hasOwnProperty("pagerDuty")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.admin.PagerDutyNotification.verify(message.pagerDuty); - if (error) - return "pagerDuty." + error; - } - } - if (message.slack != null && message.hasOwnProperty("slack")) { - if (properties.type === 1) - return "type: multiple values"; - properties.type = 1; - { - var error = $root.flyteidl.admin.SlackNotification.verify(message.slack); - if (error) - return "slack." + error; - } - } - return null; - }; - - return Notification; - })(); - - admin.UrlBlob = (function() { - - /** - * Properties of an UrlBlob. - * @memberof flyteidl.admin - * @interface IUrlBlob - * @property {string|null} [url] UrlBlob url - * @property {Long|null} [bytes] UrlBlob bytes - */ - - /** - * Constructs a new UrlBlob. - * @memberof flyteidl.admin - * @classdesc Represents an UrlBlob. - * @implements IUrlBlob - * @constructor - * @param {flyteidl.admin.IUrlBlob=} [properties] Properties to set - */ - function UrlBlob(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * UrlBlob url. - * @member {string} url - * @memberof flyteidl.admin.UrlBlob - * @instance - */ - UrlBlob.prototype.url = ""; - - /** - * UrlBlob bytes. - * @member {Long} bytes - * @memberof flyteidl.admin.UrlBlob - * @instance - */ - UrlBlob.prototype.bytes = $util.Long ? $util.Long.fromBits(0,0,false) : 0; - - /** - * Creates a new UrlBlob instance using the specified properties. - * @function create - * @memberof flyteidl.admin.UrlBlob - * @static - * @param {flyteidl.admin.IUrlBlob=} [properties] Properties to set - * @returns {flyteidl.admin.UrlBlob} UrlBlob instance - */ - UrlBlob.create = function create(properties) { - return new UrlBlob(properties); - }; - - /** - * Encodes the specified UrlBlob message. Does not implicitly {@link flyteidl.admin.UrlBlob.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.UrlBlob - * @static - * @param {flyteidl.admin.IUrlBlob} message UrlBlob message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - UrlBlob.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.url != null && message.hasOwnProperty("url")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.url); - if (message.bytes != null && message.hasOwnProperty("bytes")) - writer.uint32(/* id 2, wireType 0 =*/16).int64(message.bytes); - return writer; - }; - - /** - * Decodes an UrlBlob message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.UrlBlob - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.UrlBlob} UrlBlob - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - UrlBlob.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.UrlBlob(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.url = reader.string(); - break; - case 2: - message.bytes = reader.int64(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an UrlBlob message. - * @function verify - * @memberof flyteidl.admin.UrlBlob - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - UrlBlob.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.url != null && message.hasOwnProperty("url")) - if (!$util.isString(message.url)) - return "url: string expected"; - if (message.bytes != null && message.hasOwnProperty("bytes")) - if (!$util.isInteger(message.bytes) && !(message.bytes && $util.isInteger(message.bytes.low) && $util.isInteger(message.bytes.high))) - return "bytes: integer|Long expected"; - return null; - }; - - return UrlBlob; - })(); - - admin.Labels = (function() { - - /** - * Properties of a Labels. - * @memberof flyteidl.admin - * @interface ILabels - * @property {Object.|null} [values] Labels values - */ - - /** - * Constructs a new Labels. - * @memberof flyteidl.admin - * @classdesc Represents a Labels. - * @implements ILabels - * @constructor - * @param {flyteidl.admin.ILabels=} [properties] Properties to set - */ - function Labels(properties) { - this.values = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Labels values. - * @member {Object.} values - * @memberof flyteidl.admin.Labels - * @instance - */ - Labels.prototype.values = $util.emptyObject; - - /** - * Creates a new Labels instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Labels - * @static - * @param {flyteidl.admin.ILabels=} [properties] Properties to set - * @returns {flyteidl.admin.Labels} Labels instance - */ - Labels.create = function create(properties) { - return new Labels(properties); - }; - - /** - * Encodes the specified Labels message. Does not implicitly {@link flyteidl.admin.Labels.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Labels - * @static - * @param {flyteidl.admin.ILabels} message Labels message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Labels.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.values != null && message.hasOwnProperty("values")) - for (var keys = Object.keys(message.values), i = 0; i < keys.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.values[keys[i]]).ldelim(); - return writer; - }; - - /** - * Decodes a Labels message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Labels - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Labels} Labels - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Labels.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Labels(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.values === $util.emptyObject) - message.values = {}; - key = reader.string(); - reader.pos++; - message.values[key] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Labels message. - * @function verify - * @memberof flyteidl.admin.Labels - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Labels.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.values != null && message.hasOwnProperty("values")) { - if (!$util.isObject(message.values)) - return "values: object expected"; - var key = Object.keys(message.values); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.values[key[i]])) - return "values: string{k:string} expected"; - } - return null; - }; - - return Labels; - })(); - - admin.Annotations = (function() { - - /** - * Properties of an Annotations. - * @memberof flyteidl.admin - * @interface IAnnotations - * @property {Object.|null} [values] Annotations values - */ - - /** - * Constructs a new Annotations. - * @memberof flyteidl.admin - * @classdesc Represents an Annotations. - * @implements IAnnotations - * @constructor - * @param {flyteidl.admin.IAnnotations=} [properties] Properties to set - */ - function Annotations(properties) { - this.values = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Annotations values. - * @member {Object.} values - * @memberof flyteidl.admin.Annotations - * @instance - */ - Annotations.prototype.values = $util.emptyObject; - - /** - * Creates a new Annotations instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Annotations - * @static - * @param {flyteidl.admin.IAnnotations=} [properties] Properties to set - * @returns {flyteidl.admin.Annotations} Annotations instance - */ - Annotations.create = function create(properties) { - return new Annotations(properties); - }; - - /** - * Encodes the specified Annotations message. Does not implicitly {@link flyteidl.admin.Annotations.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Annotations - * @static - * @param {flyteidl.admin.IAnnotations} message Annotations message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Annotations.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.values != null && message.hasOwnProperty("values")) - for (var keys = Object.keys(message.values), i = 0; i < keys.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.values[keys[i]]).ldelim(); - return writer; - }; - - /** - * Decodes an Annotations message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Annotations - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Annotations} Annotations - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Annotations.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Annotations(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.values === $util.emptyObject) - message.values = {}; - key = reader.string(); - reader.pos++; - message.values[key] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Annotations message. - * @function verify - * @memberof flyteidl.admin.Annotations - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Annotations.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.values != null && message.hasOwnProperty("values")) { - if (!$util.isObject(message.values)) - return "values: object expected"; - var key = Object.keys(message.values); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.values[key[i]])) - return "values: string{k:string} expected"; - } - return null; - }; - - return Annotations; - })(); - - admin.Envs = (function() { - - /** - * Properties of an Envs. - * @memberof flyteidl.admin - * @interface IEnvs - * @property {Array.|null} [values] Envs values - */ - - /** - * Constructs a new Envs. - * @memberof flyteidl.admin - * @classdesc Represents an Envs. - * @implements IEnvs - * @constructor - * @param {flyteidl.admin.IEnvs=} [properties] Properties to set - */ - function Envs(properties) { - this.values = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Envs values. - * @member {Array.} values - * @memberof flyteidl.admin.Envs - * @instance - */ - Envs.prototype.values = $util.emptyArray; - - /** - * Creates a new Envs instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Envs - * @static - * @param {flyteidl.admin.IEnvs=} [properties] Properties to set - * @returns {flyteidl.admin.Envs} Envs instance - */ - Envs.create = function create(properties) { - return new Envs(properties); - }; - - /** - * Encodes the specified Envs message. Does not implicitly {@link flyteidl.admin.Envs.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Envs - * @static - * @param {flyteidl.admin.IEnvs} message Envs message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Envs.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.values != null && message.values.length) - for (var i = 0; i < message.values.length; ++i) - $root.flyteidl.core.KeyValuePair.encode(message.values[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an Envs message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Envs - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Envs} Envs - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Envs.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Envs(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.values && message.values.length)) - message.values = []; - message.values.push($root.flyteidl.core.KeyValuePair.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Envs message. - * @function verify - * @memberof flyteidl.admin.Envs - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Envs.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.values != null && message.hasOwnProperty("values")) { - if (!Array.isArray(message.values)) - return "values: array expected"; - for (var i = 0; i < message.values.length; ++i) { - var error = $root.flyteidl.core.KeyValuePair.verify(message.values[i]); - if (error) - return "values." + error; - } - } - return null; - }; - - return Envs; - })(); - - admin.AuthRole = (function() { - - /** - * Properties of an AuthRole. - * @memberof flyteidl.admin - * @interface IAuthRole - * @property {string|null} [assumableIamRole] AuthRole assumableIamRole - * @property {string|null} [kubernetesServiceAccount] AuthRole kubernetesServiceAccount - */ - - /** - * Constructs a new AuthRole. - * @memberof flyteidl.admin - * @classdesc Represents an AuthRole. - * @implements IAuthRole - * @constructor - * @param {flyteidl.admin.IAuthRole=} [properties] Properties to set - */ - function AuthRole(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * AuthRole assumableIamRole. - * @member {string} assumableIamRole - * @memberof flyteidl.admin.AuthRole - * @instance - */ - AuthRole.prototype.assumableIamRole = ""; - - /** - * AuthRole kubernetesServiceAccount. - * @member {string} kubernetesServiceAccount - * @memberof flyteidl.admin.AuthRole - * @instance - */ - AuthRole.prototype.kubernetesServiceAccount = ""; - - /** - * Creates a new AuthRole instance using the specified properties. - * @function create - * @memberof flyteidl.admin.AuthRole - * @static - * @param {flyteidl.admin.IAuthRole=} [properties] Properties to set - * @returns {flyteidl.admin.AuthRole} AuthRole instance - */ - AuthRole.create = function create(properties) { - return new AuthRole(properties); - }; - - /** - * Encodes the specified AuthRole message. Does not implicitly {@link flyteidl.admin.AuthRole.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.AuthRole - * @static - * @param {flyteidl.admin.IAuthRole} message AuthRole message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - AuthRole.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.assumableIamRole != null && message.hasOwnProperty("assumableIamRole")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.assumableIamRole); - if (message.kubernetesServiceAccount != null && message.hasOwnProperty("kubernetesServiceAccount")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.kubernetesServiceAccount); - return writer; - }; - - /** - * Decodes an AuthRole message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.AuthRole - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.AuthRole} AuthRole - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - AuthRole.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.AuthRole(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.assumableIamRole = reader.string(); - break; - case 2: - message.kubernetesServiceAccount = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an AuthRole message. - * @function verify - * @memberof flyteidl.admin.AuthRole - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - AuthRole.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.assumableIamRole != null && message.hasOwnProperty("assumableIamRole")) - if (!$util.isString(message.assumableIamRole)) - return "assumableIamRole: string expected"; - if (message.kubernetesServiceAccount != null && message.hasOwnProperty("kubernetesServiceAccount")) - if (!$util.isString(message.kubernetesServiceAccount)) - return "kubernetesServiceAccount: string expected"; - return null; - }; - - return AuthRole; - })(); - - admin.RawOutputDataConfig = (function() { - - /** - * Properties of a RawOutputDataConfig. - * @memberof flyteidl.admin - * @interface IRawOutputDataConfig - * @property {string|null} [outputLocationPrefix] RawOutputDataConfig outputLocationPrefix - */ - - /** - * Constructs a new RawOutputDataConfig. - * @memberof flyteidl.admin - * @classdesc Represents a RawOutputDataConfig. - * @implements IRawOutputDataConfig - * @constructor - * @param {flyteidl.admin.IRawOutputDataConfig=} [properties] Properties to set - */ - function RawOutputDataConfig(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * RawOutputDataConfig outputLocationPrefix. - * @member {string} outputLocationPrefix - * @memberof flyteidl.admin.RawOutputDataConfig - * @instance - */ - RawOutputDataConfig.prototype.outputLocationPrefix = ""; - - /** - * Creates a new RawOutputDataConfig instance using the specified properties. - * @function create - * @memberof flyteidl.admin.RawOutputDataConfig - * @static - * @param {flyteidl.admin.IRawOutputDataConfig=} [properties] Properties to set - * @returns {flyteidl.admin.RawOutputDataConfig} RawOutputDataConfig instance - */ - RawOutputDataConfig.create = function create(properties) { - return new RawOutputDataConfig(properties); - }; - - /** - * Encodes the specified RawOutputDataConfig message. Does not implicitly {@link flyteidl.admin.RawOutputDataConfig.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.RawOutputDataConfig - * @static - * @param {flyteidl.admin.IRawOutputDataConfig} message RawOutputDataConfig message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - RawOutputDataConfig.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.outputLocationPrefix != null && message.hasOwnProperty("outputLocationPrefix")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.outputLocationPrefix); - return writer; - }; - - /** - * Decodes a RawOutputDataConfig message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.RawOutputDataConfig - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.RawOutputDataConfig} RawOutputDataConfig - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - RawOutputDataConfig.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.RawOutputDataConfig(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.outputLocationPrefix = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a RawOutputDataConfig message. - * @function verify - * @memberof flyteidl.admin.RawOutputDataConfig - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - RawOutputDataConfig.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.outputLocationPrefix != null && message.hasOwnProperty("outputLocationPrefix")) - if (!$util.isString(message.outputLocationPrefix)) - return "outputLocationPrefix: string expected"; - return null; - }; - - return RawOutputDataConfig; - })(); - - admin.FlyteURLs = (function() { - - /** - * Properties of a FlyteURLs. - * @memberof flyteidl.admin - * @interface IFlyteURLs - * @property {string|null} [inputs] FlyteURLs inputs - * @property {string|null} [outputs] FlyteURLs outputs - * @property {string|null} [deck] FlyteURLs deck - */ - - /** - * Constructs a new FlyteURLs. - * @memberof flyteidl.admin - * @classdesc Represents a FlyteURLs. - * @implements IFlyteURLs - * @constructor - * @param {flyteidl.admin.IFlyteURLs=} [properties] Properties to set - */ - function FlyteURLs(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * FlyteURLs inputs. - * @member {string} inputs - * @memberof flyteidl.admin.FlyteURLs - * @instance - */ - FlyteURLs.prototype.inputs = ""; - - /** - * FlyteURLs outputs. - * @member {string} outputs - * @memberof flyteidl.admin.FlyteURLs - * @instance - */ - FlyteURLs.prototype.outputs = ""; - - /** - * FlyteURLs deck. - * @member {string} deck - * @memberof flyteidl.admin.FlyteURLs - * @instance - */ - FlyteURLs.prototype.deck = ""; - - /** - * Creates a new FlyteURLs instance using the specified properties. - * @function create - * @memberof flyteidl.admin.FlyteURLs - * @static - * @param {flyteidl.admin.IFlyteURLs=} [properties] Properties to set - * @returns {flyteidl.admin.FlyteURLs} FlyteURLs instance - */ - FlyteURLs.create = function create(properties) { - return new FlyteURLs(properties); - }; - - /** - * Encodes the specified FlyteURLs message. Does not implicitly {@link flyteidl.admin.FlyteURLs.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.FlyteURLs - * @static - * @param {flyteidl.admin.IFlyteURLs} message FlyteURLs message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - FlyteURLs.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.inputs); - if (message.outputs != null && message.hasOwnProperty("outputs")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.outputs); - if (message.deck != null && message.hasOwnProperty("deck")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.deck); - return writer; - }; - - /** - * Decodes a FlyteURLs message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.FlyteURLs - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.FlyteURLs} FlyteURLs - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - FlyteURLs.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.FlyteURLs(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.inputs = reader.string(); - break; - case 2: - message.outputs = reader.string(); - break; - case 3: - message.deck = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a FlyteURLs message. - * @function verify - * @memberof flyteidl.admin.FlyteURLs - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - FlyteURLs.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.inputs != null && message.hasOwnProperty("inputs")) - if (!$util.isString(message.inputs)) - return "inputs: string expected"; - if (message.outputs != null && message.hasOwnProperty("outputs")) - if (!$util.isString(message.outputs)) - return "outputs: string expected"; - if (message.deck != null && message.hasOwnProperty("deck")) - if (!$util.isString(message.deck)) - return "deck: string expected"; - return null; - }; - - return FlyteURLs; - })(); - - admin.DescriptionEntity = (function() { - - /** - * Properties of a DescriptionEntity. - * @memberof flyteidl.admin - * @interface IDescriptionEntity - * @property {flyteidl.core.IIdentifier|null} [id] DescriptionEntity id - * @property {string|null} [shortDescription] DescriptionEntity shortDescription - * @property {flyteidl.admin.IDescription|null} [longDescription] DescriptionEntity longDescription - * @property {flyteidl.admin.ISourceCode|null} [sourceCode] DescriptionEntity sourceCode - * @property {Array.|null} [tags] DescriptionEntity tags - */ - - /** - * Constructs a new DescriptionEntity. - * @memberof flyteidl.admin - * @classdesc Represents a DescriptionEntity. - * @implements IDescriptionEntity - * @constructor - * @param {flyteidl.admin.IDescriptionEntity=} [properties] Properties to set - */ - function DescriptionEntity(properties) { - this.tags = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DescriptionEntity id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.DescriptionEntity - * @instance - */ - DescriptionEntity.prototype.id = null; - - /** - * DescriptionEntity shortDescription. - * @member {string} shortDescription - * @memberof flyteidl.admin.DescriptionEntity - * @instance - */ - DescriptionEntity.prototype.shortDescription = ""; - - /** - * DescriptionEntity longDescription. - * @member {flyteidl.admin.IDescription|null|undefined} longDescription - * @memberof flyteidl.admin.DescriptionEntity - * @instance - */ - DescriptionEntity.prototype.longDescription = null; - - /** - * DescriptionEntity sourceCode. - * @member {flyteidl.admin.ISourceCode|null|undefined} sourceCode - * @memberof flyteidl.admin.DescriptionEntity - * @instance - */ - DescriptionEntity.prototype.sourceCode = null; - - /** - * DescriptionEntity tags. - * @member {Array.} tags - * @memberof flyteidl.admin.DescriptionEntity - * @instance - */ - DescriptionEntity.prototype.tags = $util.emptyArray; - - /** - * Creates a new DescriptionEntity instance using the specified properties. - * @function create - * @memberof flyteidl.admin.DescriptionEntity - * @static - * @param {flyteidl.admin.IDescriptionEntity=} [properties] Properties to set - * @returns {flyteidl.admin.DescriptionEntity} DescriptionEntity instance - */ - DescriptionEntity.create = function create(properties) { - return new DescriptionEntity(properties); - }; - - /** - * Encodes the specified DescriptionEntity message. Does not implicitly {@link flyteidl.admin.DescriptionEntity.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.DescriptionEntity - * @static - * @param {flyteidl.admin.IDescriptionEntity} message DescriptionEntity message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DescriptionEntity.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.shortDescription != null && message.hasOwnProperty("shortDescription")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.shortDescription); - if (message.longDescription != null && message.hasOwnProperty("longDescription")) - $root.flyteidl.admin.Description.encode(message.longDescription, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.sourceCode != null && message.hasOwnProperty("sourceCode")) - $root.flyteidl.admin.SourceCode.encode(message.sourceCode, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.tags != null && message.tags.length) - for (var i = 0; i < message.tags.length; ++i) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.tags[i]); - return writer; - }; - - /** - * Decodes a DescriptionEntity message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.DescriptionEntity - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.DescriptionEntity} DescriptionEntity - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DescriptionEntity.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.DescriptionEntity(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.shortDescription = reader.string(); - break; - case 3: - message.longDescription = $root.flyteidl.admin.Description.decode(reader, reader.uint32()); - break; - case 4: - message.sourceCode = $root.flyteidl.admin.SourceCode.decode(reader, reader.uint32()); - break; - case 5: - if (!(message.tags && message.tags.length)) - message.tags = []; - message.tags.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DescriptionEntity message. - * @function verify - * @memberof flyteidl.admin.DescriptionEntity - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DescriptionEntity.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.shortDescription != null && message.hasOwnProperty("shortDescription")) - if (!$util.isString(message.shortDescription)) - return "shortDescription: string expected"; - if (message.longDescription != null && message.hasOwnProperty("longDescription")) { - var error = $root.flyteidl.admin.Description.verify(message.longDescription); - if (error) - return "longDescription." + error; - } - if (message.sourceCode != null && message.hasOwnProperty("sourceCode")) { - var error = $root.flyteidl.admin.SourceCode.verify(message.sourceCode); - if (error) - return "sourceCode." + error; - } - if (message.tags != null && message.hasOwnProperty("tags")) { - if (!Array.isArray(message.tags)) - return "tags: array expected"; - for (var i = 0; i < message.tags.length; ++i) - if (!$util.isString(message.tags[i])) - return "tags: string[] expected"; - } - return null; - }; - - return DescriptionEntity; - })(); - - /** - * DescriptionFormat enum. - * @name flyteidl.admin.DescriptionFormat - * @enum {string} - * @property {number} DESCRIPTION_FORMAT_UNKNOWN=0 DESCRIPTION_FORMAT_UNKNOWN value - * @property {number} DESCRIPTION_FORMAT_MARKDOWN=1 DESCRIPTION_FORMAT_MARKDOWN value - * @property {number} DESCRIPTION_FORMAT_HTML=2 DESCRIPTION_FORMAT_HTML value - * @property {number} DESCRIPTION_FORMAT_RST=3 DESCRIPTION_FORMAT_RST value - */ - admin.DescriptionFormat = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "DESCRIPTION_FORMAT_UNKNOWN"] = 0; - values[valuesById[1] = "DESCRIPTION_FORMAT_MARKDOWN"] = 1; - values[valuesById[2] = "DESCRIPTION_FORMAT_HTML"] = 2; - values[valuesById[3] = "DESCRIPTION_FORMAT_RST"] = 3; - return values; - })(); - - admin.Description = (function() { - - /** - * Properties of a Description. - * @memberof flyteidl.admin - * @interface IDescription - * @property {string|null} [value] Description value - * @property {string|null} [uri] Description uri - * @property {flyteidl.admin.DescriptionFormat|null} [format] Description format - * @property {string|null} [iconLink] Description iconLink - */ - - /** - * Constructs a new Description. - * @memberof flyteidl.admin - * @classdesc Represents a Description. - * @implements IDescription - * @constructor - * @param {flyteidl.admin.IDescription=} [properties] Properties to set - */ - function Description(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Description value. - * @member {string} value - * @memberof flyteidl.admin.Description - * @instance - */ - Description.prototype.value = ""; - - /** - * Description uri. - * @member {string} uri - * @memberof flyteidl.admin.Description - * @instance - */ - Description.prototype.uri = ""; - - /** - * Description format. - * @member {flyteidl.admin.DescriptionFormat} format - * @memberof flyteidl.admin.Description - * @instance - */ - Description.prototype.format = 0; - - /** - * Description iconLink. - * @member {string} iconLink - * @memberof flyteidl.admin.Description - * @instance - */ - Description.prototype.iconLink = ""; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Description content. - * @member {"value"|"uri"|undefined} content - * @memberof flyteidl.admin.Description - * @instance - */ - Object.defineProperty(Description.prototype, "content", { - get: $util.oneOfGetter($oneOfFields = ["value", "uri"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Description instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Description - * @static - * @param {flyteidl.admin.IDescription=} [properties] Properties to set - * @returns {flyteidl.admin.Description} Description instance - */ - Description.create = function create(properties) { - return new Description(properties); - }; - - /** - * Encodes the specified Description message. Does not implicitly {@link flyteidl.admin.Description.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Description - * @static - * @param {flyteidl.admin.IDescription} message Description message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Description.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.value); - if (message.uri != null && message.hasOwnProperty("uri")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.uri); - if (message.format != null && message.hasOwnProperty("format")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.format); - if (message.iconLink != null && message.hasOwnProperty("iconLink")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.iconLink); - return writer; - }; - - /** - * Decodes a Description message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Description - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Description} Description - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Description.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Description(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.string(); - break; - case 2: - message.uri = reader.string(); - break; - case 3: - message.format = reader.int32(); - break; - case 4: - message.iconLink = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Description message. - * @function verify - * @memberof flyteidl.admin.Description - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Description.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.value != null && message.hasOwnProperty("value")) { - properties.content = 1; - if (!$util.isString(message.value)) - return "value: string expected"; - } - if (message.uri != null && message.hasOwnProperty("uri")) { - if (properties.content === 1) - return "content: multiple values"; - properties.content = 1; - if (!$util.isString(message.uri)) - return "uri: string expected"; - } - if (message.format != null && message.hasOwnProperty("format")) - switch (message.format) { - default: - return "format: enum value expected"; - case 0: - case 1: - case 2: - case 3: - break; - } - if (message.iconLink != null && message.hasOwnProperty("iconLink")) - if (!$util.isString(message.iconLink)) - return "iconLink: string expected"; - return null; - }; - - return Description; - })(); - - admin.SourceCode = (function() { - - /** - * Properties of a SourceCode. - * @memberof flyteidl.admin - * @interface ISourceCode - * @property {string|null} [link] SourceCode link - */ - - /** - * Constructs a new SourceCode. - * @memberof flyteidl.admin - * @classdesc Represents a SourceCode. - * @implements ISourceCode - * @constructor - * @param {flyteidl.admin.ISourceCode=} [properties] Properties to set - */ - function SourceCode(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SourceCode link. - * @member {string} link - * @memberof flyteidl.admin.SourceCode - * @instance - */ - SourceCode.prototype.link = ""; - - /** - * Creates a new SourceCode instance using the specified properties. - * @function create - * @memberof flyteidl.admin.SourceCode - * @static - * @param {flyteidl.admin.ISourceCode=} [properties] Properties to set - * @returns {flyteidl.admin.SourceCode} SourceCode instance - */ - SourceCode.create = function create(properties) { - return new SourceCode(properties); - }; - - /** - * Encodes the specified SourceCode message. Does not implicitly {@link flyteidl.admin.SourceCode.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.SourceCode - * @static - * @param {flyteidl.admin.ISourceCode} message SourceCode message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SourceCode.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.link != null && message.hasOwnProperty("link")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.link); - return writer; - }; - - /** - * Decodes a SourceCode message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.SourceCode - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.SourceCode} SourceCode - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SourceCode.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.SourceCode(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.link = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SourceCode message. - * @function verify - * @memberof flyteidl.admin.SourceCode - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SourceCode.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.link != null && message.hasOwnProperty("link")) - if (!$util.isString(message.link)) - return "link: string expected"; - return null; - }; - - return SourceCode; - })(); - - admin.DescriptionEntityList = (function() { - - /** - * Properties of a DescriptionEntityList. - * @memberof flyteidl.admin - * @interface IDescriptionEntityList - * @property {Array.|null} [descriptionEntities] DescriptionEntityList descriptionEntities - * @property {string|null} [token] DescriptionEntityList token - */ - - /** - * Constructs a new DescriptionEntityList. - * @memberof flyteidl.admin - * @classdesc Represents a DescriptionEntityList. - * @implements IDescriptionEntityList - * @constructor - * @param {flyteidl.admin.IDescriptionEntityList=} [properties] Properties to set - */ - function DescriptionEntityList(properties) { - this.descriptionEntities = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DescriptionEntityList descriptionEntities. - * @member {Array.} descriptionEntities - * @memberof flyteidl.admin.DescriptionEntityList - * @instance - */ - DescriptionEntityList.prototype.descriptionEntities = $util.emptyArray; - - /** - * DescriptionEntityList token. - * @member {string} token - * @memberof flyteidl.admin.DescriptionEntityList - * @instance - */ - DescriptionEntityList.prototype.token = ""; - - /** - * Creates a new DescriptionEntityList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.DescriptionEntityList - * @static - * @param {flyteidl.admin.IDescriptionEntityList=} [properties] Properties to set - * @returns {flyteidl.admin.DescriptionEntityList} DescriptionEntityList instance - */ - DescriptionEntityList.create = function create(properties) { - return new DescriptionEntityList(properties); - }; - - /** - * Encodes the specified DescriptionEntityList message. Does not implicitly {@link flyteidl.admin.DescriptionEntityList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.DescriptionEntityList - * @static - * @param {flyteidl.admin.IDescriptionEntityList} message DescriptionEntityList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DescriptionEntityList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.descriptionEntities != null && message.descriptionEntities.length) - for (var i = 0; i < message.descriptionEntities.length; ++i) - $root.flyteidl.admin.DescriptionEntity.encode(message.descriptionEntities[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a DescriptionEntityList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.DescriptionEntityList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.DescriptionEntityList} DescriptionEntityList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DescriptionEntityList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.DescriptionEntityList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.descriptionEntities && message.descriptionEntities.length)) - message.descriptionEntities = []; - message.descriptionEntities.push($root.flyteidl.admin.DescriptionEntity.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DescriptionEntityList message. - * @function verify - * @memberof flyteidl.admin.DescriptionEntityList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DescriptionEntityList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.descriptionEntities != null && message.hasOwnProperty("descriptionEntities")) { - if (!Array.isArray(message.descriptionEntities)) - return "descriptionEntities: array expected"; - for (var i = 0; i < message.descriptionEntities.length; ++i) { - var error = $root.flyteidl.admin.DescriptionEntity.verify(message.descriptionEntities[i]); - if (error) - return "descriptionEntities." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return DescriptionEntityList; - })(); - - admin.DescriptionEntityListRequest = (function() { - - /** - * Properties of a DescriptionEntityListRequest. - * @memberof flyteidl.admin - * @interface IDescriptionEntityListRequest - * @property {flyteidl.core.ResourceType|null} [resourceType] DescriptionEntityListRequest resourceType - * @property {flyteidl.admin.INamedEntityIdentifier|null} [id] DescriptionEntityListRequest id - * @property {number|null} [limit] DescriptionEntityListRequest limit - * @property {string|null} [token] DescriptionEntityListRequest token - * @property {string|null} [filters] DescriptionEntityListRequest filters - * @property {flyteidl.admin.ISort|null} [sortBy] DescriptionEntityListRequest sortBy - */ - - /** - * Constructs a new DescriptionEntityListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a DescriptionEntityListRequest. - * @implements IDescriptionEntityListRequest - * @constructor - * @param {flyteidl.admin.IDescriptionEntityListRequest=} [properties] Properties to set - */ - function DescriptionEntityListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DescriptionEntityListRequest resourceType. - * @member {flyteidl.core.ResourceType} resourceType - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @instance - */ - DescriptionEntityListRequest.prototype.resourceType = 0; - - /** - * DescriptionEntityListRequest id. - * @member {flyteidl.admin.INamedEntityIdentifier|null|undefined} id - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @instance - */ - DescriptionEntityListRequest.prototype.id = null; - - /** - * DescriptionEntityListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @instance - */ - DescriptionEntityListRequest.prototype.limit = 0; - - /** - * DescriptionEntityListRequest token. - * @member {string} token - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @instance - */ - DescriptionEntityListRequest.prototype.token = ""; - - /** - * DescriptionEntityListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @instance - */ - DescriptionEntityListRequest.prototype.filters = ""; - - /** - * DescriptionEntityListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @instance - */ - DescriptionEntityListRequest.prototype.sortBy = null; - - /** - * Creates a new DescriptionEntityListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @static - * @param {flyteidl.admin.IDescriptionEntityListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.DescriptionEntityListRequest} DescriptionEntityListRequest instance - */ - DescriptionEntityListRequest.create = function create(properties) { - return new DescriptionEntityListRequest(properties); - }; - - /** - * Encodes the specified DescriptionEntityListRequest message. Does not implicitly {@link flyteidl.admin.DescriptionEntityListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @static - * @param {flyteidl.admin.IDescriptionEntityListRequest} message DescriptionEntityListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DescriptionEntityListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.resourceType); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.admin.NamedEntityIdentifier.encode(message.id, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.token); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.filters); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a DescriptionEntityListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.DescriptionEntityListRequest} DescriptionEntityListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DescriptionEntityListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.DescriptionEntityListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resourceType = reader.int32(); - break; - case 2: - message.id = $root.flyteidl.admin.NamedEntityIdentifier.decode(reader, reader.uint32()); - break; - case 3: - message.limit = reader.uint32(); - break; - case 4: - message.token = reader.string(); - break; - case 5: - message.filters = reader.string(); - break; - case 6: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DescriptionEntityListRequest message. - * @function verify - * @memberof flyteidl.admin.DescriptionEntityListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DescriptionEntityListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.admin.NamedEntityIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - return null; - }; - - return DescriptionEntityListRequest; - })(); - - admin.EventErrorAlreadyInTerminalState = (function() { - - /** - * Properties of an EventErrorAlreadyInTerminalState. - * @memberof flyteidl.admin - * @interface IEventErrorAlreadyInTerminalState - * @property {string|null} [currentPhase] EventErrorAlreadyInTerminalState currentPhase - */ - - /** - * Constructs a new EventErrorAlreadyInTerminalState. - * @memberof flyteidl.admin - * @classdesc Represents an EventErrorAlreadyInTerminalState. - * @implements IEventErrorAlreadyInTerminalState - * @constructor - * @param {flyteidl.admin.IEventErrorAlreadyInTerminalState=} [properties] Properties to set - */ - function EventErrorAlreadyInTerminalState(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EventErrorAlreadyInTerminalState currentPhase. - * @member {string} currentPhase - * @memberof flyteidl.admin.EventErrorAlreadyInTerminalState - * @instance - */ - EventErrorAlreadyInTerminalState.prototype.currentPhase = ""; - - /** - * Creates a new EventErrorAlreadyInTerminalState instance using the specified properties. - * @function create - * @memberof flyteidl.admin.EventErrorAlreadyInTerminalState - * @static - * @param {flyteidl.admin.IEventErrorAlreadyInTerminalState=} [properties] Properties to set - * @returns {flyteidl.admin.EventErrorAlreadyInTerminalState} EventErrorAlreadyInTerminalState instance - */ - EventErrorAlreadyInTerminalState.create = function create(properties) { - return new EventErrorAlreadyInTerminalState(properties); - }; - - /** - * Encodes the specified EventErrorAlreadyInTerminalState message. Does not implicitly {@link flyteidl.admin.EventErrorAlreadyInTerminalState.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.EventErrorAlreadyInTerminalState - * @static - * @param {flyteidl.admin.IEventErrorAlreadyInTerminalState} message EventErrorAlreadyInTerminalState message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EventErrorAlreadyInTerminalState.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.currentPhase != null && message.hasOwnProperty("currentPhase")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.currentPhase); - return writer; - }; - - /** - * Decodes an EventErrorAlreadyInTerminalState message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.EventErrorAlreadyInTerminalState - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.EventErrorAlreadyInTerminalState} EventErrorAlreadyInTerminalState - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EventErrorAlreadyInTerminalState.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.EventErrorAlreadyInTerminalState(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.currentPhase = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EventErrorAlreadyInTerminalState message. - * @function verify - * @memberof flyteidl.admin.EventErrorAlreadyInTerminalState - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EventErrorAlreadyInTerminalState.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.currentPhase != null && message.hasOwnProperty("currentPhase")) - if (!$util.isString(message.currentPhase)) - return "currentPhase: string expected"; - return null; - }; - - return EventErrorAlreadyInTerminalState; - })(); - - admin.EventErrorIncompatibleCluster = (function() { - - /** - * Properties of an EventErrorIncompatibleCluster. - * @memberof flyteidl.admin - * @interface IEventErrorIncompatibleCluster - * @property {string|null} [cluster] EventErrorIncompatibleCluster cluster - */ - - /** - * Constructs a new EventErrorIncompatibleCluster. - * @memberof flyteidl.admin - * @classdesc Represents an EventErrorIncompatibleCluster. - * @implements IEventErrorIncompatibleCluster - * @constructor - * @param {flyteidl.admin.IEventErrorIncompatibleCluster=} [properties] Properties to set - */ - function EventErrorIncompatibleCluster(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EventErrorIncompatibleCluster cluster. - * @member {string} cluster - * @memberof flyteidl.admin.EventErrorIncompatibleCluster - * @instance - */ - EventErrorIncompatibleCluster.prototype.cluster = ""; - - /** - * Creates a new EventErrorIncompatibleCluster instance using the specified properties. - * @function create - * @memberof flyteidl.admin.EventErrorIncompatibleCluster - * @static - * @param {flyteidl.admin.IEventErrorIncompatibleCluster=} [properties] Properties to set - * @returns {flyteidl.admin.EventErrorIncompatibleCluster} EventErrorIncompatibleCluster instance - */ - EventErrorIncompatibleCluster.create = function create(properties) { - return new EventErrorIncompatibleCluster(properties); - }; - - /** - * Encodes the specified EventErrorIncompatibleCluster message. Does not implicitly {@link flyteidl.admin.EventErrorIncompatibleCluster.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.EventErrorIncompatibleCluster - * @static - * @param {flyteidl.admin.IEventErrorIncompatibleCluster} message EventErrorIncompatibleCluster message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EventErrorIncompatibleCluster.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.cluster != null && message.hasOwnProperty("cluster")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.cluster); - return writer; - }; - - /** - * Decodes an EventErrorIncompatibleCluster message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.EventErrorIncompatibleCluster - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.EventErrorIncompatibleCluster} EventErrorIncompatibleCluster - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EventErrorIncompatibleCluster.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.EventErrorIncompatibleCluster(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.cluster = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EventErrorIncompatibleCluster message. - * @function verify - * @memberof flyteidl.admin.EventErrorIncompatibleCluster - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EventErrorIncompatibleCluster.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.cluster != null && message.hasOwnProperty("cluster")) - if (!$util.isString(message.cluster)) - return "cluster: string expected"; - return null; - }; - - return EventErrorIncompatibleCluster; - })(); - - admin.EventFailureReason = (function() { - - /** - * Properties of an EventFailureReason. - * @memberof flyteidl.admin - * @interface IEventFailureReason - * @property {flyteidl.admin.IEventErrorAlreadyInTerminalState|null} [alreadyInTerminalState] EventFailureReason alreadyInTerminalState - * @property {flyteidl.admin.IEventErrorIncompatibleCluster|null} [incompatibleCluster] EventFailureReason incompatibleCluster - */ - - /** - * Constructs a new EventFailureReason. - * @memberof flyteidl.admin - * @classdesc Represents an EventFailureReason. - * @implements IEventFailureReason - * @constructor - * @param {flyteidl.admin.IEventFailureReason=} [properties] Properties to set - */ - function EventFailureReason(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EventFailureReason alreadyInTerminalState. - * @member {flyteidl.admin.IEventErrorAlreadyInTerminalState|null|undefined} alreadyInTerminalState - * @memberof flyteidl.admin.EventFailureReason - * @instance - */ - EventFailureReason.prototype.alreadyInTerminalState = null; - - /** - * EventFailureReason incompatibleCluster. - * @member {flyteidl.admin.IEventErrorIncompatibleCluster|null|undefined} incompatibleCluster - * @memberof flyteidl.admin.EventFailureReason - * @instance - */ - EventFailureReason.prototype.incompatibleCluster = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * EventFailureReason reason. - * @member {"alreadyInTerminalState"|"incompatibleCluster"|undefined} reason - * @memberof flyteidl.admin.EventFailureReason - * @instance - */ - Object.defineProperty(EventFailureReason.prototype, "reason", { - get: $util.oneOfGetter($oneOfFields = ["alreadyInTerminalState", "incompatibleCluster"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new EventFailureReason instance using the specified properties. - * @function create - * @memberof flyteidl.admin.EventFailureReason - * @static - * @param {flyteidl.admin.IEventFailureReason=} [properties] Properties to set - * @returns {flyteidl.admin.EventFailureReason} EventFailureReason instance - */ - EventFailureReason.create = function create(properties) { - return new EventFailureReason(properties); - }; - - /** - * Encodes the specified EventFailureReason message. Does not implicitly {@link flyteidl.admin.EventFailureReason.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.EventFailureReason - * @static - * @param {flyteidl.admin.IEventFailureReason} message EventFailureReason message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EventFailureReason.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.alreadyInTerminalState != null && message.hasOwnProperty("alreadyInTerminalState")) - $root.flyteidl.admin.EventErrorAlreadyInTerminalState.encode(message.alreadyInTerminalState, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.incompatibleCluster != null && message.hasOwnProperty("incompatibleCluster")) - $root.flyteidl.admin.EventErrorIncompatibleCluster.encode(message.incompatibleCluster, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an EventFailureReason message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.EventFailureReason - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.EventFailureReason} EventFailureReason - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EventFailureReason.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.EventFailureReason(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.alreadyInTerminalState = $root.flyteidl.admin.EventErrorAlreadyInTerminalState.decode(reader, reader.uint32()); - break; - case 2: - message.incompatibleCluster = $root.flyteidl.admin.EventErrorIncompatibleCluster.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EventFailureReason message. - * @function verify - * @memberof flyteidl.admin.EventFailureReason - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EventFailureReason.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.alreadyInTerminalState != null && message.hasOwnProperty("alreadyInTerminalState")) { - properties.reason = 1; - { - var error = $root.flyteidl.admin.EventErrorAlreadyInTerminalState.verify(message.alreadyInTerminalState); - if (error) - return "alreadyInTerminalState." + error; - } - } - if (message.incompatibleCluster != null && message.hasOwnProperty("incompatibleCluster")) { - if (properties.reason === 1) - return "reason: multiple values"; - properties.reason = 1; - { - var error = $root.flyteidl.admin.EventErrorIncompatibleCluster.verify(message.incompatibleCluster); - if (error) - return "incompatibleCluster." + error; - } - } - return null; - }; - - return EventFailureReason; - })(); - - admin.WorkflowExecutionEventRequest = (function() { - - /** - * Properties of a WorkflowExecutionEventRequest. - * @memberof flyteidl.admin - * @interface IWorkflowExecutionEventRequest - * @property {string|null} [requestId] WorkflowExecutionEventRequest requestId - * @property {flyteidl.event.IWorkflowExecutionEvent|null} [event] WorkflowExecutionEventRequest event - */ - - /** - * Constructs a new WorkflowExecutionEventRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowExecutionEventRequest. - * @implements IWorkflowExecutionEventRequest - * @constructor - * @param {flyteidl.admin.IWorkflowExecutionEventRequest=} [properties] Properties to set - */ - function WorkflowExecutionEventRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionEventRequest requestId. - * @member {string} requestId - * @memberof flyteidl.admin.WorkflowExecutionEventRequest - * @instance - */ - WorkflowExecutionEventRequest.prototype.requestId = ""; - - /** - * WorkflowExecutionEventRequest event. - * @member {flyteidl.event.IWorkflowExecutionEvent|null|undefined} event - * @memberof flyteidl.admin.WorkflowExecutionEventRequest - * @instance - */ - WorkflowExecutionEventRequest.prototype.event = null; - - /** - * Creates a new WorkflowExecutionEventRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowExecutionEventRequest - * @static - * @param {flyteidl.admin.IWorkflowExecutionEventRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowExecutionEventRequest} WorkflowExecutionEventRequest instance - */ - WorkflowExecutionEventRequest.create = function create(properties) { - return new WorkflowExecutionEventRequest(properties); - }; - - /** - * Encodes the specified WorkflowExecutionEventRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionEventRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowExecutionEventRequest - * @static - * @param {flyteidl.admin.IWorkflowExecutionEventRequest} message WorkflowExecutionEventRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionEventRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.requestId != null && message.hasOwnProperty("requestId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.requestId); - if (message.event != null && message.hasOwnProperty("event")) - $root.flyteidl.event.WorkflowExecutionEvent.encode(message.event, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowExecutionEventRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowExecutionEventRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowExecutionEventRequest} WorkflowExecutionEventRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionEventRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionEventRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.requestId = reader.string(); - break; - case 2: - message.event = $root.flyteidl.event.WorkflowExecutionEvent.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionEventRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowExecutionEventRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionEventRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.requestId != null && message.hasOwnProperty("requestId")) - if (!$util.isString(message.requestId)) - return "requestId: string expected"; - if (message.event != null && message.hasOwnProperty("event")) { - var error = $root.flyteidl.event.WorkflowExecutionEvent.verify(message.event); - if (error) - return "event." + error; - } - return null; - }; - - return WorkflowExecutionEventRequest; - })(); - - admin.WorkflowExecutionEventResponse = (function() { - - /** - * Properties of a WorkflowExecutionEventResponse. - * @memberof flyteidl.admin - * @interface IWorkflowExecutionEventResponse - */ - - /** - * Constructs a new WorkflowExecutionEventResponse. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowExecutionEventResponse. - * @implements IWorkflowExecutionEventResponse - * @constructor - * @param {flyteidl.admin.IWorkflowExecutionEventResponse=} [properties] Properties to set - */ - function WorkflowExecutionEventResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new WorkflowExecutionEventResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowExecutionEventResponse - * @static - * @param {flyteidl.admin.IWorkflowExecutionEventResponse=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowExecutionEventResponse} WorkflowExecutionEventResponse instance - */ - WorkflowExecutionEventResponse.create = function create(properties) { - return new WorkflowExecutionEventResponse(properties); - }; - - /** - * Encodes the specified WorkflowExecutionEventResponse message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionEventResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowExecutionEventResponse - * @static - * @param {flyteidl.admin.IWorkflowExecutionEventResponse} message WorkflowExecutionEventResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionEventResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a WorkflowExecutionEventResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowExecutionEventResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowExecutionEventResponse} WorkflowExecutionEventResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionEventResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionEventResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionEventResponse message. - * @function verify - * @memberof flyteidl.admin.WorkflowExecutionEventResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionEventResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return WorkflowExecutionEventResponse; - })(); - - admin.NodeExecutionEventRequest = (function() { - - /** - * Properties of a NodeExecutionEventRequest. - * @memberof flyteidl.admin - * @interface INodeExecutionEventRequest - * @property {string|null} [requestId] NodeExecutionEventRequest requestId - * @property {flyteidl.event.INodeExecutionEvent|null} [event] NodeExecutionEventRequest event - */ - - /** - * Constructs a new NodeExecutionEventRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionEventRequest. - * @implements INodeExecutionEventRequest - * @constructor - * @param {flyteidl.admin.INodeExecutionEventRequest=} [properties] Properties to set - */ - function NodeExecutionEventRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionEventRequest requestId. - * @member {string} requestId - * @memberof flyteidl.admin.NodeExecutionEventRequest - * @instance - */ - NodeExecutionEventRequest.prototype.requestId = ""; - - /** - * NodeExecutionEventRequest event. - * @member {flyteidl.event.INodeExecutionEvent|null|undefined} event - * @memberof flyteidl.admin.NodeExecutionEventRequest - * @instance - */ - NodeExecutionEventRequest.prototype.event = null; - - /** - * Creates a new NodeExecutionEventRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionEventRequest - * @static - * @param {flyteidl.admin.INodeExecutionEventRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionEventRequest} NodeExecutionEventRequest instance - */ - NodeExecutionEventRequest.create = function create(properties) { - return new NodeExecutionEventRequest(properties); - }; - - /** - * Encodes the specified NodeExecutionEventRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionEventRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionEventRequest - * @static - * @param {flyteidl.admin.INodeExecutionEventRequest} message NodeExecutionEventRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionEventRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.requestId != null && message.hasOwnProperty("requestId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.requestId); - if (message.event != null && message.hasOwnProperty("event")) - $root.flyteidl.event.NodeExecutionEvent.encode(message.event, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NodeExecutionEventRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionEventRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionEventRequest} NodeExecutionEventRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionEventRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionEventRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.requestId = reader.string(); - break; - case 2: - message.event = $root.flyteidl.event.NodeExecutionEvent.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionEventRequest message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionEventRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionEventRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.requestId != null && message.hasOwnProperty("requestId")) - if (!$util.isString(message.requestId)) - return "requestId: string expected"; - if (message.event != null && message.hasOwnProperty("event")) { - var error = $root.flyteidl.event.NodeExecutionEvent.verify(message.event); - if (error) - return "event." + error; - } - return null; - }; - - return NodeExecutionEventRequest; - })(); - - admin.NodeExecutionEventResponse = (function() { - - /** - * Properties of a NodeExecutionEventResponse. - * @memberof flyteidl.admin - * @interface INodeExecutionEventResponse - */ - - /** - * Constructs a new NodeExecutionEventResponse. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionEventResponse. - * @implements INodeExecutionEventResponse - * @constructor - * @param {flyteidl.admin.INodeExecutionEventResponse=} [properties] Properties to set - */ - function NodeExecutionEventResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new NodeExecutionEventResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionEventResponse - * @static - * @param {flyteidl.admin.INodeExecutionEventResponse=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionEventResponse} NodeExecutionEventResponse instance - */ - NodeExecutionEventResponse.create = function create(properties) { - return new NodeExecutionEventResponse(properties); - }; - - /** - * Encodes the specified NodeExecutionEventResponse message. Does not implicitly {@link flyteidl.admin.NodeExecutionEventResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionEventResponse - * @static - * @param {flyteidl.admin.INodeExecutionEventResponse} message NodeExecutionEventResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionEventResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a NodeExecutionEventResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionEventResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionEventResponse} NodeExecutionEventResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionEventResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionEventResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionEventResponse message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionEventResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionEventResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return NodeExecutionEventResponse; - })(); - - admin.TaskExecutionEventRequest = (function() { - - /** - * Properties of a TaskExecutionEventRequest. - * @memberof flyteidl.admin - * @interface ITaskExecutionEventRequest - * @property {string|null} [requestId] TaskExecutionEventRequest requestId - * @property {flyteidl.event.ITaskExecutionEvent|null} [event] TaskExecutionEventRequest event - */ - - /** - * Constructs a new TaskExecutionEventRequest. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionEventRequest. - * @implements ITaskExecutionEventRequest - * @constructor - * @param {flyteidl.admin.ITaskExecutionEventRequest=} [properties] Properties to set - */ - function TaskExecutionEventRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionEventRequest requestId. - * @member {string} requestId - * @memberof flyteidl.admin.TaskExecutionEventRequest - * @instance - */ - TaskExecutionEventRequest.prototype.requestId = ""; - - /** - * TaskExecutionEventRequest event. - * @member {flyteidl.event.ITaskExecutionEvent|null|undefined} event - * @memberof flyteidl.admin.TaskExecutionEventRequest - * @instance - */ - TaskExecutionEventRequest.prototype.event = null; - - /** - * Creates a new TaskExecutionEventRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionEventRequest - * @static - * @param {flyteidl.admin.ITaskExecutionEventRequest=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionEventRequest} TaskExecutionEventRequest instance - */ - TaskExecutionEventRequest.create = function create(properties) { - return new TaskExecutionEventRequest(properties); - }; - - /** - * Encodes the specified TaskExecutionEventRequest message. Does not implicitly {@link flyteidl.admin.TaskExecutionEventRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionEventRequest - * @static - * @param {flyteidl.admin.ITaskExecutionEventRequest} message TaskExecutionEventRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionEventRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.requestId != null && message.hasOwnProperty("requestId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.requestId); - if (message.event != null && message.hasOwnProperty("event")) - $root.flyteidl.event.TaskExecutionEvent.encode(message.event, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskExecutionEventRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionEventRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionEventRequest} TaskExecutionEventRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionEventRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionEventRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.requestId = reader.string(); - break; - case 2: - message.event = $root.flyteidl.event.TaskExecutionEvent.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionEventRequest message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionEventRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionEventRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.requestId != null && message.hasOwnProperty("requestId")) - if (!$util.isString(message.requestId)) - return "requestId: string expected"; - if (message.event != null && message.hasOwnProperty("event")) { - var error = $root.flyteidl.event.TaskExecutionEvent.verify(message.event); - if (error) - return "event." + error; - } - return null; - }; - - return TaskExecutionEventRequest; - })(); - - admin.TaskExecutionEventResponse = (function() { - - /** - * Properties of a TaskExecutionEventResponse. - * @memberof flyteidl.admin - * @interface ITaskExecutionEventResponse - */ - - /** - * Constructs a new TaskExecutionEventResponse. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionEventResponse. - * @implements ITaskExecutionEventResponse - * @constructor - * @param {flyteidl.admin.ITaskExecutionEventResponse=} [properties] Properties to set - */ - function TaskExecutionEventResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new TaskExecutionEventResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionEventResponse - * @static - * @param {flyteidl.admin.ITaskExecutionEventResponse=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionEventResponse} TaskExecutionEventResponse instance - */ - TaskExecutionEventResponse.create = function create(properties) { - return new TaskExecutionEventResponse(properties); - }; - - /** - * Encodes the specified TaskExecutionEventResponse message. Does not implicitly {@link flyteidl.admin.TaskExecutionEventResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionEventResponse - * @static - * @param {flyteidl.admin.ITaskExecutionEventResponse} message TaskExecutionEventResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionEventResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a TaskExecutionEventResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionEventResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionEventResponse} TaskExecutionEventResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionEventResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionEventResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionEventResponse message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionEventResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionEventResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return TaskExecutionEventResponse; - })(); - - admin.ExecutionCreateRequest = (function() { - - /** - * Properties of an ExecutionCreateRequest. - * @memberof flyteidl.admin - * @interface IExecutionCreateRequest - * @property {string|null} [project] ExecutionCreateRequest project - * @property {string|null} [domain] ExecutionCreateRequest domain - * @property {string|null} [name] ExecutionCreateRequest name - * @property {flyteidl.admin.IExecutionSpec|null} [spec] ExecutionCreateRequest spec - * @property {flyteidl.core.ILiteralMap|null} [inputs] ExecutionCreateRequest inputs - * @property {string|null} [org] ExecutionCreateRequest org - */ - - /** - * Constructs a new ExecutionCreateRequest. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionCreateRequest. - * @implements IExecutionCreateRequest - * @constructor - * @param {flyteidl.admin.IExecutionCreateRequest=} [properties] Properties to set - */ - function ExecutionCreateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionCreateRequest project. - * @member {string} project - * @memberof flyteidl.admin.ExecutionCreateRequest - * @instance - */ - ExecutionCreateRequest.prototype.project = ""; - - /** - * ExecutionCreateRequest domain. - * @member {string} domain - * @memberof flyteidl.admin.ExecutionCreateRequest - * @instance - */ - ExecutionCreateRequest.prototype.domain = ""; - - /** - * ExecutionCreateRequest name. - * @member {string} name - * @memberof flyteidl.admin.ExecutionCreateRequest - * @instance - */ - ExecutionCreateRequest.prototype.name = ""; - - /** - * ExecutionCreateRequest spec. - * @member {flyteidl.admin.IExecutionSpec|null|undefined} spec - * @memberof flyteidl.admin.ExecutionCreateRequest - * @instance - */ - ExecutionCreateRequest.prototype.spec = null; - - /** - * ExecutionCreateRequest inputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} inputs - * @memberof flyteidl.admin.ExecutionCreateRequest - * @instance - */ - ExecutionCreateRequest.prototype.inputs = null; - - /** - * ExecutionCreateRequest org. - * @member {string} org - * @memberof flyteidl.admin.ExecutionCreateRequest - * @instance - */ - ExecutionCreateRequest.prototype.org = ""; - - /** - * Creates a new ExecutionCreateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionCreateRequest - * @static - * @param {flyteidl.admin.IExecutionCreateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionCreateRequest} ExecutionCreateRequest instance - */ - ExecutionCreateRequest.create = function create(properties) { - return new ExecutionCreateRequest(properties); - }; - - /** - * Encodes the specified ExecutionCreateRequest message. Does not implicitly {@link flyteidl.admin.ExecutionCreateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionCreateRequest - * @static - * @param {flyteidl.admin.IExecutionCreateRequest} message ExecutionCreateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionCreateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.name); - if (message.spec != null && message.hasOwnProperty("spec")) - $root.flyteidl.admin.ExecutionSpec.encode(message.spec, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - $root.flyteidl.core.LiteralMap.encode(message.inputs, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.org); - return writer; - }; - - /** - * Decodes an ExecutionCreateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionCreateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionCreateRequest} ExecutionCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionCreateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionCreateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.name = reader.string(); - break; - case 4: - message.spec = $root.flyteidl.admin.ExecutionSpec.decode(reader, reader.uint32()); - break; - case 5: - message.inputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 6: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionCreateRequest message. - * @function verify - * @memberof flyteidl.admin.ExecutionCreateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionCreateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.spec != null && message.hasOwnProperty("spec")) { - var error = $root.flyteidl.admin.ExecutionSpec.verify(message.spec); - if (error) - return "spec." + error; - } - if (message.inputs != null && message.hasOwnProperty("inputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.inputs); - if (error) - return "inputs." + error; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ExecutionCreateRequest; - })(); - - admin.ExecutionRelaunchRequest = (function() { - - /** - * Properties of an ExecutionRelaunchRequest. - * @memberof flyteidl.admin - * @interface IExecutionRelaunchRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] ExecutionRelaunchRequest id - * @property {string|null} [name] ExecutionRelaunchRequest name - * @property {boolean|null} [overwriteCache] ExecutionRelaunchRequest overwriteCache - */ - - /** - * Constructs a new ExecutionRelaunchRequest. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionRelaunchRequest. - * @implements IExecutionRelaunchRequest - * @constructor - * @param {flyteidl.admin.IExecutionRelaunchRequest=} [properties] Properties to set - */ - function ExecutionRelaunchRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionRelaunchRequest id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.ExecutionRelaunchRequest - * @instance - */ - ExecutionRelaunchRequest.prototype.id = null; - - /** - * ExecutionRelaunchRequest name. - * @member {string} name - * @memberof flyteidl.admin.ExecutionRelaunchRequest - * @instance - */ - ExecutionRelaunchRequest.prototype.name = ""; - - /** - * ExecutionRelaunchRequest overwriteCache. - * @member {boolean} overwriteCache - * @memberof flyteidl.admin.ExecutionRelaunchRequest - * @instance - */ - ExecutionRelaunchRequest.prototype.overwriteCache = false; - - /** - * Creates a new ExecutionRelaunchRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionRelaunchRequest - * @static - * @param {flyteidl.admin.IExecutionRelaunchRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionRelaunchRequest} ExecutionRelaunchRequest instance - */ - ExecutionRelaunchRequest.create = function create(properties) { - return new ExecutionRelaunchRequest(properties); - }; - - /** - * Encodes the specified ExecutionRelaunchRequest message. Does not implicitly {@link flyteidl.admin.ExecutionRelaunchRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionRelaunchRequest - * @static - * @param {flyteidl.admin.IExecutionRelaunchRequest} message ExecutionRelaunchRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionRelaunchRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.name); - if (message.overwriteCache != null && message.hasOwnProperty("overwriteCache")) - writer.uint32(/* id 4, wireType 0 =*/32).bool(message.overwriteCache); - return writer; - }; - - /** - * Decodes an ExecutionRelaunchRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionRelaunchRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionRelaunchRequest} ExecutionRelaunchRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionRelaunchRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionRelaunchRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 3: - message.name = reader.string(); - break; - case 4: - message.overwriteCache = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionRelaunchRequest message. - * @function verify - * @memberof flyteidl.admin.ExecutionRelaunchRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionRelaunchRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.overwriteCache != null && message.hasOwnProperty("overwriteCache")) - if (typeof message.overwriteCache !== "boolean") - return "overwriteCache: boolean expected"; - return null; - }; - - return ExecutionRelaunchRequest; - })(); - - admin.ExecutionRecoverRequest = (function() { - - /** - * Properties of an ExecutionRecoverRequest. - * @memberof flyteidl.admin - * @interface IExecutionRecoverRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] ExecutionRecoverRequest id - * @property {string|null} [name] ExecutionRecoverRequest name - * @property {flyteidl.admin.IExecutionMetadata|null} [metadata] ExecutionRecoverRequest metadata - */ - - /** - * Constructs a new ExecutionRecoverRequest. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionRecoverRequest. - * @implements IExecutionRecoverRequest - * @constructor - * @param {flyteidl.admin.IExecutionRecoverRequest=} [properties] Properties to set - */ - function ExecutionRecoverRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionRecoverRequest id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.ExecutionRecoverRequest - * @instance - */ - ExecutionRecoverRequest.prototype.id = null; - - /** - * ExecutionRecoverRequest name. - * @member {string} name - * @memberof flyteidl.admin.ExecutionRecoverRequest - * @instance - */ - ExecutionRecoverRequest.prototype.name = ""; - - /** - * ExecutionRecoverRequest metadata. - * @member {flyteidl.admin.IExecutionMetadata|null|undefined} metadata - * @memberof flyteidl.admin.ExecutionRecoverRequest - * @instance - */ - ExecutionRecoverRequest.prototype.metadata = null; - - /** - * Creates a new ExecutionRecoverRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionRecoverRequest - * @static - * @param {flyteidl.admin.IExecutionRecoverRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionRecoverRequest} ExecutionRecoverRequest instance - */ - ExecutionRecoverRequest.create = function create(properties) { - return new ExecutionRecoverRequest(properties); - }; - - /** - * Encodes the specified ExecutionRecoverRequest message. Does not implicitly {@link flyteidl.admin.ExecutionRecoverRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionRecoverRequest - * @static - * @param {flyteidl.admin.IExecutionRecoverRequest} message ExecutionRecoverRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionRecoverRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.name); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.admin.ExecutionMetadata.encode(message.metadata, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ExecutionRecoverRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionRecoverRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionRecoverRequest} ExecutionRecoverRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionRecoverRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionRecoverRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.name = reader.string(); - break; - case 3: - message.metadata = $root.flyteidl.admin.ExecutionMetadata.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionRecoverRequest message. - * @function verify - * @memberof flyteidl.admin.ExecutionRecoverRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionRecoverRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.admin.ExecutionMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - return null; - }; - - return ExecutionRecoverRequest; - })(); - - admin.ExecutionCreateResponse = (function() { - - /** - * Properties of an ExecutionCreateResponse. - * @memberof flyteidl.admin - * @interface IExecutionCreateResponse - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] ExecutionCreateResponse id - */ - - /** - * Constructs a new ExecutionCreateResponse. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionCreateResponse. - * @implements IExecutionCreateResponse - * @constructor - * @param {flyteidl.admin.IExecutionCreateResponse=} [properties] Properties to set - */ - function ExecutionCreateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionCreateResponse id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.ExecutionCreateResponse - * @instance - */ - ExecutionCreateResponse.prototype.id = null; - - /** - * Creates a new ExecutionCreateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionCreateResponse - * @static - * @param {flyteidl.admin.IExecutionCreateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionCreateResponse} ExecutionCreateResponse instance - */ - ExecutionCreateResponse.create = function create(properties) { - return new ExecutionCreateResponse(properties); - }; - - /** - * Encodes the specified ExecutionCreateResponse message. Does not implicitly {@link flyteidl.admin.ExecutionCreateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionCreateResponse - * @static - * @param {flyteidl.admin.IExecutionCreateResponse} message ExecutionCreateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionCreateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ExecutionCreateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionCreateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionCreateResponse} ExecutionCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionCreateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionCreateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionCreateResponse message. - * @function verify - * @memberof flyteidl.admin.ExecutionCreateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionCreateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return ExecutionCreateResponse; - })(); - - admin.WorkflowExecutionGetRequest = (function() { - - /** - * Properties of a WorkflowExecutionGetRequest. - * @memberof flyteidl.admin - * @interface IWorkflowExecutionGetRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] WorkflowExecutionGetRequest id - */ - - /** - * Constructs a new WorkflowExecutionGetRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowExecutionGetRequest. - * @implements IWorkflowExecutionGetRequest - * @constructor - * @param {flyteidl.admin.IWorkflowExecutionGetRequest=} [properties] Properties to set - */ - function WorkflowExecutionGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionGetRequest id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.WorkflowExecutionGetRequest - * @instance - */ - WorkflowExecutionGetRequest.prototype.id = null; - - /** - * Creates a new WorkflowExecutionGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowExecutionGetRequest - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowExecutionGetRequest} WorkflowExecutionGetRequest instance - */ - WorkflowExecutionGetRequest.create = function create(properties) { - return new WorkflowExecutionGetRequest(properties); - }; - - /** - * Encodes the specified WorkflowExecutionGetRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowExecutionGetRequest - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetRequest} message WorkflowExecutionGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowExecutionGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowExecutionGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowExecutionGetRequest} WorkflowExecutionGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionGetRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowExecutionGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return WorkflowExecutionGetRequest; - })(); - - admin.Execution = (function() { - - /** - * Properties of an Execution. - * @memberof flyteidl.admin - * @interface IExecution - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] Execution id - * @property {flyteidl.admin.IExecutionSpec|null} [spec] Execution spec - * @property {flyteidl.admin.IExecutionClosure|null} [closure] Execution closure - */ - - /** - * Constructs a new Execution. - * @memberof flyteidl.admin - * @classdesc Represents an Execution. - * @implements IExecution - * @constructor - * @param {flyteidl.admin.IExecution=} [properties] Properties to set - */ - function Execution(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Execution id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.Execution - * @instance - */ - Execution.prototype.id = null; - - /** - * Execution spec. - * @member {flyteidl.admin.IExecutionSpec|null|undefined} spec - * @memberof flyteidl.admin.Execution - * @instance - */ - Execution.prototype.spec = null; - - /** - * Execution closure. - * @member {flyteidl.admin.IExecutionClosure|null|undefined} closure - * @memberof flyteidl.admin.Execution - * @instance - */ - Execution.prototype.closure = null; - - /** - * Creates a new Execution instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Execution - * @static - * @param {flyteidl.admin.IExecution=} [properties] Properties to set - * @returns {flyteidl.admin.Execution} Execution instance - */ - Execution.create = function create(properties) { - return new Execution(properties); - }; - - /** - * Encodes the specified Execution message. Does not implicitly {@link flyteidl.admin.Execution.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Execution - * @static - * @param {flyteidl.admin.IExecution} message Execution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Execution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.spec != null && message.hasOwnProperty("spec")) - $root.flyteidl.admin.ExecutionSpec.encode(message.spec, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.closure != null && message.hasOwnProperty("closure")) - $root.flyteidl.admin.ExecutionClosure.encode(message.closure, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an Execution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Execution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Execution} Execution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Execution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Execution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.spec = $root.flyteidl.admin.ExecutionSpec.decode(reader, reader.uint32()); - break; - case 3: - message.closure = $root.flyteidl.admin.ExecutionClosure.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Execution message. - * @function verify - * @memberof flyteidl.admin.Execution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Execution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.spec != null && message.hasOwnProperty("spec")) { - var error = $root.flyteidl.admin.ExecutionSpec.verify(message.spec); - if (error) - return "spec." + error; - } - if (message.closure != null && message.hasOwnProperty("closure")) { - var error = $root.flyteidl.admin.ExecutionClosure.verify(message.closure); - if (error) - return "closure." + error; - } - return null; - }; - - return Execution; - })(); - - admin.ExecutionList = (function() { - - /** - * Properties of an ExecutionList. - * @memberof flyteidl.admin - * @interface IExecutionList - * @property {Array.|null} [executions] ExecutionList executions - * @property {string|null} [token] ExecutionList token - */ - - /** - * Constructs a new ExecutionList. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionList. - * @implements IExecutionList - * @constructor - * @param {flyteidl.admin.IExecutionList=} [properties] Properties to set - */ - function ExecutionList(properties) { - this.executions = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionList executions. - * @member {Array.} executions - * @memberof flyteidl.admin.ExecutionList - * @instance - */ - ExecutionList.prototype.executions = $util.emptyArray; - - /** - * ExecutionList token. - * @member {string} token - * @memberof flyteidl.admin.ExecutionList - * @instance - */ - ExecutionList.prototype.token = ""; - - /** - * Creates a new ExecutionList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionList - * @static - * @param {flyteidl.admin.IExecutionList=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionList} ExecutionList instance - */ - ExecutionList.create = function create(properties) { - return new ExecutionList(properties); - }; - - /** - * Encodes the specified ExecutionList message. Does not implicitly {@link flyteidl.admin.ExecutionList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionList - * @static - * @param {flyteidl.admin.IExecutionList} message ExecutionList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.executions != null && message.executions.length) - for (var i = 0; i < message.executions.length; ++i) - $root.flyteidl.admin.Execution.encode(message.executions[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes an ExecutionList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionList} ExecutionList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.executions && message.executions.length)) - message.executions = []; - message.executions.push($root.flyteidl.admin.Execution.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionList message. - * @function verify - * @memberof flyteidl.admin.ExecutionList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.executions != null && message.hasOwnProperty("executions")) { - if (!Array.isArray(message.executions)) - return "executions: array expected"; - for (var i = 0; i < message.executions.length; ++i) { - var error = $root.flyteidl.admin.Execution.verify(message.executions[i]); - if (error) - return "executions." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return ExecutionList; - })(); - - admin.LiteralMapBlob = (function() { - - /** - * Properties of a LiteralMapBlob. - * @memberof flyteidl.admin - * @interface ILiteralMapBlob - * @property {flyteidl.core.ILiteralMap|null} [values] LiteralMapBlob values - * @property {string|null} [uri] LiteralMapBlob uri - */ - - /** - * Constructs a new LiteralMapBlob. - * @memberof flyteidl.admin - * @classdesc Represents a LiteralMapBlob. - * @implements ILiteralMapBlob - * @constructor - * @param {flyteidl.admin.ILiteralMapBlob=} [properties] Properties to set - */ - function LiteralMapBlob(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LiteralMapBlob values. - * @member {flyteidl.core.ILiteralMap|null|undefined} values - * @memberof flyteidl.admin.LiteralMapBlob - * @instance - */ - LiteralMapBlob.prototype.values = null; - - /** - * LiteralMapBlob uri. - * @member {string} uri - * @memberof flyteidl.admin.LiteralMapBlob - * @instance - */ - LiteralMapBlob.prototype.uri = ""; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * LiteralMapBlob data. - * @member {"values"|"uri"|undefined} data - * @memberof flyteidl.admin.LiteralMapBlob - * @instance - */ - Object.defineProperty(LiteralMapBlob.prototype, "data", { - get: $util.oneOfGetter($oneOfFields = ["values", "uri"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new LiteralMapBlob instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LiteralMapBlob - * @static - * @param {flyteidl.admin.ILiteralMapBlob=} [properties] Properties to set - * @returns {flyteidl.admin.LiteralMapBlob} LiteralMapBlob instance - */ - LiteralMapBlob.create = function create(properties) { - return new LiteralMapBlob(properties); - }; - - /** - * Encodes the specified LiteralMapBlob message. Does not implicitly {@link flyteidl.admin.LiteralMapBlob.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LiteralMapBlob - * @static - * @param {flyteidl.admin.ILiteralMapBlob} message LiteralMapBlob message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LiteralMapBlob.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.values != null && message.hasOwnProperty("values")) - $root.flyteidl.core.LiteralMap.encode(message.values, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.uri != null && message.hasOwnProperty("uri")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.uri); - return writer; - }; - - /** - * Decodes a LiteralMapBlob message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LiteralMapBlob - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LiteralMapBlob} LiteralMapBlob - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LiteralMapBlob.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LiteralMapBlob(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.values = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 2: - message.uri = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LiteralMapBlob message. - * @function verify - * @memberof flyteidl.admin.LiteralMapBlob - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LiteralMapBlob.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.values != null && message.hasOwnProperty("values")) { - properties.data = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.values); - if (error) - return "values." + error; - } - } - if (message.uri != null && message.hasOwnProperty("uri")) { - if (properties.data === 1) - return "data: multiple values"; - properties.data = 1; - if (!$util.isString(message.uri)) - return "uri: string expected"; - } - return null; - }; - - return LiteralMapBlob; - })(); - - admin.AbortMetadata = (function() { - - /** - * Properties of an AbortMetadata. - * @memberof flyteidl.admin - * @interface IAbortMetadata - * @property {string|null} [cause] AbortMetadata cause - * @property {string|null} [principal] AbortMetadata principal - */ - - /** - * Constructs a new AbortMetadata. - * @memberof flyteidl.admin - * @classdesc Represents an AbortMetadata. - * @implements IAbortMetadata - * @constructor - * @param {flyteidl.admin.IAbortMetadata=} [properties] Properties to set - */ - function AbortMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * AbortMetadata cause. - * @member {string} cause - * @memberof flyteidl.admin.AbortMetadata - * @instance - */ - AbortMetadata.prototype.cause = ""; - - /** - * AbortMetadata principal. - * @member {string} principal - * @memberof flyteidl.admin.AbortMetadata - * @instance - */ - AbortMetadata.prototype.principal = ""; - - /** - * Creates a new AbortMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.AbortMetadata - * @static - * @param {flyteidl.admin.IAbortMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.AbortMetadata} AbortMetadata instance - */ - AbortMetadata.create = function create(properties) { - return new AbortMetadata(properties); - }; - - /** - * Encodes the specified AbortMetadata message. Does not implicitly {@link flyteidl.admin.AbortMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.AbortMetadata - * @static - * @param {flyteidl.admin.IAbortMetadata} message AbortMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - AbortMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.cause != null && message.hasOwnProperty("cause")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.cause); - if (message.principal != null && message.hasOwnProperty("principal")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.principal); - return writer; - }; - - /** - * Decodes an AbortMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.AbortMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.AbortMetadata} AbortMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - AbortMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.AbortMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.cause = reader.string(); - break; - case 2: - message.principal = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an AbortMetadata message. - * @function verify - * @memberof flyteidl.admin.AbortMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - AbortMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.cause != null && message.hasOwnProperty("cause")) - if (!$util.isString(message.cause)) - return "cause: string expected"; - if (message.principal != null && message.hasOwnProperty("principal")) - if (!$util.isString(message.principal)) - return "principal: string expected"; - return null; - }; - - return AbortMetadata; - })(); - - admin.ExecutionClosure = (function() { - - /** - * Properties of an ExecutionClosure. - * @memberof flyteidl.admin - * @interface IExecutionClosure - * @property {flyteidl.admin.ILiteralMapBlob|null} [outputs] ExecutionClosure outputs - * @property {flyteidl.core.IExecutionError|null} [error] ExecutionClosure error - * @property {string|null} [abortCause] ExecutionClosure abortCause - * @property {flyteidl.admin.IAbortMetadata|null} [abortMetadata] ExecutionClosure abortMetadata - * @property {flyteidl.core.ILiteralMap|null} [outputData] ExecutionClosure outputData - * @property {flyteidl.core.ILiteralMap|null} [computedInputs] ExecutionClosure computedInputs - * @property {flyteidl.core.WorkflowExecution.Phase|null} [phase] ExecutionClosure phase - * @property {google.protobuf.ITimestamp|null} [startedAt] ExecutionClosure startedAt - * @property {google.protobuf.IDuration|null} [duration] ExecutionClosure duration - * @property {google.protobuf.ITimestamp|null} [createdAt] ExecutionClosure createdAt - * @property {google.protobuf.ITimestamp|null} [updatedAt] ExecutionClosure updatedAt - * @property {Array.|null} [notifications] ExecutionClosure notifications - * @property {flyteidl.core.IIdentifier|null} [workflowId] ExecutionClosure workflowId - * @property {flyteidl.admin.IExecutionStateChangeDetails|null} [stateChangeDetails] ExecutionClosure stateChangeDetails - */ - - /** - * Constructs a new ExecutionClosure. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionClosure. - * @implements IExecutionClosure - * @constructor - * @param {flyteidl.admin.IExecutionClosure=} [properties] Properties to set - */ - function ExecutionClosure(properties) { - this.notifications = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionClosure outputs. - * @member {flyteidl.admin.ILiteralMapBlob|null|undefined} outputs - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.outputs = null; - - /** - * ExecutionClosure error. - * @member {flyteidl.core.IExecutionError|null|undefined} error - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.error = null; - - /** - * ExecutionClosure abortCause. - * @member {string} abortCause - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.abortCause = ""; - - /** - * ExecutionClosure abortMetadata. - * @member {flyteidl.admin.IAbortMetadata|null|undefined} abortMetadata - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.abortMetadata = null; - - /** - * ExecutionClosure outputData. - * @member {flyteidl.core.ILiteralMap|null|undefined} outputData - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.outputData = null; - - /** - * ExecutionClosure computedInputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} computedInputs - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.computedInputs = null; - - /** - * ExecutionClosure phase. - * @member {flyteidl.core.WorkflowExecution.Phase} phase - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.phase = 0; - - /** - * ExecutionClosure startedAt. - * @member {google.protobuf.ITimestamp|null|undefined} startedAt - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.startedAt = null; - - /** - * ExecutionClosure duration. - * @member {google.protobuf.IDuration|null|undefined} duration - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.duration = null; - - /** - * ExecutionClosure createdAt. - * @member {google.protobuf.ITimestamp|null|undefined} createdAt - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.createdAt = null; - - /** - * ExecutionClosure updatedAt. - * @member {google.protobuf.ITimestamp|null|undefined} updatedAt - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.updatedAt = null; - - /** - * ExecutionClosure notifications. - * @member {Array.} notifications - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.notifications = $util.emptyArray; - - /** - * ExecutionClosure workflowId. - * @member {flyteidl.core.IIdentifier|null|undefined} workflowId - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.workflowId = null; - - /** - * ExecutionClosure stateChangeDetails. - * @member {flyteidl.admin.IExecutionStateChangeDetails|null|undefined} stateChangeDetails - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - ExecutionClosure.prototype.stateChangeDetails = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * ExecutionClosure outputResult. - * @member {"outputs"|"error"|"abortCause"|"abortMetadata"|"outputData"|undefined} outputResult - * @memberof flyteidl.admin.ExecutionClosure - * @instance - */ - Object.defineProperty(ExecutionClosure.prototype, "outputResult", { - get: $util.oneOfGetter($oneOfFields = ["outputs", "error", "abortCause", "abortMetadata", "outputData"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new ExecutionClosure instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionClosure - * @static - * @param {flyteidl.admin.IExecutionClosure=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionClosure} ExecutionClosure instance - */ - ExecutionClosure.create = function create(properties) { - return new ExecutionClosure(properties); - }; - - /** - * Encodes the specified ExecutionClosure message. Does not implicitly {@link flyteidl.admin.ExecutionClosure.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionClosure - * @static - * @param {flyteidl.admin.IExecutionClosure} message ExecutionClosure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionClosure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.outputs != null && message.hasOwnProperty("outputs")) - $root.flyteidl.admin.LiteralMapBlob.encode(message.outputs, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.ExecutionError.encode(message.error, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.computedInputs != null && message.hasOwnProperty("computedInputs")) - $root.flyteidl.core.LiteralMap.encode(message.computedInputs, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.phase != null && message.hasOwnProperty("phase")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.phase); - if (message.startedAt != null && message.hasOwnProperty("startedAt")) - $root.google.protobuf.Timestamp.encode(message.startedAt, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.duration != null && message.hasOwnProperty("duration")) - $root.google.protobuf.Duration.encode(message.duration, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.createdAt != null && message.hasOwnProperty("createdAt")) - $root.google.protobuf.Timestamp.encode(message.createdAt, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.updatedAt != null && message.hasOwnProperty("updatedAt")) - $root.google.protobuf.Timestamp.encode(message.updatedAt, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.notifications != null && message.notifications.length) - for (var i = 0; i < message.notifications.length; ++i) - $root.flyteidl.admin.Notification.encode(message.notifications[i], writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.abortCause != null && message.hasOwnProperty("abortCause")) - writer.uint32(/* id 10, wireType 2 =*/82).string(message.abortCause); - if (message.workflowId != null && message.hasOwnProperty("workflowId")) - $root.flyteidl.core.Identifier.encode(message.workflowId, writer.uint32(/* id 11, wireType 2 =*/90).fork()).ldelim(); - if (message.abortMetadata != null && message.hasOwnProperty("abortMetadata")) - $root.flyteidl.admin.AbortMetadata.encode(message.abortMetadata, writer.uint32(/* id 12, wireType 2 =*/98).fork()).ldelim(); - if (message.outputData != null && message.hasOwnProperty("outputData")) - $root.flyteidl.core.LiteralMap.encode(message.outputData, writer.uint32(/* id 13, wireType 2 =*/106).fork()).ldelim(); - if (message.stateChangeDetails != null && message.hasOwnProperty("stateChangeDetails")) - $root.flyteidl.admin.ExecutionStateChangeDetails.encode(message.stateChangeDetails, writer.uint32(/* id 14, wireType 2 =*/114).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ExecutionClosure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionClosure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionClosure} ExecutionClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionClosure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionClosure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.outputs = $root.flyteidl.admin.LiteralMapBlob.decode(reader, reader.uint32()); - break; - case 2: - message.error = $root.flyteidl.core.ExecutionError.decode(reader, reader.uint32()); - break; - case 10: - message.abortCause = reader.string(); - break; - case 12: - message.abortMetadata = $root.flyteidl.admin.AbortMetadata.decode(reader, reader.uint32()); - break; - case 13: - message.outputData = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 3: - message.computedInputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 4: - message.phase = reader.int32(); - break; - case 5: - message.startedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 6: - message.duration = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - case 7: - message.createdAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 8: - message.updatedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 9: - if (!(message.notifications && message.notifications.length)) - message.notifications = []; - message.notifications.push($root.flyteidl.admin.Notification.decode(reader, reader.uint32())); - break; - case 11: - message.workflowId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 14: - message.stateChangeDetails = $root.flyteidl.admin.ExecutionStateChangeDetails.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionClosure message. - * @function verify - * @memberof flyteidl.admin.ExecutionClosure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionClosure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.outputs != null && message.hasOwnProperty("outputs")) { - properties.outputResult = 1; - { - var error = $root.flyteidl.admin.LiteralMapBlob.verify(message.outputs); - if (error) - return "outputs." + error; - } - } - if (message.error != null && message.hasOwnProperty("error")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.ExecutionError.verify(message.error); - if (error) - return "error." + error; - } - } - if (message.abortCause != null && message.hasOwnProperty("abortCause")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - if (!$util.isString(message.abortCause)) - return "abortCause: string expected"; - } - if (message.abortMetadata != null && message.hasOwnProperty("abortMetadata")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.admin.AbortMetadata.verify(message.abortMetadata); - if (error) - return "abortMetadata." + error; - } - } - if (message.outputData != null && message.hasOwnProperty("outputData")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.outputData); - if (error) - return "outputData." + error; - } - } - if (message.computedInputs != null && message.hasOwnProperty("computedInputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.computedInputs); - if (error) - return "computedInputs." + error; - } - if (message.phase != null && message.hasOwnProperty("phase")) - switch (message.phase) { - default: - return "phase: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - break; - } - if (message.startedAt != null && message.hasOwnProperty("startedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.startedAt); - if (error) - return "startedAt." + error; - } - if (message.duration != null && message.hasOwnProperty("duration")) { - var error = $root.google.protobuf.Duration.verify(message.duration); - if (error) - return "duration." + error; - } - if (message.createdAt != null && message.hasOwnProperty("createdAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.createdAt); - if (error) - return "createdAt." + error; - } - if (message.updatedAt != null && message.hasOwnProperty("updatedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.updatedAt); - if (error) - return "updatedAt." + error; - } - if (message.notifications != null && message.hasOwnProperty("notifications")) { - if (!Array.isArray(message.notifications)) - return "notifications: array expected"; - for (var i = 0; i < message.notifications.length; ++i) { - var error = $root.flyteidl.admin.Notification.verify(message.notifications[i]); - if (error) - return "notifications." + error; - } - } - if (message.workflowId != null && message.hasOwnProperty("workflowId")) { - var error = $root.flyteidl.core.Identifier.verify(message.workflowId); - if (error) - return "workflowId." + error; - } - if (message.stateChangeDetails != null && message.hasOwnProperty("stateChangeDetails")) { - var error = $root.flyteidl.admin.ExecutionStateChangeDetails.verify(message.stateChangeDetails); - if (error) - return "stateChangeDetails." + error; - } - return null; - }; - - return ExecutionClosure; - })(); - - admin.SystemMetadata = (function() { - - /** - * Properties of a SystemMetadata. - * @memberof flyteidl.admin - * @interface ISystemMetadata - * @property {string|null} [executionCluster] SystemMetadata executionCluster - * @property {string|null} [namespace] SystemMetadata namespace - */ - - /** - * Constructs a new SystemMetadata. - * @memberof flyteidl.admin - * @classdesc Represents a SystemMetadata. - * @implements ISystemMetadata - * @constructor - * @param {flyteidl.admin.ISystemMetadata=} [properties] Properties to set - */ - function SystemMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SystemMetadata executionCluster. - * @member {string} executionCluster - * @memberof flyteidl.admin.SystemMetadata - * @instance - */ - SystemMetadata.prototype.executionCluster = ""; - - /** - * SystemMetadata namespace. - * @member {string} namespace - * @memberof flyteidl.admin.SystemMetadata - * @instance - */ - SystemMetadata.prototype.namespace = ""; - - /** - * Creates a new SystemMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.SystemMetadata - * @static - * @param {flyteidl.admin.ISystemMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.SystemMetadata} SystemMetadata instance - */ - SystemMetadata.create = function create(properties) { - return new SystemMetadata(properties); - }; - - /** - * Encodes the specified SystemMetadata message. Does not implicitly {@link flyteidl.admin.SystemMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.SystemMetadata - * @static - * @param {flyteidl.admin.ISystemMetadata} message SystemMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SystemMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.executionCluster != null && message.hasOwnProperty("executionCluster")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.executionCluster); - if (message.namespace != null && message.hasOwnProperty("namespace")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.namespace); - return writer; - }; - - /** - * Decodes a SystemMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.SystemMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.SystemMetadata} SystemMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SystemMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.SystemMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.executionCluster = reader.string(); - break; - case 2: - message.namespace = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SystemMetadata message. - * @function verify - * @memberof flyteidl.admin.SystemMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SystemMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.executionCluster != null && message.hasOwnProperty("executionCluster")) - if (!$util.isString(message.executionCluster)) - return "executionCluster: string expected"; - if (message.namespace != null && message.hasOwnProperty("namespace")) - if (!$util.isString(message.namespace)) - return "namespace: string expected"; - return null; - }; - - return SystemMetadata; - })(); - - admin.ExecutionMetadata = (function() { - - /** - * Properties of an ExecutionMetadata. - * @memberof flyteidl.admin - * @interface IExecutionMetadata - * @property {flyteidl.admin.ExecutionMetadata.ExecutionMode|null} [mode] ExecutionMetadata mode - * @property {string|null} [principal] ExecutionMetadata principal - * @property {number|null} [nesting] ExecutionMetadata nesting - * @property {google.protobuf.ITimestamp|null} [scheduledAt] ExecutionMetadata scheduledAt - * @property {flyteidl.core.INodeExecutionIdentifier|null} [parentNodeExecution] ExecutionMetadata parentNodeExecution - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [referenceExecution] ExecutionMetadata referenceExecution - * @property {flyteidl.admin.ISystemMetadata|null} [systemMetadata] ExecutionMetadata systemMetadata - * @property {Array.|null} [artifactIds] ExecutionMetadata artifactIds - */ - - /** - * Constructs a new ExecutionMetadata. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionMetadata. - * @implements IExecutionMetadata - * @constructor - * @param {flyteidl.admin.IExecutionMetadata=} [properties] Properties to set - */ - function ExecutionMetadata(properties) { - this.artifactIds = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionMetadata mode. - * @member {flyteidl.admin.ExecutionMetadata.ExecutionMode} mode - * @memberof flyteidl.admin.ExecutionMetadata - * @instance - */ - ExecutionMetadata.prototype.mode = 0; - - /** - * ExecutionMetadata principal. - * @member {string} principal - * @memberof flyteidl.admin.ExecutionMetadata - * @instance - */ - ExecutionMetadata.prototype.principal = ""; - - /** - * ExecutionMetadata nesting. - * @member {number} nesting - * @memberof flyteidl.admin.ExecutionMetadata - * @instance - */ - ExecutionMetadata.prototype.nesting = 0; - - /** - * ExecutionMetadata scheduledAt. - * @member {google.protobuf.ITimestamp|null|undefined} scheduledAt - * @memberof flyteidl.admin.ExecutionMetadata - * @instance - */ - ExecutionMetadata.prototype.scheduledAt = null; - - /** - * ExecutionMetadata parentNodeExecution. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} parentNodeExecution - * @memberof flyteidl.admin.ExecutionMetadata - * @instance - */ - ExecutionMetadata.prototype.parentNodeExecution = null; - - /** - * ExecutionMetadata referenceExecution. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} referenceExecution - * @memberof flyteidl.admin.ExecutionMetadata - * @instance - */ - ExecutionMetadata.prototype.referenceExecution = null; - - /** - * ExecutionMetadata systemMetadata. - * @member {flyteidl.admin.ISystemMetadata|null|undefined} systemMetadata - * @memberof flyteidl.admin.ExecutionMetadata - * @instance - */ - ExecutionMetadata.prototype.systemMetadata = null; - - /** - * ExecutionMetadata artifactIds. - * @member {Array.} artifactIds - * @memberof flyteidl.admin.ExecutionMetadata - * @instance - */ - ExecutionMetadata.prototype.artifactIds = $util.emptyArray; - - /** - * Creates a new ExecutionMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionMetadata - * @static - * @param {flyteidl.admin.IExecutionMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionMetadata} ExecutionMetadata instance - */ - ExecutionMetadata.create = function create(properties) { - return new ExecutionMetadata(properties); - }; - - /** - * Encodes the specified ExecutionMetadata message. Does not implicitly {@link flyteidl.admin.ExecutionMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionMetadata - * @static - * @param {flyteidl.admin.IExecutionMetadata} message ExecutionMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.mode != null && message.hasOwnProperty("mode")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.mode); - if (message.principal != null && message.hasOwnProperty("principal")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.principal); - if (message.nesting != null && message.hasOwnProperty("nesting")) - writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.nesting); - if (message.scheduledAt != null && message.hasOwnProperty("scheduledAt")) - $root.google.protobuf.Timestamp.encode(message.scheduledAt, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.parentNodeExecution != null && message.hasOwnProperty("parentNodeExecution")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.parentNodeExecution, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.referenceExecution != null && message.hasOwnProperty("referenceExecution")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.referenceExecution, writer.uint32(/* id 16, wireType 2 =*/130).fork()).ldelim(); - if (message.systemMetadata != null && message.hasOwnProperty("systemMetadata")) - $root.flyteidl.admin.SystemMetadata.encode(message.systemMetadata, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim(); - if (message.artifactIds != null && message.artifactIds.length) - for (var i = 0; i < message.artifactIds.length; ++i) - $root.flyteidl.core.ArtifactID.encode(message.artifactIds[i], writer.uint32(/* id 18, wireType 2 =*/146).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ExecutionMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionMetadata} ExecutionMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.mode = reader.int32(); - break; - case 2: - message.principal = reader.string(); - break; - case 3: - message.nesting = reader.uint32(); - break; - case 4: - message.scheduledAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 5: - message.parentNodeExecution = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 16: - message.referenceExecution = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 17: - message.systemMetadata = $root.flyteidl.admin.SystemMetadata.decode(reader, reader.uint32()); - break; - case 18: - if (!(message.artifactIds && message.artifactIds.length)) - message.artifactIds = []; - message.artifactIds.push($root.flyteidl.core.ArtifactID.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionMetadata message. - * @function verify - * @memberof flyteidl.admin.ExecutionMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.mode != null && message.hasOwnProperty("mode")) - switch (message.mode) { - default: - return "mode: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - break; - } - if (message.principal != null && message.hasOwnProperty("principal")) - if (!$util.isString(message.principal)) - return "principal: string expected"; - if (message.nesting != null && message.hasOwnProperty("nesting")) - if (!$util.isInteger(message.nesting)) - return "nesting: integer expected"; - if (message.scheduledAt != null && message.hasOwnProperty("scheduledAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.scheduledAt); - if (error) - return "scheduledAt." + error; - } - if (message.parentNodeExecution != null && message.hasOwnProperty("parentNodeExecution")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.parentNodeExecution); - if (error) - return "parentNodeExecution." + error; - } - if (message.referenceExecution != null && message.hasOwnProperty("referenceExecution")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.referenceExecution); - if (error) - return "referenceExecution." + error; - } - if (message.systemMetadata != null && message.hasOwnProperty("systemMetadata")) { - var error = $root.flyteidl.admin.SystemMetadata.verify(message.systemMetadata); - if (error) - return "systemMetadata." + error; - } - if (message.artifactIds != null && message.hasOwnProperty("artifactIds")) { - if (!Array.isArray(message.artifactIds)) - return "artifactIds: array expected"; - for (var i = 0; i < message.artifactIds.length; ++i) { - var error = $root.flyteidl.core.ArtifactID.verify(message.artifactIds[i]); - if (error) - return "artifactIds." + error; - } - } - return null; - }; - - /** - * ExecutionMode enum. - * @name flyteidl.admin.ExecutionMetadata.ExecutionMode - * @enum {string} - * @property {number} MANUAL=0 MANUAL value - * @property {number} SCHEDULED=1 SCHEDULED value - * @property {number} SYSTEM=2 SYSTEM value - * @property {number} RELAUNCH=3 RELAUNCH value - * @property {number} CHILD_WORKFLOW=4 CHILD_WORKFLOW value - * @property {number} RECOVERED=5 RECOVERED value - */ - ExecutionMetadata.ExecutionMode = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "MANUAL"] = 0; - values[valuesById[1] = "SCHEDULED"] = 1; - values[valuesById[2] = "SYSTEM"] = 2; - values[valuesById[3] = "RELAUNCH"] = 3; - values[valuesById[4] = "CHILD_WORKFLOW"] = 4; - values[valuesById[5] = "RECOVERED"] = 5; - return values; - })(); - - return ExecutionMetadata; - })(); - - admin.NotificationList = (function() { - - /** - * Properties of a NotificationList. - * @memberof flyteidl.admin - * @interface INotificationList - * @property {Array.|null} [notifications] NotificationList notifications - */ - - /** - * Constructs a new NotificationList. - * @memberof flyteidl.admin - * @classdesc Represents a NotificationList. - * @implements INotificationList - * @constructor - * @param {flyteidl.admin.INotificationList=} [properties] Properties to set - */ - function NotificationList(properties) { - this.notifications = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NotificationList notifications. - * @member {Array.} notifications - * @memberof flyteidl.admin.NotificationList - * @instance - */ - NotificationList.prototype.notifications = $util.emptyArray; - - /** - * Creates a new NotificationList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NotificationList - * @static - * @param {flyteidl.admin.INotificationList=} [properties] Properties to set - * @returns {flyteidl.admin.NotificationList} NotificationList instance - */ - NotificationList.create = function create(properties) { - return new NotificationList(properties); - }; - - /** - * Encodes the specified NotificationList message. Does not implicitly {@link flyteidl.admin.NotificationList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NotificationList - * @static - * @param {flyteidl.admin.INotificationList} message NotificationList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NotificationList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.notifications != null && message.notifications.length) - for (var i = 0; i < message.notifications.length; ++i) - $root.flyteidl.admin.Notification.encode(message.notifications[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NotificationList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NotificationList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NotificationList} NotificationList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NotificationList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NotificationList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.notifications && message.notifications.length)) - message.notifications = []; - message.notifications.push($root.flyteidl.admin.Notification.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NotificationList message. - * @function verify - * @memberof flyteidl.admin.NotificationList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NotificationList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.notifications != null && message.hasOwnProperty("notifications")) { - if (!Array.isArray(message.notifications)) - return "notifications: array expected"; - for (var i = 0; i < message.notifications.length; ++i) { - var error = $root.flyteidl.admin.Notification.verify(message.notifications[i]); - if (error) - return "notifications." + error; - } - } - return null; - }; - - return NotificationList; - })(); - - admin.ExecutionSpec = (function() { - - /** - * Properties of an ExecutionSpec. - * @memberof flyteidl.admin - * @interface IExecutionSpec - * @property {flyteidl.core.IIdentifier|null} [launchPlan] ExecutionSpec launchPlan - * @property {flyteidl.core.ILiteralMap|null} [inputs] ExecutionSpec inputs - * @property {flyteidl.admin.IExecutionMetadata|null} [metadata] ExecutionSpec metadata - * @property {flyteidl.admin.INotificationList|null} [notifications] ExecutionSpec notifications - * @property {boolean|null} [disableAll] ExecutionSpec disableAll - * @property {flyteidl.admin.ILabels|null} [labels] ExecutionSpec labels - * @property {flyteidl.admin.IAnnotations|null} [annotations] ExecutionSpec annotations - * @property {flyteidl.core.ISecurityContext|null} [securityContext] ExecutionSpec securityContext - * @property {flyteidl.admin.IAuthRole|null} [authRole] ExecutionSpec authRole - * @property {flyteidl.core.IQualityOfService|null} [qualityOfService] ExecutionSpec qualityOfService - * @property {number|null} [maxParallelism] ExecutionSpec maxParallelism - * @property {flyteidl.admin.IRawOutputDataConfig|null} [rawOutputDataConfig] ExecutionSpec rawOutputDataConfig - * @property {flyteidl.admin.IClusterAssignment|null} [clusterAssignment] ExecutionSpec clusterAssignment - * @property {google.protobuf.IBoolValue|null} [interruptible] ExecutionSpec interruptible - * @property {boolean|null} [overwriteCache] ExecutionSpec overwriteCache - * @property {flyteidl.admin.IEnvs|null} [envs] ExecutionSpec envs - * @property {Array.|null} [tags] ExecutionSpec tags - */ - - /** - * Constructs a new ExecutionSpec. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionSpec. - * @implements IExecutionSpec - * @constructor - * @param {flyteidl.admin.IExecutionSpec=} [properties] Properties to set - */ - function ExecutionSpec(properties) { - this.tags = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionSpec launchPlan. - * @member {flyteidl.core.IIdentifier|null|undefined} launchPlan - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.launchPlan = null; - - /** - * ExecutionSpec inputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} inputs - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.inputs = null; - - /** - * ExecutionSpec metadata. - * @member {flyteidl.admin.IExecutionMetadata|null|undefined} metadata - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.metadata = null; - - /** - * ExecutionSpec notifications. - * @member {flyteidl.admin.INotificationList|null|undefined} notifications - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.notifications = null; - - /** - * ExecutionSpec disableAll. - * @member {boolean} disableAll - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.disableAll = false; - - /** - * ExecutionSpec labels. - * @member {flyteidl.admin.ILabels|null|undefined} labels - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.labels = null; - - /** - * ExecutionSpec annotations. - * @member {flyteidl.admin.IAnnotations|null|undefined} annotations - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.annotations = null; - - /** - * ExecutionSpec securityContext. - * @member {flyteidl.core.ISecurityContext|null|undefined} securityContext - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.securityContext = null; - - /** - * ExecutionSpec authRole. - * @member {flyteidl.admin.IAuthRole|null|undefined} authRole - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.authRole = null; - - /** - * ExecutionSpec qualityOfService. - * @member {flyteidl.core.IQualityOfService|null|undefined} qualityOfService - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.qualityOfService = null; - - /** - * ExecutionSpec maxParallelism. - * @member {number} maxParallelism - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.maxParallelism = 0; - - /** - * ExecutionSpec rawOutputDataConfig. - * @member {flyteidl.admin.IRawOutputDataConfig|null|undefined} rawOutputDataConfig - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.rawOutputDataConfig = null; - - /** - * ExecutionSpec clusterAssignment. - * @member {flyteidl.admin.IClusterAssignment|null|undefined} clusterAssignment - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.clusterAssignment = null; - - /** - * ExecutionSpec interruptible. - * @member {google.protobuf.IBoolValue|null|undefined} interruptible - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.interruptible = null; - - /** - * ExecutionSpec overwriteCache. - * @member {boolean} overwriteCache - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.overwriteCache = false; - - /** - * ExecutionSpec envs. - * @member {flyteidl.admin.IEnvs|null|undefined} envs - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.envs = null; - - /** - * ExecutionSpec tags. - * @member {Array.} tags - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - ExecutionSpec.prototype.tags = $util.emptyArray; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * ExecutionSpec notificationOverrides. - * @member {"notifications"|"disableAll"|undefined} notificationOverrides - * @memberof flyteidl.admin.ExecutionSpec - * @instance - */ - Object.defineProperty(ExecutionSpec.prototype, "notificationOverrides", { - get: $util.oneOfGetter($oneOfFields = ["notifications", "disableAll"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new ExecutionSpec instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionSpec - * @static - * @param {flyteidl.admin.IExecutionSpec=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionSpec} ExecutionSpec instance - */ - ExecutionSpec.create = function create(properties) { - return new ExecutionSpec(properties); - }; - - /** - * Encodes the specified ExecutionSpec message. Does not implicitly {@link flyteidl.admin.ExecutionSpec.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionSpec - * @static - * @param {flyteidl.admin.IExecutionSpec} message ExecutionSpec message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionSpec.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.launchPlan != null && message.hasOwnProperty("launchPlan")) - $root.flyteidl.core.Identifier.encode(message.launchPlan, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - $root.flyteidl.core.LiteralMap.encode(message.inputs, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.admin.ExecutionMetadata.encode(message.metadata, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.notifications != null && message.hasOwnProperty("notifications")) - $root.flyteidl.admin.NotificationList.encode(message.notifications, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.disableAll != null && message.hasOwnProperty("disableAll")) - writer.uint32(/* id 6, wireType 0 =*/48).bool(message.disableAll); - if (message.labels != null && message.hasOwnProperty("labels")) - $root.flyteidl.admin.Labels.encode(message.labels, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.annotations != null && message.hasOwnProperty("annotations")) - $root.flyteidl.admin.Annotations.encode(message.annotations, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.securityContext != null && message.hasOwnProperty("securityContext")) - $root.flyteidl.core.SecurityContext.encode(message.securityContext, writer.uint32(/* id 10, wireType 2 =*/82).fork()).ldelim(); - if (message.authRole != null && message.hasOwnProperty("authRole")) - $root.flyteidl.admin.AuthRole.encode(message.authRole, writer.uint32(/* id 16, wireType 2 =*/130).fork()).ldelim(); - if (message.qualityOfService != null && message.hasOwnProperty("qualityOfService")) - $root.flyteidl.core.QualityOfService.encode(message.qualityOfService, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim(); - if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) - writer.uint32(/* id 18, wireType 0 =*/144).int32(message.maxParallelism); - if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) - $root.flyteidl.admin.RawOutputDataConfig.encode(message.rawOutputDataConfig, writer.uint32(/* id 19, wireType 2 =*/154).fork()).ldelim(); - if (message.clusterAssignment != null && message.hasOwnProperty("clusterAssignment")) - $root.flyteidl.admin.ClusterAssignment.encode(message.clusterAssignment, writer.uint32(/* id 20, wireType 2 =*/162).fork()).ldelim(); - if (message.interruptible != null && message.hasOwnProperty("interruptible")) - $root.google.protobuf.BoolValue.encode(message.interruptible, writer.uint32(/* id 21, wireType 2 =*/170).fork()).ldelim(); - if (message.overwriteCache != null && message.hasOwnProperty("overwriteCache")) - writer.uint32(/* id 22, wireType 0 =*/176).bool(message.overwriteCache); - if (message.envs != null && message.hasOwnProperty("envs")) - $root.flyteidl.admin.Envs.encode(message.envs, writer.uint32(/* id 23, wireType 2 =*/186).fork()).ldelim(); - if (message.tags != null && message.tags.length) - for (var i = 0; i < message.tags.length; ++i) - writer.uint32(/* id 24, wireType 2 =*/194).string(message.tags[i]); - return writer; - }; - - /** - * Decodes an ExecutionSpec message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionSpec - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionSpec} ExecutionSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionSpec.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionSpec(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.launchPlan = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.inputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 3: - message.metadata = $root.flyteidl.admin.ExecutionMetadata.decode(reader, reader.uint32()); - break; - case 5: - message.notifications = $root.flyteidl.admin.NotificationList.decode(reader, reader.uint32()); - break; - case 6: - message.disableAll = reader.bool(); - break; - case 7: - message.labels = $root.flyteidl.admin.Labels.decode(reader, reader.uint32()); - break; - case 8: - message.annotations = $root.flyteidl.admin.Annotations.decode(reader, reader.uint32()); - break; - case 10: - message.securityContext = $root.flyteidl.core.SecurityContext.decode(reader, reader.uint32()); - break; - case 16: - message.authRole = $root.flyteidl.admin.AuthRole.decode(reader, reader.uint32()); - break; - case 17: - message.qualityOfService = $root.flyteidl.core.QualityOfService.decode(reader, reader.uint32()); - break; - case 18: - message.maxParallelism = reader.int32(); - break; - case 19: - message.rawOutputDataConfig = $root.flyteidl.admin.RawOutputDataConfig.decode(reader, reader.uint32()); - break; - case 20: - message.clusterAssignment = $root.flyteidl.admin.ClusterAssignment.decode(reader, reader.uint32()); - break; - case 21: - message.interruptible = $root.google.protobuf.BoolValue.decode(reader, reader.uint32()); - break; - case 22: - message.overwriteCache = reader.bool(); - break; - case 23: - message.envs = $root.flyteidl.admin.Envs.decode(reader, reader.uint32()); - break; - case 24: - if (!(message.tags && message.tags.length)) - message.tags = []; - message.tags.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionSpec message. - * @function verify - * @memberof flyteidl.admin.ExecutionSpec - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionSpec.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.launchPlan != null && message.hasOwnProperty("launchPlan")) { - var error = $root.flyteidl.core.Identifier.verify(message.launchPlan); - if (error) - return "launchPlan." + error; - } - if (message.inputs != null && message.hasOwnProperty("inputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.inputs); - if (error) - return "inputs." + error; - } - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.admin.ExecutionMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message.notifications != null && message.hasOwnProperty("notifications")) { - properties.notificationOverrides = 1; - { - var error = $root.flyteidl.admin.NotificationList.verify(message.notifications); - if (error) - return "notifications." + error; - } - } - if (message.disableAll != null && message.hasOwnProperty("disableAll")) { - if (properties.notificationOverrides === 1) - return "notificationOverrides: multiple values"; - properties.notificationOverrides = 1; - if (typeof message.disableAll !== "boolean") - return "disableAll: boolean expected"; - } - if (message.labels != null && message.hasOwnProperty("labels")) { - var error = $root.flyteidl.admin.Labels.verify(message.labels); - if (error) - return "labels." + error; - } - if (message.annotations != null && message.hasOwnProperty("annotations")) { - var error = $root.flyteidl.admin.Annotations.verify(message.annotations); - if (error) - return "annotations." + error; - } - if (message.securityContext != null && message.hasOwnProperty("securityContext")) { - var error = $root.flyteidl.core.SecurityContext.verify(message.securityContext); - if (error) - return "securityContext." + error; - } - if (message.authRole != null && message.hasOwnProperty("authRole")) { - var error = $root.flyteidl.admin.AuthRole.verify(message.authRole); - if (error) - return "authRole." + error; - } - if (message.qualityOfService != null && message.hasOwnProperty("qualityOfService")) { - var error = $root.flyteidl.core.QualityOfService.verify(message.qualityOfService); - if (error) - return "qualityOfService." + error; - } - if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) - if (!$util.isInteger(message.maxParallelism)) - return "maxParallelism: integer expected"; - if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) { - var error = $root.flyteidl.admin.RawOutputDataConfig.verify(message.rawOutputDataConfig); - if (error) - return "rawOutputDataConfig." + error; - } - if (message.clusterAssignment != null && message.hasOwnProperty("clusterAssignment")) { - var error = $root.flyteidl.admin.ClusterAssignment.verify(message.clusterAssignment); - if (error) - return "clusterAssignment." + error; - } - if (message.interruptible != null && message.hasOwnProperty("interruptible")) { - var error = $root.google.protobuf.BoolValue.verify(message.interruptible); - if (error) - return "interruptible." + error; - } - if (message.overwriteCache != null && message.hasOwnProperty("overwriteCache")) - if (typeof message.overwriteCache !== "boolean") - return "overwriteCache: boolean expected"; - if (message.envs != null && message.hasOwnProperty("envs")) { - var error = $root.flyteidl.admin.Envs.verify(message.envs); - if (error) - return "envs." + error; - } - if (message.tags != null && message.hasOwnProperty("tags")) { - if (!Array.isArray(message.tags)) - return "tags: array expected"; - for (var i = 0; i < message.tags.length; ++i) - if (!$util.isString(message.tags[i])) - return "tags: string[] expected"; - } - return null; - }; - - return ExecutionSpec; - })(); - - admin.ExecutionTerminateRequest = (function() { - - /** - * Properties of an ExecutionTerminateRequest. - * @memberof flyteidl.admin - * @interface IExecutionTerminateRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] ExecutionTerminateRequest id - * @property {string|null} [cause] ExecutionTerminateRequest cause - */ - - /** - * Constructs a new ExecutionTerminateRequest. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionTerminateRequest. - * @implements IExecutionTerminateRequest - * @constructor - * @param {flyteidl.admin.IExecutionTerminateRequest=} [properties] Properties to set - */ - function ExecutionTerminateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionTerminateRequest id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.ExecutionTerminateRequest - * @instance - */ - ExecutionTerminateRequest.prototype.id = null; - - /** - * ExecutionTerminateRequest cause. - * @member {string} cause - * @memberof flyteidl.admin.ExecutionTerminateRequest - * @instance - */ - ExecutionTerminateRequest.prototype.cause = ""; - - /** - * Creates a new ExecutionTerminateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionTerminateRequest - * @static - * @param {flyteidl.admin.IExecutionTerminateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionTerminateRequest} ExecutionTerminateRequest instance - */ - ExecutionTerminateRequest.create = function create(properties) { - return new ExecutionTerminateRequest(properties); - }; - - /** - * Encodes the specified ExecutionTerminateRequest message. Does not implicitly {@link flyteidl.admin.ExecutionTerminateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionTerminateRequest - * @static - * @param {flyteidl.admin.IExecutionTerminateRequest} message ExecutionTerminateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionTerminateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.cause != null && message.hasOwnProperty("cause")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.cause); - return writer; - }; - - /** - * Decodes an ExecutionTerminateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionTerminateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionTerminateRequest} ExecutionTerminateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionTerminateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionTerminateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.cause = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionTerminateRequest message. - * @function verify - * @memberof flyteidl.admin.ExecutionTerminateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionTerminateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.cause != null && message.hasOwnProperty("cause")) - if (!$util.isString(message.cause)) - return "cause: string expected"; - return null; - }; - - return ExecutionTerminateRequest; - })(); - - admin.ExecutionTerminateResponse = (function() { - - /** - * Properties of an ExecutionTerminateResponse. - * @memberof flyteidl.admin - * @interface IExecutionTerminateResponse - */ - - /** - * Constructs a new ExecutionTerminateResponse. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionTerminateResponse. - * @implements IExecutionTerminateResponse - * @constructor - * @param {flyteidl.admin.IExecutionTerminateResponse=} [properties] Properties to set - */ - function ExecutionTerminateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ExecutionTerminateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionTerminateResponse - * @static - * @param {flyteidl.admin.IExecutionTerminateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionTerminateResponse} ExecutionTerminateResponse instance - */ - ExecutionTerminateResponse.create = function create(properties) { - return new ExecutionTerminateResponse(properties); - }; - - /** - * Encodes the specified ExecutionTerminateResponse message. Does not implicitly {@link flyteidl.admin.ExecutionTerminateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionTerminateResponse - * @static - * @param {flyteidl.admin.IExecutionTerminateResponse} message ExecutionTerminateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionTerminateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes an ExecutionTerminateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionTerminateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionTerminateResponse} ExecutionTerminateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionTerminateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionTerminateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionTerminateResponse message. - * @function verify - * @memberof flyteidl.admin.ExecutionTerminateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionTerminateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ExecutionTerminateResponse; - })(); - - admin.WorkflowExecutionGetDataRequest = (function() { - - /** - * Properties of a WorkflowExecutionGetDataRequest. - * @memberof flyteidl.admin - * @interface IWorkflowExecutionGetDataRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] WorkflowExecutionGetDataRequest id - */ - - /** - * Constructs a new WorkflowExecutionGetDataRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowExecutionGetDataRequest. - * @implements IWorkflowExecutionGetDataRequest - * @constructor - * @param {flyteidl.admin.IWorkflowExecutionGetDataRequest=} [properties] Properties to set - */ - function WorkflowExecutionGetDataRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionGetDataRequest id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.WorkflowExecutionGetDataRequest - * @instance - */ - WorkflowExecutionGetDataRequest.prototype.id = null; - - /** - * Creates a new WorkflowExecutionGetDataRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowExecutionGetDataRequest - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetDataRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowExecutionGetDataRequest} WorkflowExecutionGetDataRequest instance - */ - WorkflowExecutionGetDataRequest.create = function create(properties) { - return new WorkflowExecutionGetDataRequest(properties); - }; - - /** - * Encodes the specified WorkflowExecutionGetDataRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetDataRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowExecutionGetDataRequest - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetDataRequest} message WorkflowExecutionGetDataRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionGetDataRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowExecutionGetDataRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowExecutionGetDataRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowExecutionGetDataRequest} WorkflowExecutionGetDataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionGetDataRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionGetDataRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionGetDataRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowExecutionGetDataRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionGetDataRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return WorkflowExecutionGetDataRequest; - })(); - - admin.WorkflowExecutionGetDataResponse = (function() { - - /** - * Properties of a WorkflowExecutionGetDataResponse. - * @memberof flyteidl.admin - * @interface IWorkflowExecutionGetDataResponse - * @property {flyteidl.admin.IUrlBlob|null} [outputs] WorkflowExecutionGetDataResponse outputs - * @property {flyteidl.admin.IUrlBlob|null} [inputs] WorkflowExecutionGetDataResponse inputs - * @property {flyteidl.core.ILiteralMap|null} [fullInputs] WorkflowExecutionGetDataResponse fullInputs - * @property {flyteidl.core.ILiteralMap|null} [fullOutputs] WorkflowExecutionGetDataResponse fullOutputs - */ - - /** - * Constructs a new WorkflowExecutionGetDataResponse. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowExecutionGetDataResponse. - * @implements IWorkflowExecutionGetDataResponse - * @constructor - * @param {flyteidl.admin.IWorkflowExecutionGetDataResponse=} [properties] Properties to set - */ - function WorkflowExecutionGetDataResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionGetDataResponse outputs. - * @member {flyteidl.admin.IUrlBlob|null|undefined} outputs - * @memberof flyteidl.admin.WorkflowExecutionGetDataResponse - * @instance - */ - WorkflowExecutionGetDataResponse.prototype.outputs = null; - - /** - * WorkflowExecutionGetDataResponse inputs. - * @member {flyteidl.admin.IUrlBlob|null|undefined} inputs - * @memberof flyteidl.admin.WorkflowExecutionGetDataResponse - * @instance - */ - WorkflowExecutionGetDataResponse.prototype.inputs = null; - - /** - * WorkflowExecutionGetDataResponse fullInputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} fullInputs - * @memberof flyteidl.admin.WorkflowExecutionGetDataResponse - * @instance - */ - WorkflowExecutionGetDataResponse.prototype.fullInputs = null; - - /** - * WorkflowExecutionGetDataResponse fullOutputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} fullOutputs - * @memberof flyteidl.admin.WorkflowExecutionGetDataResponse - * @instance - */ - WorkflowExecutionGetDataResponse.prototype.fullOutputs = null; - - /** - * Creates a new WorkflowExecutionGetDataResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowExecutionGetDataResponse - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetDataResponse=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowExecutionGetDataResponse} WorkflowExecutionGetDataResponse instance - */ - WorkflowExecutionGetDataResponse.create = function create(properties) { - return new WorkflowExecutionGetDataResponse(properties); - }; - - /** - * Encodes the specified WorkflowExecutionGetDataResponse message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetDataResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowExecutionGetDataResponse - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetDataResponse} message WorkflowExecutionGetDataResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionGetDataResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.outputs != null && message.hasOwnProperty("outputs")) - $root.flyteidl.admin.UrlBlob.encode(message.outputs, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - $root.flyteidl.admin.UrlBlob.encode(message.inputs, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.fullInputs != null && message.hasOwnProperty("fullInputs")) - $root.flyteidl.core.LiteralMap.encode(message.fullInputs, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.fullOutputs != null && message.hasOwnProperty("fullOutputs")) - $root.flyteidl.core.LiteralMap.encode(message.fullOutputs, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowExecutionGetDataResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowExecutionGetDataResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowExecutionGetDataResponse} WorkflowExecutionGetDataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionGetDataResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionGetDataResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.outputs = $root.flyteidl.admin.UrlBlob.decode(reader, reader.uint32()); - break; - case 2: - message.inputs = $root.flyteidl.admin.UrlBlob.decode(reader, reader.uint32()); - break; - case 3: - message.fullInputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 4: - message.fullOutputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionGetDataResponse message. - * @function verify - * @memberof flyteidl.admin.WorkflowExecutionGetDataResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionGetDataResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.outputs != null && message.hasOwnProperty("outputs")) { - var error = $root.flyteidl.admin.UrlBlob.verify(message.outputs); - if (error) - return "outputs." + error; - } - if (message.inputs != null && message.hasOwnProperty("inputs")) { - var error = $root.flyteidl.admin.UrlBlob.verify(message.inputs); - if (error) - return "inputs." + error; - } - if (message.fullInputs != null && message.hasOwnProperty("fullInputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.fullInputs); - if (error) - return "fullInputs." + error; - } - if (message.fullOutputs != null && message.hasOwnProperty("fullOutputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.fullOutputs); - if (error) - return "fullOutputs." + error; - } - return null; - }; - - return WorkflowExecutionGetDataResponse; - })(); - - /** - * ExecutionState enum. - * @name flyteidl.admin.ExecutionState - * @enum {string} - * @property {number} EXECUTION_ACTIVE=0 EXECUTION_ACTIVE value - * @property {number} EXECUTION_ARCHIVED=1 EXECUTION_ARCHIVED value - */ - admin.ExecutionState = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "EXECUTION_ACTIVE"] = 0; - values[valuesById[1] = "EXECUTION_ARCHIVED"] = 1; - return values; - })(); - - admin.ExecutionUpdateRequest = (function() { - - /** - * Properties of an ExecutionUpdateRequest. - * @memberof flyteidl.admin - * @interface IExecutionUpdateRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] ExecutionUpdateRequest id - * @property {flyteidl.admin.ExecutionState|null} [state] ExecutionUpdateRequest state - */ - - /** - * Constructs a new ExecutionUpdateRequest. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionUpdateRequest. - * @implements IExecutionUpdateRequest - * @constructor - * @param {flyteidl.admin.IExecutionUpdateRequest=} [properties] Properties to set - */ - function ExecutionUpdateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionUpdateRequest id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.ExecutionUpdateRequest - * @instance - */ - ExecutionUpdateRequest.prototype.id = null; - - /** - * ExecutionUpdateRequest state. - * @member {flyteidl.admin.ExecutionState} state - * @memberof flyteidl.admin.ExecutionUpdateRequest - * @instance - */ - ExecutionUpdateRequest.prototype.state = 0; - - /** - * Creates a new ExecutionUpdateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionUpdateRequest - * @static - * @param {flyteidl.admin.IExecutionUpdateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionUpdateRequest} ExecutionUpdateRequest instance - */ - ExecutionUpdateRequest.create = function create(properties) { - return new ExecutionUpdateRequest(properties); - }; - - /** - * Encodes the specified ExecutionUpdateRequest message. Does not implicitly {@link flyteidl.admin.ExecutionUpdateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionUpdateRequest - * @static - * @param {flyteidl.admin.IExecutionUpdateRequest} message ExecutionUpdateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionUpdateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.state); - return writer; - }; - - /** - * Decodes an ExecutionUpdateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionUpdateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionUpdateRequest} ExecutionUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionUpdateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionUpdateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.state = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionUpdateRequest message. - * @function verify - * @memberof flyteidl.admin.ExecutionUpdateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionUpdateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - break; - } - return null; - }; - - return ExecutionUpdateRequest; - })(); - - admin.ExecutionStateChangeDetails = (function() { - - /** - * Properties of an ExecutionStateChangeDetails. - * @memberof flyteidl.admin - * @interface IExecutionStateChangeDetails - * @property {flyteidl.admin.ExecutionState|null} [state] ExecutionStateChangeDetails state - * @property {google.protobuf.ITimestamp|null} [occurredAt] ExecutionStateChangeDetails occurredAt - * @property {string|null} [principal] ExecutionStateChangeDetails principal - */ - - /** - * Constructs a new ExecutionStateChangeDetails. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionStateChangeDetails. - * @implements IExecutionStateChangeDetails - * @constructor - * @param {flyteidl.admin.IExecutionStateChangeDetails=} [properties] Properties to set - */ - function ExecutionStateChangeDetails(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionStateChangeDetails state. - * @member {flyteidl.admin.ExecutionState} state - * @memberof flyteidl.admin.ExecutionStateChangeDetails - * @instance - */ - ExecutionStateChangeDetails.prototype.state = 0; - - /** - * ExecutionStateChangeDetails occurredAt. - * @member {google.protobuf.ITimestamp|null|undefined} occurredAt - * @memberof flyteidl.admin.ExecutionStateChangeDetails - * @instance - */ - ExecutionStateChangeDetails.prototype.occurredAt = null; - - /** - * ExecutionStateChangeDetails principal. - * @member {string} principal - * @memberof flyteidl.admin.ExecutionStateChangeDetails - * @instance - */ - ExecutionStateChangeDetails.prototype.principal = ""; - - /** - * Creates a new ExecutionStateChangeDetails instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionStateChangeDetails - * @static - * @param {flyteidl.admin.IExecutionStateChangeDetails=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionStateChangeDetails} ExecutionStateChangeDetails instance - */ - ExecutionStateChangeDetails.create = function create(properties) { - return new ExecutionStateChangeDetails(properties); - }; - - /** - * Encodes the specified ExecutionStateChangeDetails message. Does not implicitly {@link flyteidl.admin.ExecutionStateChangeDetails.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionStateChangeDetails - * @static - * @param {flyteidl.admin.IExecutionStateChangeDetails} message ExecutionStateChangeDetails message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionStateChangeDetails.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.state); - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) - $root.google.protobuf.Timestamp.encode(message.occurredAt, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.principal != null && message.hasOwnProperty("principal")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.principal); - return writer; - }; - - /** - * Decodes an ExecutionStateChangeDetails message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionStateChangeDetails - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionStateChangeDetails} ExecutionStateChangeDetails - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionStateChangeDetails.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionStateChangeDetails(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.state = reader.int32(); - break; - case 2: - message.occurredAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 3: - message.principal = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionStateChangeDetails message. - * @function verify - * @memberof flyteidl.admin.ExecutionStateChangeDetails - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionStateChangeDetails.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - break; - } - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.occurredAt); - if (error) - return "occurredAt." + error; - } - if (message.principal != null && message.hasOwnProperty("principal")) - if (!$util.isString(message.principal)) - return "principal: string expected"; - return null; - }; - - return ExecutionStateChangeDetails; - })(); - - admin.ExecutionUpdateResponse = (function() { - - /** - * Properties of an ExecutionUpdateResponse. - * @memberof flyteidl.admin - * @interface IExecutionUpdateResponse - */ - - /** - * Constructs a new ExecutionUpdateResponse. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionUpdateResponse. - * @implements IExecutionUpdateResponse - * @constructor - * @param {flyteidl.admin.IExecutionUpdateResponse=} [properties] Properties to set - */ - function ExecutionUpdateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ExecutionUpdateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionUpdateResponse - * @static - * @param {flyteidl.admin.IExecutionUpdateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionUpdateResponse} ExecutionUpdateResponse instance - */ - ExecutionUpdateResponse.create = function create(properties) { - return new ExecutionUpdateResponse(properties); - }; - - /** - * Encodes the specified ExecutionUpdateResponse message. Does not implicitly {@link flyteidl.admin.ExecutionUpdateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionUpdateResponse - * @static - * @param {flyteidl.admin.IExecutionUpdateResponse} message ExecutionUpdateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionUpdateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes an ExecutionUpdateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionUpdateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionUpdateResponse} ExecutionUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionUpdateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionUpdateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionUpdateResponse message. - * @function verify - * @memberof flyteidl.admin.ExecutionUpdateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionUpdateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ExecutionUpdateResponse; - })(); - - admin.WorkflowExecutionGetMetricsRequest = (function() { - - /** - * Properties of a WorkflowExecutionGetMetricsRequest. - * @memberof flyteidl.admin - * @interface IWorkflowExecutionGetMetricsRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [id] WorkflowExecutionGetMetricsRequest id - * @property {number|null} [depth] WorkflowExecutionGetMetricsRequest depth - */ - - /** - * Constructs a new WorkflowExecutionGetMetricsRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowExecutionGetMetricsRequest. - * @implements IWorkflowExecutionGetMetricsRequest - * @constructor - * @param {flyteidl.admin.IWorkflowExecutionGetMetricsRequest=} [properties] Properties to set - */ - function WorkflowExecutionGetMetricsRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionGetMetricsRequest id. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsRequest - * @instance - */ - WorkflowExecutionGetMetricsRequest.prototype.id = null; - - /** - * WorkflowExecutionGetMetricsRequest depth. - * @member {number} depth - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsRequest - * @instance - */ - WorkflowExecutionGetMetricsRequest.prototype.depth = 0; - - /** - * Creates a new WorkflowExecutionGetMetricsRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsRequest - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetMetricsRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowExecutionGetMetricsRequest} WorkflowExecutionGetMetricsRequest instance - */ - WorkflowExecutionGetMetricsRequest.create = function create(properties) { - return new WorkflowExecutionGetMetricsRequest(properties); - }; - - /** - * Encodes the specified WorkflowExecutionGetMetricsRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetMetricsRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsRequest - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetMetricsRequest} message WorkflowExecutionGetMetricsRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionGetMetricsRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.depth != null && message.hasOwnProperty("depth")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.depth); - return writer; - }; - - /** - * Decodes a WorkflowExecutionGetMetricsRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowExecutionGetMetricsRequest} WorkflowExecutionGetMetricsRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionGetMetricsRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionGetMetricsRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.depth = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionGetMetricsRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionGetMetricsRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.depth != null && message.hasOwnProperty("depth")) - if (!$util.isInteger(message.depth)) - return "depth: integer expected"; - return null; - }; - - return WorkflowExecutionGetMetricsRequest; - })(); - - admin.WorkflowExecutionGetMetricsResponse = (function() { - - /** - * Properties of a WorkflowExecutionGetMetricsResponse. - * @memberof flyteidl.admin - * @interface IWorkflowExecutionGetMetricsResponse - * @property {flyteidl.core.ISpan|null} [span] WorkflowExecutionGetMetricsResponse span - */ - - /** - * Constructs a new WorkflowExecutionGetMetricsResponse. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowExecutionGetMetricsResponse. - * @implements IWorkflowExecutionGetMetricsResponse - * @constructor - * @param {flyteidl.admin.IWorkflowExecutionGetMetricsResponse=} [properties] Properties to set - */ - function WorkflowExecutionGetMetricsResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionGetMetricsResponse span. - * @member {flyteidl.core.ISpan|null|undefined} span - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsResponse - * @instance - */ - WorkflowExecutionGetMetricsResponse.prototype.span = null; - - /** - * Creates a new WorkflowExecutionGetMetricsResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsResponse - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetMetricsResponse=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowExecutionGetMetricsResponse} WorkflowExecutionGetMetricsResponse instance - */ - WorkflowExecutionGetMetricsResponse.create = function create(properties) { - return new WorkflowExecutionGetMetricsResponse(properties); - }; - - /** - * Encodes the specified WorkflowExecutionGetMetricsResponse message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetMetricsResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsResponse - * @static - * @param {flyteidl.admin.IWorkflowExecutionGetMetricsResponse} message WorkflowExecutionGetMetricsResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionGetMetricsResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.span != null && message.hasOwnProperty("span")) - $root.flyteidl.core.Span.encode(message.span, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowExecutionGetMetricsResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowExecutionGetMetricsResponse} WorkflowExecutionGetMetricsResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionGetMetricsResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionGetMetricsResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.span = $root.flyteidl.core.Span.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionGetMetricsResponse message. - * @function verify - * @memberof flyteidl.admin.WorkflowExecutionGetMetricsResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionGetMetricsResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.span != null && message.hasOwnProperty("span")) { - var error = $root.flyteidl.core.Span.verify(message.span); - if (error) - return "span." + error; - } - return null; - }; - - return WorkflowExecutionGetMetricsResponse; - })(); - - admin.LaunchPlanCreateRequest = (function() { - - /** - * Properties of a LaunchPlanCreateRequest. - * @memberof flyteidl.admin - * @interface ILaunchPlanCreateRequest - * @property {flyteidl.core.IIdentifier|null} [id] LaunchPlanCreateRequest id - * @property {flyteidl.admin.ILaunchPlanSpec|null} [spec] LaunchPlanCreateRequest spec - */ - - /** - * Constructs a new LaunchPlanCreateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlanCreateRequest. - * @implements ILaunchPlanCreateRequest - * @constructor - * @param {flyteidl.admin.ILaunchPlanCreateRequest=} [properties] Properties to set - */ - function LaunchPlanCreateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LaunchPlanCreateRequest id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.LaunchPlanCreateRequest - * @instance - */ - LaunchPlanCreateRequest.prototype.id = null; - - /** - * LaunchPlanCreateRequest spec. - * @member {flyteidl.admin.ILaunchPlanSpec|null|undefined} spec - * @memberof flyteidl.admin.LaunchPlanCreateRequest - * @instance - */ - LaunchPlanCreateRequest.prototype.spec = null; - - /** - * Creates a new LaunchPlanCreateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlanCreateRequest - * @static - * @param {flyteidl.admin.ILaunchPlanCreateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlanCreateRequest} LaunchPlanCreateRequest instance - */ - LaunchPlanCreateRequest.create = function create(properties) { - return new LaunchPlanCreateRequest(properties); - }; - - /** - * Encodes the specified LaunchPlanCreateRequest message. Does not implicitly {@link flyteidl.admin.LaunchPlanCreateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlanCreateRequest - * @static - * @param {flyteidl.admin.ILaunchPlanCreateRequest} message LaunchPlanCreateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlanCreateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.spec != null && message.hasOwnProperty("spec")) - $root.flyteidl.admin.LaunchPlanSpec.encode(message.spec, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a LaunchPlanCreateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlanCreateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlanCreateRequest} LaunchPlanCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlanCreateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlanCreateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.spec = $root.flyteidl.admin.LaunchPlanSpec.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlanCreateRequest message. - * @function verify - * @memberof flyteidl.admin.LaunchPlanCreateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlanCreateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.spec != null && message.hasOwnProperty("spec")) { - var error = $root.flyteidl.admin.LaunchPlanSpec.verify(message.spec); - if (error) - return "spec." + error; - } - return null; - }; - - return LaunchPlanCreateRequest; - })(); - - admin.LaunchPlanCreateResponse = (function() { - - /** - * Properties of a LaunchPlanCreateResponse. - * @memberof flyteidl.admin - * @interface ILaunchPlanCreateResponse - */ - - /** - * Constructs a new LaunchPlanCreateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlanCreateResponse. - * @implements ILaunchPlanCreateResponse - * @constructor - * @param {flyteidl.admin.ILaunchPlanCreateResponse=} [properties] Properties to set - */ - function LaunchPlanCreateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new LaunchPlanCreateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlanCreateResponse - * @static - * @param {flyteidl.admin.ILaunchPlanCreateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlanCreateResponse} LaunchPlanCreateResponse instance - */ - LaunchPlanCreateResponse.create = function create(properties) { - return new LaunchPlanCreateResponse(properties); - }; - - /** - * Encodes the specified LaunchPlanCreateResponse message. Does not implicitly {@link flyteidl.admin.LaunchPlanCreateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlanCreateResponse - * @static - * @param {flyteidl.admin.ILaunchPlanCreateResponse} message LaunchPlanCreateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlanCreateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a LaunchPlanCreateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlanCreateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlanCreateResponse} LaunchPlanCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlanCreateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlanCreateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlanCreateResponse message. - * @function verify - * @memberof flyteidl.admin.LaunchPlanCreateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlanCreateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return LaunchPlanCreateResponse; - })(); - - /** - * LaunchPlanState enum. - * @name flyteidl.admin.LaunchPlanState - * @enum {string} - * @property {number} INACTIVE=0 INACTIVE value - * @property {number} ACTIVE=1 ACTIVE value - */ - admin.LaunchPlanState = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "INACTIVE"] = 0; - values[valuesById[1] = "ACTIVE"] = 1; - return values; - })(); - - admin.LaunchPlan = (function() { - - /** - * Properties of a LaunchPlan. - * @memberof flyteidl.admin - * @interface ILaunchPlan - * @property {flyteidl.core.IIdentifier|null} [id] LaunchPlan id - * @property {flyteidl.admin.ILaunchPlanSpec|null} [spec] LaunchPlan spec - * @property {flyteidl.admin.ILaunchPlanClosure|null} [closure] LaunchPlan closure - */ - - /** - * Constructs a new LaunchPlan. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlan. - * @implements ILaunchPlan - * @constructor - * @param {flyteidl.admin.ILaunchPlan=} [properties] Properties to set - */ - function LaunchPlan(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LaunchPlan id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.LaunchPlan - * @instance - */ - LaunchPlan.prototype.id = null; - - /** - * LaunchPlan spec. - * @member {flyteidl.admin.ILaunchPlanSpec|null|undefined} spec - * @memberof flyteidl.admin.LaunchPlan - * @instance - */ - LaunchPlan.prototype.spec = null; - - /** - * LaunchPlan closure. - * @member {flyteidl.admin.ILaunchPlanClosure|null|undefined} closure - * @memberof flyteidl.admin.LaunchPlan - * @instance - */ - LaunchPlan.prototype.closure = null; - - /** - * Creates a new LaunchPlan instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlan - * @static - * @param {flyteidl.admin.ILaunchPlan=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlan} LaunchPlan instance - */ - LaunchPlan.create = function create(properties) { - return new LaunchPlan(properties); - }; - - /** - * Encodes the specified LaunchPlan message. Does not implicitly {@link flyteidl.admin.LaunchPlan.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlan - * @static - * @param {flyteidl.admin.ILaunchPlan} message LaunchPlan message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlan.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.spec != null && message.hasOwnProperty("spec")) - $root.flyteidl.admin.LaunchPlanSpec.encode(message.spec, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.closure != null && message.hasOwnProperty("closure")) - $root.flyteidl.admin.LaunchPlanClosure.encode(message.closure, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a LaunchPlan message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlan - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlan} LaunchPlan - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlan.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlan(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.spec = $root.flyteidl.admin.LaunchPlanSpec.decode(reader, reader.uint32()); - break; - case 3: - message.closure = $root.flyteidl.admin.LaunchPlanClosure.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlan message. - * @function verify - * @memberof flyteidl.admin.LaunchPlan - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlan.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.spec != null && message.hasOwnProperty("spec")) { - var error = $root.flyteidl.admin.LaunchPlanSpec.verify(message.spec); - if (error) - return "spec." + error; - } - if (message.closure != null && message.hasOwnProperty("closure")) { - var error = $root.flyteidl.admin.LaunchPlanClosure.verify(message.closure); - if (error) - return "closure." + error; - } - return null; - }; - - return LaunchPlan; - })(); - - admin.LaunchPlanList = (function() { - - /** - * Properties of a LaunchPlanList. - * @memberof flyteidl.admin - * @interface ILaunchPlanList - * @property {Array.|null} [launchPlans] LaunchPlanList launchPlans - * @property {string|null} [token] LaunchPlanList token - */ - - /** - * Constructs a new LaunchPlanList. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlanList. - * @implements ILaunchPlanList - * @constructor - * @param {flyteidl.admin.ILaunchPlanList=} [properties] Properties to set - */ - function LaunchPlanList(properties) { - this.launchPlans = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LaunchPlanList launchPlans. - * @member {Array.} launchPlans - * @memberof flyteidl.admin.LaunchPlanList - * @instance - */ - LaunchPlanList.prototype.launchPlans = $util.emptyArray; - - /** - * LaunchPlanList token. - * @member {string} token - * @memberof flyteidl.admin.LaunchPlanList - * @instance - */ - LaunchPlanList.prototype.token = ""; - - /** - * Creates a new LaunchPlanList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlanList - * @static - * @param {flyteidl.admin.ILaunchPlanList=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlanList} LaunchPlanList instance - */ - LaunchPlanList.create = function create(properties) { - return new LaunchPlanList(properties); - }; - - /** - * Encodes the specified LaunchPlanList message. Does not implicitly {@link flyteidl.admin.LaunchPlanList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlanList - * @static - * @param {flyteidl.admin.ILaunchPlanList} message LaunchPlanList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlanList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.launchPlans != null && message.launchPlans.length) - for (var i = 0; i < message.launchPlans.length; ++i) - $root.flyteidl.admin.LaunchPlan.encode(message.launchPlans[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a LaunchPlanList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlanList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlanList} LaunchPlanList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlanList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlanList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.launchPlans && message.launchPlans.length)) - message.launchPlans = []; - message.launchPlans.push($root.flyteidl.admin.LaunchPlan.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlanList message. - * @function verify - * @memberof flyteidl.admin.LaunchPlanList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlanList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.launchPlans != null && message.hasOwnProperty("launchPlans")) { - if (!Array.isArray(message.launchPlans)) - return "launchPlans: array expected"; - for (var i = 0; i < message.launchPlans.length; ++i) { - var error = $root.flyteidl.admin.LaunchPlan.verify(message.launchPlans[i]); - if (error) - return "launchPlans." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return LaunchPlanList; - })(); - - admin.Auth = (function() { - - /** - * Properties of an Auth. - * @memberof flyteidl.admin - * @interface IAuth - * @property {string|null} [assumableIamRole] Auth assumableIamRole - * @property {string|null} [kubernetesServiceAccount] Auth kubernetesServiceAccount - */ - - /** - * Constructs a new Auth. - * @memberof flyteidl.admin - * @classdesc Represents an Auth. - * @implements IAuth - * @constructor - * @param {flyteidl.admin.IAuth=} [properties] Properties to set - */ - function Auth(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Auth assumableIamRole. - * @member {string} assumableIamRole - * @memberof flyteidl.admin.Auth - * @instance - */ - Auth.prototype.assumableIamRole = ""; - - /** - * Auth kubernetesServiceAccount. - * @member {string} kubernetesServiceAccount - * @memberof flyteidl.admin.Auth - * @instance - */ - Auth.prototype.kubernetesServiceAccount = ""; - - /** - * Creates a new Auth instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Auth - * @static - * @param {flyteidl.admin.IAuth=} [properties] Properties to set - * @returns {flyteidl.admin.Auth} Auth instance - */ - Auth.create = function create(properties) { - return new Auth(properties); - }; - - /** - * Encodes the specified Auth message. Does not implicitly {@link flyteidl.admin.Auth.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Auth - * @static - * @param {flyteidl.admin.IAuth} message Auth message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Auth.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.assumableIamRole != null && message.hasOwnProperty("assumableIamRole")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.assumableIamRole); - if (message.kubernetesServiceAccount != null && message.hasOwnProperty("kubernetesServiceAccount")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.kubernetesServiceAccount); - return writer; - }; - - /** - * Decodes an Auth message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Auth - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Auth} Auth - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Auth.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Auth(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.assumableIamRole = reader.string(); - break; - case 2: - message.kubernetesServiceAccount = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Auth message. - * @function verify - * @memberof flyteidl.admin.Auth - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Auth.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.assumableIamRole != null && message.hasOwnProperty("assumableIamRole")) - if (!$util.isString(message.assumableIamRole)) - return "assumableIamRole: string expected"; - if (message.kubernetesServiceAccount != null && message.hasOwnProperty("kubernetesServiceAccount")) - if (!$util.isString(message.kubernetesServiceAccount)) - return "kubernetesServiceAccount: string expected"; - return null; - }; - - return Auth; - })(); - - admin.LaunchPlanSpec = (function() { - - /** - * Properties of a LaunchPlanSpec. - * @memberof flyteidl.admin - * @interface ILaunchPlanSpec - * @property {flyteidl.core.IIdentifier|null} [workflowId] LaunchPlanSpec workflowId - * @property {flyteidl.admin.ILaunchPlanMetadata|null} [entityMetadata] LaunchPlanSpec entityMetadata - * @property {flyteidl.core.IParameterMap|null} [defaultInputs] LaunchPlanSpec defaultInputs - * @property {flyteidl.core.ILiteralMap|null} [fixedInputs] LaunchPlanSpec fixedInputs - * @property {string|null} [role] LaunchPlanSpec role - * @property {flyteidl.admin.ILabels|null} [labels] LaunchPlanSpec labels - * @property {flyteidl.admin.IAnnotations|null} [annotations] LaunchPlanSpec annotations - * @property {flyteidl.admin.IAuth|null} [auth] LaunchPlanSpec auth - * @property {flyteidl.admin.IAuthRole|null} [authRole] LaunchPlanSpec authRole - * @property {flyteidl.core.ISecurityContext|null} [securityContext] LaunchPlanSpec securityContext - * @property {flyteidl.core.IQualityOfService|null} [qualityOfService] LaunchPlanSpec qualityOfService - * @property {flyteidl.admin.IRawOutputDataConfig|null} [rawOutputDataConfig] LaunchPlanSpec rawOutputDataConfig - * @property {number|null} [maxParallelism] LaunchPlanSpec maxParallelism - * @property {google.protobuf.IBoolValue|null} [interruptible] LaunchPlanSpec interruptible - * @property {boolean|null} [overwriteCache] LaunchPlanSpec overwriteCache - * @property {flyteidl.admin.IEnvs|null} [envs] LaunchPlanSpec envs - */ - - /** - * Constructs a new LaunchPlanSpec. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlanSpec. - * @implements ILaunchPlanSpec - * @constructor - * @param {flyteidl.admin.ILaunchPlanSpec=} [properties] Properties to set - */ - function LaunchPlanSpec(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LaunchPlanSpec workflowId. - * @member {flyteidl.core.IIdentifier|null|undefined} workflowId - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.workflowId = null; - - /** - * LaunchPlanSpec entityMetadata. - * @member {flyteidl.admin.ILaunchPlanMetadata|null|undefined} entityMetadata - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.entityMetadata = null; - - /** - * LaunchPlanSpec defaultInputs. - * @member {flyteidl.core.IParameterMap|null|undefined} defaultInputs - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.defaultInputs = null; - - /** - * LaunchPlanSpec fixedInputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} fixedInputs - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.fixedInputs = null; - - /** - * LaunchPlanSpec role. - * @member {string} role - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.role = ""; - - /** - * LaunchPlanSpec labels. - * @member {flyteidl.admin.ILabels|null|undefined} labels - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.labels = null; - - /** - * LaunchPlanSpec annotations. - * @member {flyteidl.admin.IAnnotations|null|undefined} annotations - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.annotations = null; - - /** - * LaunchPlanSpec auth. - * @member {flyteidl.admin.IAuth|null|undefined} auth - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.auth = null; - - /** - * LaunchPlanSpec authRole. - * @member {flyteidl.admin.IAuthRole|null|undefined} authRole - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.authRole = null; - - /** - * LaunchPlanSpec securityContext. - * @member {flyteidl.core.ISecurityContext|null|undefined} securityContext - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.securityContext = null; - - /** - * LaunchPlanSpec qualityOfService. - * @member {flyteidl.core.IQualityOfService|null|undefined} qualityOfService - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.qualityOfService = null; - - /** - * LaunchPlanSpec rawOutputDataConfig. - * @member {flyteidl.admin.IRawOutputDataConfig|null|undefined} rawOutputDataConfig - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.rawOutputDataConfig = null; - - /** - * LaunchPlanSpec maxParallelism. - * @member {number} maxParallelism - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.maxParallelism = 0; - - /** - * LaunchPlanSpec interruptible. - * @member {google.protobuf.IBoolValue|null|undefined} interruptible - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.interruptible = null; - - /** - * LaunchPlanSpec overwriteCache. - * @member {boolean} overwriteCache - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.overwriteCache = false; - - /** - * LaunchPlanSpec envs. - * @member {flyteidl.admin.IEnvs|null|undefined} envs - * @memberof flyteidl.admin.LaunchPlanSpec - * @instance - */ - LaunchPlanSpec.prototype.envs = null; - - /** - * Creates a new LaunchPlanSpec instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlanSpec - * @static - * @param {flyteidl.admin.ILaunchPlanSpec=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlanSpec} LaunchPlanSpec instance - */ - LaunchPlanSpec.create = function create(properties) { - return new LaunchPlanSpec(properties); - }; - - /** - * Encodes the specified LaunchPlanSpec message. Does not implicitly {@link flyteidl.admin.LaunchPlanSpec.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlanSpec - * @static - * @param {flyteidl.admin.ILaunchPlanSpec} message LaunchPlanSpec message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlanSpec.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.workflowId != null && message.hasOwnProperty("workflowId")) - $root.flyteidl.core.Identifier.encode(message.workflowId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.entityMetadata != null && message.hasOwnProperty("entityMetadata")) - $root.flyteidl.admin.LaunchPlanMetadata.encode(message.entityMetadata, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.defaultInputs != null && message.hasOwnProperty("defaultInputs")) - $root.flyteidl.core.ParameterMap.encode(message.defaultInputs, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.fixedInputs != null && message.hasOwnProperty("fixedInputs")) - $root.flyteidl.core.LiteralMap.encode(message.fixedInputs, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.role != null && message.hasOwnProperty("role")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.role); - if (message.labels != null && message.hasOwnProperty("labels")) - $root.flyteidl.admin.Labels.encode(message.labels, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.annotations != null && message.hasOwnProperty("annotations")) - $root.flyteidl.admin.Annotations.encode(message.annotations, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.auth != null && message.hasOwnProperty("auth")) - $root.flyteidl.admin.Auth.encode(message.auth, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.authRole != null && message.hasOwnProperty("authRole")) - $root.flyteidl.admin.AuthRole.encode(message.authRole, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.securityContext != null && message.hasOwnProperty("securityContext")) - $root.flyteidl.core.SecurityContext.encode(message.securityContext, writer.uint32(/* id 10, wireType 2 =*/82).fork()).ldelim(); - if (message.qualityOfService != null && message.hasOwnProperty("qualityOfService")) - $root.flyteidl.core.QualityOfService.encode(message.qualityOfService, writer.uint32(/* id 16, wireType 2 =*/130).fork()).ldelim(); - if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) - $root.flyteidl.admin.RawOutputDataConfig.encode(message.rawOutputDataConfig, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim(); - if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) - writer.uint32(/* id 18, wireType 0 =*/144).int32(message.maxParallelism); - if (message.interruptible != null && message.hasOwnProperty("interruptible")) - $root.google.protobuf.BoolValue.encode(message.interruptible, writer.uint32(/* id 19, wireType 2 =*/154).fork()).ldelim(); - if (message.overwriteCache != null && message.hasOwnProperty("overwriteCache")) - writer.uint32(/* id 20, wireType 0 =*/160).bool(message.overwriteCache); - if (message.envs != null && message.hasOwnProperty("envs")) - $root.flyteidl.admin.Envs.encode(message.envs, writer.uint32(/* id 21, wireType 2 =*/170).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a LaunchPlanSpec message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlanSpec - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlanSpec} LaunchPlanSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlanSpec.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlanSpec(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.workflowId = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.entityMetadata = $root.flyteidl.admin.LaunchPlanMetadata.decode(reader, reader.uint32()); - break; - case 3: - message.defaultInputs = $root.flyteidl.core.ParameterMap.decode(reader, reader.uint32()); - break; - case 4: - message.fixedInputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 5: - message.role = reader.string(); - break; - case 6: - message.labels = $root.flyteidl.admin.Labels.decode(reader, reader.uint32()); - break; - case 7: - message.annotations = $root.flyteidl.admin.Annotations.decode(reader, reader.uint32()); - break; - case 8: - message.auth = $root.flyteidl.admin.Auth.decode(reader, reader.uint32()); - break; - case 9: - message.authRole = $root.flyteidl.admin.AuthRole.decode(reader, reader.uint32()); - break; - case 10: - message.securityContext = $root.flyteidl.core.SecurityContext.decode(reader, reader.uint32()); - break; - case 16: - message.qualityOfService = $root.flyteidl.core.QualityOfService.decode(reader, reader.uint32()); - break; - case 17: - message.rawOutputDataConfig = $root.flyteidl.admin.RawOutputDataConfig.decode(reader, reader.uint32()); - break; - case 18: - message.maxParallelism = reader.int32(); - break; - case 19: - message.interruptible = $root.google.protobuf.BoolValue.decode(reader, reader.uint32()); - break; - case 20: - message.overwriteCache = reader.bool(); - break; - case 21: - message.envs = $root.flyteidl.admin.Envs.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlanSpec message. - * @function verify - * @memberof flyteidl.admin.LaunchPlanSpec - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlanSpec.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.workflowId != null && message.hasOwnProperty("workflowId")) { - var error = $root.flyteidl.core.Identifier.verify(message.workflowId); - if (error) - return "workflowId." + error; - } - if (message.entityMetadata != null && message.hasOwnProperty("entityMetadata")) { - var error = $root.flyteidl.admin.LaunchPlanMetadata.verify(message.entityMetadata); - if (error) - return "entityMetadata." + error; - } - if (message.defaultInputs != null && message.hasOwnProperty("defaultInputs")) { - var error = $root.flyteidl.core.ParameterMap.verify(message.defaultInputs); - if (error) - return "defaultInputs." + error; - } - if (message.fixedInputs != null && message.hasOwnProperty("fixedInputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.fixedInputs); - if (error) - return "fixedInputs." + error; - } - if (message.role != null && message.hasOwnProperty("role")) - if (!$util.isString(message.role)) - return "role: string expected"; - if (message.labels != null && message.hasOwnProperty("labels")) { - var error = $root.flyteidl.admin.Labels.verify(message.labels); - if (error) - return "labels." + error; - } - if (message.annotations != null && message.hasOwnProperty("annotations")) { - var error = $root.flyteidl.admin.Annotations.verify(message.annotations); - if (error) - return "annotations." + error; - } - if (message.auth != null && message.hasOwnProperty("auth")) { - var error = $root.flyteidl.admin.Auth.verify(message.auth); - if (error) - return "auth." + error; - } - if (message.authRole != null && message.hasOwnProperty("authRole")) { - var error = $root.flyteidl.admin.AuthRole.verify(message.authRole); - if (error) - return "authRole." + error; - } - if (message.securityContext != null && message.hasOwnProperty("securityContext")) { - var error = $root.flyteidl.core.SecurityContext.verify(message.securityContext); - if (error) - return "securityContext." + error; - } - if (message.qualityOfService != null && message.hasOwnProperty("qualityOfService")) { - var error = $root.flyteidl.core.QualityOfService.verify(message.qualityOfService); - if (error) - return "qualityOfService." + error; - } - if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) { - var error = $root.flyteidl.admin.RawOutputDataConfig.verify(message.rawOutputDataConfig); - if (error) - return "rawOutputDataConfig." + error; - } - if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) - if (!$util.isInteger(message.maxParallelism)) - return "maxParallelism: integer expected"; - if (message.interruptible != null && message.hasOwnProperty("interruptible")) { - var error = $root.google.protobuf.BoolValue.verify(message.interruptible); - if (error) - return "interruptible." + error; - } - if (message.overwriteCache != null && message.hasOwnProperty("overwriteCache")) - if (typeof message.overwriteCache !== "boolean") - return "overwriteCache: boolean expected"; - if (message.envs != null && message.hasOwnProperty("envs")) { - var error = $root.flyteidl.admin.Envs.verify(message.envs); - if (error) - return "envs." + error; - } - return null; - }; - - return LaunchPlanSpec; - })(); - - admin.LaunchPlanClosure = (function() { - - /** - * Properties of a LaunchPlanClosure. - * @memberof flyteidl.admin - * @interface ILaunchPlanClosure - * @property {flyteidl.admin.LaunchPlanState|null} [state] LaunchPlanClosure state - * @property {flyteidl.core.IParameterMap|null} [expectedInputs] LaunchPlanClosure expectedInputs - * @property {flyteidl.core.IVariableMap|null} [expectedOutputs] LaunchPlanClosure expectedOutputs - * @property {google.protobuf.ITimestamp|null} [createdAt] LaunchPlanClosure createdAt - * @property {google.protobuf.ITimestamp|null} [updatedAt] LaunchPlanClosure updatedAt - */ - - /** - * Constructs a new LaunchPlanClosure. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlanClosure. - * @implements ILaunchPlanClosure - * @constructor - * @param {flyteidl.admin.ILaunchPlanClosure=} [properties] Properties to set - */ - function LaunchPlanClosure(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LaunchPlanClosure state. - * @member {flyteidl.admin.LaunchPlanState} state - * @memberof flyteidl.admin.LaunchPlanClosure - * @instance - */ - LaunchPlanClosure.prototype.state = 0; - - /** - * LaunchPlanClosure expectedInputs. - * @member {flyteidl.core.IParameterMap|null|undefined} expectedInputs - * @memberof flyteidl.admin.LaunchPlanClosure - * @instance - */ - LaunchPlanClosure.prototype.expectedInputs = null; - - /** - * LaunchPlanClosure expectedOutputs. - * @member {flyteidl.core.IVariableMap|null|undefined} expectedOutputs - * @memberof flyteidl.admin.LaunchPlanClosure - * @instance - */ - LaunchPlanClosure.prototype.expectedOutputs = null; - - /** - * LaunchPlanClosure createdAt. - * @member {google.protobuf.ITimestamp|null|undefined} createdAt - * @memberof flyteidl.admin.LaunchPlanClosure - * @instance - */ - LaunchPlanClosure.prototype.createdAt = null; - - /** - * LaunchPlanClosure updatedAt. - * @member {google.protobuf.ITimestamp|null|undefined} updatedAt - * @memberof flyteidl.admin.LaunchPlanClosure - * @instance - */ - LaunchPlanClosure.prototype.updatedAt = null; - - /** - * Creates a new LaunchPlanClosure instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlanClosure - * @static - * @param {flyteidl.admin.ILaunchPlanClosure=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlanClosure} LaunchPlanClosure instance - */ - LaunchPlanClosure.create = function create(properties) { - return new LaunchPlanClosure(properties); - }; - - /** - * Encodes the specified LaunchPlanClosure message. Does not implicitly {@link flyteidl.admin.LaunchPlanClosure.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlanClosure - * @static - * @param {flyteidl.admin.ILaunchPlanClosure} message LaunchPlanClosure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlanClosure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.state); - if (message.expectedInputs != null && message.hasOwnProperty("expectedInputs")) - $root.flyteidl.core.ParameterMap.encode(message.expectedInputs, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.expectedOutputs != null && message.hasOwnProperty("expectedOutputs")) - $root.flyteidl.core.VariableMap.encode(message.expectedOutputs, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.createdAt != null && message.hasOwnProperty("createdAt")) - $root.google.protobuf.Timestamp.encode(message.createdAt, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.updatedAt != null && message.hasOwnProperty("updatedAt")) - $root.google.protobuf.Timestamp.encode(message.updatedAt, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a LaunchPlanClosure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlanClosure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlanClosure} LaunchPlanClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlanClosure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlanClosure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.state = reader.int32(); - break; - case 2: - message.expectedInputs = $root.flyteidl.core.ParameterMap.decode(reader, reader.uint32()); - break; - case 3: - message.expectedOutputs = $root.flyteidl.core.VariableMap.decode(reader, reader.uint32()); - break; - case 4: - message.createdAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 5: - message.updatedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlanClosure message. - * @function verify - * @memberof flyteidl.admin.LaunchPlanClosure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlanClosure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - break; - } - if (message.expectedInputs != null && message.hasOwnProperty("expectedInputs")) { - var error = $root.flyteidl.core.ParameterMap.verify(message.expectedInputs); - if (error) - return "expectedInputs." + error; - } - if (message.expectedOutputs != null && message.hasOwnProperty("expectedOutputs")) { - var error = $root.flyteidl.core.VariableMap.verify(message.expectedOutputs); - if (error) - return "expectedOutputs." + error; - } - if (message.createdAt != null && message.hasOwnProperty("createdAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.createdAt); - if (error) - return "createdAt." + error; - } - if (message.updatedAt != null && message.hasOwnProperty("updatedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.updatedAt); - if (error) - return "updatedAt." + error; - } - return null; - }; - - return LaunchPlanClosure; - })(); - - admin.LaunchPlanMetadata = (function() { - - /** - * Properties of a LaunchPlanMetadata. - * @memberof flyteidl.admin - * @interface ILaunchPlanMetadata - * @property {flyteidl.admin.ISchedule|null} [schedule] LaunchPlanMetadata schedule - * @property {Array.|null} [notifications] LaunchPlanMetadata notifications - * @property {google.protobuf.IAny|null} [launchConditions] LaunchPlanMetadata launchConditions - */ - - /** - * Constructs a new LaunchPlanMetadata. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlanMetadata. - * @implements ILaunchPlanMetadata - * @constructor - * @param {flyteidl.admin.ILaunchPlanMetadata=} [properties] Properties to set - */ - function LaunchPlanMetadata(properties) { - this.notifications = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LaunchPlanMetadata schedule. - * @member {flyteidl.admin.ISchedule|null|undefined} schedule - * @memberof flyteidl.admin.LaunchPlanMetadata - * @instance - */ - LaunchPlanMetadata.prototype.schedule = null; - - /** - * LaunchPlanMetadata notifications. - * @member {Array.} notifications - * @memberof flyteidl.admin.LaunchPlanMetadata - * @instance - */ - LaunchPlanMetadata.prototype.notifications = $util.emptyArray; - - /** - * LaunchPlanMetadata launchConditions. - * @member {google.protobuf.IAny|null|undefined} launchConditions - * @memberof flyteidl.admin.LaunchPlanMetadata - * @instance - */ - LaunchPlanMetadata.prototype.launchConditions = null; - - /** - * Creates a new LaunchPlanMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlanMetadata - * @static - * @param {flyteidl.admin.ILaunchPlanMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlanMetadata} LaunchPlanMetadata instance - */ - LaunchPlanMetadata.create = function create(properties) { - return new LaunchPlanMetadata(properties); - }; - - /** - * Encodes the specified LaunchPlanMetadata message. Does not implicitly {@link flyteidl.admin.LaunchPlanMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlanMetadata - * @static - * @param {flyteidl.admin.ILaunchPlanMetadata} message LaunchPlanMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlanMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.schedule != null && message.hasOwnProperty("schedule")) - $root.flyteidl.admin.Schedule.encode(message.schedule, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.notifications != null && message.notifications.length) - for (var i = 0; i < message.notifications.length; ++i) - $root.flyteidl.admin.Notification.encode(message.notifications[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.launchConditions != null && message.hasOwnProperty("launchConditions")) - $root.google.protobuf.Any.encode(message.launchConditions, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a LaunchPlanMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlanMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlanMetadata} LaunchPlanMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlanMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlanMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.schedule = $root.flyteidl.admin.Schedule.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.notifications && message.notifications.length)) - message.notifications = []; - message.notifications.push($root.flyteidl.admin.Notification.decode(reader, reader.uint32())); - break; - case 3: - message.launchConditions = $root.google.protobuf.Any.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlanMetadata message. - * @function verify - * @memberof flyteidl.admin.LaunchPlanMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlanMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.schedule != null && message.hasOwnProperty("schedule")) { - var error = $root.flyteidl.admin.Schedule.verify(message.schedule); - if (error) - return "schedule." + error; - } - if (message.notifications != null && message.hasOwnProperty("notifications")) { - if (!Array.isArray(message.notifications)) - return "notifications: array expected"; - for (var i = 0; i < message.notifications.length; ++i) { - var error = $root.flyteidl.admin.Notification.verify(message.notifications[i]); - if (error) - return "notifications." + error; - } - } - if (message.launchConditions != null && message.hasOwnProperty("launchConditions")) { - var error = $root.google.protobuf.Any.verify(message.launchConditions); - if (error) - return "launchConditions." + error; - } - return null; - }; - - return LaunchPlanMetadata; - })(); - - admin.LaunchPlanUpdateRequest = (function() { - - /** - * Properties of a LaunchPlanUpdateRequest. - * @memberof flyteidl.admin - * @interface ILaunchPlanUpdateRequest - * @property {flyteidl.core.IIdentifier|null} [id] LaunchPlanUpdateRequest id - * @property {flyteidl.admin.LaunchPlanState|null} [state] LaunchPlanUpdateRequest state - */ - - /** - * Constructs a new LaunchPlanUpdateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlanUpdateRequest. - * @implements ILaunchPlanUpdateRequest - * @constructor - * @param {flyteidl.admin.ILaunchPlanUpdateRequest=} [properties] Properties to set - */ - function LaunchPlanUpdateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * LaunchPlanUpdateRequest id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.LaunchPlanUpdateRequest - * @instance - */ - LaunchPlanUpdateRequest.prototype.id = null; - - /** - * LaunchPlanUpdateRequest state. - * @member {flyteidl.admin.LaunchPlanState} state - * @memberof flyteidl.admin.LaunchPlanUpdateRequest - * @instance - */ - LaunchPlanUpdateRequest.prototype.state = 0; - - /** - * Creates a new LaunchPlanUpdateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlanUpdateRequest - * @static - * @param {flyteidl.admin.ILaunchPlanUpdateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlanUpdateRequest} LaunchPlanUpdateRequest instance - */ - LaunchPlanUpdateRequest.create = function create(properties) { - return new LaunchPlanUpdateRequest(properties); - }; - - /** - * Encodes the specified LaunchPlanUpdateRequest message. Does not implicitly {@link flyteidl.admin.LaunchPlanUpdateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlanUpdateRequest - * @static - * @param {flyteidl.admin.ILaunchPlanUpdateRequest} message LaunchPlanUpdateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlanUpdateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.state); - return writer; - }; - - /** - * Decodes a LaunchPlanUpdateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlanUpdateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlanUpdateRequest} LaunchPlanUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlanUpdateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlanUpdateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.state = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlanUpdateRequest message. - * @function verify - * @memberof flyteidl.admin.LaunchPlanUpdateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlanUpdateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - break; - } - return null; - }; - - return LaunchPlanUpdateRequest; - })(); - - admin.LaunchPlanUpdateResponse = (function() { - - /** - * Properties of a LaunchPlanUpdateResponse. - * @memberof flyteidl.admin - * @interface ILaunchPlanUpdateResponse - */ - - /** - * Constructs a new LaunchPlanUpdateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a LaunchPlanUpdateResponse. - * @implements ILaunchPlanUpdateResponse - * @constructor - * @param {flyteidl.admin.ILaunchPlanUpdateResponse=} [properties] Properties to set - */ - function LaunchPlanUpdateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new LaunchPlanUpdateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.LaunchPlanUpdateResponse - * @static - * @param {flyteidl.admin.ILaunchPlanUpdateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.LaunchPlanUpdateResponse} LaunchPlanUpdateResponse instance - */ - LaunchPlanUpdateResponse.create = function create(properties) { - return new LaunchPlanUpdateResponse(properties); - }; - - /** - * Encodes the specified LaunchPlanUpdateResponse message. Does not implicitly {@link flyteidl.admin.LaunchPlanUpdateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.LaunchPlanUpdateResponse - * @static - * @param {flyteidl.admin.ILaunchPlanUpdateResponse} message LaunchPlanUpdateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - LaunchPlanUpdateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a LaunchPlanUpdateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.LaunchPlanUpdateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.LaunchPlanUpdateResponse} LaunchPlanUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - LaunchPlanUpdateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.LaunchPlanUpdateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a LaunchPlanUpdateResponse message. - * @function verify - * @memberof flyteidl.admin.LaunchPlanUpdateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - LaunchPlanUpdateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return LaunchPlanUpdateResponse; - })(); - - admin.ActiveLaunchPlanRequest = (function() { - - /** - * Properties of an ActiveLaunchPlanRequest. - * @memberof flyteidl.admin - * @interface IActiveLaunchPlanRequest - * @property {flyteidl.admin.INamedEntityIdentifier|null} [id] ActiveLaunchPlanRequest id - */ - - /** - * Constructs a new ActiveLaunchPlanRequest. - * @memberof flyteidl.admin - * @classdesc Represents an ActiveLaunchPlanRequest. - * @implements IActiveLaunchPlanRequest - * @constructor - * @param {flyteidl.admin.IActiveLaunchPlanRequest=} [properties] Properties to set - */ - function ActiveLaunchPlanRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ActiveLaunchPlanRequest id. - * @member {flyteidl.admin.INamedEntityIdentifier|null|undefined} id - * @memberof flyteidl.admin.ActiveLaunchPlanRequest - * @instance - */ - ActiveLaunchPlanRequest.prototype.id = null; - - /** - * Creates a new ActiveLaunchPlanRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ActiveLaunchPlanRequest - * @static - * @param {flyteidl.admin.IActiveLaunchPlanRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ActiveLaunchPlanRequest} ActiveLaunchPlanRequest instance - */ - ActiveLaunchPlanRequest.create = function create(properties) { - return new ActiveLaunchPlanRequest(properties); - }; - - /** - * Encodes the specified ActiveLaunchPlanRequest message. Does not implicitly {@link flyteidl.admin.ActiveLaunchPlanRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ActiveLaunchPlanRequest - * @static - * @param {flyteidl.admin.IActiveLaunchPlanRequest} message ActiveLaunchPlanRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ActiveLaunchPlanRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.admin.NamedEntityIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an ActiveLaunchPlanRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ActiveLaunchPlanRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ActiveLaunchPlanRequest} ActiveLaunchPlanRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ActiveLaunchPlanRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ActiveLaunchPlanRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.admin.NamedEntityIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ActiveLaunchPlanRequest message. - * @function verify - * @memberof flyteidl.admin.ActiveLaunchPlanRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ActiveLaunchPlanRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.admin.NamedEntityIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return ActiveLaunchPlanRequest; - })(); - - admin.ActiveLaunchPlanListRequest = (function() { - - /** - * Properties of an ActiveLaunchPlanListRequest. - * @memberof flyteidl.admin - * @interface IActiveLaunchPlanListRequest - * @property {string|null} [project] ActiveLaunchPlanListRequest project - * @property {string|null} [domain] ActiveLaunchPlanListRequest domain - * @property {number|null} [limit] ActiveLaunchPlanListRequest limit - * @property {string|null} [token] ActiveLaunchPlanListRequest token - * @property {flyteidl.admin.ISort|null} [sortBy] ActiveLaunchPlanListRequest sortBy - * @property {string|null} [org] ActiveLaunchPlanListRequest org - */ - - /** - * Constructs a new ActiveLaunchPlanListRequest. - * @memberof flyteidl.admin - * @classdesc Represents an ActiveLaunchPlanListRequest. - * @implements IActiveLaunchPlanListRequest - * @constructor - * @param {flyteidl.admin.IActiveLaunchPlanListRequest=} [properties] Properties to set - */ - function ActiveLaunchPlanListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ActiveLaunchPlanListRequest project. - * @member {string} project - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @instance - */ - ActiveLaunchPlanListRequest.prototype.project = ""; - - /** - * ActiveLaunchPlanListRequest domain. - * @member {string} domain - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @instance - */ - ActiveLaunchPlanListRequest.prototype.domain = ""; - - /** - * ActiveLaunchPlanListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @instance - */ - ActiveLaunchPlanListRequest.prototype.limit = 0; - - /** - * ActiveLaunchPlanListRequest token. - * @member {string} token - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @instance - */ - ActiveLaunchPlanListRequest.prototype.token = ""; - - /** - * ActiveLaunchPlanListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @instance - */ - ActiveLaunchPlanListRequest.prototype.sortBy = null; - - /** - * ActiveLaunchPlanListRequest org. - * @member {string} org - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @instance - */ - ActiveLaunchPlanListRequest.prototype.org = ""; - - /** - * Creates a new ActiveLaunchPlanListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @static - * @param {flyteidl.admin.IActiveLaunchPlanListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ActiveLaunchPlanListRequest} ActiveLaunchPlanListRequest instance - */ - ActiveLaunchPlanListRequest.create = function create(properties) { - return new ActiveLaunchPlanListRequest(properties); - }; - - /** - * Encodes the specified ActiveLaunchPlanListRequest message. Does not implicitly {@link flyteidl.admin.ActiveLaunchPlanListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @static - * @param {flyteidl.admin.IActiveLaunchPlanListRequest} message ActiveLaunchPlanListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ActiveLaunchPlanListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.token); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.org); - return writer; - }; - - /** - * Decodes an ActiveLaunchPlanListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ActiveLaunchPlanListRequest} ActiveLaunchPlanListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ActiveLaunchPlanListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ActiveLaunchPlanListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.limit = reader.uint32(); - break; - case 4: - message.token = reader.string(); - break; - case 5: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - case 6: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ActiveLaunchPlanListRequest message. - * @function verify - * @memberof flyteidl.admin.ActiveLaunchPlanListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ActiveLaunchPlanListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ActiveLaunchPlanListRequest; - })(); - - /** - * FixedRateUnit enum. - * @name flyteidl.admin.FixedRateUnit - * @enum {string} - * @property {number} MINUTE=0 MINUTE value - * @property {number} HOUR=1 HOUR value - * @property {number} DAY=2 DAY value - */ - admin.FixedRateUnit = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "MINUTE"] = 0; - values[valuesById[1] = "HOUR"] = 1; - values[valuesById[2] = "DAY"] = 2; - return values; - })(); - - admin.FixedRate = (function() { - - /** - * Properties of a FixedRate. - * @memberof flyteidl.admin - * @interface IFixedRate - * @property {number|null} [value] FixedRate value - * @property {flyteidl.admin.FixedRateUnit|null} [unit] FixedRate unit - */ - - /** - * Constructs a new FixedRate. - * @memberof flyteidl.admin - * @classdesc Represents a FixedRate. - * @implements IFixedRate - * @constructor - * @param {flyteidl.admin.IFixedRate=} [properties] Properties to set - */ - function FixedRate(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * FixedRate value. - * @member {number} value - * @memberof flyteidl.admin.FixedRate - * @instance - */ - FixedRate.prototype.value = 0; - - /** - * FixedRate unit. - * @member {flyteidl.admin.FixedRateUnit} unit - * @memberof flyteidl.admin.FixedRate - * @instance - */ - FixedRate.prototype.unit = 0; - - /** - * Creates a new FixedRate instance using the specified properties. - * @function create - * @memberof flyteidl.admin.FixedRate - * @static - * @param {flyteidl.admin.IFixedRate=} [properties] Properties to set - * @returns {flyteidl.admin.FixedRate} FixedRate instance - */ - FixedRate.create = function create(properties) { - return new FixedRate(properties); - }; - - /** - * Encodes the specified FixedRate message. Does not implicitly {@link flyteidl.admin.FixedRate.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.FixedRate - * @static - * @param {flyteidl.admin.IFixedRate} message FixedRate message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - FixedRate.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 0 =*/8).uint32(message.value); - if (message.unit != null && message.hasOwnProperty("unit")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.unit); - return writer; - }; - - /** - * Decodes a FixedRate message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.FixedRate - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.FixedRate} FixedRate - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - FixedRate.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.FixedRate(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.uint32(); - break; - case 2: - message.unit = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a FixedRate message. - * @function verify - * @memberof flyteidl.admin.FixedRate - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - FixedRate.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isInteger(message.value)) - return "value: integer expected"; - if (message.unit != null && message.hasOwnProperty("unit")) - switch (message.unit) { - default: - return "unit: enum value expected"; - case 0: - case 1: - case 2: - break; - } - return null; - }; - - return FixedRate; - })(); - - admin.CronSchedule = (function() { - - /** - * Properties of a CronSchedule. - * @memberof flyteidl.admin - * @interface ICronSchedule - * @property {string|null} [schedule] CronSchedule schedule - * @property {string|null} [offset] CronSchedule offset - */ - - /** - * Constructs a new CronSchedule. - * @memberof flyteidl.admin - * @classdesc Represents a CronSchedule. - * @implements ICronSchedule - * @constructor - * @param {flyteidl.admin.ICronSchedule=} [properties] Properties to set - */ - function CronSchedule(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CronSchedule schedule. - * @member {string} schedule - * @memberof flyteidl.admin.CronSchedule - * @instance - */ - CronSchedule.prototype.schedule = ""; - - /** - * CronSchedule offset. - * @member {string} offset - * @memberof flyteidl.admin.CronSchedule - * @instance - */ - CronSchedule.prototype.offset = ""; - - /** - * Creates a new CronSchedule instance using the specified properties. - * @function create - * @memberof flyteidl.admin.CronSchedule - * @static - * @param {flyteidl.admin.ICronSchedule=} [properties] Properties to set - * @returns {flyteidl.admin.CronSchedule} CronSchedule instance - */ - CronSchedule.create = function create(properties) { - return new CronSchedule(properties); - }; - - /** - * Encodes the specified CronSchedule message. Does not implicitly {@link flyteidl.admin.CronSchedule.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.CronSchedule - * @static - * @param {flyteidl.admin.ICronSchedule} message CronSchedule message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CronSchedule.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.schedule != null && message.hasOwnProperty("schedule")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.schedule); - if (message.offset != null && message.hasOwnProperty("offset")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.offset); - return writer; - }; - - /** - * Decodes a CronSchedule message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.CronSchedule - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.CronSchedule} CronSchedule - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CronSchedule.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.CronSchedule(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.schedule = reader.string(); - break; - case 2: - message.offset = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CronSchedule message. - * @function verify - * @memberof flyteidl.admin.CronSchedule - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CronSchedule.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.schedule != null && message.hasOwnProperty("schedule")) - if (!$util.isString(message.schedule)) - return "schedule: string expected"; - if (message.offset != null && message.hasOwnProperty("offset")) - if (!$util.isString(message.offset)) - return "offset: string expected"; - return null; - }; - - return CronSchedule; - })(); - - admin.Schedule = (function() { - - /** - * Properties of a Schedule. - * @memberof flyteidl.admin - * @interface ISchedule - * @property {string|null} [cronExpression] Schedule cronExpression - * @property {flyteidl.admin.IFixedRate|null} [rate] Schedule rate - * @property {flyteidl.admin.ICronSchedule|null} [cronSchedule] Schedule cronSchedule - * @property {string|null} [kickoffTimeInputArg] Schedule kickoffTimeInputArg - */ - - /** - * Constructs a new Schedule. - * @memberof flyteidl.admin - * @classdesc Represents a Schedule. - * @implements ISchedule - * @constructor - * @param {flyteidl.admin.ISchedule=} [properties] Properties to set - */ - function Schedule(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Schedule cronExpression. - * @member {string} cronExpression - * @memberof flyteidl.admin.Schedule - * @instance - */ - Schedule.prototype.cronExpression = ""; - - /** - * Schedule rate. - * @member {flyteidl.admin.IFixedRate|null|undefined} rate - * @memberof flyteidl.admin.Schedule - * @instance - */ - Schedule.prototype.rate = null; - - /** - * Schedule cronSchedule. - * @member {flyteidl.admin.ICronSchedule|null|undefined} cronSchedule - * @memberof flyteidl.admin.Schedule - * @instance - */ - Schedule.prototype.cronSchedule = null; - - /** - * Schedule kickoffTimeInputArg. - * @member {string} kickoffTimeInputArg - * @memberof flyteidl.admin.Schedule - * @instance - */ - Schedule.prototype.kickoffTimeInputArg = ""; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Schedule ScheduleExpression. - * @member {"cronExpression"|"rate"|"cronSchedule"|undefined} ScheduleExpression - * @memberof flyteidl.admin.Schedule - * @instance - */ - Object.defineProperty(Schedule.prototype, "ScheduleExpression", { - get: $util.oneOfGetter($oneOfFields = ["cronExpression", "rate", "cronSchedule"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Schedule instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Schedule - * @static - * @param {flyteidl.admin.ISchedule=} [properties] Properties to set - * @returns {flyteidl.admin.Schedule} Schedule instance - */ - Schedule.create = function create(properties) { - return new Schedule(properties); - }; - - /** - * Encodes the specified Schedule message. Does not implicitly {@link flyteidl.admin.Schedule.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Schedule - * @static - * @param {flyteidl.admin.ISchedule} message Schedule message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Schedule.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.cronExpression != null && message.hasOwnProperty("cronExpression")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.cronExpression); - if (message.rate != null && message.hasOwnProperty("rate")) - $root.flyteidl.admin.FixedRate.encode(message.rate, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.kickoffTimeInputArg != null && message.hasOwnProperty("kickoffTimeInputArg")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.kickoffTimeInputArg); - if (message.cronSchedule != null && message.hasOwnProperty("cronSchedule")) - $root.flyteidl.admin.CronSchedule.encode(message.cronSchedule, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Schedule message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Schedule - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Schedule} Schedule - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Schedule.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Schedule(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.cronExpression = reader.string(); - break; - case 2: - message.rate = $root.flyteidl.admin.FixedRate.decode(reader, reader.uint32()); - break; - case 4: - message.cronSchedule = $root.flyteidl.admin.CronSchedule.decode(reader, reader.uint32()); - break; - case 3: - message.kickoffTimeInputArg = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Schedule message. - * @function verify - * @memberof flyteidl.admin.Schedule - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Schedule.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.cronExpression != null && message.hasOwnProperty("cronExpression")) { - properties.ScheduleExpression = 1; - if (!$util.isString(message.cronExpression)) - return "cronExpression: string expected"; - } - if (message.rate != null && message.hasOwnProperty("rate")) { - if (properties.ScheduleExpression === 1) - return "ScheduleExpression: multiple values"; - properties.ScheduleExpression = 1; - { - var error = $root.flyteidl.admin.FixedRate.verify(message.rate); - if (error) - return "rate." + error; - } - } - if (message.cronSchedule != null && message.hasOwnProperty("cronSchedule")) { - if (properties.ScheduleExpression === 1) - return "ScheduleExpression: multiple values"; - properties.ScheduleExpression = 1; - { - var error = $root.flyteidl.admin.CronSchedule.verify(message.cronSchedule); - if (error) - return "cronSchedule." + error; - } - } - if (message.kickoffTimeInputArg != null && message.hasOwnProperty("kickoffTimeInputArg")) - if (!$util.isString(message.kickoffTimeInputArg)) - return "kickoffTimeInputArg: string expected"; - return null; - }; - - return Schedule; - })(); - - /** - * MatchableResource enum. - * @name flyteidl.admin.MatchableResource - * @enum {string} - * @property {number} TASK_RESOURCE=0 TASK_RESOURCE value - * @property {number} CLUSTER_RESOURCE=1 CLUSTER_RESOURCE value - * @property {number} EXECUTION_QUEUE=2 EXECUTION_QUEUE value - * @property {number} EXECUTION_CLUSTER_LABEL=3 EXECUTION_CLUSTER_LABEL value - * @property {number} QUALITY_OF_SERVICE_SPECIFICATION=4 QUALITY_OF_SERVICE_SPECIFICATION value - * @property {number} PLUGIN_OVERRIDE=5 PLUGIN_OVERRIDE value - * @property {number} WORKFLOW_EXECUTION_CONFIG=6 WORKFLOW_EXECUTION_CONFIG value - * @property {number} CLUSTER_ASSIGNMENT=7 CLUSTER_ASSIGNMENT value - */ - admin.MatchableResource = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "TASK_RESOURCE"] = 0; - values[valuesById[1] = "CLUSTER_RESOURCE"] = 1; - values[valuesById[2] = "EXECUTION_QUEUE"] = 2; - values[valuesById[3] = "EXECUTION_CLUSTER_LABEL"] = 3; - values[valuesById[4] = "QUALITY_OF_SERVICE_SPECIFICATION"] = 4; - values[valuesById[5] = "PLUGIN_OVERRIDE"] = 5; - values[valuesById[6] = "WORKFLOW_EXECUTION_CONFIG"] = 6; - values[valuesById[7] = "CLUSTER_ASSIGNMENT"] = 7; - return values; - })(); - - admin.TaskResourceSpec = (function() { - - /** - * Properties of a TaskResourceSpec. - * @memberof flyteidl.admin - * @interface ITaskResourceSpec - * @property {string|null} [cpu] TaskResourceSpec cpu - * @property {string|null} [gpu] TaskResourceSpec gpu - * @property {string|null} [memory] TaskResourceSpec memory - * @property {string|null} [storage] TaskResourceSpec storage - * @property {string|null} [ephemeralStorage] TaskResourceSpec ephemeralStorage - */ - - /** - * Constructs a new TaskResourceSpec. - * @memberof flyteidl.admin - * @classdesc Represents a TaskResourceSpec. - * @implements ITaskResourceSpec - * @constructor - * @param {flyteidl.admin.ITaskResourceSpec=} [properties] Properties to set - */ - function TaskResourceSpec(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskResourceSpec cpu. - * @member {string} cpu - * @memberof flyteidl.admin.TaskResourceSpec - * @instance - */ - TaskResourceSpec.prototype.cpu = ""; - - /** - * TaskResourceSpec gpu. - * @member {string} gpu - * @memberof flyteidl.admin.TaskResourceSpec - * @instance - */ - TaskResourceSpec.prototype.gpu = ""; - - /** - * TaskResourceSpec memory. - * @member {string} memory - * @memberof flyteidl.admin.TaskResourceSpec - * @instance - */ - TaskResourceSpec.prototype.memory = ""; - - /** - * TaskResourceSpec storage. - * @member {string} storage - * @memberof flyteidl.admin.TaskResourceSpec - * @instance - */ - TaskResourceSpec.prototype.storage = ""; - - /** - * TaskResourceSpec ephemeralStorage. - * @member {string} ephemeralStorage - * @memberof flyteidl.admin.TaskResourceSpec - * @instance - */ - TaskResourceSpec.prototype.ephemeralStorage = ""; - - /** - * Creates a new TaskResourceSpec instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskResourceSpec - * @static - * @param {flyteidl.admin.ITaskResourceSpec=} [properties] Properties to set - * @returns {flyteidl.admin.TaskResourceSpec} TaskResourceSpec instance - */ - TaskResourceSpec.create = function create(properties) { - return new TaskResourceSpec(properties); - }; - - /** - * Encodes the specified TaskResourceSpec message. Does not implicitly {@link flyteidl.admin.TaskResourceSpec.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskResourceSpec - * @static - * @param {flyteidl.admin.ITaskResourceSpec} message TaskResourceSpec message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskResourceSpec.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.cpu != null && message.hasOwnProperty("cpu")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.cpu); - if (message.gpu != null && message.hasOwnProperty("gpu")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.gpu); - if (message.memory != null && message.hasOwnProperty("memory")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.memory); - if (message.storage != null && message.hasOwnProperty("storage")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.storage); - if (message.ephemeralStorage != null && message.hasOwnProperty("ephemeralStorage")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.ephemeralStorage); - return writer; - }; - - /** - * Decodes a TaskResourceSpec message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskResourceSpec - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskResourceSpec} TaskResourceSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskResourceSpec.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskResourceSpec(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.cpu = reader.string(); - break; - case 2: - message.gpu = reader.string(); - break; - case 3: - message.memory = reader.string(); - break; - case 4: - message.storage = reader.string(); - break; - case 5: - message.ephemeralStorage = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskResourceSpec message. - * @function verify - * @memberof flyteidl.admin.TaskResourceSpec - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskResourceSpec.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.cpu != null && message.hasOwnProperty("cpu")) - if (!$util.isString(message.cpu)) - return "cpu: string expected"; - if (message.gpu != null && message.hasOwnProperty("gpu")) - if (!$util.isString(message.gpu)) - return "gpu: string expected"; - if (message.memory != null && message.hasOwnProperty("memory")) - if (!$util.isString(message.memory)) - return "memory: string expected"; - if (message.storage != null && message.hasOwnProperty("storage")) - if (!$util.isString(message.storage)) - return "storage: string expected"; - if (message.ephemeralStorage != null && message.hasOwnProperty("ephemeralStorage")) - if (!$util.isString(message.ephemeralStorage)) - return "ephemeralStorage: string expected"; - return null; - }; - - return TaskResourceSpec; - })(); - - admin.TaskResourceAttributes = (function() { - - /** - * Properties of a TaskResourceAttributes. - * @memberof flyteidl.admin - * @interface ITaskResourceAttributes - * @property {flyteidl.admin.ITaskResourceSpec|null} [defaults] TaskResourceAttributes defaults - * @property {flyteidl.admin.ITaskResourceSpec|null} [limits] TaskResourceAttributes limits - */ - - /** - * Constructs a new TaskResourceAttributes. - * @memberof flyteidl.admin - * @classdesc Represents a TaskResourceAttributes. - * @implements ITaskResourceAttributes - * @constructor - * @param {flyteidl.admin.ITaskResourceAttributes=} [properties] Properties to set - */ - function TaskResourceAttributes(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskResourceAttributes defaults. - * @member {flyteidl.admin.ITaskResourceSpec|null|undefined} defaults - * @memberof flyteidl.admin.TaskResourceAttributes - * @instance - */ - TaskResourceAttributes.prototype.defaults = null; - - /** - * TaskResourceAttributes limits. - * @member {flyteidl.admin.ITaskResourceSpec|null|undefined} limits - * @memberof flyteidl.admin.TaskResourceAttributes - * @instance - */ - TaskResourceAttributes.prototype.limits = null; - - /** - * Creates a new TaskResourceAttributes instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskResourceAttributes - * @static - * @param {flyteidl.admin.ITaskResourceAttributes=} [properties] Properties to set - * @returns {flyteidl.admin.TaskResourceAttributes} TaskResourceAttributes instance - */ - TaskResourceAttributes.create = function create(properties) { - return new TaskResourceAttributes(properties); - }; - - /** - * Encodes the specified TaskResourceAttributes message. Does not implicitly {@link flyteidl.admin.TaskResourceAttributes.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskResourceAttributes - * @static - * @param {flyteidl.admin.ITaskResourceAttributes} message TaskResourceAttributes message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskResourceAttributes.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.defaults != null && message.hasOwnProperty("defaults")) - $root.flyteidl.admin.TaskResourceSpec.encode(message.defaults, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.limits != null && message.hasOwnProperty("limits")) - $root.flyteidl.admin.TaskResourceSpec.encode(message.limits, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskResourceAttributes message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskResourceAttributes - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskResourceAttributes} TaskResourceAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskResourceAttributes.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskResourceAttributes(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.defaults = $root.flyteidl.admin.TaskResourceSpec.decode(reader, reader.uint32()); - break; - case 2: - message.limits = $root.flyteidl.admin.TaskResourceSpec.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskResourceAttributes message. - * @function verify - * @memberof flyteidl.admin.TaskResourceAttributes - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskResourceAttributes.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.defaults != null && message.hasOwnProperty("defaults")) { - var error = $root.flyteidl.admin.TaskResourceSpec.verify(message.defaults); - if (error) - return "defaults." + error; - } - if (message.limits != null && message.hasOwnProperty("limits")) { - var error = $root.flyteidl.admin.TaskResourceSpec.verify(message.limits); - if (error) - return "limits." + error; - } - return null; - }; - - return TaskResourceAttributes; - })(); - - admin.ClusterResourceAttributes = (function() { - - /** - * Properties of a ClusterResourceAttributes. - * @memberof flyteidl.admin - * @interface IClusterResourceAttributes - * @property {Object.|null} [attributes] ClusterResourceAttributes attributes - */ - - /** - * Constructs a new ClusterResourceAttributes. - * @memberof flyteidl.admin - * @classdesc Represents a ClusterResourceAttributes. - * @implements IClusterResourceAttributes - * @constructor - * @param {flyteidl.admin.IClusterResourceAttributes=} [properties] Properties to set - */ - function ClusterResourceAttributes(properties) { - this.attributes = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ClusterResourceAttributes attributes. - * @member {Object.} attributes - * @memberof flyteidl.admin.ClusterResourceAttributes - * @instance - */ - ClusterResourceAttributes.prototype.attributes = $util.emptyObject; - - /** - * Creates a new ClusterResourceAttributes instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ClusterResourceAttributes - * @static - * @param {flyteidl.admin.IClusterResourceAttributes=} [properties] Properties to set - * @returns {flyteidl.admin.ClusterResourceAttributes} ClusterResourceAttributes instance - */ - ClusterResourceAttributes.create = function create(properties) { - return new ClusterResourceAttributes(properties); - }; - - /** - * Encodes the specified ClusterResourceAttributes message. Does not implicitly {@link flyteidl.admin.ClusterResourceAttributes.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ClusterResourceAttributes - * @static - * @param {flyteidl.admin.IClusterResourceAttributes} message ClusterResourceAttributes message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ClusterResourceAttributes.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.attributes != null && message.hasOwnProperty("attributes")) - for (var keys = Object.keys(message.attributes), i = 0; i < keys.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.attributes[keys[i]]).ldelim(); - return writer; - }; - - /** - * Decodes a ClusterResourceAttributes message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ClusterResourceAttributes - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ClusterResourceAttributes} ClusterResourceAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ClusterResourceAttributes.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ClusterResourceAttributes(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.attributes === $util.emptyObject) - message.attributes = {}; - key = reader.string(); - reader.pos++; - message.attributes[key] = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ClusterResourceAttributes message. - * @function verify - * @memberof flyteidl.admin.ClusterResourceAttributes - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ClusterResourceAttributes.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.attributes != null && message.hasOwnProperty("attributes")) { - if (!$util.isObject(message.attributes)) - return "attributes: object expected"; - var key = Object.keys(message.attributes); - for (var i = 0; i < key.length; ++i) - if (!$util.isString(message.attributes[key[i]])) - return "attributes: string{k:string} expected"; - } - return null; - }; - - return ClusterResourceAttributes; - })(); - - admin.ExecutionQueueAttributes = (function() { - - /** - * Properties of an ExecutionQueueAttributes. - * @memberof flyteidl.admin - * @interface IExecutionQueueAttributes - * @property {Array.|null} [tags] ExecutionQueueAttributes tags - */ - - /** - * Constructs a new ExecutionQueueAttributes. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionQueueAttributes. - * @implements IExecutionQueueAttributes - * @constructor - * @param {flyteidl.admin.IExecutionQueueAttributes=} [properties] Properties to set - */ - function ExecutionQueueAttributes(properties) { - this.tags = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionQueueAttributes tags. - * @member {Array.} tags - * @memberof flyteidl.admin.ExecutionQueueAttributes - * @instance - */ - ExecutionQueueAttributes.prototype.tags = $util.emptyArray; - - /** - * Creates a new ExecutionQueueAttributes instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionQueueAttributes - * @static - * @param {flyteidl.admin.IExecutionQueueAttributes=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionQueueAttributes} ExecutionQueueAttributes instance - */ - ExecutionQueueAttributes.create = function create(properties) { - return new ExecutionQueueAttributes(properties); - }; - - /** - * Encodes the specified ExecutionQueueAttributes message. Does not implicitly {@link flyteidl.admin.ExecutionQueueAttributes.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionQueueAttributes - * @static - * @param {flyteidl.admin.IExecutionQueueAttributes} message ExecutionQueueAttributes message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionQueueAttributes.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.tags != null && message.tags.length) - for (var i = 0; i < message.tags.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.tags[i]); - return writer; - }; - - /** - * Decodes an ExecutionQueueAttributes message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionQueueAttributes - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionQueueAttributes} ExecutionQueueAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionQueueAttributes.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionQueueAttributes(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.tags && message.tags.length)) - message.tags = []; - message.tags.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionQueueAttributes message. - * @function verify - * @memberof flyteidl.admin.ExecutionQueueAttributes - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionQueueAttributes.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.tags != null && message.hasOwnProperty("tags")) { - if (!Array.isArray(message.tags)) - return "tags: array expected"; - for (var i = 0; i < message.tags.length; ++i) - if (!$util.isString(message.tags[i])) - return "tags: string[] expected"; - } - return null; - }; - - return ExecutionQueueAttributes; - })(); - - admin.ExecutionClusterLabel = (function() { - - /** - * Properties of an ExecutionClusterLabel. - * @memberof flyteidl.admin - * @interface IExecutionClusterLabel - * @property {string|null} [value] ExecutionClusterLabel value - */ - - /** - * Constructs a new ExecutionClusterLabel. - * @memberof flyteidl.admin - * @classdesc Represents an ExecutionClusterLabel. - * @implements IExecutionClusterLabel - * @constructor - * @param {flyteidl.admin.IExecutionClusterLabel=} [properties] Properties to set - */ - function ExecutionClusterLabel(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExecutionClusterLabel value. - * @member {string} value - * @memberof flyteidl.admin.ExecutionClusterLabel - * @instance - */ - ExecutionClusterLabel.prototype.value = ""; - - /** - * Creates a new ExecutionClusterLabel instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ExecutionClusterLabel - * @static - * @param {flyteidl.admin.IExecutionClusterLabel=} [properties] Properties to set - * @returns {flyteidl.admin.ExecutionClusterLabel} ExecutionClusterLabel instance - */ - ExecutionClusterLabel.create = function create(properties) { - return new ExecutionClusterLabel(properties); - }; - - /** - * Encodes the specified ExecutionClusterLabel message. Does not implicitly {@link flyteidl.admin.ExecutionClusterLabel.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ExecutionClusterLabel - * @static - * @param {flyteidl.admin.IExecutionClusterLabel} message ExecutionClusterLabel message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExecutionClusterLabel.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.value); - return writer; - }; - - /** - * Decodes an ExecutionClusterLabel message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ExecutionClusterLabel - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ExecutionClusterLabel} ExecutionClusterLabel - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExecutionClusterLabel.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ExecutionClusterLabel(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExecutionClusterLabel message. - * @function verify - * @memberof flyteidl.admin.ExecutionClusterLabel - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExecutionClusterLabel.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isString(message.value)) - return "value: string expected"; - return null; - }; - - return ExecutionClusterLabel; - })(); - - admin.PluginOverride = (function() { - - /** - * Properties of a PluginOverride. - * @memberof flyteidl.admin - * @interface IPluginOverride - * @property {string|null} [taskType] PluginOverride taskType - * @property {Array.|null} [pluginId] PluginOverride pluginId - * @property {flyteidl.admin.PluginOverride.MissingPluginBehavior|null} [missingPluginBehavior] PluginOverride missingPluginBehavior - */ - - /** - * Constructs a new PluginOverride. - * @memberof flyteidl.admin - * @classdesc Represents a PluginOverride. - * @implements IPluginOverride - * @constructor - * @param {flyteidl.admin.IPluginOverride=} [properties] Properties to set - */ - function PluginOverride(properties) { - this.pluginId = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * PluginOverride taskType. - * @member {string} taskType - * @memberof flyteidl.admin.PluginOverride - * @instance - */ - PluginOverride.prototype.taskType = ""; - - /** - * PluginOverride pluginId. - * @member {Array.} pluginId - * @memberof flyteidl.admin.PluginOverride - * @instance - */ - PluginOverride.prototype.pluginId = $util.emptyArray; - - /** - * PluginOverride missingPluginBehavior. - * @member {flyteidl.admin.PluginOverride.MissingPluginBehavior} missingPluginBehavior - * @memberof flyteidl.admin.PluginOverride - * @instance - */ - PluginOverride.prototype.missingPluginBehavior = 0; - - /** - * Creates a new PluginOverride instance using the specified properties. - * @function create - * @memberof flyteidl.admin.PluginOverride - * @static - * @param {flyteidl.admin.IPluginOverride=} [properties] Properties to set - * @returns {flyteidl.admin.PluginOverride} PluginOverride instance - */ - PluginOverride.create = function create(properties) { - return new PluginOverride(properties); - }; - - /** - * Encodes the specified PluginOverride message. Does not implicitly {@link flyteidl.admin.PluginOverride.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.PluginOverride - * @static - * @param {flyteidl.admin.IPluginOverride} message PluginOverride message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - PluginOverride.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.taskType); - if (message.pluginId != null && message.pluginId.length) - for (var i = 0; i < message.pluginId.length; ++i) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.pluginId[i]); - if (message.missingPluginBehavior != null && message.hasOwnProperty("missingPluginBehavior")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.missingPluginBehavior); - return writer; - }; - - /** - * Decodes a PluginOverride message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.PluginOverride - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.PluginOverride} PluginOverride - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - PluginOverride.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.PluginOverride(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskType = reader.string(); - break; - case 2: - if (!(message.pluginId && message.pluginId.length)) - message.pluginId = []; - message.pluginId.push(reader.string()); - break; - case 4: - message.missingPluginBehavior = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a PluginOverride message. - * @function verify - * @memberof flyteidl.admin.PluginOverride - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - PluginOverride.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.pluginId != null && message.hasOwnProperty("pluginId")) { - if (!Array.isArray(message.pluginId)) - return "pluginId: array expected"; - for (var i = 0; i < message.pluginId.length; ++i) - if (!$util.isString(message.pluginId[i])) - return "pluginId: string[] expected"; - } - if (message.missingPluginBehavior != null && message.hasOwnProperty("missingPluginBehavior")) - switch (message.missingPluginBehavior) { - default: - return "missingPluginBehavior: enum value expected"; - case 0: - case 1: - break; - } - return null; - }; - - /** - * MissingPluginBehavior enum. - * @name flyteidl.admin.PluginOverride.MissingPluginBehavior - * @enum {string} - * @property {number} FAIL=0 FAIL value - * @property {number} USE_DEFAULT=1 USE_DEFAULT value - */ - PluginOverride.MissingPluginBehavior = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "FAIL"] = 0; - values[valuesById[1] = "USE_DEFAULT"] = 1; - return values; - })(); - - return PluginOverride; - })(); - - admin.PluginOverrides = (function() { - - /** - * Properties of a PluginOverrides. - * @memberof flyteidl.admin - * @interface IPluginOverrides - * @property {Array.|null} [overrides] PluginOverrides overrides - */ - - /** - * Constructs a new PluginOverrides. - * @memberof flyteidl.admin - * @classdesc Represents a PluginOverrides. - * @implements IPluginOverrides - * @constructor - * @param {flyteidl.admin.IPluginOverrides=} [properties] Properties to set - */ - function PluginOverrides(properties) { - this.overrides = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * PluginOverrides overrides. - * @member {Array.} overrides - * @memberof flyteidl.admin.PluginOverrides - * @instance - */ - PluginOverrides.prototype.overrides = $util.emptyArray; - - /** - * Creates a new PluginOverrides instance using the specified properties. - * @function create - * @memberof flyteidl.admin.PluginOverrides - * @static - * @param {flyteidl.admin.IPluginOverrides=} [properties] Properties to set - * @returns {flyteidl.admin.PluginOverrides} PluginOverrides instance - */ - PluginOverrides.create = function create(properties) { - return new PluginOverrides(properties); - }; - - /** - * Encodes the specified PluginOverrides message. Does not implicitly {@link flyteidl.admin.PluginOverrides.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.PluginOverrides - * @static - * @param {flyteidl.admin.IPluginOverrides} message PluginOverrides message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - PluginOverrides.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.overrides != null && message.overrides.length) - for (var i = 0; i < message.overrides.length; ++i) - $root.flyteidl.admin.PluginOverride.encode(message.overrides[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a PluginOverrides message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.PluginOverrides - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.PluginOverrides} PluginOverrides - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - PluginOverrides.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.PluginOverrides(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.overrides && message.overrides.length)) - message.overrides = []; - message.overrides.push($root.flyteidl.admin.PluginOverride.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a PluginOverrides message. - * @function verify - * @memberof flyteidl.admin.PluginOverrides - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - PluginOverrides.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.overrides != null && message.hasOwnProperty("overrides")) { - if (!Array.isArray(message.overrides)) - return "overrides: array expected"; - for (var i = 0; i < message.overrides.length; ++i) { - var error = $root.flyteidl.admin.PluginOverride.verify(message.overrides[i]); - if (error) - return "overrides." + error; - } - } - return null; - }; - - return PluginOverrides; - })(); - - admin.WorkflowExecutionConfig = (function() { - - /** - * Properties of a WorkflowExecutionConfig. - * @memberof flyteidl.admin - * @interface IWorkflowExecutionConfig - * @property {number|null} [maxParallelism] WorkflowExecutionConfig maxParallelism - * @property {flyteidl.core.ISecurityContext|null} [securityContext] WorkflowExecutionConfig securityContext - * @property {flyteidl.admin.IRawOutputDataConfig|null} [rawOutputDataConfig] WorkflowExecutionConfig rawOutputDataConfig - * @property {flyteidl.admin.ILabels|null} [labels] WorkflowExecutionConfig labels - * @property {flyteidl.admin.IAnnotations|null} [annotations] WorkflowExecutionConfig annotations - * @property {google.protobuf.IBoolValue|null} [interruptible] WorkflowExecutionConfig interruptible - * @property {boolean|null} [overwriteCache] WorkflowExecutionConfig overwriteCache - * @property {flyteidl.admin.IEnvs|null} [envs] WorkflowExecutionConfig envs - */ - - /** - * Constructs a new WorkflowExecutionConfig. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowExecutionConfig. - * @implements IWorkflowExecutionConfig - * @constructor - * @param {flyteidl.admin.IWorkflowExecutionConfig=} [properties] Properties to set - */ - function WorkflowExecutionConfig(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowExecutionConfig maxParallelism. - * @member {number} maxParallelism - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @instance - */ - WorkflowExecutionConfig.prototype.maxParallelism = 0; - - /** - * WorkflowExecutionConfig securityContext. - * @member {flyteidl.core.ISecurityContext|null|undefined} securityContext - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @instance - */ - WorkflowExecutionConfig.prototype.securityContext = null; - - /** - * WorkflowExecutionConfig rawOutputDataConfig. - * @member {flyteidl.admin.IRawOutputDataConfig|null|undefined} rawOutputDataConfig - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @instance - */ - WorkflowExecutionConfig.prototype.rawOutputDataConfig = null; - - /** - * WorkflowExecutionConfig labels. - * @member {flyteidl.admin.ILabels|null|undefined} labels - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @instance - */ - WorkflowExecutionConfig.prototype.labels = null; - - /** - * WorkflowExecutionConfig annotations. - * @member {flyteidl.admin.IAnnotations|null|undefined} annotations - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @instance - */ - WorkflowExecutionConfig.prototype.annotations = null; - - /** - * WorkflowExecutionConfig interruptible. - * @member {google.protobuf.IBoolValue|null|undefined} interruptible - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @instance - */ - WorkflowExecutionConfig.prototype.interruptible = null; - - /** - * WorkflowExecutionConfig overwriteCache. - * @member {boolean} overwriteCache - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @instance - */ - WorkflowExecutionConfig.prototype.overwriteCache = false; - - /** - * WorkflowExecutionConfig envs. - * @member {flyteidl.admin.IEnvs|null|undefined} envs - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @instance - */ - WorkflowExecutionConfig.prototype.envs = null; - - /** - * Creates a new WorkflowExecutionConfig instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @static - * @param {flyteidl.admin.IWorkflowExecutionConfig=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowExecutionConfig} WorkflowExecutionConfig instance - */ - WorkflowExecutionConfig.create = function create(properties) { - return new WorkflowExecutionConfig(properties); - }; - - /** - * Encodes the specified WorkflowExecutionConfig message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionConfig.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @static - * @param {flyteidl.admin.IWorkflowExecutionConfig} message WorkflowExecutionConfig message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowExecutionConfig.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.maxParallelism); - if (message.securityContext != null && message.hasOwnProperty("securityContext")) - $root.flyteidl.core.SecurityContext.encode(message.securityContext, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) - $root.flyteidl.admin.RawOutputDataConfig.encode(message.rawOutputDataConfig, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.labels != null && message.hasOwnProperty("labels")) - $root.flyteidl.admin.Labels.encode(message.labels, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.annotations != null && message.hasOwnProperty("annotations")) - $root.flyteidl.admin.Annotations.encode(message.annotations, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.interruptible != null && message.hasOwnProperty("interruptible")) - $root.google.protobuf.BoolValue.encode(message.interruptible, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.overwriteCache != null && message.hasOwnProperty("overwriteCache")) - writer.uint32(/* id 7, wireType 0 =*/56).bool(message.overwriteCache); - if (message.envs != null && message.hasOwnProperty("envs")) - $root.flyteidl.admin.Envs.encode(message.envs, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowExecutionConfig message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowExecutionConfig} WorkflowExecutionConfig - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowExecutionConfig.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowExecutionConfig(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.maxParallelism = reader.int32(); - break; - case 2: - message.securityContext = $root.flyteidl.core.SecurityContext.decode(reader, reader.uint32()); - break; - case 3: - message.rawOutputDataConfig = $root.flyteidl.admin.RawOutputDataConfig.decode(reader, reader.uint32()); - break; - case 4: - message.labels = $root.flyteidl.admin.Labels.decode(reader, reader.uint32()); - break; - case 5: - message.annotations = $root.flyteidl.admin.Annotations.decode(reader, reader.uint32()); - break; - case 6: - message.interruptible = $root.google.protobuf.BoolValue.decode(reader, reader.uint32()); - break; - case 7: - message.overwriteCache = reader.bool(); - break; - case 8: - message.envs = $root.flyteidl.admin.Envs.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowExecutionConfig message. - * @function verify - * @memberof flyteidl.admin.WorkflowExecutionConfig - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowExecutionConfig.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) - if (!$util.isInteger(message.maxParallelism)) - return "maxParallelism: integer expected"; - if (message.securityContext != null && message.hasOwnProperty("securityContext")) { - var error = $root.flyteidl.core.SecurityContext.verify(message.securityContext); - if (error) - return "securityContext." + error; - } - if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) { - var error = $root.flyteidl.admin.RawOutputDataConfig.verify(message.rawOutputDataConfig); - if (error) - return "rawOutputDataConfig." + error; - } - if (message.labels != null && message.hasOwnProperty("labels")) { - var error = $root.flyteidl.admin.Labels.verify(message.labels); - if (error) - return "labels." + error; - } - if (message.annotations != null && message.hasOwnProperty("annotations")) { - var error = $root.flyteidl.admin.Annotations.verify(message.annotations); - if (error) - return "annotations." + error; - } - if (message.interruptible != null && message.hasOwnProperty("interruptible")) { - var error = $root.google.protobuf.BoolValue.verify(message.interruptible); - if (error) - return "interruptible." + error; - } - if (message.overwriteCache != null && message.hasOwnProperty("overwriteCache")) - if (typeof message.overwriteCache !== "boolean") - return "overwriteCache: boolean expected"; - if (message.envs != null && message.hasOwnProperty("envs")) { - var error = $root.flyteidl.admin.Envs.verify(message.envs); - if (error) - return "envs." + error; - } - return null; - }; - - return WorkflowExecutionConfig; - })(); - - admin.MatchingAttributes = (function() { - - /** - * Properties of a MatchingAttributes. - * @memberof flyteidl.admin - * @interface IMatchingAttributes - * @property {flyteidl.admin.ITaskResourceAttributes|null} [taskResourceAttributes] MatchingAttributes taskResourceAttributes - * @property {flyteidl.admin.IClusterResourceAttributes|null} [clusterResourceAttributes] MatchingAttributes clusterResourceAttributes - * @property {flyteidl.admin.IExecutionQueueAttributes|null} [executionQueueAttributes] MatchingAttributes executionQueueAttributes - * @property {flyteidl.admin.IExecutionClusterLabel|null} [executionClusterLabel] MatchingAttributes executionClusterLabel - * @property {flyteidl.core.IQualityOfService|null} [qualityOfService] MatchingAttributes qualityOfService - * @property {flyteidl.admin.IPluginOverrides|null} [pluginOverrides] MatchingAttributes pluginOverrides - * @property {flyteidl.admin.IWorkflowExecutionConfig|null} [workflowExecutionConfig] MatchingAttributes workflowExecutionConfig - * @property {flyteidl.admin.IClusterAssignment|null} [clusterAssignment] MatchingAttributes clusterAssignment - */ - - /** - * Constructs a new MatchingAttributes. - * @memberof flyteidl.admin - * @classdesc Represents a MatchingAttributes. - * @implements IMatchingAttributes - * @constructor - * @param {flyteidl.admin.IMatchingAttributes=} [properties] Properties to set - */ - function MatchingAttributes(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * MatchingAttributes taskResourceAttributes. - * @member {flyteidl.admin.ITaskResourceAttributes|null|undefined} taskResourceAttributes - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - MatchingAttributes.prototype.taskResourceAttributes = null; - - /** - * MatchingAttributes clusterResourceAttributes. - * @member {flyteidl.admin.IClusterResourceAttributes|null|undefined} clusterResourceAttributes - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - MatchingAttributes.prototype.clusterResourceAttributes = null; - - /** - * MatchingAttributes executionQueueAttributes. - * @member {flyteidl.admin.IExecutionQueueAttributes|null|undefined} executionQueueAttributes - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - MatchingAttributes.prototype.executionQueueAttributes = null; - - /** - * MatchingAttributes executionClusterLabel. - * @member {flyteidl.admin.IExecutionClusterLabel|null|undefined} executionClusterLabel - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - MatchingAttributes.prototype.executionClusterLabel = null; - - /** - * MatchingAttributes qualityOfService. - * @member {flyteidl.core.IQualityOfService|null|undefined} qualityOfService - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - MatchingAttributes.prototype.qualityOfService = null; - - /** - * MatchingAttributes pluginOverrides. - * @member {flyteidl.admin.IPluginOverrides|null|undefined} pluginOverrides - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - MatchingAttributes.prototype.pluginOverrides = null; - - /** - * MatchingAttributes workflowExecutionConfig. - * @member {flyteidl.admin.IWorkflowExecutionConfig|null|undefined} workflowExecutionConfig - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - MatchingAttributes.prototype.workflowExecutionConfig = null; - - /** - * MatchingAttributes clusterAssignment. - * @member {flyteidl.admin.IClusterAssignment|null|undefined} clusterAssignment - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - MatchingAttributes.prototype.clusterAssignment = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * MatchingAttributes target. - * @member {"taskResourceAttributes"|"clusterResourceAttributes"|"executionQueueAttributes"|"executionClusterLabel"|"qualityOfService"|"pluginOverrides"|"workflowExecutionConfig"|"clusterAssignment"|undefined} target - * @memberof flyteidl.admin.MatchingAttributes - * @instance - */ - Object.defineProperty(MatchingAttributes.prototype, "target", { - get: $util.oneOfGetter($oneOfFields = ["taskResourceAttributes", "clusterResourceAttributes", "executionQueueAttributes", "executionClusterLabel", "qualityOfService", "pluginOverrides", "workflowExecutionConfig", "clusterAssignment"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new MatchingAttributes instance using the specified properties. - * @function create - * @memberof flyteidl.admin.MatchingAttributes - * @static - * @param {flyteidl.admin.IMatchingAttributes=} [properties] Properties to set - * @returns {flyteidl.admin.MatchingAttributes} MatchingAttributes instance - */ - MatchingAttributes.create = function create(properties) { - return new MatchingAttributes(properties); - }; - - /** - * Encodes the specified MatchingAttributes message. Does not implicitly {@link flyteidl.admin.MatchingAttributes.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.MatchingAttributes - * @static - * @param {flyteidl.admin.IMatchingAttributes} message MatchingAttributes message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - MatchingAttributes.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskResourceAttributes != null && message.hasOwnProperty("taskResourceAttributes")) - $root.flyteidl.admin.TaskResourceAttributes.encode(message.taskResourceAttributes, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.clusterResourceAttributes != null && message.hasOwnProperty("clusterResourceAttributes")) - $root.flyteidl.admin.ClusterResourceAttributes.encode(message.clusterResourceAttributes, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.executionQueueAttributes != null && message.hasOwnProperty("executionQueueAttributes")) - $root.flyteidl.admin.ExecutionQueueAttributes.encode(message.executionQueueAttributes, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.executionClusterLabel != null && message.hasOwnProperty("executionClusterLabel")) - $root.flyteidl.admin.ExecutionClusterLabel.encode(message.executionClusterLabel, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.qualityOfService != null && message.hasOwnProperty("qualityOfService")) - $root.flyteidl.core.QualityOfService.encode(message.qualityOfService, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.pluginOverrides != null && message.hasOwnProperty("pluginOverrides")) - $root.flyteidl.admin.PluginOverrides.encode(message.pluginOverrides, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.workflowExecutionConfig != null && message.hasOwnProperty("workflowExecutionConfig")) - $root.flyteidl.admin.WorkflowExecutionConfig.encode(message.workflowExecutionConfig, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.clusterAssignment != null && message.hasOwnProperty("clusterAssignment")) - $root.flyteidl.admin.ClusterAssignment.encode(message.clusterAssignment, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a MatchingAttributes message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.MatchingAttributes - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.MatchingAttributes} MatchingAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - MatchingAttributes.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.MatchingAttributes(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskResourceAttributes = $root.flyteidl.admin.TaskResourceAttributes.decode(reader, reader.uint32()); - break; - case 2: - message.clusterResourceAttributes = $root.flyteidl.admin.ClusterResourceAttributes.decode(reader, reader.uint32()); - break; - case 3: - message.executionQueueAttributes = $root.flyteidl.admin.ExecutionQueueAttributes.decode(reader, reader.uint32()); - break; - case 4: - message.executionClusterLabel = $root.flyteidl.admin.ExecutionClusterLabel.decode(reader, reader.uint32()); - break; - case 5: - message.qualityOfService = $root.flyteidl.core.QualityOfService.decode(reader, reader.uint32()); - break; - case 6: - message.pluginOverrides = $root.flyteidl.admin.PluginOverrides.decode(reader, reader.uint32()); - break; - case 7: - message.workflowExecutionConfig = $root.flyteidl.admin.WorkflowExecutionConfig.decode(reader, reader.uint32()); - break; - case 8: - message.clusterAssignment = $root.flyteidl.admin.ClusterAssignment.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a MatchingAttributes message. - * @function verify - * @memberof flyteidl.admin.MatchingAttributes - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - MatchingAttributes.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.taskResourceAttributes != null && message.hasOwnProperty("taskResourceAttributes")) { - properties.target = 1; - { - var error = $root.flyteidl.admin.TaskResourceAttributes.verify(message.taskResourceAttributes); - if (error) - return "taskResourceAttributes." + error; - } - } - if (message.clusterResourceAttributes != null && message.hasOwnProperty("clusterResourceAttributes")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.admin.ClusterResourceAttributes.verify(message.clusterResourceAttributes); - if (error) - return "clusterResourceAttributes." + error; - } - } - if (message.executionQueueAttributes != null && message.hasOwnProperty("executionQueueAttributes")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.admin.ExecutionQueueAttributes.verify(message.executionQueueAttributes); - if (error) - return "executionQueueAttributes." + error; - } - } - if (message.executionClusterLabel != null && message.hasOwnProperty("executionClusterLabel")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.admin.ExecutionClusterLabel.verify(message.executionClusterLabel); - if (error) - return "executionClusterLabel." + error; - } - } - if (message.qualityOfService != null && message.hasOwnProperty("qualityOfService")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.core.QualityOfService.verify(message.qualityOfService); - if (error) - return "qualityOfService." + error; - } - } - if (message.pluginOverrides != null && message.hasOwnProperty("pluginOverrides")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.admin.PluginOverrides.verify(message.pluginOverrides); - if (error) - return "pluginOverrides." + error; - } - } - if (message.workflowExecutionConfig != null && message.hasOwnProperty("workflowExecutionConfig")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.admin.WorkflowExecutionConfig.verify(message.workflowExecutionConfig); - if (error) - return "workflowExecutionConfig." + error; - } - } - if (message.clusterAssignment != null && message.hasOwnProperty("clusterAssignment")) { - if (properties.target === 1) - return "target: multiple values"; - properties.target = 1; - { - var error = $root.flyteidl.admin.ClusterAssignment.verify(message.clusterAssignment); - if (error) - return "clusterAssignment." + error; - } - } - return null; - }; - - return MatchingAttributes; - })(); - - admin.MatchableAttributesConfiguration = (function() { - - /** - * Properties of a MatchableAttributesConfiguration. - * @memberof flyteidl.admin - * @interface IMatchableAttributesConfiguration - * @property {flyteidl.admin.IMatchingAttributes|null} [attributes] MatchableAttributesConfiguration attributes - * @property {string|null} [domain] MatchableAttributesConfiguration domain - * @property {string|null} [project] MatchableAttributesConfiguration project - * @property {string|null} [workflow] MatchableAttributesConfiguration workflow - * @property {string|null} [launchPlan] MatchableAttributesConfiguration launchPlan - * @property {string|null} [org] MatchableAttributesConfiguration org - */ - - /** - * Constructs a new MatchableAttributesConfiguration. - * @memberof flyteidl.admin - * @classdesc Represents a MatchableAttributesConfiguration. - * @implements IMatchableAttributesConfiguration - * @constructor - * @param {flyteidl.admin.IMatchableAttributesConfiguration=} [properties] Properties to set - */ - function MatchableAttributesConfiguration(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * MatchableAttributesConfiguration attributes. - * @member {flyteidl.admin.IMatchingAttributes|null|undefined} attributes - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @instance - */ - MatchableAttributesConfiguration.prototype.attributes = null; - - /** - * MatchableAttributesConfiguration domain. - * @member {string} domain - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @instance - */ - MatchableAttributesConfiguration.prototype.domain = ""; - - /** - * MatchableAttributesConfiguration project. - * @member {string} project - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @instance - */ - MatchableAttributesConfiguration.prototype.project = ""; - - /** - * MatchableAttributesConfiguration workflow. - * @member {string} workflow - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @instance - */ - MatchableAttributesConfiguration.prototype.workflow = ""; - - /** - * MatchableAttributesConfiguration launchPlan. - * @member {string} launchPlan - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @instance - */ - MatchableAttributesConfiguration.prototype.launchPlan = ""; - - /** - * MatchableAttributesConfiguration org. - * @member {string} org - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @instance - */ - MatchableAttributesConfiguration.prototype.org = ""; - - /** - * Creates a new MatchableAttributesConfiguration instance using the specified properties. - * @function create - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @static - * @param {flyteidl.admin.IMatchableAttributesConfiguration=} [properties] Properties to set - * @returns {flyteidl.admin.MatchableAttributesConfiguration} MatchableAttributesConfiguration instance - */ - MatchableAttributesConfiguration.create = function create(properties) { - return new MatchableAttributesConfiguration(properties); - }; - - /** - * Encodes the specified MatchableAttributesConfiguration message. Does not implicitly {@link flyteidl.admin.MatchableAttributesConfiguration.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @static - * @param {flyteidl.admin.IMatchableAttributesConfiguration} message MatchableAttributesConfiguration message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - MatchableAttributesConfiguration.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.attributes != null && message.hasOwnProperty("attributes")) - $root.flyteidl.admin.MatchingAttributes.encode(message.attributes, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.project); - if (message.workflow != null && message.hasOwnProperty("workflow")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.workflow); - if (message.launchPlan != null && message.hasOwnProperty("launchPlan")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.launchPlan); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.org); - return writer; - }; - - /** - * Decodes a MatchableAttributesConfiguration message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.MatchableAttributesConfiguration} MatchableAttributesConfiguration - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - MatchableAttributesConfiguration.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.MatchableAttributesConfiguration(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.attributes = $root.flyteidl.admin.MatchingAttributes.decode(reader, reader.uint32()); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.project = reader.string(); - break; - case 4: - message.workflow = reader.string(); - break; - case 5: - message.launchPlan = reader.string(); - break; - case 6: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a MatchableAttributesConfiguration message. - * @function verify - * @memberof flyteidl.admin.MatchableAttributesConfiguration - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - MatchableAttributesConfiguration.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.attributes != null && message.hasOwnProperty("attributes")) { - var error = $root.flyteidl.admin.MatchingAttributes.verify(message.attributes); - if (error) - return "attributes." + error; - } - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.workflow != null && message.hasOwnProperty("workflow")) - if (!$util.isString(message.workflow)) - return "workflow: string expected"; - if (message.launchPlan != null && message.hasOwnProperty("launchPlan")) - if (!$util.isString(message.launchPlan)) - return "launchPlan: string expected"; - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return MatchableAttributesConfiguration; - })(); - - admin.ListMatchableAttributesRequest = (function() { - - /** - * Properties of a ListMatchableAttributesRequest. - * @memberof flyteidl.admin - * @interface IListMatchableAttributesRequest - * @property {flyteidl.admin.MatchableResource|null} [resourceType] ListMatchableAttributesRequest resourceType - * @property {string|null} [org] ListMatchableAttributesRequest org - */ - - /** - * Constructs a new ListMatchableAttributesRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ListMatchableAttributesRequest. - * @implements IListMatchableAttributesRequest - * @constructor - * @param {flyteidl.admin.IListMatchableAttributesRequest=} [properties] Properties to set - */ - function ListMatchableAttributesRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ListMatchableAttributesRequest resourceType. - * @member {flyteidl.admin.MatchableResource} resourceType - * @memberof flyteidl.admin.ListMatchableAttributesRequest - * @instance - */ - ListMatchableAttributesRequest.prototype.resourceType = 0; - - /** - * ListMatchableAttributesRequest org. - * @member {string} org - * @memberof flyteidl.admin.ListMatchableAttributesRequest - * @instance - */ - ListMatchableAttributesRequest.prototype.org = ""; - - /** - * Creates a new ListMatchableAttributesRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ListMatchableAttributesRequest - * @static - * @param {flyteidl.admin.IListMatchableAttributesRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ListMatchableAttributesRequest} ListMatchableAttributesRequest instance - */ - ListMatchableAttributesRequest.create = function create(properties) { - return new ListMatchableAttributesRequest(properties); - }; - - /** - * Encodes the specified ListMatchableAttributesRequest message. Does not implicitly {@link flyteidl.admin.ListMatchableAttributesRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ListMatchableAttributesRequest - * @static - * @param {flyteidl.admin.IListMatchableAttributesRequest} message ListMatchableAttributesRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ListMatchableAttributesRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.resourceType); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.org); - return writer; - }; - - /** - * Decodes a ListMatchableAttributesRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ListMatchableAttributesRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ListMatchableAttributesRequest} ListMatchableAttributesRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ListMatchableAttributesRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ListMatchableAttributesRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.resourceType = reader.int32(); - break; - case 2: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ListMatchableAttributesRequest message. - * @function verify - * @memberof flyteidl.admin.ListMatchableAttributesRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ListMatchableAttributesRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ListMatchableAttributesRequest; - })(); - - admin.ListMatchableAttributesResponse = (function() { - - /** - * Properties of a ListMatchableAttributesResponse. - * @memberof flyteidl.admin - * @interface IListMatchableAttributesResponse - * @property {Array.|null} [configurations] ListMatchableAttributesResponse configurations - */ - - /** - * Constructs a new ListMatchableAttributesResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ListMatchableAttributesResponse. - * @implements IListMatchableAttributesResponse - * @constructor - * @param {flyteidl.admin.IListMatchableAttributesResponse=} [properties] Properties to set - */ - function ListMatchableAttributesResponse(properties) { - this.configurations = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ListMatchableAttributesResponse configurations. - * @member {Array.} configurations - * @memberof flyteidl.admin.ListMatchableAttributesResponse - * @instance - */ - ListMatchableAttributesResponse.prototype.configurations = $util.emptyArray; - - /** - * Creates a new ListMatchableAttributesResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ListMatchableAttributesResponse - * @static - * @param {flyteidl.admin.IListMatchableAttributesResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ListMatchableAttributesResponse} ListMatchableAttributesResponse instance - */ - ListMatchableAttributesResponse.create = function create(properties) { - return new ListMatchableAttributesResponse(properties); - }; - - /** - * Encodes the specified ListMatchableAttributesResponse message. Does not implicitly {@link flyteidl.admin.ListMatchableAttributesResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ListMatchableAttributesResponse - * @static - * @param {flyteidl.admin.IListMatchableAttributesResponse} message ListMatchableAttributesResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ListMatchableAttributesResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.configurations != null && message.configurations.length) - for (var i = 0; i < message.configurations.length; ++i) - $root.flyteidl.admin.MatchableAttributesConfiguration.encode(message.configurations[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ListMatchableAttributesResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ListMatchableAttributesResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ListMatchableAttributesResponse} ListMatchableAttributesResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ListMatchableAttributesResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ListMatchableAttributesResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.configurations && message.configurations.length)) - message.configurations = []; - message.configurations.push($root.flyteidl.admin.MatchableAttributesConfiguration.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ListMatchableAttributesResponse message. - * @function verify - * @memberof flyteidl.admin.ListMatchableAttributesResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ListMatchableAttributesResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.configurations != null && message.hasOwnProperty("configurations")) { - if (!Array.isArray(message.configurations)) - return "configurations: array expected"; - for (var i = 0; i < message.configurations.length; ++i) { - var error = $root.flyteidl.admin.MatchableAttributesConfiguration.verify(message.configurations[i]); - if (error) - return "configurations." + error; - } - } - return null; - }; - - return ListMatchableAttributesResponse; - })(); - - admin.NodeExecutionGetRequest = (function() { - - /** - * Properties of a NodeExecutionGetRequest. - * @memberof flyteidl.admin - * @interface INodeExecutionGetRequest - * @property {flyteidl.core.INodeExecutionIdentifier|null} [id] NodeExecutionGetRequest id - */ - - /** - * Constructs a new NodeExecutionGetRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionGetRequest. - * @implements INodeExecutionGetRequest - * @constructor - * @param {flyteidl.admin.INodeExecutionGetRequest=} [properties] Properties to set - */ - function NodeExecutionGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionGetRequest id. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.NodeExecutionGetRequest - * @instance - */ - NodeExecutionGetRequest.prototype.id = null; - - /** - * Creates a new NodeExecutionGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionGetRequest - * @static - * @param {flyteidl.admin.INodeExecutionGetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionGetRequest} NodeExecutionGetRequest instance - */ - NodeExecutionGetRequest.create = function create(properties) { - return new NodeExecutionGetRequest(properties); - }; - - /** - * Encodes the specified NodeExecutionGetRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionGetRequest - * @static - * @param {flyteidl.admin.INodeExecutionGetRequest} message NodeExecutionGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NodeExecutionGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionGetRequest} NodeExecutionGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionGetRequest message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return NodeExecutionGetRequest; - })(); - - admin.NodeExecutionListRequest = (function() { - - /** - * Properties of a NodeExecutionListRequest. - * @memberof flyteidl.admin - * @interface INodeExecutionListRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [workflowExecutionId] NodeExecutionListRequest workflowExecutionId - * @property {number|null} [limit] NodeExecutionListRequest limit - * @property {string|null} [token] NodeExecutionListRequest token - * @property {string|null} [filters] NodeExecutionListRequest filters - * @property {flyteidl.admin.ISort|null} [sortBy] NodeExecutionListRequest sortBy - * @property {string|null} [uniqueParentId] NodeExecutionListRequest uniqueParentId - */ - - /** - * Constructs a new NodeExecutionListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionListRequest. - * @implements INodeExecutionListRequest - * @constructor - * @param {flyteidl.admin.INodeExecutionListRequest=} [properties] Properties to set - */ - function NodeExecutionListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionListRequest workflowExecutionId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} workflowExecutionId - * @memberof flyteidl.admin.NodeExecutionListRequest - * @instance - */ - NodeExecutionListRequest.prototype.workflowExecutionId = null; - - /** - * NodeExecutionListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.NodeExecutionListRequest - * @instance - */ - NodeExecutionListRequest.prototype.limit = 0; - - /** - * NodeExecutionListRequest token. - * @member {string} token - * @memberof flyteidl.admin.NodeExecutionListRequest - * @instance - */ - NodeExecutionListRequest.prototype.token = ""; - - /** - * NodeExecutionListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.NodeExecutionListRequest - * @instance - */ - NodeExecutionListRequest.prototype.filters = ""; - - /** - * NodeExecutionListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.NodeExecutionListRequest - * @instance - */ - NodeExecutionListRequest.prototype.sortBy = null; - - /** - * NodeExecutionListRequest uniqueParentId. - * @member {string} uniqueParentId - * @memberof flyteidl.admin.NodeExecutionListRequest - * @instance - */ - NodeExecutionListRequest.prototype.uniqueParentId = ""; - - /** - * Creates a new NodeExecutionListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionListRequest - * @static - * @param {flyteidl.admin.INodeExecutionListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionListRequest} NodeExecutionListRequest instance - */ - NodeExecutionListRequest.create = function create(properties) { - return new NodeExecutionListRequest(properties); - }; - - /** - * Encodes the specified NodeExecutionListRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionListRequest - * @static - * @param {flyteidl.admin.INodeExecutionListRequest} message NodeExecutionListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.workflowExecutionId != null && message.hasOwnProperty("workflowExecutionId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.workflowExecutionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.token); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.filters); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.uniqueParentId != null && message.hasOwnProperty("uniqueParentId")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.uniqueParentId); - return writer; - }; - - /** - * Decodes a NodeExecutionListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionListRequest} NodeExecutionListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.workflowExecutionId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.limit = reader.uint32(); - break; - case 3: - message.token = reader.string(); - break; - case 4: - message.filters = reader.string(); - break; - case 5: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - case 6: - message.uniqueParentId = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionListRequest message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.workflowExecutionId != null && message.hasOwnProperty("workflowExecutionId")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.workflowExecutionId); - if (error) - return "workflowExecutionId." + error; - } - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - if (message.uniqueParentId != null && message.hasOwnProperty("uniqueParentId")) - if (!$util.isString(message.uniqueParentId)) - return "uniqueParentId: string expected"; - return null; - }; - - return NodeExecutionListRequest; - })(); - - admin.NodeExecutionForTaskListRequest = (function() { - - /** - * Properties of a NodeExecutionForTaskListRequest. - * @memberof flyteidl.admin - * @interface INodeExecutionForTaskListRequest - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [taskExecutionId] NodeExecutionForTaskListRequest taskExecutionId - * @property {number|null} [limit] NodeExecutionForTaskListRequest limit - * @property {string|null} [token] NodeExecutionForTaskListRequest token - * @property {string|null} [filters] NodeExecutionForTaskListRequest filters - * @property {flyteidl.admin.ISort|null} [sortBy] NodeExecutionForTaskListRequest sortBy - */ - - /** - * Constructs a new NodeExecutionForTaskListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionForTaskListRequest. - * @implements INodeExecutionForTaskListRequest - * @constructor - * @param {flyteidl.admin.INodeExecutionForTaskListRequest=} [properties] Properties to set - */ - function NodeExecutionForTaskListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionForTaskListRequest taskExecutionId. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} taskExecutionId - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @instance - */ - NodeExecutionForTaskListRequest.prototype.taskExecutionId = null; - - /** - * NodeExecutionForTaskListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @instance - */ - NodeExecutionForTaskListRequest.prototype.limit = 0; - - /** - * NodeExecutionForTaskListRequest token. - * @member {string} token - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @instance - */ - NodeExecutionForTaskListRequest.prototype.token = ""; - - /** - * NodeExecutionForTaskListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @instance - */ - NodeExecutionForTaskListRequest.prototype.filters = ""; - - /** - * NodeExecutionForTaskListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @instance - */ - NodeExecutionForTaskListRequest.prototype.sortBy = null; - - /** - * Creates a new NodeExecutionForTaskListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @static - * @param {flyteidl.admin.INodeExecutionForTaskListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionForTaskListRequest} NodeExecutionForTaskListRequest instance - */ - NodeExecutionForTaskListRequest.create = function create(properties) { - return new NodeExecutionForTaskListRequest(properties); - }; - - /** - * Encodes the specified NodeExecutionForTaskListRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionForTaskListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @static - * @param {flyteidl.admin.INodeExecutionForTaskListRequest} message NodeExecutionForTaskListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionForTaskListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskExecutionId != null && message.hasOwnProperty("taskExecutionId")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.taskExecutionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.token); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.filters); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NodeExecutionForTaskListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionForTaskListRequest} NodeExecutionForTaskListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionForTaskListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionForTaskListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskExecutionId = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.limit = reader.uint32(); - break; - case 3: - message.token = reader.string(); - break; - case 4: - message.filters = reader.string(); - break; - case 5: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionForTaskListRequest message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionForTaskListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionForTaskListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskExecutionId != null && message.hasOwnProperty("taskExecutionId")) { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.taskExecutionId); - if (error) - return "taskExecutionId." + error; - } - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - return null; - }; - - return NodeExecutionForTaskListRequest; - })(); - - admin.NodeExecution = (function() { - - /** - * Properties of a NodeExecution. - * @memberof flyteidl.admin - * @interface INodeExecution - * @property {flyteidl.core.INodeExecutionIdentifier|null} [id] NodeExecution id - * @property {string|null} [inputUri] NodeExecution inputUri - * @property {flyteidl.admin.INodeExecutionClosure|null} [closure] NodeExecution closure - * @property {flyteidl.admin.INodeExecutionMetaData|null} [metadata] NodeExecution metadata - */ - - /** - * Constructs a new NodeExecution. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecution. - * @implements INodeExecution - * @constructor - * @param {flyteidl.admin.INodeExecution=} [properties] Properties to set - */ - function NodeExecution(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecution id. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.NodeExecution - * @instance - */ - NodeExecution.prototype.id = null; - - /** - * NodeExecution inputUri. - * @member {string} inputUri - * @memberof flyteidl.admin.NodeExecution - * @instance - */ - NodeExecution.prototype.inputUri = ""; - - /** - * NodeExecution closure. - * @member {flyteidl.admin.INodeExecutionClosure|null|undefined} closure - * @memberof flyteidl.admin.NodeExecution - * @instance - */ - NodeExecution.prototype.closure = null; - - /** - * NodeExecution metadata. - * @member {flyteidl.admin.INodeExecutionMetaData|null|undefined} metadata - * @memberof flyteidl.admin.NodeExecution - * @instance - */ - NodeExecution.prototype.metadata = null; - - /** - * Creates a new NodeExecution instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecution - * @static - * @param {flyteidl.admin.INodeExecution=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecution} NodeExecution instance - */ - NodeExecution.create = function create(properties) { - return new NodeExecution(properties); - }; - - /** - * Encodes the specified NodeExecution message. Does not implicitly {@link flyteidl.admin.NodeExecution.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecution - * @static - * @param {flyteidl.admin.INodeExecution} message NodeExecution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.inputUri != null && message.hasOwnProperty("inputUri")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.inputUri); - if (message.closure != null && message.hasOwnProperty("closure")) - $root.flyteidl.admin.NodeExecutionClosure.encode(message.closure, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.admin.NodeExecutionMetaData.encode(message.metadata, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NodeExecution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecution} NodeExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.inputUri = reader.string(); - break; - case 3: - message.closure = $root.flyteidl.admin.NodeExecutionClosure.decode(reader, reader.uint32()); - break; - case 4: - message.metadata = $root.flyteidl.admin.NodeExecutionMetaData.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecution message. - * @function verify - * @memberof flyteidl.admin.NodeExecution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.inputUri != null && message.hasOwnProperty("inputUri")) - if (!$util.isString(message.inputUri)) - return "inputUri: string expected"; - if (message.closure != null && message.hasOwnProperty("closure")) { - var error = $root.flyteidl.admin.NodeExecutionClosure.verify(message.closure); - if (error) - return "closure." + error; - } - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.admin.NodeExecutionMetaData.verify(message.metadata); - if (error) - return "metadata." + error; - } - return null; - }; - - return NodeExecution; - })(); - - admin.NodeExecutionMetaData = (function() { - - /** - * Properties of a NodeExecutionMetaData. - * @memberof flyteidl.admin - * @interface INodeExecutionMetaData - * @property {string|null} [retryGroup] NodeExecutionMetaData retryGroup - * @property {boolean|null} [isParentNode] NodeExecutionMetaData isParentNode - * @property {string|null} [specNodeId] NodeExecutionMetaData specNodeId - * @property {boolean|null} [isDynamic] NodeExecutionMetaData isDynamic - * @property {boolean|null} [isArray] NodeExecutionMetaData isArray - */ - - /** - * Constructs a new NodeExecutionMetaData. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionMetaData. - * @implements INodeExecutionMetaData - * @constructor - * @param {flyteidl.admin.INodeExecutionMetaData=} [properties] Properties to set - */ - function NodeExecutionMetaData(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionMetaData retryGroup. - * @member {string} retryGroup - * @memberof flyteidl.admin.NodeExecutionMetaData - * @instance - */ - NodeExecutionMetaData.prototype.retryGroup = ""; - - /** - * NodeExecutionMetaData isParentNode. - * @member {boolean} isParentNode - * @memberof flyteidl.admin.NodeExecutionMetaData - * @instance - */ - NodeExecutionMetaData.prototype.isParentNode = false; - - /** - * NodeExecutionMetaData specNodeId. - * @member {string} specNodeId - * @memberof flyteidl.admin.NodeExecutionMetaData - * @instance - */ - NodeExecutionMetaData.prototype.specNodeId = ""; - - /** - * NodeExecutionMetaData isDynamic. - * @member {boolean} isDynamic - * @memberof flyteidl.admin.NodeExecutionMetaData - * @instance - */ - NodeExecutionMetaData.prototype.isDynamic = false; - - /** - * NodeExecutionMetaData isArray. - * @member {boolean} isArray - * @memberof flyteidl.admin.NodeExecutionMetaData - * @instance - */ - NodeExecutionMetaData.prototype.isArray = false; - - /** - * Creates a new NodeExecutionMetaData instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionMetaData - * @static - * @param {flyteidl.admin.INodeExecutionMetaData=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionMetaData} NodeExecutionMetaData instance - */ - NodeExecutionMetaData.create = function create(properties) { - return new NodeExecutionMetaData(properties); - }; - - /** - * Encodes the specified NodeExecutionMetaData message. Does not implicitly {@link flyteidl.admin.NodeExecutionMetaData.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionMetaData - * @static - * @param {flyteidl.admin.INodeExecutionMetaData} message NodeExecutionMetaData message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionMetaData.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.retryGroup != null && message.hasOwnProperty("retryGroup")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.retryGroup); - if (message.isParentNode != null && message.hasOwnProperty("isParentNode")) - writer.uint32(/* id 2, wireType 0 =*/16).bool(message.isParentNode); - if (message.specNodeId != null && message.hasOwnProperty("specNodeId")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.specNodeId); - if (message.isDynamic != null && message.hasOwnProperty("isDynamic")) - writer.uint32(/* id 4, wireType 0 =*/32).bool(message.isDynamic); - if (message.isArray != null && message.hasOwnProperty("isArray")) - writer.uint32(/* id 5, wireType 0 =*/40).bool(message.isArray); - return writer; - }; - - /** - * Decodes a NodeExecutionMetaData message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionMetaData - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionMetaData} NodeExecutionMetaData - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionMetaData.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionMetaData(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.retryGroup = reader.string(); - break; - case 2: - message.isParentNode = reader.bool(); - break; - case 3: - message.specNodeId = reader.string(); - break; - case 4: - message.isDynamic = reader.bool(); - break; - case 5: - message.isArray = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionMetaData message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionMetaData - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionMetaData.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.retryGroup != null && message.hasOwnProperty("retryGroup")) - if (!$util.isString(message.retryGroup)) - return "retryGroup: string expected"; - if (message.isParentNode != null && message.hasOwnProperty("isParentNode")) - if (typeof message.isParentNode !== "boolean") - return "isParentNode: boolean expected"; - if (message.specNodeId != null && message.hasOwnProperty("specNodeId")) - if (!$util.isString(message.specNodeId)) - return "specNodeId: string expected"; - if (message.isDynamic != null && message.hasOwnProperty("isDynamic")) - if (typeof message.isDynamic !== "boolean") - return "isDynamic: boolean expected"; - if (message.isArray != null && message.hasOwnProperty("isArray")) - if (typeof message.isArray !== "boolean") - return "isArray: boolean expected"; - return null; - }; - - return NodeExecutionMetaData; - })(); - - admin.NodeExecutionList = (function() { - - /** - * Properties of a NodeExecutionList. - * @memberof flyteidl.admin - * @interface INodeExecutionList - * @property {Array.|null} [nodeExecutions] NodeExecutionList nodeExecutions - * @property {string|null} [token] NodeExecutionList token - */ - - /** - * Constructs a new NodeExecutionList. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionList. - * @implements INodeExecutionList - * @constructor - * @param {flyteidl.admin.INodeExecutionList=} [properties] Properties to set - */ - function NodeExecutionList(properties) { - this.nodeExecutions = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionList nodeExecutions. - * @member {Array.} nodeExecutions - * @memberof flyteidl.admin.NodeExecutionList - * @instance - */ - NodeExecutionList.prototype.nodeExecutions = $util.emptyArray; - - /** - * NodeExecutionList token. - * @member {string} token - * @memberof flyteidl.admin.NodeExecutionList - * @instance - */ - NodeExecutionList.prototype.token = ""; - - /** - * Creates a new NodeExecutionList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionList - * @static - * @param {flyteidl.admin.INodeExecutionList=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionList} NodeExecutionList instance - */ - NodeExecutionList.create = function create(properties) { - return new NodeExecutionList(properties); - }; - - /** - * Encodes the specified NodeExecutionList message. Does not implicitly {@link flyteidl.admin.NodeExecutionList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionList - * @static - * @param {flyteidl.admin.INodeExecutionList} message NodeExecutionList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.nodeExecutions != null && message.nodeExecutions.length) - for (var i = 0; i < message.nodeExecutions.length; ++i) - $root.flyteidl.admin.NodeExecution.encode(message.nodeExecutions[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a NodeExecutionList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionList} NodeExecutionList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.nodeExecutions && message.nodeExecutions.length)) - message.nodeExecutions = []; - message.nodeExecutions.push($root.flyteidl.admin.NodeExecution.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionList message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.nodeExecutions != null && message.hasOwnProperty("nodeExecutions")) { - if (!Array.isArray(message.nodeExecutions)) - return "nodeExecutions: array expected"; - for (var i = 0; i < message.nodeExecutions.length; ++i) { - var error = $root.flyteidl.admin.NodeExecution.verify(message.nodeExecutions[i]); - if (error) - return "nodeExecutions." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return NodeExecutionList; - })(); - - admin.NodeExecutionClosure = (function() { - - /** - * Properties of a NodeExecutionClosure. - * @memberof flyteidl.admin - * @interface INodeExecutionClosure - * @property {string|null} [outputUri] NodeExecutionClosure outputUri - * @property {flyteidl.core.IExecutionError|null} [error] NodeExecutionClosure error - * @property {flyteidl.core.ILiteralMap|null} [outputData] NodeExecutionClosure outputData - * @property {flyteidl.core.NodeExecution.Phase|null} [phase] NodeExecutionClosure phase - * @property {google.protobuf.ITimestamp|null} [startedAt] NodeExecutionClosure startedAt - * @property {google.protobuf.IDuration|null} [duration] NodeExecutionClosure duration - * @property {google.protobuf.ITimestamp|null} [createdAt] NodeExecutionClosure createdAt - * @property {google.protobuf.ITimestamp|null} [updatedAt] NodeExecutionClosure updatedAt - * @property {flyteidl.admin.IWorkflowNodeMetadata|null} [workflowNodeMetadata] NodeExecutionClosure workflowNodeMetadata - * @property {flyteidl.admin.ITaskNodeMetadata|null} [taskNodeMetadata] NodeExecutionClosure taskNodeMetadata - * @property {string|null} [deckUri] NodeExecutionClosure deckUri - * @property {string|null} [dynamicJobSpecUri] NodeExecutionClosure dynamicJobSpecUri - */ - - /** - * Constructs a new NodeExecutionClosure. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionClosure. - * @implements INodeExecutionClosure - * @constructor - * @param {flyteidl.admin.INodeExecutionClosure=} [properties] Properties to set - */ - function NodeExecutionClosure(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionClosure outputUri. - * @member {string} outputUri - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.outputUri = ""; - - /** - * NodeExecutionClosure error. - * @member {flyteidl.core.IExecutionError|null|undefined} error - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.error = null; - - /** - * NodeExecutionClosure outputData. - * @member {flyteidl.core.ILiteralMap|null|undefined} outputData - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.outputData = null; - - /** - * NodeExecutionClosure phase. - * @member {flyteidl.core.NodeExecution.Phase} phase - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.phase = 0; - - /** - * NodeExecutionClosure startedAt. - * @member {google.protobuf.ITimestamp|null|undefined} startedAt - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.startedAt = null; - - /** - * NodeExecutionClosure duration. - * @member {google.protobuf.IDuration|null|undefined} duration - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.duration = null; - - /** - * NodeExecutionClosure createdAt. - * @member {google.protobuf.ITimestamp|null|undefined} createdAt - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.createdAt = null; - - /** - * NodeExecutionClosure updatedAt. - * @member {google.protobuf.ITimestamp|null|undefined} updatedAt - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.updatedAt = null; - - /** - * NodeExecutionClosure workflowNodeMetadata. - * @member {flyteidl.admin.IWorkflowNodeMetadata|null|undefined} workflowNodeMetadata - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.workflowNodeMetadata = null; - - /** - * NodeExecutionClosure taskNodeMetadata. - * @member {flyteidl.admin.ITaskNodeMetadata|null|undefined} taskNodeMetadata - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.taskNodeMetadata = null; - - /** - * NodeExecutionClosure deckUri. - * @member {string} deckUri - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.deckUri = ""; - - /** - * NodeExecutionClosure dynamicJobSpecUri. - * @member {string} dynamicJobSpecUri - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - NodeExecutionClosure.prototype.dynamicJobSpecUri = ""; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * NodeExecutionClosure outputResult. - * @member {"outputUri"|"error"|"outputData"|undefined} outputResult - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - Object.defineProperty(NodeExecutionClosure.prototype, "outputResult", { - get: $util.oneOfGetter($oneOfFields = ["outputUri", "error", "outputData"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * NodeExecutionClosure targetMetadata. - * @member {"workflowNodeMetadata"|"taskNodeMetadata"|undefined} targetMetadata - * @memberof flyteidl.admin.NodeExecutionClosure - * @instance - */ - Object.defineProperty(NodeExecutionClosure.prototype, "targetMetadata", { - get: $util.oneOfGetter($oneOfFields = ["workflowNodeMetadata", "taskNodeMetadata"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new NodeExecutionClosure instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionClosure - * @static - * @param {flyteidl.admin.INodeExecutionClosure=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionClosure} NodeExecutionClosure instance - */ - NodeExecutionClosure.create = function create(properties) { - return new NodeExecutionClosure(properties); - }; - - /** - * Encodes the specified NodeExecutionClosure message. Does not implicitly {@link flyteidl.admin.NodeExecutionClosure.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionClosure - * @static - * @param {flyteidl.admin.INodeExecutionClosure} message NodeExecutionClosure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionClosure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.outputUri != null && message.hasOwnProperty("outputUri")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.outputUri); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.ExecutionError.encode(message.error, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.phase != null && message.hasOwnProperty("phase")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.phase); - if (message.startedAt != null && message.hasOwnProperty("startedAt")) - $root.google.protobuf.Timestamp.encode(message.startedAt, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.duration != null && message.hasOwnProperty("duration")) - $root.google.protobuf.Duration.encode(message.duration, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.createdAt != null && message.hasOwnProperty("createdAt")) - $root.google.protobuf.Timestamp.encode(message.createdAt, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.updatedAt != null && message.hasOwnProperty("updatedAt")) - $root.google.protobuf.Timestamp.encode(message.updatedAt, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.workflowNodeMetadata != null && message.hasOwnProperty("workflowNodeMetadata")) - $root.flyteidl.admin.WorkflowNodeMetadata.encode(message.workflowNodeMetadata, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.taskNodeMetadata != null && message.hasOwnProperty("taskNodeMetadata")) - $root.flyteidl.admin.TaskNodeMetadata.encode(message.taskNodeMetadata, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.outputData != null && message.hasOwnProperty("outputData")) - $root.flyteidl.core.LiteralMap.encode(message.outputData, writer.uint32(/* id 10, wireType 2 =*/82).fork()).ldelim(); - if (message.deckUri != null && message.hasOwnProperty("deckUri")) - writer.uint32(/* id 11, wireType 2 =*/90).string(message.deckUri); - if (message.dynamicJobSpecUri != null && message.hasOwnProperty("dynamicJobSpecUri")) - writer.uint32(/* id 12, wireType 2 =*/98).string(message.dynamicJobSpecUri); - return writer; - }; - - /** - * Decodes a NodeExecutionClosure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionClosure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionClosure} NodeExecutionClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionClosure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionClosure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.outputUri = reader.string(); - break; - case 2: - message.error = $root.flyteidl.core.ExecutionError.decode(reader, reader.uint32()); - break; - case 10: - message.outputData = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 3: - message.phase = reader.int32(); - break; - case 4: - message.startedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 5: - message.duration = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - case 6: - message.createdAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 7: - message.updatedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 8: - message.workflowNodeMetadata = $root.flyteidl.admin.WorkflowNodeMetadata.decode(reader, reader.uint32()); - break; - case 9: - message.taskNodeMetadata = $root.flyteidl.admin.TaskNodeMetadata.decode(reader, reader.uint32()); - break; - case 11: - message.deckUri = reader.string(); - break; - case 12: - message.dynamicJobSpecUri = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionClosure message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionClosure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionClosure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.outputUri != null && message.hasOwnProperty("outputUri")) { - properties.outputResult = 1; - if (!$util.isString(message.outputUri)) - return "outputUri: string expected"; - } - if (message.error != null && message.hasOwnProperty("error")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.ExecutionError.verify(message.error); - if (error) - return "error." + error; - } - } - if (message.outputData != null && message.hasOwnProperty("outputData")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.outputData); - if (error) - return "outputData." + error; - } - } - if (message.phase != null && message.hasOwnProperty("phase")) - switch (message.phase) { - default: - return "phase: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - case 10: - break; - } - if (message.startedAt != null && message.hasOwnProperty("startedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.startedAt); - if (error) - return "startedAt." + error; - } - if (message.duration != null && message.hasOwnProperty("duration")) { - var error = $root.google.protobuf.Duration.verify(message.duration); - if (error) - return "duration." + error; - } - if (message.createdAt != null && message.hasOwnProperty("createdAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.createdAt); - if (error) - return "createdAt." + error; - } - if (message.updatedAt != null && message.hasOwnProperty("updatedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.updatedAt); - if (error) - return "updatedAt." + error; - } - if (message.workflowNodeMetadata != null && message.hasOwnProperty("workflowNodeMetadata")) { - properties.targetMetadata = 1; - { - var error = $root.flyteidl.admin.WorkflowNodeMetadata.verify(message.workflowNodeMetadata); - if (error) - return "workflowNodeMetadata." + error; - } - } - if (message.taskNodeMetadata != null && message.hasOwnProperty("taskNodeMetadata")) { - if (properties.targetMetadata === 1) - return "targetMetadata: multiple values"; - properties.targetMetadata = 1; - { - var error = $root.flyteidl.admin.TaskNodeMetadata.verify(message.taskNodeMetadata); - if (error) - return "taskNodeMetadata." + error; - } - } - if (message.deckUri != null && message.hasOwnProperty("deckUri")) - if (!$util.isString(message.deckUri)) - return "deckUri: string expected"; - if (message.dynamicJobSpecUri != null && message.hasOwnProperty("dynamicJobSpecUri")) - if (!$util.isString(message.dynamicJobSpecUri)) - return "dynamicJobSpecUri: string expected"; - return null; - }; - - return NodeExecutionClosure; - })(); - - admin.WorkflowNodeMetadata = (function() { - - /** - * Properties of a WorkflowNodeMetadata. - * @memberof flyteidl.admin - * @interface IWorkflowNodeMetadata - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [executionId] WorkflowNodeMetadata executionId - */ - - /** - * Constructs a new WorkflowNodeMetadata. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowNodeMetadata. - * @implements IWorkflowNodeMetadata - * @constructor - * @param {flyteidl.admin.IWorkflowNodeMetadata=} [properties] Properties to set - */ - function WorkflowNodeMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowNodeMetadata executionId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} executionId - * @memberof flyteidl.admin.WorkflowNodeMetadata - * @instance - */ - WorkflowNodeMetadata.prototype.executionId = null; - - /** - * Creates a new WorkflowNodeMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowNodeMetadata - * @static - * @param {flyteidl.admin.IWorkflowNodeMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowNodeMetadata} WorkflowNodeMetadata instance - */ - WorkflowNodeMetadata.create = function create(properties) { - return new WorkflowNodeMetadata(properties); - }; - - /** - * Encodes the specified WorkflowNodeMetadata message. Does not implicitly {@link flyteidl.admin.WorkflowNodeMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowNodeMetadata - * @static - * @param {flyteidl.admin.IWorkflowNodeMetadata} message WorkflowNodeMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowNodeMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.executionId != null && message.hasOwnProperty("executionId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.executionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowNodeMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowNodeMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowNodeMetadata} WorkflowNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowNodeMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowNodeMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.executionId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowNodeMetadata message. - * @function verify - * @memberof flyteidl.admin.WorkflowNodeMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowNodeMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.executionId != null && message.hasOwnProperty("executionId")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.executionId); - if (error) - return "executionId." + error; - } - return null; - }; - - return WorkflowNodeMetadata; - })(); - - admin.TaskNodeMetadata = (function() { - - /** - * Properties of a TaskNodeMetadata. - * @memberof flyteidl.admin - * @interface ITaskNodeMetadata - * @property {flyteidl.core.CatalogCacheStatus|null} [cacheStatus] TaskNodeMetadata cacheStatus - * @property {flyteidl.core.ICatalogMetadata|null} [catalogKey] TaskNodeMetadata catalogKey - * @property {string|null} [checkpointUri] TaskNodeMetadata checkpointUri - */ - - /** - * Constructs a new TaskNodeMetadata. - * @memberof flyteidl.admin - * @classdesc Represents a TaskNodeMetadata. - * @implements ITaskNodeMetadata - * @constructor - * @param {flyteidl.admin.ITaskNodeMetadata=} [properties] Properties to set - */ - function TaskNodeMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskNodeMetadata cacheStatus. - * @member {flyteidl.core.CatalogCacheStatus} cacheStatus - * @memberof flyteidl.admin.TaskNodeMetadata - * @instance - */ - TaskNodeMetadata.prototype.cacheStatus = 0; - - /** - * TaskNodeMetadata catalogKey. - * @member {flyteidl.core.ICatalogMetadata|null|undefined} catalogKey - * @memberof flyteidl.admin.TaskNodeMetadata - * @instance - */ - TaskNodeMetadata.prototype.catalogKey = null; - - /** - * TaskNodeMetadata checkpointUri. - * @member {string} checkpointUri - * @memberof flyteidl.admin.TaskNodeMetadata - * @instance - */ - TaskNodeMetadata.prototype.checkpointUri = ""; - - /** - * Creates a new TaskNodeMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskNodeMetadata - * @static - * @param {flyteidl.admin.ITaskNodeMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.TaskNodeMetadata} TaskNodeMetadata instance - */ - TaskNodeMetadata.create = function create(properties) { - return new TaskNodeMetadata(properties); - }; - - /** - * Encodes the specified TaskNodeMetadata message. Does not implicitly {@link flyteidl.admin.TaskNodeMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskNodeMetadata - * @static - * @param {flyteidl.admin.ITaskNodeMetadata} message TaskNodeMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskNodeMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.cacheStatus != null && message.hasOwnProperty("cacheStatus")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.cacheStatus); - if (message.catalogKey != null && message.hasOwnProperty("catalogKey")) - $root.flyteidl.core.CatalogMetadata.encode(message.catalogKey, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.checkpointUri != null && message.hasOwnProperty("checkpointUri")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.checkpointUri); - return writer; - }; - - /** - * Decodes a TaskNodeMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskNodeMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskNodeMetadata} TaskNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskNodeMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskNodeMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.cacheStatus = reader.int32(); - break; - case 2: - message.catalogKey = $root.flyteidl.core.CatalogMetadata.decode(reader, reader.uint32()); - break; - case 4: - message.checkpointUri = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskNodeMetadata message. - * @function verify - * @memberof flyteidl.admin.TaskNodeMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskNodeMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.cacheStatus != null && message.hasOwnProperty("cacheStatus")) - switch (message.cacheStatus) { - default: - return "cacheStatus: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.catalogKey != null && message.hasOwnProperty("catalogKey")) { - var error = $root.flyteidl.core.CatalogMetadata.verify(message.catalogKey); - if (error) - return "catalogKey." + error; - } - if (message.checkpointUri != null && message.hasOwnProperty("checkpointUri")) - if (!$util.isString(message.checkpointUri)) - return "checkpointUri: string expected"; - return null; - }; - - return TaskNodeMetadata; - })(); - - admin.DynamicWorkflowNodeMetadata = (function() { - - /** - * Properties of a DynamicWorkflowNodeMetadata. - * @memberof flyteidl.admin - * @interface IDynamicWorkflowNodeMetadata - * @property {flyteidl.core.IIdentifier|null} [id] DynamicWorkflowNodeMetadata id - * @property {flyteidl.core.ICompiledWorkflowClosure|null} [compiledWorkflow] DynamicWorkflowNodeMetadata compiledWorkflow - * @property {string|null} [dynamicJobSpecUri] DynamicWorkflowNodeMetadata dynamicJobSpecUri - */ - - /** - * Constructs a new DynamicWorkflowNodeMetadata. - * @memberof flyteidl.admin - * @classdesc Represents a DynamicWorkflowNodeMetadata. - * @implements IDynamicWorkflowNodeMetadata - * @constructor - * @param {flyteidl.admin.IDynamicWorkflowNodeMetadata=} [properties] Properties to set - */ - function DynamicWorkflowNodeMetadata(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DynamicWorkflowNodeMetadata id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.DynamicWorkflowNodeMetadata - * @instance - */ - DynamicWorkflowNodeMetadata.prototype.id = null; - - /** - * DynamicWorkflowNodeMetadata compiledWorkflow. - * @member {flyteidl.core.ICompiledWorkflowClosure|null|undefined} compiledWorkflow - * @memberof flyteidl.admin.DynamicWorkflowNodeMetadata - * @instance - */ - DynamicWorkflowNodeMetadata.prototype.compiledWorkflow = null; - - /** - * DynamicWorkflowNodeMetadata dynamicJobSpecUri. - * @member {string} dynamicJobSpecUri - * @memberof flyteidl.admin.DynamicWorkflowNodeMetadata - * @instance - */ - DynamicWorkflowNodeMetadata.prototype.dynamicJobSpecUri = ""; - - /** - * Creates a new DynamicWorkflowNodeMetadata instance using the specified properties. - * @function create - * @memberof flyteidl.admin.DynamicWorkflowNodeMetadata - * @static - * @param {flyteidl.admin.IDynamicWorkflowNodeMetadata=} [properties] Properties to set - * @returns {flyteidl.admin.DynamicWorkflowNodeMetadata} DynamicWorkflowNodeMetadata instance - */ - DynamicWorkflowNodeMetadata.create = function create(properties) { - return new DynamicWorkflowNodeMetadata(properties); - }; - - /** - * Encodes the specified DynamicWorkflowNodeMetadata message. Does not implicitly {@link flyteidl.admin.DynamicWorkflowNodeMetadata.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.DynamicWorkflowNodeMetadata - * @static - * @param {flyteidl.admin.IDynamicWorkflowNodeMetadata} message DynamicWorkflowNodeMetadata message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DynamicWorkflowNodeMetadata.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.compiledWorkflow != null && message.hasOwnProperty("compiledWorkflow")) - $root.flyteidl.core.CompiledWorkflowClosure.encode(message.compiledWorkflow, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.dynamicJobSpecUri != null && message.hasOwnProperty("dynamicJobSpecUri")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.dynamicJobSpecUri); - return writer; - }; - - /** - * Decodes a DynamicWorkflowNodeMetadata message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.DynamicWorkflowNodeMetadata - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.DynamicWorkflowNodeMetadata} DynamicWorkflowNodeMetadata - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DynamicWorkflowNodeMetadata.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.DynamicWorkflowNodeMetadata(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.compiledWorkflow = $root.flyteidl.core.CompiledWorkflowClosure.decode(reader, reader.uint32()); - break; - case 3: - message.dynamicJobSpecUri = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DynamicWorkflowNodeMetadata message. - * @function verify - * @memberof flyteidl.admin.DynamicWorkflowNodeMetadata - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DynamicWorkflowNodeMetadata.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.compiledWorkflow != null && message.hasOwnProperty("compiledWorkflow")) { - var error = $root.flyteidl.core.CompiledWorkflowClosure.verify(message.compiledWorkflow); - if (error) - return "compiledWorkflow." + error; - } - if (message.dynamicJobSpecUri != null && message.hasOwnProperty("dynamicJobSpecUri")) - if (!$util.isString(message.dynamicJobSpecUri)) - return "dynamicJobSpecUri: string expected"; - return null; - }; - - return DynamicWorkflowNodeMetadata; - })(); - - admin.NodeExecutionGetDataRequest = (function() { - - /** - * Properties of a NodeExecutionGetDataRequest. - * @memberof flyteidl.admin - * @interface INodeExecutionGetDataRequest - * @property {flyteidl.core.INodeExecutionIdentifier|null} [id] NodeExecutionGetDataRequest id - */ - - /** - * Constructs a new NodeExecutionGetDataRequest. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionGetDataRequest. - * @implements INodeExecutionGetDataRequest - * @constructor - * @param {flyteidl.admin.INodeExecutionGetDataRequest=} [properties] Properties to set - */ - function NodeExecutionGetDataRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionGetDataRequest id. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.NodeExecutionGetDataRequest - * @instance - */ - NodeExecutionGetDataRequest.prototype.id = null; - - /** - * Creates a new NodeExecutionGetDataRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionGetDataRequest - * @static - * @param {flyteidl.admin.INodeExecutionGetDataRequest=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionGetDataRequest} NodeExecutionGetDataRequest instance - */ - NodeExecutionGetDataRequest.create = function create(properties) { - return new NodeExecutionGetDataRequest(properties); - }; - - /** - * Encodes the specified NodeExecutionGetDataRequest message. Does not implicitly {@link flyteidl.admin.NodeExecutionGetDataRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionGetDataRequest - * @static - * @param {flyteidl.admin.INodeExecutionGetDataRequest} message NodeExecutionGetDataRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionGetDataRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NodeExecutionGetDataRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionGetDataRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionGetDataRequest} NodeExecutionGetDataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionGetDataRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionGetDataRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionGetDataRequest message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionGetDataRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionGetDataRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return NodeExecutionGetDataRequest; - })(); - - admin.NodeExecutionGetDataResponse = (function() { - - /** - * Properties of a NodeExecutionGetDataResponse. - * @memberof flyteidl.admin - * @interface INodeExecutionGetDataResponse - * @property {flyteidl.admin.IUrlBlob|null} [inputs] NodeExecutionGetDataResponse inputs - * @property {flyteidl.admin.IUrlBlob|null} [outputs] NodeExecutionGetDataResponse outputs - * @property {flyteidl.core.ILiteralMap|null} [fullInputs] NodeExecutionGetDataResponse fullInputs - * @property {flyteidl.core.ILiteralMap|null} [fullOutputs] NodeExecutionGetDataResponse fullOutputs - * @property {flyteidl.admin.IDynamicWorkflowNodeMetadata|null} [dynamicWorkflow] NodeExecutionGetDataResponse dynamicWorkflow - * @property {flyteidl.admin.IFlyteURLs|null} [flyteUrls] NodeExecutionGetDataResponse flyteUrls - */ - - /** - * Constructs a new NodeExecutionGetDataResponse. - * @memberof flyteidl.admin - * @classdesc Represents a NodeExecutionGetDataResponse. - * @implements INodeExecutionGetDataResponse - * @constructor - * @param {flyteidl.admin.INodeExecutionGetDataResponse=} [properties] Properties to set - */ - function NodeExecutionGetDataResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NodeExecutionGetDataResponse inputs. - * @member {flyteidl.admin.IUrlBlob|null|undefined} inputs - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @instance - */ - NodeExecutionGetDataResponse.prototype.inputs = null; - - /** - * NodeExecutionGetDataResponse outputs. - * @member {flyteidl.admin.IUrlBlob|null|undefined} outputs - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @instance - */ - NodeExecutionGetDataResponse.prototype.outputs = null; - - /** - * NodeExecutionGetDataResponse fullInputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} fullInputs - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @instance - */ - NodeExecutionGetDataResponse.prototype.fullInputs = null; - - /** - * NodeExecutionGetDataResponse fullOutputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} fullOutputs - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @instance - */ - NodeExecutionGetDataResponse.prototype.fullOutputs = null; - - /** - * NodeExecutionGetDataResponse dynamicWorkflow. - * @member {flyteidl.admin.IDynamicWorkflowNodeMetadata|null|undefined} dynamicWorkflow - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @instance - */ - NodeExecutionGetDataResponse.prototype.dynamicWorkflow = null; - - /** - * NodeExecutionGetDataResponse flyteUrls. - * @member {flyteidl.admin.IFlyteURLs|null|undefined} flyteUrls - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @instance - */ - NodeExecutionGetDataResponse.prototype.flyteUrls = null; - - /** - * Creates a new NodeExecutionGetDataResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @static - * @param {flyteidl.admin.INodeExecutionGetDataResponse=} [properties] Properties to set - * @returns {flyteidl.admin.NodeExecutionGetDataResponse} NodeExecutionGetDataResponse instance - */ - NodeExecutionGetDataResponse.create = function create(properties) { - return new NodeExecutionGetDataResponse(properties); - }; - - /** - * Encodes the specified NodeExecutionGetDataResponse message. Does not implicitly {@link flyteidl.admin.NodeExecutionGetDataResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @static - * @param {flyteidl.admin.INodeExecutionGetDataResponse} message NodeExecutionGetDataResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NodeExecutionGetDataResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - $root.flyteidl.admin.UrlBlob.encode(message.inputs, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.outputs != null && message.hasOwnProperty("outputs")) - $root.flyteidl.admin.UrlBlob.encode(message.outputs, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.fullInputs != null && message.hasOwnProperty("fullInputs")) - $root.flyteidl.core.LiteralMap.encode(message.fullInputs, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.fullOutputs != null && message.hasOwnProperty("fullOutputs")) - $root.flyteidl.core.LiteralMap.encode(message.fullOutputs, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.dynamicWorkflow != null && message.hasOwnProperty("dynamicWorkflow")) - $root.flyteidl.admin.DynamicWorkflowNodeMetadata.encode(message.dynamicWorkflow, writer.uint32(/* id 16, wireType 2 =*/130).fork()).ldelim(); - if (message.flyteUrls != null && message.hasOwnProperty("flyteUrls")) - $root.flyteidl.admin.FlyteURLs.encode(message.flyteUrls, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a NodeExecutionGetDataResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.NodeExecutionGetDataResponse} NodeExecutionGetDataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NodeExecutionGetDataResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.NodeExecutionGetDataResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.inputs = $root.flyteidl.admin.UrlBlob.decode(reader, reader.uint32()); - break; - case 2: - message.outputs = $root.flyteidl.admin.UrlBlob.decode(reader, reader.uint32()); - break; - case 3: - message.fullInputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 4: - message.fullOutputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 16: - message.dynamicWorkflow = $root.flyteidl.admin.DynamicWorkflowNodeMetadata.decode(reader, reader.uint32()); - break; - case 17: - message.flyteUrls = $root.flyteidl.admin.FlyteURLs.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a NodeExecutionGetDataResponse message. - * @function verify - * @memberof flyteidl.admin.NodeExecutionGetDataResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NodeExecutionGetDataResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.inputs != null && message.hasOwnProperty("inputs")) { - var error = $root.flyteidl.admin.UrlBlob.verify(message.inputs); - if (error) - return "inputs." + error; - } - if (message.outputs != null && message.hasOwnProperty("outputs")) { - var error = $root.flyteidl.admin.UrlBlob.verify(message.outputs); - if (error) - return "outputs." + error; - } - if (message.fullInputs != null && message.hasOwnProperty("fullInputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.fullInputs); - if (error) - return "fullInputs." + error; - } - if (message.fullOutputs != null && message.hasOwnProperty("fullOutputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.fullOutputs); - if (error) - return "fullOutputs." + error; - } - if (message.dynamicWorkflow != null && message.hasOwnProperty("dynamicWorkflow")) { - var error = $root.flyteidl.admin.DynamicWorkflowNodeMetadata.verify(message.dynamicWorkflow); - if (error) - return "dynamicWorkflow." + error; - } - if (message.flyteUrls != null && message.hasOwnProperty("flyteUrls")) { - var error = $root.flyteidl.admin.FlyteURLs.verify(message.flyteUrls); - if (error) - return "flyteUrls." + error; - } - return null; - }; - - return NodeExecutionGetDataResponse; - })(); - - admin.EmailMessage = (function() { - - /** - * Properties of an EmailMessage. - * @memberof flyteidl.admin - * @interface IEmailMessage - * @property {Array.|null} [recipientsEmail] EmailMessage recipientsEmail - * @property {string|null} [senderEmail] EmailMessage senderEmail - * @property {string|null} [subjectLine] EmailMessage subjectLine - * @property {string|null} [body] EmailMessage body - */ - - /** - * Constructs a new EmailMessage. - * @memberof flyteidl.admin - * @classdesc Represents an EmailMessage. - * @implements IEmailMessage - * @constructor - * @param {flyteidl.admin.IEmailMessage=} [properties] Properties to set - */ - function EmailMessage(properties) { - this.recipientsEmail = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EmailMessage recipientsEmail. - * @member {Array.} recipientsEmail - * @memberof flyteidl.admin.EmailMessage - * @instance - */ - EmailMessage.prototype.recipientsEmail = $util.emptyArray; - - /** - * EmailMessage senderEmail. - * @member {string} senderEmail - * @memberof flyteidl.admin.EmailMessage - * @instance - */ - EmailMessage.prototype.senderEmail = ""; - - /** - * EmailMessage subjectLine. - * @member {string} subjectLine - * @memberof flyteidl.admin.EmailMessage - * @instance - */ - EmailMessage.prototype.subjectLine = ""; - - /** - * EmailMessage body. - * @member {string} body - * @memberof flyteidl.admin.EmailMessage - * @instance - */ - EmailMessage.prototype.body = ""; - - /** - * Creates a new EmailMessage instance using the specified properties. - * @function create - * @memberof flyteidl.admin.EmailMessage - * @static - * @param {flyteidl.admin.IEmailMessage=} [properties] Properties to set - * @returns {flyteidl.admin.EmailMessage} EmailMessage instance - */ - EmailMessage.create = function create(properties) { - return new EmailMessage(properties); - }; - - /** - * Encodes the specified EmailMessage message. Does not implicitly {@link flyteidl.admin.EmailMessage.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.EmailMessage - * @static - * @param {flyteidl.admin.IEmailMessage} message EmailMessage message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EmailMessage.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.recipientsEmail != null && message.recipientsEmail.length) - for (var i = 0; i < message.recipientsEmail.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.recipientsEmail[i]); - if (message.senderEmail != null && message.hasOwnProperty("senderEmail")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.senderEmail); - if (message.subjectLine != null && message.hasOwnProperty("subjectLine")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.subjectLine); - if (message.body != null && message.hasOwnProperty("body")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.body); - return writer; - }; - - /** - * Decodes an EmailMessage message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.EmailMessage - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.EmailMessage} EmailMessage - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EmailMessage.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.EmailMessage(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.recipientsEmail && message.recipientsEmail.length)) - message.recipientsEmail = []; - message.recipientsEmail.push(reader.string()); - break; - case 2: - message.senderEmail = reader.string(); - break; - case 3: - message.subjectLine = reader.string(); - break; - case 4: - message.body = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EmailMessage message. - * @function verify - * @memberof flyteidl.admin.EmailMessage - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EmailMessage.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.recipientsEmail != null && message.hasOwnProperty("recipientsEmail")) { - if (!Array.isArray(message.recipientsEmail)) - return "recipientsEmail: array expected"; - for (var i = 0; i < message.recipientsEmail.length; ++i) - if (!$util.isString(message.recipientsEmail[i])) - return "recipientsEmail: string[] expected"; - } - if (message.senderEmail != null && message.hasOwnProperty("senderEmail")) - if (!$util.isString(message.senderEmail)) - return "senderEmail: string expected"; - if (message.subjectLine != null && message.hasOwnProperty("subjectLine")) - if (!$util.isString(message.subjectLine)) - return "subjectLine: string expected"; - if (message.body != null && message.hasOwnProperty("body")) - if (!$util.isString(message.body)) - return "body: string expected"; - return null; - }; - - return EmailMessage; - })(); - - admin.Domain = (function() { - - /** - * Properties of a Domain. - * @memberof flyteidl.admin - * @interface IDomain - * @property {string|null} [id] Domain id - * @property {string|null} [name] Domain name - */ - - /** - * Constructs a new Domain. - * @memberof flyteidl.admin - * @classdesc Represents a Domain. - * @implements IDomain - * @constructor - * @param {flyteidl.admin.IDomain=} [properties] Properties to set - */ - function Domain(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Domain id. - * @member {string} id - * @memberof flyteidl.admin.Domain - * @instance - */ - Domain.prototype.id = ""; - - /** - * Domain name. - * @member {string} name - * @memberof flyteidl.admin.Domain - * @instance - */ - Domain.prototype.name = ""; - - /** - * Creates a new Domain instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Domain - * @static - * @param {flyteidl.admin.IDomain=} [properties] Properties to set - * @returns {flyteidl.admin.Domain} Domain instance - */ - Domain.create = function create(properties) { - return new Domain(properties); - }; - - /** - * Encodes the specified Domain message. Does not implicitly {@link flyteidl.admin.Domain.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Domain - * @static - * @param {flyteidl.admin.IDomain} message Domain message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Domain.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.id); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.name); - return writer; - }; - - /** - * Decodes a Domain message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Domain - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Domain} Domain - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Domain.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Domain(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = reader.string(); - break; - case 2: - message.name = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Domain message. - * @function verify - * @memberof flyteidl.admin.Domain - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Domain.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) - if (!$util.isString(message.id)) - return "id: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - return null; - }; - - return Domain; - })(); - - admin.Project = (function() { - - /** - * Properties of a Project. - * @memberof flyteidl.admin - * @interface IProject - * @property {string|null} [id] Project id - * @property {string|null} [name] Project name - * @property {Array.|null} [domains] Project domains - * @property {string|null} [description] Project description - * @property {flyteidl.admin.ILabels|null} [labels] Project labels - * @property {flyteidl.admin.Project.ProjectState|null} [state] Project state - * @property {string|null} [org] Project org - */ - - /** - * Constructs a new Project. - * @memberof flyteidl.admin - * @classdesc Represents a Project. - * @implements IProject - * @constructor - * @param {flyteidl.admin.IProject=} [properties] Properties to set - */ - function Project(properties) { - this.domains = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Project id. - * @member {string} id - * @memberof flyteidl.admin.Project - * @instance - */ - Project.prototype.id = ""; - - /** - * Project name. - * @member {string} name - * @memberof flyteidl.admin.Project - * @instance - */ - Project.prototype.name = ""; - - /** - * Project domains. - * @member {Array.} domains - * @memberof flyteidl.admin.Project - * @instance - */ - Project.prototype.domains = $util.emptyArray; - - /** - * Project description. - * @member {string} description - * @memberof flyteidl.admin.Project - * @instance - */ - Project.prototype.description = ""; - - /** - * Project labels. - * @member {flyteidl.admin.ILabels|null|undefined} labels - * @memberof flyteidl.admin.Project - * @instance - */ - Project.prototype.labels = null; - - /** - * Project state. - * @member {flyteidl.admin.Project.ProjectState} state - * @memberof flyteidl.admin.Project - * @instance - */ - Project.prototype.state = 0; - - /** - * Project org. - * @member {string} org - * @memberof flyteidl.admin.Project - * @instance - */ - Project.prototype.org = ""; - - /** - * Creates a new Project instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Project - * @static - * @param {flyteidl.admin.IProject=} [properties] Properties to set - * @returns {flyteidl.admin.Project} Project instance - */ - Project.create = function create(properties) { - return new Project(properties); - }; - - /** - * Encodes the specified Project message. Does not implicitly {@link flyteidl.admin.Project.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Project - * @static - * @param {flyteidl.admin.IProject} message Project message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Project.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.id); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.name); - if (message.domains != null && message.domains.length) - for (var i = 0; i < message.domains.length; ++i) - $root.flyteidl.admin.Domain.encode(message.domains[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.description != null && message.hasOwnProperty("description")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.description); - if (message.labels != null && message.hasOwnProperty("labels")) - $root.flyteidl.admin.Labels.encode(message.labels, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 6, wireType 0 =*/48).int32(message.state); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 7, wireType 2 =*/58).string(message.org); - return writer; - }; - - /** - * Decodes a Project message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Project - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Project} Project - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Project.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Project(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = reader.string(); - break; - case 2: - message.name = reader.string(); - break; - case 3: - if (!(message.domains && message.domains.length)) - message.domains = []; - message.domains.push($root.flyteidl.admin.Domain.decode(reader, reader.uint32())); - break; - case 4: - message.description = reader.string(); - break; - case 5: - message.labels = $root.flyteidl.admin.Labels.decode(reader, reader.uint32()); - break; - case 6: - message.state = reader.int32(); - break; - case 7: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Project message. - * @function verify - * @memberof flyteidl.admin.Project - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Project.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) - if (!$util.isString(message.id)) - return "id: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.domains != null && message.hasOwnProperty("domains")) { - if (!Array.isArray(message.domains)) - return "domains: array expected"; - for (var i = 0; i < message.domains.length; ++i) { - var error = $root.flyteidl.admin.Domain.verify(message.domains[i]); - if (error) - return "domains." + error; - } - } - if (message.description != null && message.hasOwnProperty("description")) - if (!$util.isString(message.description)) - return "description: string expected"; - if (message.labels != null && message.hasOwnProperty("labels")) { - var error = $root.flyteidl.admin.Labels.verify(message.labels); - if (error) - return "labels." + error; - } - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - case 2: - break; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - /** - * ProjectState enum. - * @name flyteidl.admin.Project.ProjectState - * @enum {string} - * @property {number} ACTIVE=0 ACTIVE value - * @property {number} ARCHIVED=1 ARCHIVED value - * @property {number} SYSTEM_GENERATED=2 SYSTEM_GENERATED value - */ - Project.ProjectState = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "ACTIVE"] = 0; - values[valuesById[1] = "ARCHIVED"] = 1; - values[valuesById[2] = "SYSTEM_GENERATED"] = 2; - return values; - })(); - - return Project; - })(); - - admin.Projects = (function() { - - /** - * Properties of a Projects. - * @memberof flyteidl.admin - * @interface IProjects - * @property {Array.|null} [projects] Projects projects - * @property {string|null} [token] Projects token - */ - - /** - * Constructs a new Projects. - * @memberof flyteidl.admin - * @classdesc Represents a Projects. - * @implements IProjects - * @constructor - * @param {flyteidl.admin.IProjects=} [properties] Properties to set - */ - function Projects(properties) { - this.projects = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Projects projects. - * @member {Array.} projects - * @memberof flyteidl.admin.Projects - * @instance - */ - Projects.prototype.projects = $util.emptyArray; - - /** - * Projects token. - * @member {string} token - * @memberof flyteidl.admin.Projects - * @instance - */ - Projects.prototype.token = ""; - - /** - * Creates a new Projects instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Projects - * @static - * @param {flyteidl.admin.IProjects=} [properties] Properties to set - * @returns {flyteidl.admin.Projects} Projects instance - */ - Projects.create = function create(properties) { - return new Projects(properties); - }; - - /** - * Encodes the specified Projects message. Does not implicitly {@link flyteidl.admin.Projects.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Projects - * @static - * @param {flyteidl.admin.IProjects} message Projects message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Projects.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.projects != null && message.projects.length) - for (var i = 0; i < message.projects.length; ++i) - $root.flyteidl.admin.Project.encode(message.projects[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a Projects message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Projects - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Projects} Projects - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Projects.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Projects(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.projects && message.projects.length)) - message.projects = []; - message.projects.push($root.flyteidl.admin.Project.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Projects message. - * @function verify - * @memberof flyteidl.admin.Projects - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Projects.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.projects != null && message.hasOwnProperty("projects")) { - if (!Array.isArray(message.projects)) - return "projects: array expected"; - for (var i = 0; i < message.projects.length; ++i) { - var error = $root.flyteidl.admin.Project.verify(message.projects[i]); - if (error) - return "projects." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return Projects; - })(); - - admin.ProjectListRequest = (function() { - - /** - * Properties of a ProjectListRequest. - * @memberof flyteidl.admin - * @interface IProjectListRequest - * @property {number|null} [limit] ProjectListRequest limit - * @property {string|null} [token] ProjectListRequest token - * @property {string|null} [filters] ProjectListRequest filters - * @property {flyteidl.admin.ISort|null} [sortBy] ProjectListRequest sortBy - * @property {string|null} [org] ProjectListRequest org - */ - - /** - * Constructs a new ProjectListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectListRequest. - * @implements IProjectListRequest - * @constructor - * @param {flyteidl.admin.IProjectListRequest=} [properties] Properties to set - */ - function ProjectListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.ProjectListRequest - * @instance - */ - ProjectListRequest.prototype.limit = 0; - - /** - * ProjectListRequest token. - * @member {string} token - * @memberof flyteidl.admin.ProjectListRequest - * @instance - */ - ProjectListRequest.prototype.token = ""; - - /** - * ProjectListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.ProjectListRequest - * @instance - */ - ProjectListRequest.prototype.filters = ""; - - /** - * ProjectListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.ProjectListRequest - * @instance - */ - ProjectListRequest.prototype.sortBy = null; - - /** - * ProjectListRequest org. - * @member {string} org - * @memberof flyteidl.admin.ProjectListRequest - * @instance - */ - ProjectListRequest.prototype.org = ""; - - /** - * Creates a new ProjectListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectListRequest - * @static - * @param {flyteidl.admin.IProjectListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectListRequest} ProjectListRequest instance - */ - ProjectListRequest.create = function create(properties) { - return new ProjectListRequest(properties); - }; - - /** - * Encodes the specified ProjectListRequest message. Does not implicitly {@link flyteidl.admin.ProjectListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectListRequest - * @static - * @param {flyteidl.admin.IProjectListRequest} message ProjectListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 1, wireType 0 =*/8).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.filters); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.org); - return writer; - }; - - /** - * Decodes a ProjectListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectListRequest} ProjectListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.limit = reader.uint32(); - break; - case 2: - message.token = reader.string(); - break; - case 3: - message.filters = reader.string(); - break; - case 4: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - case 5: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectListRequest message. - * @function verify - * @memberof flyteidl.admin.ProjectListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ProjectListRequest; - })(); - - admin.ProjectRegisterRequest = (function() { - - /** - * Properties of a ProjectRegisterRequest. - * @memberof flyteidl.admin - * @interface IProjectRegisterRequest - * @property {flyteidl.admin.IProject|null} [project] ProjectRegisterRequest project - */ - - /** - * Constructs a new ProjectRegisterRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectRegisterRequest. - * @implements IProjectRegisterRequest - * @constructor - * @param {flyteidl.admin.IProjectRegisterRequest=} [properties] Properties to set - */ - function ProjectRegisterRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectRegisterRequest project. - * @member {flyteidl.admin.IProject|null|undefined} project - * @memberof flyteidl.admin.ProjectRegisterRequest - * @instance - */ - ProjectRegisterRequest.prototype.project = null; - - /** - * Creates a new ProjectRegisterRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectRegisterRequest - * @static - * @param {flyteidl.admin.IProjectRegisterRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectRegisterRequest} ProjectRegisterRequest instance - */ - ProjectRegisterRequest.create = function create(properties) { - return new ProjectRegisterRequest(properties); - }; - - /** - * Encodes the specified ProjectRegisterRequest message. Does not implicitly {@link flyteidl.admin.ProjectRegisterRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectRegisterRequest - * @static - * @param {flyteidl.admin.IProjectRegisterRequest} message ProjectRegisterRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectRegisterRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - $root.flyteidl.admin.Project.encode(message.project, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ProjectRegisterRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectRegisterRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectRegisterRequest} ProjectRegisterRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectRegisterRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectRegisterRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = $root.flyteidl.admin.Project.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectRegisterRequest message. - * @function verify - * @memberof flyteidl.admin.ProjectRegisterRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectRegisterRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) { - var error = $root.flyteidl.admin.Project.verify(message.project); - if (error) - return "project." + error; - } - return null; - }; - - return ProjectRegisterRequest; - })(); - - admin.ProjectRegisterResponse = (function() { - - /** - * Properties of a ProjectRegisterResponse. - * @memberof flyteidl.admin - * @interface IProjectRegisterResponse - */ - - /** - * Constructs a new ProjectRegisterResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectRegisterResponse. - * @implements IProjectRegisterResponse - * @constructor - * @param {flyteidl.admin.IProjectRegisterResponse=} [properties] Properties to set - */ - function ProjectRegisterResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ProjectRegisterResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectRegisterResponse - * @static - * @param {flyteidl.admin.IProjectRegisterResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectRegisterResponse} ProjectRegisterResponse instance - */ - ProjectRegisterResponse.create = function create(properties) { - return new ProjectRegisterResponse(properties); - }; - - /** - * Encodes the specified ProjectRegisterResponse message. Does not implicitly {@link flyteidl.admin.ProjectRegisterResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectRegisterResponse - * @static - * @param {flyteidl.admin.IProjectRegisterResponse} message ProjectRegisterResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectRegisterResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a ProjectRegisterResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectRegisterResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectRegisterResponse} ProjectRegisterResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectRegisterResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectRegisterResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectRegisterResponse message. - * @function verify - * @memberof flyteidl.admin.ProjectRegisterResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectRegisterResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ProjectRegisterResponse; - })(); - - admin.ProjectUpdateResponse = (function() { - - /** - * Properties of a ProjectUpdateResponse. - * @memberof flyteidl.admin - * @interface IProjectUpdateResponse - */ - - /** - * Constructs a new ProjectUpdateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectUpdateResponse. - * @implements IProjectUpdateResponse - * @constructor - * @param {flyteidl.admin.IProjectUpdateResponse=} [properties] Properties to set - */ - function ProjectUpdateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ProjectUpdateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectUpdateResponse - * @static - * @param {flyteidl.admin.IProjectUpdateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectUpdateResponse} ProjectUpdateResponse instance - */ - ProjectUpdateResponse.create = function create(properties) { - return new ProjectUpdateResponse(properties); - }; - - /** - * Encodes the specified ProjectUpdateResponse message. Does not implicitly {@link flyteidl.admin.ProjectUpdateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectUpdateResponse - * @static - * @param {flyteidl.admin.IProjectUpdateResponse} message ProjectUpdateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectUpdateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a ProjectUpdateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectUpdateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectUpdateResponse} ProjectUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectUpdateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectUpdateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectUpdateResponse message. - * @function verify - * @memberof flyteidl.admin.ProjectUpdateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectUpdateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ProjectUpdateResponse; - })(); - - admin.ProjectAttributes = (function() { - - /** - * Properties of a ProjectAttributes. - * @memberof flyteidl.admin - * @interface IProjectAttributes - * @property {string|null} [project] ProjectAttributes project - * @property {flyteidl.admin.IMatchingAttributes|null} [matchingAttributes] ProjectAttributes matchingAttributes - * @property {string|null} [org] ProjectAttributes org - */ - - /** - * Constructs a new ProjectAttributes. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectAttributes. - * @implements IProjectAttributes - * @constructor - * @param {flyteidl.admin.IProjectAttributes=} [properties] Properties to set - */ - function ProjectAttributes(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectAttributes project. - * @member {string} project - * @memberof flyteidl.admin.ProjectAttributes - * @instance - */ - ProjectAttributes.prototype.project = ""; - - /** - * ProjectAttributes matchingAttributes. - * @member {flyteidl.admin.IMatchingAttributes|null|undefined} matchingAttributes - * @memberof flyteidl.admin.ProjectAttributes - * @instance - */ - ProjectAttributes.prototype.matchingAttributes = null; - - /** - * ProjectAttributes org. - * @member {string} org - * @memberof flyteidl.admin.ProjectAttributes - * @instance - */ - ProjectAttributes.prototype.org = ""; - - /** - * Creates a new ProjectAttributes instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectAttributes - * @static - * @param {flyteidl.admin.IProjectAttributes=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectAttributes} ProjectAttributes instance - */ - ProjectAttributes.create = function create(properties) { - return new ProjectAttributes(properties); - }; - - /** - * Encodes the specified ProjectAttributes message. Does not implicitly {@link flyteidl.admin.ProjectAttributes.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectAttributes - * @static - * @param {flyteidl.admin.IProjectAttributes} message ProjectAttributes message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectAttributes.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.matchingAttributes != null && message.hasOwnProperty("matchingAttributes")) - $root.flyteidl.admin.MatchingAttributes.encode(message.matchingAttributes, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.org); - return writer; - }; - - /** - * Decodes a ProjectAttributes message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectAttributes - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectAttributes} ProjectAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectAttributes.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectAttributes(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.matchingAttributes = $root.flyteidl.admin.MatchingAttributes.decode(reader, reader.uint32()); - break; - case 3: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectAttributes message. - * @function verify - * @memberof flyteidl.admin.ProjectAttributes - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectAttributes.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.matchingAttributes != null && message.hasOwnProperty("matchingAttributes")) { - var error = $root.flyteidl.admin.MatchingAttributes.verify(message.matchingAttributes); - if (error) - return "matchingAttributes." + error; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ProjectAttributes; - })(); - - admin.ProjectAttributesUpdateRequest = (function() { - - /** - * Properties of a ProjectAttributesUpdateRequest. - * @memberof flyteidl.admin - * @interface IProjectAttributesUpdateRequest - * @property {flyteidl.admin.IProjectAttributes|null} [attributes] ProjectAttributesUpdateRequest attributes - */ - - /** - * Constructs a new ProjectAttributesUpdateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectAttributesUpdateRequest. - * @implements IProjectAttributesUpdateRequest - * @constructor - * @param {flyteidl.admin.IProjectAttributesUpdateRequest=} [properties] Properties to set - */ - function ProjectAttributesUpdateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectAttributesUpdateRequest attributes. - * @member {flyteidl.admin.IProjectAttributes|null|undefined} attributes - * @memberof flyteidl.admin.ProjectAttributesUpdateRequest - * @instance - */ - ProjectAttributesUpdateRequest.prototype.attributes = null; - - /** - * Creates a new ProjectAttributesUpdateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectAttributesUpdateRequest - * @static - * @param {flyteidl.admin.IProjectAttributesUpdateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectAttributesUpdateRequest} ProjectAttributesUpdateRequest instance - */ - ProjectAttributesUpdateRequest.create = function create(properties) { - return new ProjectAttributesUpdateRequest(properties); - }; - - /** - * Encodes the specified ProjectAttributesUpdateRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesUpdateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectAttributesUpdateRequest - * @static - * @param {flyteidl.admin.IProjectAttributesUpdateRequest} message ProjectAttributesUpdateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectAttributesUpdateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.attributes != null && message.hasOwnProperty("attributes")) - $root.flyteidl.admin.ProjectAttributes.encode(message.attributes, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ProjectAttributesUpdateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectAttributesUpdateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectAttributesUpdateRequest} ProjectAttributesUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectAttributesUpdateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectAttributesUpdateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.attributes = $root.flyteidl.admin.ProjectAttributes.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectAttributesUpdateRequest message. - * @function verify - * @memberof flyteidl.admin.ProjectAttributesUpdateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectAttributesUpdateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.attributes != null && message.hasOwnProperty("attributes")) { - var error = $root.flyteidl.admin.ProjectAttributes.verify(message.attributes); - if (error) - return "attributes." + error; - } - return null; - }; - - return ProjectAttributesUpdateRequest; - })(); - - admin.ProjectAttributesUpdateResponse = (function() { - - /** - * Properties of a ProjectAttributesUpdateResponse. - * @memberof flyteidl.admin - * @interface IProjectAttributesUpdateResponse - */ - - /** - * Constructs a new ProjectAttributesUpdateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectAttributesUpdateResponse. - * @implements IProjectAttributesUpdateResponse - * @constructor - * @param {flyteidl.admin.IProjectAttributesUpdateResponse=} [properties] Properties to set - */ - function ProjectAttributesUpdateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ProjectAttributesUpdateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectAttributesUpdateResponse - * @static - * @param {flyteidl.admin.IProjectAttributesUpdateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectAttributesUpdateResponse} ProjectAttributesUpdateResponse instance - */ - ProjectAttributesUpdateResponse.create = function create(properties) { - return new ProjectAttributesUpdateResponse(properties); - }; - - /** - * Encodes the specified ProjectAttributesUpdateResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesUpdateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectAttributesUpdateResponse - * @static - * @param {flyteidl.admin.IProjectAttributesUpdateResponse} message ProjectAttributesUpdateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectAttributesUpdateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a ProjectAttributesUpdateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectAttributesUpdateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectAttributesUpdateResponse} ProjectAttributesUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectAttributesUpdateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectAttributesUpdateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectAttributesUpdateResponse message. - * @function verify - * @memberof flyteidl.admin.ProjectAttributesUpdateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectAttributesUpdateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ProjectAttributesUpdateResponse; - })(); - - admin.ProjectAttributesGetRequest = (function() { - - /** - * Properties of a ProjectAttributesGetRequest. - * @memberof flyteidl.admin - * @interface IProjectAttributesGetRequest - * @property {string|null} [project] ProjectAttributesGetRequest project - * @property {flyteidl.admin.MatchableResource|null} [resourceType] ProjectAttributesGetRequest resourceType - * @property {string|null} [org] ProjectAttributesGetRequest org - */ - - /** - * Constructs a new ProjectAttributesGetRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectAttributesGetRequest. - * @implements IProjectAttributesGetRequest - * @constructor - * @param {flyteidl.admin.IProjectAttributesGetRequest=} [properties] Properties to set - */ - function ProjectAttributesGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectAttributesGetRequest project. - * @member {string} project - * @memberof flyteidl.admin.ProjectAttributesGetRequest - * @instance - */ - ProjectAttributesGetRequest.prototype.project = ""; - - /** - * ProjectAttributesGetRequest resourceType. - * @member {flyteidl.admin.MatchableResource} resourceType - * @memberof flyteidl.admin.ProjectAttributesGetRequest - * @instance - */ - ProjectAttributesGetRequest.prototype.resourceType = 0; - - /** - * ProjectAttributesGetRequest org. - * @member {string} org - * @memberof flyteidl.admin.ProjectAttributesGetRequest - * @instance - */ - ProjectAttributesGetRequest.prototype.org = ""; - - /** - * Creates a new ProjectAttributesGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectAttributesGetRequest - * @static - * @param {flyteidl.admin.IProjectAttributesGetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectAttributesGetRequest} ProjectAttributesGetRequest instance - */ - ProjectAttributesGetRequest.create = function create(properties) { - return new ProjectAttributesGetRequest(properties); - }; - - /** - * Encodes the specified ProjectAttributesGetRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectAttributesGetRequest - * @static - * @param {flyteidl.admin.IProjectAttributesGetRequest} message ProjectAttributesGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectAttributesGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.resourceType); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.org); - return writer; - }; - - /** - * Decodes a ProjectAttributesGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectAttributesGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectAttributesGetRequest} ProjectAttributesGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectAttributesGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectAttributesGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.resourceType = reader.int32(); - break; - case 3: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectAttributesGetRequest message. - * @function verify - * @memberof flyteidl.admin.ProjectAttributesGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectAttributesGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ProjectAttributesGetRequest; - })(); - - admin.ProjectAttributesGetResponse = (function() { - - /** - * Properties of a ProjectAttributesGetResponse. - * @memberof flyteidl.admin - * @interface IProjectAttributesGetResponse - * @property {flyteidl.admin.IProjectAttributes|null} [attributes] ProjectAttributesGetResponse attributes - */ - - /** - * Constructs a new ProjectAttributesGetResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectAttributesGetResponse. - * @implements IProjectAttributesGetResponse - * @constructor - * @param {flyteidl.admin.IProjectAttributesGetResponse=} [properties] Properties to set - */ - function ProjectAttributesGetResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectAttributesGetResponse attributes. - * @member {flyteidl.admin.IProjectAttributes|null|undefined} attributes - * @memberof flyteidl.admin.ProjectAttributesGetResponse - * @instance - */ - ProjectAttributesGetResponse.prototype.attributes = null; - - /** - * Creates a new ProjectAttributesGetResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectAttributesGetResponse - * @static - * @param {flyteidl.admin.IProjectAttributesGetResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectAttributesGetResponse} ProjectAttributesGetResponse instance - */ - ProjectAttributesGetResponse.create = function create(properties) { - return new ProjectAttributesGetResponse(properties); - }; - - /** - * Encodes the specified ProjectAttributesGetResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesGetResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectAttributesGetResponse - * @static - * @param {flyteidl.admin.IProjectAttributesGetResponse} message ProjectAttributesGetResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectAttributesGetResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.attributes != null && message.hasOwnProperty("attributes")) - $root.flyteidl.admin.ProjectAttributes.encode(message.attributes, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ProjectAttributesGetResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectAttributesGetResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectAttributesGetResponse} ProjectAttributesGetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectAttributesGetResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectAttributesGetResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.attributes = $root.flyteidl.admin.ProjectAttributes.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectAttributesGetResponse message. - * @function verify - * @memberof flyteidl.admin.ProjectAttributesGetResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectAttributesGetResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.attributes != null && message.hasOwnProperty("attributes")) { - var error = $root.flyteidl.admin.ProjectAttributes.verify(message.attributes); - if (error) - return "attributes." + error; - } - return null; - }; - - return ProjectAttributesGetResponse; - })(); - - admin.ProjectAttributesDeleteRequest = (function() { - - /** - * Properties of a ProjectAttributesDeleteRequest. - * @memberof flyteidl.admin - * @interface IProjectAttributesDeleteRequest - * @property {string|null} [project] ProjectAttributesDeleteRequest project - * @property {flyteidl.admin.MatchableResource|null} [resourceType] ProjectAttributesDeleteRequest resourceType - * @property {string|null} [org] ProjectAttributesDeleteRequest org - */ - - /** - * Constructs a new ProjectAttributesDeleteRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectAttributesDeleteRequest. - * @implements IProjectAttributesDeleteRequest - * @constructor - * @param {flyteidl.admin.IProjectAttributesDeleteRequest=} [properties] Properties to set - */ - function ProjectAttributesDeleteRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectAttributesDeleteRequest project. - * @member {string} project - * @memberof flyteidl.admin.ProjectAttributesDeleteRequest - * @instance - */ - ProjectAttributesDeleteRequest.prototype.project = ""; - - /** - * ProjectAttributesDeleteRequest resourceType. - * @member {flyteidl.admin.MatchableResource} resourceType - * @memberof flyteidl.admin.ProjectAttributesDeleteRequest - * @instance - */ - ProjectAttributesDeleteRequest.prototype.resourceType = 0; - - /** - * ProjectAttributesDeleteRequest org. - * @member {string} org - * @memberof flyteidl.admin.ProjectAttributesDeleteRequest - * @instance - */ - ProjectAttributesDeleteRequest.prototype.org = ""; - - /** - * Creates a new ProjectAttributesDeleteRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectAttributesDeleteRequest - * @static - * @param {flyteidl.admin.IProjectAttributesDeleteRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectAttributesDeleteRequest} ProjectAttributesDeleteRequest instance - */ - ProjectAttributesDeleteRequest.create = function create(properties) { - return new ProjectAttributesDeleteRequest(properties); - }; - - /** - * Encodes the specified ProjectAttributesDeleteRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesDeleteRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectAttributesDeleteRequest - * @static - * @param {flyteidl.admin.IProjectAttributesDeleteRequest} message ProjectAttributesDeleteRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectAttributesDeleteRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.resourceType); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.org); - return writer; - }; - - /** - * Decodes a ProjectAttributesDeleteRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectAttributesDeleteRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectAttributesDeleteRequest} ProjectAttributesDeleteRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectAttributesDeleteRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectAttributesDeleteRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.resourceType = reader.int32(); - break; - case 3: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectAttributesDeleteRequest message. - * @function verify - * @memberof flyteidl.admin.ProjectAttributesDeleteRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectAttributesDeleteRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ProjectAttributesDeleteRequest; - })(); - - admin.ProjectAttributesDeleteResponse = (function() { - - /** - * Properties of a ProjectAttributesDeleteResponse. - * @memberof flyteidl.admin - * @interface IProjectAttributesDeleteResponse - */ - - /** - * Constructs a new ProjectAttributesDeleteResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectAttributesDeleteResponse. - * @implements IProjectAttributesDeleteResponse - * @constructor - * @param {flyteidl.admin.IProjectAttributesDeleteResponse=} [properties] Properties to set - */ - function ProjectAttributesDeleteResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ProjectAttributesDeleteResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectAttributesDeleteResponse - * @static - * @param {flyteidl.admin.IProjectAttributesDeleteResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectAttributesDeleteResponse} ProjectAttributesDeleteResponse instance - */ - ProjectAttributesDeleteResponse.create = function create(properties) { - return new ProjectAttributesDeleteResponse(properties); - }; - - /** - * Encodes the specified ProjectAttributesDeleteResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesDeleteResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectAttributesDeleteResponse - * @static - * @param {flyteidl.admin.IProjectAttributesDeleteResponse} message ProjectAttributesDeleteResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectAttributesDeleteResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a ProjectAttributesDeleteResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectAttributesDeleteResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectAttributesDeleteResponse} ProjectAttributesDeleteResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectAttributesDeleteResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectAttributesDeleteResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectAttributesDeleteResponse message. - * @function verify - * @memberof flyteidl.admin.ProjectAttributesDeleteResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectAttributesDeleteResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ProjectAttributesDeleteResponse; - })(); - - admin.ProjectDomainAttributes = (function() { - - /** - * Properties of a ProjectDomainAttributes. - * @memberof flyteidl.admin - * @interface IProjectDomainAttributes - * @property {string|null} [project] ProjectDomainAttributes project - * @property {string|null} [domain] ProjectDomainAttributes domain - * @property {flyteidl.admin.IMatchingAttributes|null} [matchingAttributes] ProjectDomainAttributes matchingAttributes - * @property {string|null} [org] ProjectDomainAttributes org - */ - - /** - * Constructs a new ProjectDomainAttributes. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectDomainAttributes. - * @implements IProjectDomainAttributes - * @constructor - * @param {flyteidl.admin.IProjectDomainAttributes=} [properties] Properties to set - */ - function ProjectDomainAttributes(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectDomainAttributes project. - * @member {string} project - * @memberof flyteidl.admin.ProjectDomainAttributes - * @instance - */ - ProjectDomainAttributes.prototype.project = ""; - - /** - * ProjectDomainAttributes domain. - * @member {string} domain - * @memberof flyteidl.admin.ProjectDomainAttributes - * @instance - */ - ProjectDomainAttributes.prototype.domain = ""; - - /** - * ProjectDomainAttributes matchingAttributes. - * @member {flyteidl.admin.IMatchingAttributes|null|undefined} matchingAttributes - * @memberof flyteidl.admin.ProjectDomainAttributes - * @instance - */ - ProjectDomainAttributes.prototype.matchingAttributes = null; - - /** - * ProjectDomainAttributes org. - * @member {string} org - * @memberof flyteidl.admin.ProjectDomainAttributes - * @instance - */ - ProjectDomainAttributes.prototype.org = ""; - - /** - * Creates a new ProjectDomainAttributes instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectDomainAttributes - * @static - * @param {flyteidl.admin.IProjectDomainAttributes=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectDomainAttributes} ProjectDomainAttributes instance - */ - ProjectDomainAttributes.create = function create(properties) { - return new ProjectDomainAttributes(properties); - }; - - /** - * Encodes the specified ProjectDomainAttributes message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributes.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectDomainAttributes - * @static - * @param {flyteidl.admin.IProjectDomainAttributes} message ProjectDomainAttributes message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectDomainAttributes.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.matchingAttributes != null && message.hasOwnProperty("matchingAttributes")) - $root.flyteidl.admin.MatchingAttributes.encode(message.matchingAttributes, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.org); - return writer; - }; - - /** - * Decodes a ProjectDomainAttributes message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectDomainAttributes - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectDomainAttributes} ProjectDomainAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectDomainAttributes.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectDomainAttributes(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.matchingAttributes = $root.flyteidl.admin.MatchingAttributes.decode(reader, reader.uint32()); - break; - case 4: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectDomainAttributes message. - * @function verify - * @memberof flyteidl.admin.ProjectDomainAttributes - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectDomainAttributes.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.matchingAttributes != null && message.hasOwnProperty("matchingAttributes")) { - var error = $root.flyteidl.admin.MatchingAttributes.verify(message.matchingAttributes); - if (error) - return "matchingAttributes." + error; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ProjectDomainAttributes; - })(); - - admin.ProjectDomainAttributesUpdateRequest = (function() { - - /** - * Properties of a ProjectDomainAttributesUpdateRequest. - * @memberof flyteidl.admin - * @interface IProjectDomainAttributesUpdateRequest - * @property {flyteidl.admin.IProjectDomainAttributes|null} [attributes] ProjectDomainAttributesUpdateRequest attributes - */ - - /** - * Constructs a new ProjectDomainAttributesUpdateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectDomainAttributesUpdateRequest. - * @implements IProjectDomainAttributesUpdateRequest - * @constructor - * @param {flyteidl.admin.IProjectDomainAttributesUpdateRequest=} [properties] Properties to set - */ - function ProjectDomainAttributesUpdateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectDomainAttributesUpdateRequest attributes. - * @member {flyteidl.admin.IProjectDomainAttributes|null|undefined} attributes - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateRequest - * @instance - */ - ProjectDomainAttributesUpdateRequest.prototype.attributes = null; - - /** - * Creates a new ProjectDomainAttributesUpdateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateRequest - * @static - * @param {flyteidl.admin.IProjectDomainAttributesUpdateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectDomainAttributesUpdateRequest} ProjectDomainAttributesUpdateRequest instance - */ - ProjectDomainAttributesUpdateRequest.create = function create(properties) { - return new ProjectDomainAttributesUpdateRequest(properties); - }; - - /** - * Encodes the specified ProjectDomainAttributesUpdateRequest message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesUpdateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateRequest - * @static - * @param {flyteidl.admin.IProjectDomainAttributesUpdateRequest} message ProjectDomainAttributesUpdateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectDomainAttributesUpdateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.attributes != null && message.hasOwnProperty("attributes")) - $root.flyteidl.admin.ProjectDomainAttributes.encode(message.attributes, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ProjectDomainAttributesUpdateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectDomainAttributesUpdateRequest} ProjectDomainAttributesUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectDomainAttributesUpdateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectDomainAttributesUpdateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.attributes = $root.flyteidl.admin.ProjectDomainAttributes.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectDomainAttributesUpdateRequest message. - * @function verify - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectDomainAttributesUpdateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.attributes != null && message.hasOwnProperty("attributes")) { - var error = $root.flyteidl.admin.ProjectDomainAttributes.verify(message.attributes); - if (error) - return "attributes." + error; - } - return null; - }; - - return ProjectDomainAttributesUpdateRequest; - })(); - - admin.ProjectDomainAttributesUpdateResponse = (function() { - - /** - * Properties of a ProjectDomainAttributesUpdateResponse. - * @memberof flyteidl.admin - * @interface IProjectDomainAttributesUpdateResponse - */ - - /** - * Constructs a new ProjectDomainAttributesUpdateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectDomainAttributesUpdateResponse. - * @implements IProjectDomainAttributesUpdateResponse - * @constructor - * @param {flyteidl.admin.IProjectDomainAttributesUpdateResponse=} [properties] Properties to set - */ - function ProjectDomainAttributesUpdateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ProjectDomainAttributesUpdateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateResponse - * @static - * @param {flyteidl.admin.IProjectDomainAttributesUpdateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectDomainAttributesUpdateResponse} ProjectDomainAttributesUpdateResponse instance - */ - ProjectDomainAttributesUpdateResponse.create = function create(properties) { - return new ProjectDomainAttributesUpdateResponse(properties); - }; - - /** - * Encodes the specified ProjectDomainAttributesUpdateResponse message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesUpdateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateResponse - * @static - * @param {flyteidl.admin.IProjectDomainAttributesUpdateResponse} message ProjectDomainAttributesUpdateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectDomainAttributesUpdateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a ProjectDomainAttributesUpdateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectDomainAttributesUpdateResponse} ProjectDomainAttributesUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectDomainAttributesUpdateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectDomainAttributesUpdateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectDomainAttributesUpdateResponse message. - * @function verify - * @memberof flyteidl.admin.ProjectDomainAttributesUpdateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectDomainAttributesUpdateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ProjectDomainAttributesUpdateResponse; - })(); - - admin.ProjectDomainAttributesGetRequest = (function() { - - /** - * Properties of a ProjectDomainAttributesGetRequest. - * @memberof flyteidl.admin - * @interface IProjectDomainAttributesGetRequest - * @property {string|null} [project] ProjectDomainAttributesGetRequest project - * @property {string|null} [domain] ProjectDomainAttributesGetRequest domain - * @property {flyteidl.admin.MatchableResource|null} [resourceType] ProjectDomainAttributesGetRequest resourceType - * @property {string|null} [org] ProjectDomainAttributesGetRequest org - */ - - /** - * Constructs a new ProjectDomainAttributesGetRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectDomainAttributesGetRequest. - * @implements IProjectDomainAttributesGetRequest - * @constructor - * @param {flyteidl.admin.IProjectDomainAttributesGetRequest=} [properties] Properties to set - */ - function ProjectDomainAttributesGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectDomainAttributesGetRequest project. - * @member {string} project - * @memberof flyteidl.admin.ProjectDomainAttributesGetRequest - * @instance - */ - ProjectDomainAttributesGetRequest.prototype.project = ""; - - /** - * ProjectDomainAttributesGetRequest domain. - * @member {string} domain - * @memberof flyteidl.admin.ProjectDomainAttributesGetRequest - * @instance - */ - ProjectDomainAttributesGetRequest.prototype.domain = ""; - - /** - * ProjectDomainAttributesGetRequest resourceType. - * @member {flyteidl.admin.MatchableResource} resourceType - * @memberof flyteidl.admin.ProjectDomainAttributesGetRequest - * @instance - */ - ProjectDomainAttributesGetRequest.prototype.resourceType = 0; - - /** - * ProjectDomainAttributesGetRequest org. - * @member {string} org - * @memberof flyteidl.admin.ProjectDomainAttributesGetRequest - * @instance - */ - ProjectDomainAttributesGetRequest.prototype.org = ""; - - /** - * Creates a new ProjectDomainAttributesGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectDomainAttributesGetRequest - * @static - * @param {flyteidl.admin.IProjectDomainAttributesGetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectDomainAttributesGetRequest} ProjectDomainAttributesGetRequest instance - */ - ProjectDomainAttributesGetRequest.create = function create(properties) { - return new ProjectDomainAttributesGetRequest(properties); - }; - - /** - * Encodes the specified ProjectDomainAttributesGetRequest message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectDomainAttributesGetRequest - * @static - * @param {flyteidl.admin.IProjectDomainAttributesGetRequest} message ProjectDomainAttributesGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectDomainAttributesGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.resourceType); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.org); - return writer; - }; - - /** - * Decodes a ProjectDomainAttributesGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectDomainAttributesGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectDomainAttributesGetRequest} ProjectDomainAttributesGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectDomainAttributesGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectDomainAttributesGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.resourceType = reader.int32(); - break; - case 4: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectDomainAttributesGetRequest message. - * @function verify - * @memberof flyteidl.admin.ProjectDomainAttributesGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectDomainAttributesGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ProjectDomainAttributesGetRequest; - })(); - - admin.ProjectDomainAttributesGetResponse = (function() { - - /** - * Properties of a ProjectDomainAttributesGetResponse. - * @memberof flyteidl.admin - * @interface IProjectDomainAttributesGetResponse - * @property {flyteidl.admin.IProjectDomainAttributes|null} [attributes] ProjectDomainAttributesGetResponse attributes - */ - - /** - * Constructs a new ProjectDomainAttributesGetResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectDomainAttributesGetResponse. - * @implements IProjectDomainAttributesGetResponse - * @constructor - * @param {flyteidl.admin.IProjectDomainAttributesGetResponse=} [properties] Properties to set - */ - function ProjectDomainAttributesGetResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectDomainAttributesGetResponse attributes. - * @member {flyteidl.admin.IProjectDomainAttributes|null|undefined} attributes - * @memberof flyteidl.admin.ProjectDomainAttributesGetResponse - * @instance - */ - ProjectDomainAttributesGetResponse.prototype.attributes = null; - - /** - * Creates a new ProjectDomainAttributesGetResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectDomainAttributesGetResponse - * @static - * @param {flyteidl.admin.IProjectDomainAttributesGetResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectDomainAttributesGetResponse} ProjectDomainAttributesGetResponse instance - */ - ProjectDomainAttributesGetResponse.create = function create(properties) { - return new ProjectDomainAttributesGetResponse(properties); - }; - - /** - * Encodes the specified ProjectDomainAttributesGetResponse message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesGetResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectDomainAttributesGetResponse - * @static - * @param {flyteidl.admin.IProjectDomainAttributesGetResponse} message ProjectDomainAttributesGetResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectDomainAttributesGetResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.attributes != null && message.hasOwnProperty("attributes")) - $root.flyteidl.admin.ProjectDomainAttributes.encode(message.attributes, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ProjectDomainAttributesGetResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectDomainAttributesGetResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectDomainAttributesGetResponse} ProjectDomainAttributesGetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectDomainAttributesGetResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectDomainAttributesGetResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.attributes = $root.flyteidl.admin.ProjectDomainAttributes.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectDomainAttributesGetResponse message. - * @function verify - * @memberof flyteidl.admin.ProjectDomainAttributesGetResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectDomainAttributesGetResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.attributes != null && message.hasOwnProperty("attributes")) { - var error = $root.flyteidl.admin.ProjectDomainAttributes.verify(message.attributes); - if (error) - return "attributes." + error; - } - return null; - }; - - return ProjectDomainAttributesGetResponse; - })(); - - admin.ProjectDomainAttributesDeleteRequest = (function() { - - /** - * Properties of a ProjectDomainAttributesDeleteRequest. - * @memberof flyteidl.admin - * @interface IProjectDomainAttributesDeleteRequest - * @property {string|null} [project] ProjectDomainAttributesDeleteRequest project - * @property {string|null} [domain] ProjectDomainAttributesDeleteRequest domain - * @property {flyteidl.admin.MatchableResource|null} [resourceType] ProjectDomainAttributesDeleteRequest resourceType - * @property {string|null} [org] ProjectDomainAttributesDeleteRequest org - */ - - /** - * Constructs a new ProjectDomainAttributesDeleteRequest. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectDomainAttributesDeleteRequest. - * @implements IProjectDomainAttributesDeleteRequest - * @constructor - * @param {flyteidl.admin.IProjectDomainAttributesDeleteRequest=} [properties] Properties to set - */ - function ProjectDomainAttributesDeleteRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ProjectDomainAttributesDeleteRequest project. - * @member {string} project - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteRequest - * @instance - */ - ProjectDomainAttributesDeleteRequest.prototype.project = ""; - - /** - * ProjectDomainAttributesDeleteRequest domain. - * @member {string} domain - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteRequest - * @instance - */ - ProjectDomainAttributesDeleteRequest.prototype.domain = ""; - - /** - * ProjectDomainAttributesDeleteRequest resourceType. - * @member {flyteidl.admin.MatchableResource} resourceType - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteRequest - * @instance - */ - ProjectDomainAttributesDeleteRequest.prototype.resourceType = 0; - - /** - * ProjectDomainAttributesDeleteRequest org. - * @member {string} org - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteRequest - * @instance - */ - ProjectDomainAttributesDeleteRequest.prototype.org = ""; - - /** - * Creates a new ProjectDomainAttributesDeleteRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteRequest - * @static - * @param {flyteidl.admin.IProjectDomainAttributesDeleteRequest=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectDomainAttributesDeleteRequest} ProjectDomainAttributesDeleteRequest instance - */ - ProjectDomainAttributesDeleteRequest.create = function create(properties) { - return new ProjectDomainAttributesDeleteRequest(properties); - }; - - /** - * Encodes the specified ProjectDomainAttributesDeleteRequest message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesDeleteRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteRequest - * @static - * @param {flyteidl.admin.IProjectDomainAttributesDeleteRequest} message ProjectDomainAttributesDeleteRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectDomainAttributesDeleteRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.resourceType); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.org); - return writer; - }; - - /** - * Decodes a ProjectDomainAttributesDeleteRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectDomainAttributesDeleteRequest} ProjectDomainAttributesDeleteRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectDomainAttributesDeleteRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectDomainAttributesDeleteRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.resourceType = reader.int32(); - break; - case 4: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectDomainAttributesDeleteRequest message. - * @function verify - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectDomainAttributesDeleteRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return ProjectDomainAttributesDeleteRequest; - })(); - - admin.ProjectDomainAttributesDeleteResponse = (function() { - - /** - * Properties of a ProjectDomainAttributesDeleteResponse. - * @memberof flyteidl.admin - * @interface IProjectDomainAttributesDeleteResponse - */ - - /** - * Constructs a new ProjectDomainAttributesDeleteResponse. - * @memberof flyteidl.admin - * @classdesc Represents a ProjectDomainAttributesDeleteResponse. - * @implements IProjectDomainAttributesDeleteResponse - * @constructor - * @param {flyteidl.admin.IProjectDomainAttributesDeleteResponse=} [properties] Properties to set - */ - function ProjectDomainAttributesDeleteResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new ProjectDomainAttributesDeleteResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteResponse - * @static - * @param {flyteidl.admin.IProjectDomainAttributesDeleteResponse=} [properties] Properties to set - * @returns {flyteidl.admin.ProjectDomainAttributesDeleteResponse} ProjectDomainAttributesDeleteResponse instance - */ - ProjectDomainAttributesDeleteResponse.create = function create(properties) { - return new ProjectDomainAttributesDeleteResponse(properties); - }; - - /** - * Encodes the specified ProjectDomainAttributesDeleteResponse message. Does not implicitly {@link flyteidl.admin.ProjectDomainAttributesDeleteResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteResponse - * @static - * @param {flyteidl.admin.IProjectDomainAttributesDeleteResponse} message ProjectDomainAttributesDeleteResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ProjectDomainAttributesDeleteResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a ProjectDomainAttributesDeleteResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.ProjectDomainAttributesDeleteResponse} ProjectDomainAttributesDeleteResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ProjectDomainAttributesDeleteResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.ProjectDomainAttributesDeleteResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ProjectDomainAttributesDeleteResponse message. - * @function verify - * @memberof flyteidl.admin.ProjectDomainAttributesDeleteResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ProjectDomainAttributesDeleteResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return ProjectDomainAttributesDeleteResponse; - })(); - - admin.SignalGetOrCreateRequest = (function() { - - /** - * Properties of a SignalGetOrCreateRequest. - * @memberof flyteidl.admin - * @interface ISignalGetOrCreateRequest - * @property {flyteidl.core.ISignalIdentifier|null} [id] SignalGetOrCreateRequest id - * @property {flyteidl.core.ILiteralType|null} [type] SignalGetOrCreateRequest type - */ - - /** - * Constructs a new SignalGetOrCreateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a SignalGetOrCreateRequest. - * @implements ISignalGetOrCreateRequest - * @constructor - * @param {flyteidl.admin.ISignalGetOrCreateRequest=} [properties] Properties to set - */ - function SignalGetOrCreateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SignalGetOrCreateRequest id. - * @member {flyteidl.core.ISignalIdentifier|null|undefined} id - * @memberof flyteidl.admin.SignalGetOrCreateRequest - * @instance - */ - SignalGetOrCreateRequest.prototype.id = null; - - /** - * SignalGetOrCreateRequest type. - * @member {flyteidl.core.ILiteralType|null|undefined} type - * @memberof flyteidl.admin.SignalGetOrCreateRequest - * @instance - */ - SignalGetOrCreateRequest.prototype.type = null; - - /** - * Creates a new SignalGetOrCreateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.SignalGetOrCreateRequest - * @static - * @param {flyteidl.admin.ISignalGetOrCreateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.SignalGetOrCreateRequest} SignalGetOrCreateRequest instance - */ - SignalGetOrCreateRequest.create = function create(properties) { - return new SignalGetOrCreateRequest(properties); - }; - - /** - * Encodes the specified SignalGetOrCreateRequest message. Does not implicitly {@link flyteidl.admin.SignalGetOrCreateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.SignalGetOrCreateRequest - * @static - * @param {flyteidl.admin.ISignalGetOrCreateRequest} message SignalGetOrCreateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SignalGetOrCreateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.SignalIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.type != null && message.hasOwnProperty("type")) - $root.flyteidl.core.LiteralType.encode(message.type, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a SignalGetOrCreateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.SignalGetOrCreateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.SignalGetOrCreateRequest} SignalGetOrCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SignalGetOrCreateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.SignalGetOrCreateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.SignalIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.type = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SignalGetOrCreateRequest message. - * @function verify - * @memberof flyteidl.admin.SignalGetOrCreateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SignalGetOrCreateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.SignalIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.type != null && message.hasOwnProperty("type")) { - var error = $root.flyteidl.core.LiteralType.verify(message.type); - if (error) - return "type." + error; - } - return null; - }; - - return SignalGetOrCreateRequest; - })(); - - admin.SignalListRequest = (function() { - - /** - * Properties of a SignalListRequest. - * @memberof flyteidl.admin - * @interface ISignalListRequest - * @property {flyteidl.core.IWorkflowExecutionIdentifier|null} [workflowExecutionId] SignalListRequest workflowExecutionId - * @property {number|null} [limit] SignalListRequest limit - * @property {string|null} [token] SignalListRequest token - * @property {string|null} [filters] SignalListRequest filters - * @property {flyteidl.admin.ISort|null} [sortBy] SignalListRequest sortBy - */ - - /** - * Constructs a new SignalListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a SignalListRequest. - * @implements ISignalListRequest - * @constructor - * @param {flyteidl.admin.ISignalListRequest=} [properties] Properties to set - */ - function SignalListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SignalListRequest workflowExecutionId. - * @member {flyteidl.core.IWorkflowExecutionIdentifier|null|undefined} workflowExecutionId - * @memberof flyteidl.admin.SignalListRequest - * @instance - */ - SignalListRequest.prototype.workflowExecutionId = null; - - /** - * SignalListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.SignalListRequest - * @instance - */ - SignalListRequest.prototype.limit = 0; - - /** - * SignalListRequest token. - * @member {string} token - * @memberof flyteidl.admin.SignalListRequest - * @instance - */ - SignalListRequest.prototype.token = ""; - - /** - * SignalListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.SignalListRequest - * @instance - */ - SignalListRequest.prototype.filters = ""; - - /** - * SignalListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.SignalListRequest - * @instance - */ - SignalListRequest.prototype.sortBy = null; - - /** - * Creates a new SignalListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.SignalListRequest - * @static - * @param {flyteidl.admin.ISignalListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.SignalListRequest} SignalListRequest instance - */ - SignalListRequest.create = function create(properties) { - return new SignalListRequest(properties); - }; - - /** - * Encodes the specified SignalListRequest message. Does not implicitly {@link flyteidl.admin.SignalListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.SignalListRequest - * @static - * @param {flyteidl.admin.ISignalListRequest} message SignalListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SignalListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.workflowExecutionId != null && message.hasOwnProperty("workflowExecutionId")) - $root.flyteidl.core.WorkflowExecutionIdentifier.encode(message.workflowExecutionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.token); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.filters); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a SignalListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.SignalListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.SignalListRequest} SignalListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SignalListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.SignalListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.workflowExecutionId = $root.flyteidl.core.WorkflowExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.limit = reader.uint32(); - break; - case 3: - message.token = reader.string(); - break; - case 4: - message.filters = reader.string(); - break; - case 5: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SignalListRequest message. - * @function verify - * @memberof flyteidl.admin.SignalListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SignalListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.workflowExecutionId != null && message.hasOwnProperty("workflowExecutionId")) { - var error = $root.flyteidl.core.WorkflowExecutionIdentifier.verify(message.workflowExecutionId); - if (error) - return "workflowExecutionId." + error; - } - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - return null; - }; - - return SignalListRequest; - })(); - - admin.SignalList = (function() { - - /** - * Properties of a SignalList. - * @memberof flyteidl.admin - * @interface ISignalList - * @property {Array.|null} [signals] SignalList signals - * @property {string|null} [token] SignalList token - */ - - /** - * Constructs a new SignalList. - * @memberof flyteidl.admin - * @classdesc Represents a SignalList. - * @implements ISignalList - * @constructor - * @param {flyteidl.admin.ISignalList=} [properties] Properties to set - */ - function SignalList(properties) { - this.signals = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SignalList signals. - * @member {Array.} signals - * @memberof flyteidl.admin.SignalList - * @instance - */ - SignalList.prototype.signals = $util.emptyArray; - - /** - * SignalList token. - * @member {string} token - * @memberof flyteidl.admin.SignalList - * @instance - */ - SignalList.prototype.token = ""; - - /** - * Creates a new SignalList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.SignalList - * @static - * @param {flyteidl.admin.ISignalList=} [properties] Properties to set - * @returns {flyteidl.admin.SignalList} SignalList instance - */ - SignalList.create = function create(properties) { - return new SignalList(properties); - }; - - /** - * Encodes the specified SignalList message. Does not implicitly {@link flyteidl.admin.SignalList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.SignalList - * @static - * @param {flyteidl.admin.ISignalList} message SignalList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SignalList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.signals != null && message.signals.length) - for (var i = 0; i < message.signals.length; ++i) - $root.flyteidl.admin.Signal.encode(message.signals[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a SignalList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.SignalList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.SignalList} SignalList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SignalList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.SignalList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.signals && message.signals.length)) - message.signals = []; - message.signals.push($root.flyteidl.admin.Signal.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SignalList message. - * @function verify - * @memberof flyteidl.admin.SignalList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SignalList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.signals != null && message.hasOwnProperty("signals")) { - if (!Array.isArray(message.signals)) - return "signals: array expected"; - for (var i = 0; i < message.signals.length; ++i) { - var error = $root.flyteidl.admin.Signal.verify(message.signals[i]); - if (error) - return "signals." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return SignalList; - })(); - - admin.SignalSetRequest = (function() { - - /** - * Properties of a SignalSetRequest. - * @memberof flyteidl.admin - * @interface ISignalSetRequest - * @property {flyteidl.core.ISignalIdentifier|null} [id] SignalSetRequest id - * @property {flyteidl.core.ILiteral|null} [value] SignalSetRequest value - */ - - /** - * Constructs a new SignalSetRequest. - * @memberof flyteidl.admin - * @classdesc Represents a SignalSetRequest. - * @implements ISignalSetRequest - * @constructor - * @param {flyteidl.admin.ISignalSetRequest=} [properties] Properties to set - */ - function SignalSetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SignalSetRequest id. - * @member {flyteidl.core.ISignalIdentifier|null|undefined} id - * @memberof flyteidl.admin.SignalSetRequest - * @instance - */ - SignalSetRequest.prototype.id = null; - - /** - * SignalSetRequest value. - * @member {flyteidl.core.ILiteral|null|undefined} value - * @memberof flyteidl.admin.SignalSetRequest - * @instance - */ - SignalSetRequest.prototype.value = null; - - /** - * Creates a new SignalSetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.SignalSetRequest - * @static - * @param {flyteidl.admin.ISignalSetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.SignalSetRequest} SignalSetRequest instance - */ - SignalSetRequest.create = function create(properties) { - return new SignalSetRequest(properties); - }; - - /** - * Encodes the specified SignalSetRequest message. Does not implicitly {@link flyteidl.admin.SignalSetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.SignalSetRequest - * @static - * @param {flyteidl.admin.ISignalSetRequest} message SignalSetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SignalSetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.SignalIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.value != null && message.hasOwnProperty("value")) - $root.flyteidl.core.Literal.encode(message.value, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a SignalSetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.SignalSetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.SignalSetRequest} SignalSetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SignalSetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.SignalSetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.SignalIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.value = $root.flyteidl.core.Literal.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SignalSetRequest message. - * @function verify - * @memberof flyteidl.admin.SignalSetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SignalSetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.SignalIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.value != null && message.hasOwnProperty("value")) { - var error = $root.flyteidl.core.Literal.verify(message.value); - if (error) - return "value." + error; - } - return null; - }; - - return SignalSetRequest; - })(); - - admin.SignalSetResponse = (function() { - - /** - * Properties of a SignalSetResponse. - * @memberof flyteidl.admin - * @interface ISignalSetResponse - */ - - /** - * Constructs a new SignalSetResponse. - * @memberof flyteidl.admin - * @classdesc Represents a SignalSetResponse. - * @implements ISignalSetResponse - * @constructor - * @param {flyteidl.admin.ISignalSetResponse=} [properties] Properties to set - */ - function SignalSetResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new SignalSetResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.SignalSetResponse - * @static - * @param {flyteidl.admin.ISignalSetResponse=} [properties] Properties to set - * @returns {flyteidl.admin.SignalSetResponse} SignalSetResponse instance - */ - SignalSetResponse.create = function create(properties) { - return new SignalSetResponse(properties); - }; - - /** - * Encodes the specified SignalSetResponse message. Does not implicitly {@link flyteidl.admin.SignalSetResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.SignalSetResponse - * @static - * @param {flyteidl.admin.ISignalSetResponse} message SignalSetResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SignalSetResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a SignalSetResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.SignalSetResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.SignalSetResponse} SignalSetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SignalSetResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.SignalSetResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SignalSetResponse message. - * @function verify - * @memberof flyteidl.admin.SignalSetResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SignalSetResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return SignalSetResponse; - })(); - - admin.Signal = (function() { - - /** - * Properties of a Signal. - * @memberof flyteidl.admin - * @interface ISignal - * @property {flyteidl.core.ISignalIdentifier|null} [id] Signal id - * @property {flyteidl.core.ILiteralType|null} [type] Signal type - * @property {flyteidl.core.ILiteral|null} [value] Signal value - */ - - /** - * Constructs a new Signal. - * @memberof flyteidl.admin - * @classdesc Represents a Signal. - * @implements ISignal - * @constructor - * @param {flyteidl.admin.ISignal=} [properties] Properties to set - */ - function Signal(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Signal id. - * @member {flyteidl.core.ISignalIdentifier|null|undefined} id - * @memberof flyteidl.admin.Signal - * @instance - */ - Signal.prototype.id = null; - - /** - * Signal type. - * @member {flyteidl.core.ILiteralType|null|undefined} type - * @memberof flyteidl.admin.Signal - * @instance - */ - Signal.prototype.type = null; - - /** - * Signal value. - * @member {flyteidl.core.ILiteral|null|undefined} value - * @memberof flyteidl.admin.Signal - * @instance - */ - Signal.prototype.value = null; - - /** - * Creates a new Signal instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Signal - * @static - * @param {flyteidl.admin.ISignal=} [properties] Properties to set - * @returns {flyteidl.admin.Signal} Signal instance - */ - Signal.create = function create(properties) { - return new Signal(properties); - }; - - /** - * Encodes the specified Signal message. Does not implicitly {@link flyteidl.admin.Signal.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Signal - * @static - * @param {flyteidl.admin.ISignal} message Signal message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Signal.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.SignalIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.type != null && message.hasOwnProperty("type")) - $root.flyteidl.core.LiteralType.encode(message.type, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.value != null && message.hasOwnProperty("value")) - $root.flyteidl.core.Literal.encode(message.value, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Signal message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Signal - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Signal} Signal - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Signal.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Signal(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.SignalIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.type = $root.flyteidl.core.LiteralType.decode(reader, reader.uint32()); - break; - case 3: - message.value = $root.flyteidl.core.Literal.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Signal message. - * @function verify - * @memberof flyteidl.admin.Signal - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Signal.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.SignalIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.type != null && message.hasOwnProperty("type")) { - var error = $root.flyteidl.core.LiteralType.verify(message.type); - if (error) - return "type." + error; - } - if (message.value != null && message.hasOwnProperty("value")) { - var error = $root.flyteidl.core.Literal.verify(message.value); - if (error) - return "value." + error; - } - return null; - }; - - return Signal; - })(); - - admin.TaskCreateRequest = (function() { - - /** - * Properties of a TaskCreateRequest. - * @memberof flyteidl.admin - * @interface ITaskCreateRequest - * @property {flyteidl.core.IIdentifier|null} [id] TaskCreateRequest id - * @property {flyteidl.admin.ITaskSpec|null} [spec] TaskCreateRequest spec - */ - - /** - * Constructs a new TaskCreateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a TaskCreateRequest. - * @implements ITaskCreateRequest - * @constructor - * @param {flyteidl.admin.ITaskCreateRequest=} [properties] Properties to set - */ - function TaskCreateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskCreateRequest id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.TaskCreateRequest - * @instance - */ - TaskCreateRequest.prototype.id = null; - - /** - * TaskCreateRequest spec. - * @member {flyteidl.admin.ITaskSpec|null|undefined} spec - * @memberof flyteidl.admin.TaskCreateRequest - * @instance - */ - TaskCreateRequest.prototype.spec = null; - - /** - * Creates a new TaskCreateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskCreateRequest - * @static - * @param {flyteidl.admin.ITaskCreateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.TaskCreateRequest} TaskCreateRequest instance - */ - TaskCreateRequest.create = function create(properties) { - return new TaskCreateRequest(properties); - }; - - /** - * Encodes the specified TaskCreateRequest message. Does not implicitly {@link flyteidl.admin.TaskCreateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskCreateRequest - * @static - * @param {flyteidl.admin.ITaskCreateRequest} message TaskCreateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskCreateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.spec != null && message.hasOwnProperty("spec")) - $root.flyteidl.admin.TaskSpec.encode(message.spec, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskCreateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskCreateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskCreateRequest} TaskCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskCreateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskCreateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.spec = $root.flyteidl.admin.TaskSpec.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskCreateRequest message. - * @function verify - * @memberof flyteidl.admin.TaskCreateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskCreateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.spec != null && message.hasOwnProperty("spec")) { - var error = $root.flyteidl.admin.TaskSpec.verify(message.spec); - if (error) - return "spec." + error; - } - return null; - }; - - return TaskCreateRequest; - })(); - - admin.TaskCreateResponse = (function() { - - /** - * Properties of a TaskCreateResponse. - * @memberof flyteidl.admin - * @interface ITaskCreateResponse - */ - - /** - * Constructs a new TaskCreateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a TaskCreateResponse. - * @implements ITaskCreateResponse - * @constructor - * @param {flyteidl.admin.ITaskCreateResponse=} [properties] Properties to set - */ - function TaskCreateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new TaskCreateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskCreateResponse - * @static - * @param {flyteidl.admin.ITaskCreateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.TaskCreateResponse} TaskCreateResponse instance - */ - TaskCreateResponse.create = function create(properties) { - return new TaskCreateResponse(properties); - }; - - /** - * Encodes the specified TaskCreateResponse message. Does not implicitly {@link flyteidl.admin.TaskCreateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskCreateResponse - * @static - * @param {flyteidl.admin.ITaskCreateResponse} message TaskCreateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskCreateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a TaskCreateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskCreateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskCreateResponse} TaskCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskCreateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskCreateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskCreateResponse message. - * @function verify - * @memberof flyteidl.admin.TaskCreateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskCreateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return TaskCreateResponse; - })(); - - admin.Task = (function() { - - /** - * Properties of a Task. - * @memberof flyteidl.admin - * @interface ITask - * @property {flyteidl.core.IIdentifier|null} [id] Task id - * @property {flyteidl.admin.ITaskClosure|null} [closure] Task closure - * @property {string|null} [shortDescription] Task shortDescription - */ - - /** - * Constructs a new Task. - * @memberof flyteidl.admin - * @classdesc Represents a Task. - * @implements ITask - * @constructor - * @param {flyteidl.admin.ITask=} [properties] Properties to set - */ - function Task(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Task id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.Task - * @instance - */ - Task.prototype.id = null; - - /** - * Task closure. - * @member {flyteidl.admin.ITaskClosure|null|undefined} closure - * @memberof flyteidl.admin.Task - * @instance - */ - Task.prototype.closure = null; - - /** - * Task shortDescription. - * @member {string} shortDescription - * @memberof flyteidl.admin.Task - * @instance - */ - Task.prototype.shortDescription = ""; - - /** - * Creates a new Task instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Task - * @static - * @param {flyteidl.admin.ITask=} [properties] Properties to set - * @returns {flyteidl.admin.Task} Task instance - */ - Task.create = function create(properties) { - return new Task(properties); - }; - - /** - * Encodes the specified Task message. Does not implicitly {@link flyteidl.admin.Task.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Task - * @static - * @param {flyteidl.admin.ITask} message Task message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Task.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.closure != null && message.hasOwnProperty("closure")) - $root.flyteidl.admin.TaskClosure.encode(message.closure, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.shortDescription != null && message.hasOwnProperty("shortDescription")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.shortDescription); - return writer; - }; - - /** - * Decodes a Task message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Task - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Task} Task - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Task.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Task(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.closure = $root.flyteidl.admin.TaskClosure.decode(reader, reader.uint32()); - break; - case 3: - message.shortDescription = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Task message. - * @function verify - * @memberof flyteidl.admin.Task - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Task.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.closure != null && message.hasOwnProperty("closure")) { - var error = $root.flyteidl.admin.TaskClosure.verify(message.closure); - if (error) - return "closure." + error; - } - if (message.shortDescription != null && message.hasOwnProperty("shortDescription")) - if (!$util.isString(message.shortDescription)) - return "shortDescription: string expected"; - return null; - }; - - return Task; - })(); - - admin.TaskList = (function() { - - /** - * Properties of a TaskList. - * @memberof flyteidl.admin - * @interface ITaskList - * @property {Array.|null} [tasks] TaskList tasks - * @property {string|null} [token] TaskList token - */ - - /** - * Constructs a new TaskList. - * @memberof flyteidl.admin - * @classdesc Represents a TaskList. - * @implements ITaskList - * @constructor - * @param {flyteidl.admin.ITaskList=} [properties] Properties to set - */ - function TaskList(properties) { - this.tasks = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskList tasks. - * @member {Array.} tasks - * @memberof flyteidl.admin.TaskList - * @instance - */ - TaskList.prototype.tasks = $util.emptyArray; - - /** - * TaskList token. - * @member {string} token - * @memberof flyteidl.admin.TaskList - * @instance - */ - TaskList.prototype.token = ""; - - /** - * Creates a new TaskList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskList - * @static - * @param {flyteidl.admin.ITaskList=} [properties] Properties to set - * @returns {flyteidl.admin.TaskList} TaskList instance - */ - TaskList.create = function create(properties) { - return new TaskList(properties); - }; - - /** - * Encodes the specified TaskList message. Does not implicitly {@link flyteidl.admin.TaskList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskList - * @static - * @param {flyteidl.admin.ITaskList} message TaskList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.tasks != null && message.tasks.length) - for (var i = 0; i < message.tasks.length; ++i) - $root.flyteidl.admin.Task.encode(message.tasks[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a TaskList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskList} TaskList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.tasks && message.tasks.length)) - message.tasks = []; - message.tasks.push($root.flyteidl.admin.Task.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskList message. - * @function verify - * @memberof flyteidl.admin.TaskList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.tasks != null && message.hasOwnProperty("tasks")) { - if (!Array.isArray(message.tasks)) - return "tasks: array expected"; - for (var i = 0; i < message.tasks.length; ++i) { - var error = $root.flyteidl.admin.Task.verify(message.tasks[i]); - if (error) - return "tasks." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return TaskList; - })(); - - admin.TaskSpec = (function() { - - /** - * Properties of a TaskSpec. - * @memberof flyteidl.admin - * @interface ITaskSpec - * @property {flyteidl.core.ITaskTemplate|null} [template] TaskSpec template - * @property {flyteidl.admin.IDescriptionEntity|null} [description] TaskSpec description - */ - - /** - * Constructs a new TaskSpec. - * @memberof flyteidl.admin - * @classdesc Represents a TaskSpec. - * @implements ITaskSpec - * @constructor - * @param {flyteidl.admin.ITaskSpec=} [properties] Properties to set - */ - function TaskSpec(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskSpec template. - * @member {flyteidl.core.ITaskTemplate|null|undefined} template - * @memberof flyteidl.admin.TaskSpec - * @instance - */ - TaskSpec.prototype.template = null; - - /** - * TaskSpec description. - * @member {flyteidl.admin.IDescriptionEntity|null|undefined} description - * @memberof flyteidl.admin.TaskSpec - * @instance - */ - TaskSpec.prototype.description = null; - - /** - * Creates a new TaskSpec instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskSpec - * @static - * @param {flyteidl.admin.ITaskSpec=} [properties] Properties to set - * @returns {flyteidl.admin.TaskSpec} TaskSpec instance - */ - TaskSpec.create = function create(properties) { - return new TaskSpec(properties); - }; - - /** - * Encodes the specified TaskSpec message. Does not implicitly {@link flyteidl.admin.TaskSpec.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskSpec - * @static - * @param {flyteidl.admin.ITaskSpec} message TaskSpec message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskSpec.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.template != null && message.hasOwnProperty("template")) - $root.flyteidl.core.TaskTemplate.encode(message.template, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.description != null && message.hasOwnProperty("description")) - $root.flyteidl.admin.DescriptionEntity.encode(message.description, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskSpec message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskSpec - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskSpec} TaskSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskSpec.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskSpec(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.template = $root.flyteidl.core.TaskTemplate.decode(reader, reader.uint32()); - break; - case 2: - message.description = $root.flyteidl.admin.DescriptionEntity.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskSpec message. - * @function verify - * @memberof flyteidl.admin.TaskSpec - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskSpec.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.template != null && message.hasOwnProperty("template")) { - var error = $root.flyteidl.core.TaskTemplate.verify(message.template); - if (error) - return "template." + error; - } - if (message.description != null && message.hasOwnProperty("description")) { - var error = $root.flyteidl.admin.DescriptionEntity.verify(message.description); - if (error) - return "description." + error; - } - return null; - }; - - return TaskSpec; - })(); - - admin.TaskClosure = (function() { - - /** - * Properties of a TaskClosure. - * @memberof flyteidl.admin - * @interface ITaskClosure - * @property {flyteidl.core.ICompiledTask|null} [compiledTask] TaskClosure compiledTask - * @property {google.protobuf.ITimestamp|null} [createdAt] TaskClosure createdAt - */ - - /** - * Constructs a new TaskClosure. - * @memberof flyteidl.admin - * @classdesc Represents a TaskClosure. - * @implements ITaskClosure - * @constructor - * @param {flyteidl.admin.ITaskClosure=} [properties] Properties to set - */ - function TaskClosure(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskClosure compiledTask. - * @member {flyteidl.core.ICompiledTask|null|undefined} compiledTask - * @memberof flyteidl.admin.TaskClosure - * @instance - */ - TaskClosure.prototype.compiledTask = null; - - /** - * TaskClosure createdAt. - * @member {google.protobuf.ITimestamp|null|undefined} createdAt - * @memberof flyteidl.admin.TaskClosure - * @instance - */ - TaskClosure.prototype.createdAt = null; - - /** - * Creates a new TaskClosure instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskClosure - * @static - * @param {flyteidl.admin.ITaskClosure=} [properties] Properties to set - * @returns {flyteidl.admin.TaskClosure} TaskClosure instance - */ - TaskClosure.create = function create(properties) { - return new TaskClosure(properties); - }; - - /** - * Encodes the specified TaskClosure message. Does not implicitly {@link flyteidl.admin.TaskClosure.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskClosure - * @static - * @param {flyteidl.admin.ITaskClosure} message TaskClosure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskClosure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.compiledTask != null && message.hasOwnProperty("compiledTask")) - $root.flyteidl.core.CompiledTask.encode(message.compiledTask, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.createdAt != null && message.hasOwnProperty("createdAt")) - $root.google.protobuf.Timestamp.encode(message.createdAt, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskClosure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskClosure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskClosure} TaskClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskClosure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskClosure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.compiledTask = $root.flyteidl.core.CompiledTask.decode(reader, reader.uint32()); - break; - case 2: - message.createdAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskClosure message. - * @function verify - * @memberof flyteidl.admin.TaskClosure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskClosure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.compiledTask != null && message.hasOwnProperty("compiledTask")) { - var error = $root.flyteidl.core.CompiledTask.verify(message.compiledTask); - if (error) - return "compiledTask." + error; - } - if (message.createdAt != null && message.hasOwnProperty("createdAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.createdAt); - if (error) - return "createdAt." + error; - } - return null; - }; - - return TaskClosure; - })(); - - admin.TaskExecutionGetRequest = (function() { - - /** - * Properties of a TaskExecutionGetRequest. - * @memberof flyteidl.admin - * @interface ITaskExecutionGetRequest - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [id] TaskExecutionGetRequest id - */ - - /** - * Constructs a new TaskExecutionGetRequest. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionGetRequest. - * @implements ITaskExecutionGetRequest - * @constructor - * @param {flyteidl.admin.ITaskExecutionGetRequest=} [properties] Properties to set - */ - function TaskExecutionGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionGetRequest id. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.TaskExecutionGetRequest - * @instance - */ - TaskExecutionGetRequest.prototype.id = null; - - /** - * Creates a new TaskExecutionGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionGetRequest - * @static - * @param {flyteidl.admin.ITaskExecutionGetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionGetRequest} TaskExecutionGetRequest instance - */ - TaskExecutionGetRequest.create = function create(properties) { - return new TaskExecutionGetRequest(properties); - }; - - /** - * Encodes the specified TaskExecutionGetRequest message. Does not implicitly {@link flyteidl.admin.TaskExecutionGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionGetRequest - * @static - * @param {flyteidl.admin.ITaskExecutionGetRequest} message TaskExecutionGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskExecutionGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionGetRequest} TaskExecutionGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionGetRequest message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return TaskExecutionGetRequest; - })(); - - admin.TaskExecutionListRequest = (function() { - - /** - * Properties of a TaskExecutionListRequest. - * @memberof flyteidl.admin - * @interface ITaskExecutionListRequest - * @property {flyteidl.core.INodeExecutionIdentifier|null} [nodeExecutionId] TaskExecutionListRequest nodeExecutionId - * @property {number|null} [limit] TaskExecutionListRequest limit - * @property {string|null} [token] TaskExecutionListRequest token - * @property {string|null} [filters] TaskExecutionListRequest filters - * @property {flyteidl.admin.ISort|null} [sortBy] TaskExecutionListRequest sortBy - */ - - /** - * Constructs a new TaskExecutionListRequest. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionListRequest. - * @implements ITaskExecutionListRequest - * @constructor - * @param {flyteidl.admin.ITaskExecutionListRequest=} [properties] Properties to set - */ - function TaskExecutionListRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionListRequest nodeExecutionId. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} nodeExecutionId - * @memberof flyteidl.admin.TaskExecutionListRequest - * @instance - */ - TaskExecutionListRequest.prototype.nodeExecutionId = null; - - /** - * TaskExecutionListRequest limit. - * @member {number} limit - * @memberof flyteidl.admin.TaskExecutionListRequest - * @instance - */ - TaskExecutionListRequest.prototype.limit = 0; - - /** - * TaskExecutionListRequest token. - * @member {string} token - * @memberof flyteidl.admin.TaskExecutionListRequest - * @instance - */ - TaskExecutionListRequest.prototype.token = ""; - - /** - * TaskExecutionListRequest filters. - * @member {string} filters - * @memberof flyteidl.admin.TaskExecutionListRequest - * @instance - */ - TaskExecutionListRequest.prototype.filters = ""; - - /** - * TaskExecutionListRequest sortBy. - * @member {flyteidl.admin.ISort|null|undefined} sortBy - * @memberof flyteidl.admin.TaskExecutionListRequest - * @instance - */ - TaskExecutionListRequest.prototype.sortBy = null; - - /** - * Creates a new TaskExecutionListRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionListRequest - * @static - * @param {flyteidl.admin.ITaskExecutionListRequest=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionListRequest} TaskExecutionListRequest instance - */ - TaskExecutionListRequest.create = function create(properties) { - return new TaskExecutionListRequest(properties); - }; - - /** - * Encodes the specified TaskExecutionListRequest message. Does not implicitly {@link flyteidl.admin.TaskExecutionListRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionListRequest - * @static - * @param {flyteidl.admin.ITaskExecutionListRequest} message TaskExecutionListRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionListRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.nodeExecutionId != null && message.hasOwnProperty("nodeExecutionId")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.nodeExecutionId, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.limit != null && message.hasOwnProperty("limit")) - writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.limit); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.token); - if (message.filters != null && message.hasOwnProperty("filters")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.filters); - if (message.sortBy != null && message.hasOwnProperty("sortBy")) - $root.flyteidl.admin.Sort.encode(message.sortBy, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskExecutionListRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionListRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionListRequest} TaskExecutionListRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionListRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionListRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.nodeExecutionId = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.limit = reader.uint32(); - break; - case 3: - message.token = reader.string(); - break; - case 4: - message.filters = reader.string(); - break; - case 5: - message.sortBy = $root.flyteidl.admin.Sort.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionListRequest message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionListRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionListRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.nodeExecutionId != null && message.hasOwnProperty("nodeExecutionId")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.nodeExecutionId); - if (error) - return "nodeExecutionId." + error; - } - if (message.limit != null && message.hasOwnProperty("limit")) - if (!$util.isInteger(message.limit)) - return "limit: integer expected"; - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - if (message.filters != null && message.hasOwnProperty("filters")) - if (!$util.isString(message.filters)) - return "filters: string expected"; - if (message.sortBy != null && message.hasOwnProperty("sortBy")) { - var error = $root.flyteidl.admin.Sort.verify(message.sortBy); - if (error) - return "sortBy." + error; - } - return null; - }; - - return TaskExecutionListRequest; - })(); - - admin.TaskExecution = (function() { - - /** - * Properties of a TaskExecution. - * @memberof flyteidl.admin - * @interface ITaskExecution - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [id] TaskExecution id - * @property {string|null} [inputUri] TaskExecution inputUri - * @property {flyteidl.admin.ITaskExecutionClosure|null} [closure] TaskExecution closure - * @property {boolean|null} [isParent] TaskExecution isParent - */ - - /** - * Constructs a new TaskExecution. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecution. - * @implements ITaskExecution - * @constructor - * @param {flyteidl.admin.ITaskExecution=} [properties] Properties to set - */ - function TaskExecution(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecution id. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.TaskExecution - * @instance - */ - TaskExecution.prototype.id = null; - - /** - * TaskExecution inputUri. - * @member {string} inputUri - * @memberof flyteidl.admin.TaskExecution - * @instance - */ - TaskExecution.prototype.inputUri = ""; - - /** - * TaskExecution closure. - * @member {flyteidl.admin.ITaskExecutionClosure|null|undefined} closure - * @memberof flyteidl.admin.TaskExecution - * @instance - */ - TaskExecution.prototype.closure = null; - - /** - * TaskExecution isParent. - * @member {boolean} isParent - * @memberof flyteidl.admin.TaskExecution - * @instance - */ - TaskExecution.prototype.isParent = false; - - /** - * Creates a new TaskExecution instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecution - * @static - * @param {flyteidl.admin.ITaskExecution=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecution} TaskExecution instance - */ - TaskExecution.create = function create(properties) { - return new TaskExecution(properties); - }; - - /** - * Encodes the specified TaskExecution message. Does not implicitly {@link flyteidl.admin.TaskExecution.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecution - * @static - * @param {flyteidl.admin.ITaskExecution} message TaskExecution message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecution.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.inputUri != null && message.hasOwnProperty("inputUri")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.inputUri); - if (message.closure != null && message.hasOwnProperty("closure")) - $root.flyteidl.admin.TaskExecutionClosure.encode(message.closure, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.isParent != null && message.hasOwnProperty("isParent")) - writer.uint32(/* id 4, wireType 0 =*/32).bool(message.isParent); - return writer; - }; - - /** - * Decodes a TaskExecution message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecution - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecution} TaskExecution - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecution.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecution(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - case 2: - message.inputUri = reader.string(); - break; - case 3: - message.closure = $root.flyteidl.admin.TaskExecutionClosure.decode(reader, reader.uint32()); - break; - case 4: - message.isParent = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecution message. - * @function verify - * @memberof flyteidl.admin.TaskExecution - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecution.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.inputUri != null && message.hasOwnProperty("inputUri")) - if (!$util.isString(message.inputUri)) - return "inputUri: string expected"; - if (message.closure != null && message.hasOwnProperty("closure")) { - var error = $root.flyteidl.admin.TaskExecutionClosure.verify(message.closure); - if (error) - return "closure." + error; - } - if (message.isParent != null && message.hasOwnProperty("isParent")) - if (typeof message.isParent !== "boolean") - return "isParent: boolean expected"; - return null; - }; - - return TaskExecution; - })(); - - admin.TaskExecutionList = (function() { - - /** - * Properties of a TaskExecutionList. - * @memberof flyteidl.admin - * @interface ITaskExecutionList - * @property {Array.|null} [taskExecutions] TaskExecutionList taskExecutions - * @property {string|null} [token] TaskExecutionList token - */ - - /** - * Constructs a new TaskExecutionList. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionList. - * @implements ITaskExecutionList - * @constructor - * @param {flyteidl.admin.ITaskExecutionList=} [properties] Properties to set - */ - function TaskExecutionList(properties) { - this.taskExecutions = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionList taskExecutions. - * @member {Array.} taskExecutions - * @memberof flyteidl.admin.TaskExecutionList - * @instance - */ - TaskExecutionList.prototype.taskExecutions = $util.emptyArray; - - /** - * TaskExecutionList token. - * @member {string} token - * @memberof flyteidl.admin.TaskExecutionList - * @instance - */ - TaskExecutionList.prototype.token = ""; - - /** - * Creates a new TaskExecutionList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionList - * @static - * @param {flyteidl.admin.ITaskExecutionList=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionList} TaskExecutionList instance - */ - TaskExecutionList.create = function create(properties) { - return new TaskExecutionList(properties); - }; - - /** - * Encodes the specified TaskExecutionList message. Does not implicitly {@link flyteidl.admin.TaskExecutionList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionList - * @static - * @param {flyteidl.admin.ITaskExecutionList} message TaskExecutionList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskExecutions != null && message.taskExecutions.length) - for (var i = 0; i < message.taskExecutions.length; ++i) - $root.flyteidl.admin.TaskExecution.encode(message.taskExecutions[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a TaskExecutionList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionList} TaskExecutionList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.taskExecutions && message.taskExecutions.length)) - message.taskExecutions = []; - message.taskExecutions.push($root.flyteidl.admin.TaskExecution.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionList message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskExecutions != null && message.hasOwnProperty("taskExecutions")) { - if (!Array.isArray(message.taskExecutions)) - return "taskExecutions: array expected"; - for (var i = 0; i < message.taskExecutions.length; ++i) { - var error = $root.flyteidl.admin.TaskExecution.verify(message.taskExecutions[i]); - if (error) - return "taskExecutions." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return TaskExecutionList; - })(); - - admin.TaskExecutionClosure = (function() { - - /** - * Properties of a TaskExecutionClosure. - * @memberof flyteidl.admin - * @interface ITaskExecutionClosure - * @property {string|null} [outputUri] TaskExecutionClosure outputUri - * @property {flyteidl.core.IExecutionError|null} [error] TaskExecutionClosure error - * @property {flyteidl.core.ILiteralMap|null} [outputData] TaskExecutionClosure outputData - * @property {flyteidl.core.TaskExecution.Phase|null} [phase] TaskExecutionClosure phase - * @property {Array.|null} [logs] TaskExecutionClosure logs - * @property {google.protobuf.ITimestamp|null} [startedAt] TaskExecutionClosure startedAt - * @property {google.protobuf.IDuration|null} [duration] TaskExecutionClosure duration - * @property {google.protobuf.ITimestamp|null} [createdAt] TaskExecutionClosure createdAt - * @property {google.protobuf.ITimestamp|null} [updatedAt] TaskExecutionClosure updatedAt - * @property {google.protobuf.IStruct|null} [customInfo] TaskExecutionClosure customInfo - * @property {string|null} [reason] TaskExecutionClosure reason - * @property {string|null} [taskType] TaskExecutionClosure taskType - * @property {flyteidl.event.ITaskExecutionMetadata|null} [metadata] TaskExecutionClosure metadata - * @property {number|null} [eventVersion] TaskExecutionClosure eventVersion - * @property {Array.|null} [reasons] TaskExecutionClosure reasons - */ - - /** - * Constructs a new TaskExecutionClosure. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionClosure. - * @implements ITaskExecutionClosure - * @constructor - * @param {flyteidl.admin.ITaskExecutionClosure=} [properties] Properties to set - */ - function TaskExecutionClosure(properties) { - this.logs = []; - this.reasons = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionClosure outputUri. - * @member {string} outputUri - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.outputUri = ""; - - /** - * TaskExecutionClosure error. - * @member {flyteidl.core.IExecutionError|null|undefined} error - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.error = null; - - /** - * TaskExecutionClosure outputData. - * @member {flyteidl.core.ILiteralMap|null|undefined} outputData - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.outputData = null; - - /** - * TaskExecutionClosure phase. - * @member {flyteidl.core.TaskExecution.Phase} phase - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.phase = 0; - - /** - * TaskExecutionClosure logs. - * @member {Array.} logs - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.logs = $util.emptyArray; - - /** - * TaskExecutionClosure startedAt. - * @member {google.protobuf.ITimestamp|null|undefined} startedAt - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.startedAt = null; - - /** - * TaskExecutionClosure duration. - * @member {google.protobuf.IDuration|null|undefined} duration - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.duration = null; - - /** - * TaskExecutionClosure createdAt. - * @member {google.protobuf.ITimestamp|null|undefined} createdAt - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.createdAt = null; - - /** - * TaskExecutionClosure updatedAt. - * @member {google.protobuf.ITimestamp|null|undefined} updatedAt - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.updatedAt = null; - - /** - * TaskExecutionClosure customInfo. - * @member {google.protobuf.IStruct|null|undefined} customInfo - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.customInfo = null; - - /** - * TaskExecutionClosure reason. - * @member {string} reason - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.reason = ""; - - /** - * TaskExecutionClosure taskType. - * @member {string} taskType - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.taskType = ""; - - /** - * TaskExecutionClosure metadata. - * @member {flyteidl.event.ITaskExecutionMetadata|null|undefined} metadata - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.metadata = null; - - /** - * TaskExecutionClosure eventVersion. - * @member {number} eventVersion - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.eventVersion = 0; - - /** - * TaskExecutionClosure reasons. - * @member {Array.} reasons - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - TaskExecutionClosure.prototype.reasons = $util.emptyArray; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * TaskExecutionClosure outputResult. - * @member {"outputUri"|"error"|"outputData"|undefined} outputResult - * @memberof flyteidl.admin.TaskExecutionClosure - * @instance - */ - Object.defineProperty(TaskExecutionClosure.prototype, "outputResult", { - get: $util.oneOfGetter($oneOfFields = ["outputUri", "error", "outputData"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new TaskExecutionClosure instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionClosure - * @static - * @param {flyteidl.admin.ITaskExecutionClosure=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionClosure} TaskExecutionClosure instance - */ - TaskExecutionClosure.create = function create(properties) { - return new TaskExecutionClosure(properties); - }; - - /** - * Encodes the specified TaskExecutionClosure message. Does not implicitly {@link flyteidl.admin.TaskExecutionClosure.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionClosure - * @static - * @param {flyteidl.admin.ITaskExecutionClosure} message TaskExecutionClosure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionClosure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.outputUri != null && message.hasOwnProperty("outputUri")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.outputUri); - if (message.error != null && message.hasOwnProperty("error")) - $root.flyteidl.core.ExecutionError.encode(message.error, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.phase != null && message.hasOwnProperty("phase")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.phase); - if (message.logs != null && message.logs.length) - for (var i = 0; i < message.logs.length; ++i) - $root.flyteidl.core.TaskLog.encode(message.logs[i], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.startedAt != null && message.hasOwnProperty("startedAt")) - $root.google.protobuf.Timestamp.encode(message.startedAt, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.duration != null && message.hasOwnProperty("duration")) - $root.google.protobuf.Duration.encode(message.duration, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.createdAt != null && message.hasOwnProperty("createdAt")) - $root.google.protobuf.Timestamp.encode(message.createdAt, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.updatedAt != null && message.hasOwnProperty("updatedAt")) - $root.google.protobuf.Timestamp.encode(message.updatedAt, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.customInfo != null && message.hasOwnProperty("customInfo")) - $root.google.protobuf.Struct.encode(message.customInfo, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.reason != null && message.hasOwnProperty("reason")) - writer.uint32(/* id 10, wireType 2 =*/82).string(message.reason); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 11, wireType 2 =*/90).string(message.taskType); - if (message.outputData != null && message.hasOwnProperty("outputData")) - $root.flyteidl.core.LiteralMap.encode(message.outputData, writer.uint32(/* id 12, wireType 2 =*/98).fork()).ldelim(); - if (message.metadata != null && message.hasOwnProperty("metadata")) - $root.flyteidl.event.TaskExecutionMetadata.encode(message.metadata, writer.uint32(/* id 16, wireType 2 =*/130).fork()).ldelim(); - if (message.eventVersion != null && message.hasOwnProperty("eventVersion")) - writer.uint32(/* id 17, wireType 0 =*/136).int32(message.eventVersion); - if (message.reasons != null && message.reasons.length) - for (var i = 0; i < message.reasons.length; ++i) - $root.flyteidl.admin.Reason.encode(message.reasons[i], writer.uint32(/* id 18, wireType 2 =*/146).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskExecutionClosure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionClosure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionClosure} TaskExecutionClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionClosure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionClosure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.outputUri = reader.string(); - break; - case 2: - message.error = $root.flyteidl.core.ExecutionError.decode(reader, reader.uint32()); - break; - case 12: - message.outputData = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 3: - message.phase = reader.int32(); - break; - case 4: - if (!(message.logs && message.logs.length)) - message.logs = []; - message.logs.push($root.flyteidl.core.TaskLog.decode(reader, reader.uint32())); - break; - case 5: - message.startedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 6: - message.duration = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - case 7: - message.createdAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 8: - message.updatedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 9: - message.customInfo = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - case 10: - message.reason = reader.string(); - break; - case 11: - message.taskType = reader.string(); - break; - case 16: - message.metadata = $root.flyteidl.event.TaskExecutionMetadata.decode(reader, reader.uint32()); - break; - case 17: - message.eventVersion = reader.int32(); - break; - case 18: - if (!(message.reasons && message.reasons.length)) - message.reasons = []; - message.reasons.push($root.flyteidl.admin.Reason.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionClosure message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionClosure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionClosure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.outputUri != null && message.hasOwnProperty("outputUri")) { - properties.outputResult = 1; - if (!$util.isString(message.outputUri)) - return "outputUri: string expected"; - } - if (message.error != null && message.hasOwnProperty("error")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.ExecutionError.verify(message.error); - if (error) - return "error." + error; - } - } - if (message.outputData != null && message.hasOwnProperty("outputData")) { - if (properties.outputResult === 1) - return "outputResult: multiple values"; - properties.outputResult = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.outputData); - if (error) - return "outputData." + error; - } - } - if (message.phase != null && message.hasOwnProperty("phase")) - switch (message.phase) { - default: - return "phase: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.logs != null && message.hasOwnProperty("logs")) { - if (!Array.isArray(message.logs)) - return "logs: array expected"; - for (var i = 0; i < message.logs.length; ++i) { - var error = $root.flyteidl.core.TaskLog.verify(message.logs[i]); - if (error) - return "logs." + error; - } - } - if (message.startedAt != null && message.hasOwnProperty("startedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.startedAt); - if (error) - return "startedAt." + error; - } - if (message.duration != null && message.hasOwnProperty("duration")) { - var error = $root.google.protobuf.Duration.verify(message.duration); - if (error) - return "duration." + error; - } - if (message.createdAt != null && message.hasOwnProperty("createdAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.createdAt); - if (error) - return "createdAt." + error; - } - if (message.updatedAt != null && message.hasOwnProperty("updatedAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.updatedAt); - if (error) - return "updatedAt." + error; - } - if (message.customInfo != null && message.hasOwnProperty("customInfo")) { - var error = $root.google.protobuf.Struct.verify(message.customInfo); - if (error) - return "customInfo." + error; - } - if (message.reason != null && message.hasOwnProperty("reason")) - if (!$util.isString(message.reason)) - return "reason: string expected"; - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.metadata != null && message.hasOwnProperty("metadata")) { - var error = $root.flyteidl.event.TaskExecutionMetadata.verify(message.metadata); - if (error) - return "metadata." + error; - } - if (message.eventVersion != null && message.hasOwnProperty("eventVersion")) - if (!$util.isInteger(message.eventVersion)) - return "eventVersion: integer expected"; - if (message.reasons != null && message.hasOwnProperty("reasons")) { - if (!Array.isArray(message.reasons)) - return "reasons: array expected"; - for (var i = 0; i < message.reasons.length; ++i) { - var error = $root.flyteidl.admin.Reason.verify(message.reasons[i]); - if (error) - return "reasons." + error; - } - } - return null; - }; - - return TaskExecutionClosure; - })(); - - admin.Reason = (function() { - - /** - * Properties of a Reason. - * @memberof flyteidl.admin - * @interface IReason - * @property {google.protobuf.ITimestamp|null} [occurredAt] Reason occurredAt - * @property {string|null} [message] Reason message - */ - - /** - * Constructs a new Reason. - * @memberof flyteidl.admin - * @classdesc Represents a Reason. - * @implements IReason - * @constructor - * @param {flyteidl.admin.IReason=} [properties] Properties to set - */ - function Reason(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Reason occurredAt. - * @member {google.protobuf.ITimestamp|null|undefined} occurredAt - * @memberof flyteidl.admin.Reason - * @instance - */ - Reason.prototype.occurredAt = null; - - /** - * Reason message. - * @member {string} message - * @memberof flyteidl.admin.Reason - * @instance - */ - Reason.prototype.message = ""; - - /** - * Creates a new Reason instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Reason - * @static - * @param {flyteidl.admin.IReason=} [properties] Properties to set - * @returns {flyteidl.admin.Reason} Reason instance - */ - Reason.create = function create(properties) { - return new Reason(properties); - }; - - /** - * Encodes the specified Reason message. Does not implicitly {@link flyteidl.admin.Reason.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Reason - * @static - * @param {flyteidl.admin.IReason} message Reason message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Reason.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) - $root.google.protobuf.Timestamp.encode(message.occurredAt, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.message != null && message.hasOwnProperty("message")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.message); - return writer; - }; - - /** - * Decodes a Reason message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Reason - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Reason} Reason - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Reason.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Reason(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.occurredAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 2: - message.message = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Reason message. - * @function verify - * @memberof flyteidl.admin.Reason - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Reason.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.occurredAt); - if (error) - return "occurredAt." + error; - } - if (message.message != null && message.hasOwnProperty("message")) - if (!$util.isString(message.message)) - return "message: string expected"; - return null; - }; - - return Reason; - })(); - - admin.TaskExecutionGetDataRequest = (function() { - - /** - * Properties of a TaskExecutionGetDataRequest. - * @memberof flyteidl.admin - * @interface ITaskExecutionGetDataRequest - * @property {flyteidl.core.ITaskExecutionIdentifier|null} [id] TaskExecutionGetDataRequest id - */ - - /** - * Constructs a new TaskExecutionGetDataRequest. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionGetDataRequest. - * @implements ITaskExecutionGetDataRequest - * @constructor - * @param {flyteidl.admin.ITaskExecutionGetDataRequest=} [properties] Properties to set - */ - function TaskExecutionGetDataRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionGetDataRequest id. - * @member {flyteidl.core.ITaskExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.TaskExecutionGetDataRequest - * @instance - */ - TaskExecutionGetDataRequest.prototype.id = null; - - /** - * Creates a new TaskExecutionGetDataRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionGetDataRequest - * @static - * @param {flyteidl.admin.ITaskExecutionGetDataRequest=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionGetDataRequest} TaskExecutionGetDataRequest instance - */ - TaskExecutionGetDataRequest.create = function create(properties) { - return new TaskExecutionGetDataRequest(properties); - }; - - /** - * Encodes the specified TaskExecutionGetDataRequest message. Does not implicitly {@link flyteidl.admin.TaskExecutionGetDataRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionGetDataRequest - * @static - * @param {flyteidl.admin.ITaskExecutionGetDataRequest} message TaskExecutionGetDataRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionGetDataRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.TaskExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskExecutionGetDataRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionGetDataRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionGetDataRequest} TaskExecutionGetDataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionGetDataRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionGetDataRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.TaskExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionGetDataRequest message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionGetDataRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionGetDataRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.TaskExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return TaskExecutionGetDataRequest; - })(); - - admin.TaskExecutionGetDataResponse = (function() { - - /** - * Properties of a TaskExecutionGetDataResponse. - * @memberof flyteidl.admin - * @interface ITaskExecutionGetDataResponse - * @property {flyteidl.admin.IUrlBlob|null} [inputs] TaskExecutionGetDataResponse inputs - * @property {flyteidl.admin.IUrlBlob|null} [outputs] TaskExecutionGetDataResponse outputs - * @property {flyteidl.core.ILiteralMap|null} [fullInputs] TaskExecutionGetDataResponse fullInputs - * @property {flyteidl.core.ILiteralMap|null} [fullOutputs] TaskExecutionGetDataResponse fullOutputs - * @property {flyteidl.admin.IFlyteURLs|null} [flyteUrls] TaskExecutionGetDataResponse flyteUrls - */ - - /** - * Constructs a new TaskExecutionGetDataResponse. - * @memberof flyteidl.admin - * @classdesc Represents a TaskExecutionGetDataResponse. - * @implements ITaskExecutionGetDataResponse - * @constructor - * @param {flyteidl.admin.ITaskExecutionGetDataResponse=} [properties] Properties to set - */ - function TaskExecutionGetDataResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskExecutionGetDataResponse inputs. - * @member {flyteidl.admin.IUrlBlob|null|undefined} inputs - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @instance - */ - TaskExecutionGetDataResponse.prototype.inputs = null; - - /** - * TaskExecutionGetDataResponse outputs. - * @member {flyteidl.admin.IUrlBlob|null|undefined} outputs - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @instance - */ - TaskExecutionGetDataResponse.prototype.outputs = null; - - /** - * TaskExecutionGetDataResponse fullInputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} fullInputs - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @instance - */ - TaskExecutionGetDataResponse.prototype.fullInputs = null; - - /** - * TaskExecutionGetDataResponse fullOutputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} fullOutputs - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @instance - */ - TaskExecutionGetDataResponse.prototype.fullOutputs = null; - - /** - * TaskExecutionGetDataResponse flyteUrls. - * @member {flyteidl.admin.IFlyteURLs|null|undefined} flyteUrls - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @instance - */ - TaskExecutionGetDataResponse.prototype.flyteUrls = null; - - /** - * Creates a new TaskExecutionGetDataResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @static - * @param {flyteidl.admin.ITaskExecutionGetDataResponse=} [properties] Properties to set - * @returns {flyteidl.admin.TaskExecutionGetDataResponse} TaskExecutionGetDataResponse instance - */ - TaskExecutionGetDataResponse.create = function create(properties) { - return new TaskExecutionGetDataResponse(properties); - }; - - /** - * Encodes the specified TaskExecutionGetDataResponse message. Does not implicitly {@link flyteidl.admin.TaskExecutionGetDataResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @static - * @param {flyteidl.admin.ITaskExecutionGetDataResponse} message TaskExecutionGetDataResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskExecutionGetDataResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - $root.flyteidl.admin.UrlBlob.encode(message.inputs, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.outputs != null && message.hasOwnProperty("outputs")) - $root.flyteidl.admin.UrlBlob.encode(message.outputs, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.fullInputs != null && message.hasOwnProperty("fullInputs")) - $root.flyteidl.core.LiteralMap.encode(message.fullInputs, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.fullOutputs != null && message.hasOwnProperty("fullOutputs")) - $root.flyteidl.core.LiteralMap.encode(message.fullOutputs, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.flyteUrls != null && message.hasOwnProperty("flyteUrls")) - $root.flyteidl.admin.FlyteURLs.encode(message.flyteUrls, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskExecutionGetDataResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.TaskExecutionGetDataResponse} TaskExecutionGetDataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskExecutionGetDataResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.TaskExecutionGetDataResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.inputs = $root.flyteidl.admin.UrlBlob.decode(reader, reader.uint32()); - break; - case 2: - message.outputs = $root.flyteidl.admin.UrlBlob.decode(reader, reader.uint32()); - break; - case 3: - message.fullInputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 4: - message.fullOutputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 5: - message.flyteUrls = $root.flyteidl.admin.FlyteURLs.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskExecutionGetDataResponse message. - * @function verify - * @memberof flyteidl.admin.TaskExecutionGetDataResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskExecutionGetDataResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.inputs != null && message.hasOwnProperty("inputs")) { - var error = $root.flyteidl.admin.UrlBlob.verify(message.inputs); - if (error) - return "inputs." + error; - } - if (message.outputs != null && message.hasOwnProperty("outputs")) { - var error = $root.flyteidl.admin.UrlBlob.verify(message.outputs); - if (error) - return "outputs." + error; - } - if (message.fullInputs != null && message.hasOwnProperty("fullInputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.fullInputs); - if (error) - return "fullInputs." + error; - } - if (message.fullOutputs != null && message.hasOwnProperty("fullOutputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.fullOutputs); - if (error) - return "fullOutputs." + error; - } - if (message.flyteUrls != null && message.hasOwnProperty("flyteUrls")) { - var error = $root.flyteidl.admin.FlyteURLs.verify(message.flyteUrls); - if (error) - return "flyteUrls." + error; - } - return null; - }; - - return TaskExecutionGetDataResponse; - })(); - - admin.GetVersionResponse = (function() { - - /** - * Properties of a GetVersionResponse. - * @memberof flyteidl.admin - * @interface IGetVersionResponse - * @property {flyteidl.admin.IVersion|null} [controlPlaneVersion] GetVersionResponse controlPlaneVersion - */ - - /** - * Constructs a new GetVersionResponse. - * @memberof flyteidl.admin - * @classdesc Represents a GetVersionResponse. - * @implements IGetVersionResponse - * @constructor - * @param {flyteidl.admin.IGetVersionResponse=} [properties] Properties to set - */ - function GetVersionResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetVersionResponse controlPlaneVersion. - * @member {flyteidl.admin.IVersion|null|undefined} controlPlaneVersion - * @memberof flyteidl.admin.GetVersionResponse - * @instance - */ - GetVersionResponse.prototype.controlPlaneVersion = null; - - /** - * Creates a new GetVersionResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetVersionResponse - * @static - * @param {flyteidl.admin.IGetVersionResponse=} [properties] Properties to set - * @returns {flyteidl.admin.GetVersionResponse} GetVersionResponse instance - */ - GetVersionResponse.create = function create(properties) { - return new GetVersionResponse(properties); - }; - - /** - * Encodes the specified GetVersionResponse message. Does not implicitly {@link flyteidl.admin.GetVersionResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetVersionResponse - * @static - * @param {flyteidl.admin.IGetVersionResponse} message GetVersionResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetVersionResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.controlPlaneVersion != null && message.hasOwnProperty("controlPlaneVersion")) - $root.flyteidl.admin.Version.encode(message.controlPlaneVersion, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GetVersionResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetVersionResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetVersionResponse} GetVersionResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetVersionResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetVersionResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.controlPlaneVersion = $root.flyteidl.admin.Version.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetVersionResponse message. - * @function verify - * @memberof flyteidl.admin.GetVersionResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetVersionResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.controlPlaneVersion != null && message.hasOwnProperty("controlPlaneVersion")) { - var error = $root.flyteidl.admin.Version.verify(message.controlPlaneVersion); - if (error) - return "controlPlaneVersion." + error; - } - return null; - }; - - return GetVersionResponse; - })(); - - admin.Version = (function() { - - /** - * Properties of a Version. - * @memberof flyteidl.admin - * @interface IVersion - * @property {string|null} [Build] Version Build - * @property {string|null} [Version] Version Version - * @property {string|null} [BuildTime] Version BuildTime - */ - - /** - * Constructs a new Version. - * @memberof flyteidl.admin - * @classdesc Represents a Version. - * @implements IVersion - * @constructor - * @param {flyteidl.admin.IVersion=} [properties] Properties to set - */ - function Version(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Version Build. - * @member {string} Build - * @memberof flyteidl.admin.Version - * @instance - */ - Version.prototype.Build = ""; - - /** - * Version Version. - * @member {string} Version - * @memberof flyteidl.admin.Version - * @instance - */ - Version.prototype.Version = ""; - - /** - * Version BuildTime. - * @member {string} BuildTime - * @memberof flyteidl.admin.Version - * @instance - */ - Version.prototype.BuildTime = ""; - - /** - * Creates a new Version instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Version - * @static - * @param {flyteidl.admin.IVersion=} [properties] Properties to set - * @returns {flyteidl.admin.Version} Version instance - */ - Version.create = function create(properties) { - return new Version(properties); - }; - - /** - * Encodes the specified Version message. Does not implicitly {@link flyteidl.admin.Version.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Version - * @static - * @param {flyteidl.admin.IVersion} message Version message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Version.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.Build != null && message.hasOwnProperty("Build")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.Build); - if (message.Version != null && message.hasOwnProperty("Version")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.Version); - if (message.BuildTime != null && message.hasOwnProperty("BuildTime")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.BuildTime); - return writer; - }; - - /** - * Decodes a Version message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Version - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Version} Version - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Version.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Version(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.Build = reader.string(); - break; - case 2: - message.Version = reader.string(); - break; - case 3: - message.BuildTime = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Version message. - * @function verify - * @memberof flyteidl.admin.Version - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Version.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.Build != null && message.hasOwnProperty("Build")) - if (!$util.isString(message.Build)) - return "Build: string expected"; - if (message.Version != null && message.hasOwnProperty("Version")) - if (!$util.isString(message.Version)) - return "Version: string expected"; - if (message.BuildTime != null && message.hasOwnProperty("BuildTime")) - if (!$util.isString(message.BuildTime)) - return "BuildTime: string expected"; - return null; - }; - - return Version; - })(); - - admin.GetVersionRequest = (function() { - - /** - * Properties of a GetVersionRequest. - * @memberof flyteidl.admin - * @interface IGetVersionRequest - */ - - /** - * Constructs a new GetVersionRequest. - * @memberof flyteidl.admin - * @classdesc Represents a GetVersionRequest. - * @implements IGetVersionRequest - * @constructor - * @param {flyteidl.admin.IGetVersionRequest=} [properties] Properties to set - */ - function GetVersionRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new GetVersionRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetVersionRequest - * @static - * @param {flyteidl.admin.IGetVersionRequest=} [properties] Properties to set - * @returns {flyteidl.admin.GetVersionRequest} GetVersionRequest instance - */ - GetVersionRequest.create = function create(properties) { - return new GetVersionRequest(properties); - }; - - /** - * Encodes the specified GetVersionRequest message. Does not implicitly {@link flyteidl.admin.GetVersionRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetVersionRequest - * @static - * @param {flyteidl.admin.IGetVersionRequest} message GetVersionRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetVersionRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a GetVersionRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetVersionRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetVersionRequest} GetVersionRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetVersionRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetVersionRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetVersionRequest message. - * @function verify - * @memberof flyteidl.admin.GetVersionRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetVersionRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return GetVersionRequest; - })(); - - admin.WorkflowCreateRequest = (function() { - - /** - * Properties of a WorkflowCreateRequest. - * @memberof flyteidl.admin - * @interface IWorkflowCreateRequest - * @property {flyteidl.core.IIdentifier|null} [id] WorkflowCreateRequest id - * @property {flyteidl.admin.IWorkflowSpec|null} [spec] WorkflowCreateRequest spec - */ - - /** - * Constructs a new WorkflowCreateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowCreateRequest. - * @implements IWorkflowCreateRequest - * @constructor - * @param {flyteidl.admin.IWorkflowCreateRequest=} [properties] Properties to set - */ - function WorkflowCreateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowCreateRequest id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.WorkflowCreateRequest - * @instance - */ - WorkflowCreateRequest.prototype.id = null; - - /** - * WorkflowCreateRequest spec. - * @member {flyteidl.admin.IWorkflowSpec|null|undefined} spec - * @memberof flyteidl.admin.WorkflowCreateRequest - * @instance - */ - WorkflowCreateRequest.prototype.spec = null; - - /** - * Creates a new WorkflowCreateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowCreateRequest - * @static - * @param {flyteidl.admin.IWorkflowCreateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowCreateRequest} WorkflowCreateRequest instance - */ - WorkflowCreateRequest.create = function create(properties) { - return new WorkflowCreateRequest(properties); - }; - - /** - * Encodes the specified WorkflowCreateRequest message. Does not implicitly {@link flyteidl.admin.WorkflowCreateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowCreateRequest - * @static - * @param {flyteidl.admin.IWorkflowCreateRequest} message WorkflowCreateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowCreateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.spec != null && message.hasOwnProperty("spec")) - $root.flyteidl.admin.WorkflowSpec.encode(message.spec, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowCreateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowCreateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowCreateRequest} WorkflowCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowCreateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowCreateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.spec = $root.flyteidl.admin.WorkflowSpec.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowCreateRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowCreateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowCreateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.spec != null && message.hasOwnProperty("spec")) { - var error = $root.flyteidl.admin.WorkflowSpec.verify(message.spec); - if (error) - return "spec." + error; - } - return null; - }; - - return WorkflowCreateRequest; - })(); - - admin.WorkflowCreateResponse = (function() { - - /** - * Properties of a WorkflowCreateResponse. - * @memberof flyteidl.admin - * @interface IWorkflowCreateResponse - */ - - /** - * Constructs a new WorkflowCreateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowCreateResponse. - * @implements IWorkflowCreateResponse - * @constructor - * @param {flyteidl.admin.IWorkflowCreateResponse=} [properties] Properties to set - */ - function WorkflowCreateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new WorkflowCreateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowCreateResponse - * @static - * @param {flyteidl.admin.IWorkflowCreateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowCreateResponse} WorkflowCreateResponse instance - */ - WorkflowCreateResponse.create = function create(properties) { - return new WorkflowCreateResponse(properties); - }; - - /** - * Encodes the specified WorkflowCreateResponse message. Does not implicitly {@link flyteidl.admin.WorkflowCreateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowCreateResponse - * @static - * @param {flyteidl.admin.IWorkflowCreateResponse} message WorkflowCreateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowCreateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a WorkflowCreateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowCreateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowCreateResponse} WorkflowCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowCreateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowCreateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowCreateResponse message. - * @function verify - * @memberof flyteidl.admin.WorkflowCreateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowCreateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return WorkflowCreateResponse; - })(); - - admin.Workflow = (function() { - - /** - * Properties of a Workflow. - * @memberof flyteidl.admin - * @interface IWorkflow - * @property {flyteidl.core.IIdentifier|null} [id] Workflow id - * @property {flyteidl.admin.IWorkflowClosure|null} [closure] Workflow closure - * @property {string|null} [shortDescription] Workflow shortDescription - */ - - /** - * Constructs a new Workflow. - * @memberof flyteidl.admin - * @classdesc Represents a Workflow. - * @implements IWorkflow - * @constructor - * @param {flyteidl.admin.IWorkflow=} [properties] Properties to set - */ - function Workflow(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Workflow id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.Workflow - * @instance - */ - Workflow.prototype.id = null; - - /** - * Workflow closure. - * @member {flyteidl.admin.IWorkflowClosure|null|undefined} closure - * @memberof flyteidl.admin.Workflow - * @instance - */ - Workflow.prototype.closure = null; - - /** - * Workflow shortDescription. - * @member {string} shortDescription - * @memberof flyteidl.admin.Workflow - * @instance - */ - Workflow.prototype.shortDescription = ""; - - /** - * Creates a new Workflow instance using the specified properties. - * @function create - * @memberof flyteidl.admin.Workflow - * @static - * @param {flyteidl.admin.IWorkflow=} [properties] Properties to set - * @returns {flyteidl.admin.Workflow} Workflow instance - */ - Workflow.create = function create(properties) { - return new Workflow(properties); - }; - - /** - * Encodes the specified Workflow message. Does not implicitly {@link flyteidl.admin.Workflow.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.Workflow - * @static - * @param {flyteidl.admin.IWorkflow} message Workflow message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Workflow.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.closure != null && message.hasOwnProperty("closure")) - $root.flyteidl.admin.WorkflowClosure.encode(message.closure, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.shortDescription != null && message.hasOwnProperty("shortDescription")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.shortDescription); - return writer; - }; - - /** - * Decodes a Workflow message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.Workflow - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.Workflow} Workflow - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Workflow.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.Workflow(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - case 2: - message.closure = $root.flyteidl.admin.WorkflowClosure.decode(reader, reader.uint32()); - break; - case 3: - message.shortDescription = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Workflow message. - * @function verify - * @memberof flyteidl.admin.Workflow - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Workflow.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - if (message.closure != null && message.hasOwnProperty("closure")) { - var error = $root.flyteidl.admin.WorkflowClosure.verify(message.closure); - if (error) - return "closure." + error; - } - if (message.shortDescription != null && message.hasOwnProperty("shortDescription")) - if (!$util.isString(message.shortDescription)) - return "shortDescription: string expected"; - return null; - }; - - return Workflow; - })(); - - admin.WorkflowList = (function() { - - /** - * Properties of a WorkflowList. - * @memberof flyteidl.admin - * @interface IWorkflowList - * @property {Array.|null} [workflows] WorkflowList workflows - * @property {string|null} [token] WorkflowList token - */ - - /** - * Constructs a new WorkflowList. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowList. - * @implements IWorkflowList - * @constructor - * @param {flyteidl.admin.IWorkflowList=} [properties] Properties to set - */ - function WorkflowList(properties) { - this.workflows = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowList workflows. - * @member {Array.} workflows - * @memberof flyteidl.admin.WorkflowList - * @instance - */ - WorkflowList.prototype.workflows = $util.emptyArray; - - /** - * WorkflowList token. - * @member {string} token - * @memberof flyteidl.admin.WorkflowList - * @instance - */ - WorkflowList.prototype.token = ""; - - /** - * Creates a new WorkflowList instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowList - * @static - * @param {flyteidl.admin.IWorkflowList=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowList} WorkflowList instance - */ - WorkflowList.create = function create(properties) { - return new WorkflowList(properties); - }; - - /** - * Encodes the specified WorkflowList message. Does not implicitly {@link flyteidl.admin.WorkflowList.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowList - * @static - * @param {flyteidl.admin.IWorkflowList} message WorkflowList message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowList.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.workflows != null && message.workflows.length) - for (var i = 0; i < message.workflows.length; ++i) - $root.flyteidl.admin.Workflow.encode(message.workflows[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.token != null && message.hasOwnProperty("token")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.token); - return writer; - }; - - /** - * Decodes a WorkflowList message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowList - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowList} WorkflowList - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowList.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowList(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.workflows && message.workflows.length)) - message.workflows = []; - message.workflows.push($root.flyteidl.admin.Workflow.decode(reader, reader.uint32())); - break; - case 2: - message.token = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowList message. - * @function verify - * @memberof flyteidl.admin.WorkflowList - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowList.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.workflows != null && message.hasOwnProperty("workflows")) { - if (!Array.isArray(message.workflows)) - return "workflows: array expected"; - for (var i = 0; i < message.workflows.length; ++i) { - var error = $root.flyteidl.admin.Workflow.verify(message.workflows[i]); - if (error) - return "workflows." + error; - } - } - if (message.token != null && message.hasOwnProperty("token")) - if (!$util.isString(message.token)) - return "token: string expected"; - return null; - }; - - return WorkflowList; - })(); - - admin.WorkflowSpec = (function() { - - /** - * Properties of a WorkflowSpec. - * @memberof flyteidl.admin - * @interface IWorkflowSpec - * @property {flyteidl.core.IWorkflowTemplate|null} [template] WorkflowSpec template - * @property {Array.|null} [subWorkflows] WorkflowSpec subWorkflows - * @property {flyteidl.admin.IDescriptionEntity|null} [description] WorkflowSpec description - */ - - /** - * Constructs a new WorkflowSpec. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowSpec. - * @implements IWorkflowSpec - * @constructor - * @param {flyteidl.admin.IWorkflowSpec=} [properties] Properties to set - */ - function WorkflowSpec(properties) { - this.subWorkflows = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowSpec template. - * @member {flyteidl.core.IWorkflowTemplate|null|undefined} template - * @memberof flyteidl.admin.WorkflowSpec - * @instance - */ - WorkflowSpec.prototype.template = null; - - /** - * WorkflowSpec subWorkflows. - * @member {Array.} subWorkflows - * @memberof flyteidl.admin.WorkflowSpec - * @instance - */ - WorkflowSpec.prototype.subWorkflows = $util.emptyArray; - - /** - * WorkflowSpec description. - * @member {flyteidl.admin.IDescriptionEntity|null|undefined} description - * @memberof flyteidl.admin.WorkflowSpec - * @instance - */ - WorkflowSpec.prototype.description = null; - - /** - * Creates a new WorkflowSpec instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowSpec - * @static - * @param {flyteidl.admin.IWorkflowSpec=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowSpec} WorkflowSpec instance - */ - WorkflowSpec.create = function create(properties) { - return new WorkflowSpec(properties); - }; - - /** - * Encodes the specified WorkflowSpec message. Does not implicitly {@link flyteidl.admin.WorkflowSpec.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowSpec - * @static - * @param {flyteidl.admin.IWorkflowSpec} message WorkflowSpec message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowSpec.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.template != null && message.hasOwnProperty("template")) - $root.flyteidl.core.WorkflowTemplate.encode(message.template, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.subWorkflows != null && message.subWorkflows.length) - for (var i = 0; i < message.subWorkflows.length; ++i) - $root.flyteidl.core.WorkflowTemplate.encode(message.subWorkflows[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.description != null && message.hasOwnProperty("description")) - $root.flyteidl.admin.DescriptionEntity.encode(message.description, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowSpec message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowSpec - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowSpec} WorkflowSpec - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowSpec.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowSpec(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.template = $root.flyteidl.core.WorkflowTemplate.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.subWorkflows && message.subWorkflows.length)) - message.subWorkflows = []; - message.subWorkflows.push($root.flyteidl.core.WorkflowTemplate.decode(reader, reader.uint32())); - break; - case 3: - message.description = $root.flyteidl.admin.DescriptionEntity.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowSpec message. - * @function verify - * @memberof flyteidl.admin.WorkflowSpec - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowSpec.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.template != null && message.hasOwnProperty("template")) { - var error = $root.flyteidl.core.WorkflowTemplate.verify(message.template); - if (error) - return "template." + error; - } - if (message.subWorkflows != null && message.hasOwnProperty("subWorkflows")) { - if (!Array.isArray(message.subWorkflows)) - return "subWorkflows: array expected"; - for (var i = 0; i < message.subWorkflows.length; ++i) { - var error = $root.flyteidl.core.WorkflowTemplate.verify(message.subWorkflows[i]); - if (error) - return "subWorkflows." + error; - } - } - if (message.description != null && message.hasOwnProperty("description")) { - var error = $root.flyteidl.admin.DescriptionEntity.verify(message.description); - if (error) - return "description." + error; - } - return null; - }; - - return WorkflowSpec; - })(); - - admin.WorkflowClosure = (function() { - - /** - * Properties of a WorkflowClosure. - * @memberof flyteidl.admin - * @interface IWorkflowClosure - * @property {flyteidl.core.ICompiledWorkflowClosure|null} [compiledWorkflow] WorkflowClosure compiledWorkflow - * @property {google.protobuf.ITimestamp|null} [createdAt] WorkflowClosure createdAt - */ - - /** - * Constructs a new WorkflowClosure. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowClosure. - * @implements IWorkflowClosure - * @constructor - * @param {flyteidl.admin.IWorkflowClosure=} [properties] Properties to set - */ - function WorkflowClosure(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowClosure compiledWorkflow. - * @member {flyteidl.core.ICompiledWorkflowClosure|null|undefined} compiledWorkflow - * @memberof flyteidl.admin.WorkflowClosure - * @instance - */ - WorkflowClosure.prototype.compiledWorkflow = null; - - /** - * WorkflowClosure createdAt. - * @member {google.protobuf.ITimestamp|null|undefined} createdAt - * @memberof flyteidl.admin.WorkflowClosure - * @instance - */ - WorkflowClosure.prototype.createdAt = null; - - /** - * Creates a new WorkflowClosure instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowClosure - * @static - * @param {flyteidl.admin.IWorkflowClosure=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowClosure} WorkflowClosure instance - */ - WorkflowClosure.create = function create(properties) { - return new WorkflowClosure(properties); - }; - - /** - * Encodes the specified WorkflowClosure message. Does not implicitly {@link flyteidl.admin.WorkflowClosure.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowClosure - * @static - * @param {flyteidl.admin.IWorkflowClosure} message WorkflowClosure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowClosure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.compiledWorkflow != null && message.hasOwnProperty("compiledWorkflow")) - $root.flyteidl.core.CompiledWorkflowClosure.encode(message.compiledWorkflow, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.createdAt != null && message.hasOwnProperty("createdAt")) - $root.google.protobuf.Timestamp.encode(message.createdAt, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowClosure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowClosure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowClosure} WorkflowClosure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowClosure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowClosure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.compiledWorkflow = $root.flyteidl.core.CompiledWorkflowClosure.decode(reader, reader.uint32()); - break; - case 2: - message.createdAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowClosure message. - * @function verify - * @memberof flyteidl.admin.WorkflowClosure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowClosure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.compiledWorkflow != null && message.hasOwnProperty("compiledWorkflow")) { - var error = $root.flyteidl.core.CompiledWorkflowClosure.verify(message.compiledWorkflow); - if (error) - return "compiledWorkflow." + error; - } - if (message.createdAt != null && message.hasOwnProperty("createdAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.createdAt); - if (error) - return "createdAt." + error; - } - return null; - }; - - return WorkflowClosure; - })(); - - admin.WorkflowErrorExistsDifferentStructure = (function() { - - /** - * Properties of a WorkflowErrorExistsDifferentStructure. - * @memberof flyteidl.admin - * @interface IWorkflowErrorExistsDifferentStructure - * @property {flyteidl.core.IIdentifier|null} [id] WorkflowErrorExistsDifferentStructure id - */ - - /** - * Constructs a new WorkflowErrorExistsDifferentStructure. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowErrorExistsDifferentStructure. - * @implements IWorkflowErrorExistsDifferentStructure - * @constructor - * @param {flyteidl.admin.IWorkflowErrorExistsDifferentStructure=} [properties] Properties to set - */ - function WorkflowErrorExistsDifferentStructure(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowErrorExistsDifferentStructure id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.WorkflowErrorExistsDifferentStructure - * @instance - */ - WorkflowErrorExistsDifferentStructure.prototype.id = null; - - /** - * Creates a new WorkflowErrorExistsDifferentStructure instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowErrorExistsDifferentStructure - * @static - * @param {flyteidl.admin.IWorkflowErrorExistsDifferentStructure=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowErrorExistsDifferentStructure} WorkflowErrorExistsDifferentStructure instance - */ - WorkflowErrorExistsDifferentStructure.create = function create(properties) { - return new WorkflowErrorExistsDifferentStructure(properties); - }; - - /** - * Encodes the specified WorkflowErrorExistsDifferentStructure message. Does not implicitly {@link flyteidl.admin.WorkflowErrorExistsDifferentStructure.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowErrorExistsDifferentStructure - * @static - * @param {flyteidl.admin.IWorkflowErrorExistsDifferentStructure} message WorkflowErrorExistsDifferentStructure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowErrorExistsDifferentStructure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowErrorExistsDifferentStructure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowErrorExistsDifferentStructure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowErrorExistsDifferentStructure} WorkflowErrorExistsDifferentStructure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowErrorExistsDifferentStructure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowErrorExistsDifferentStructure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowErrorExistsDifferentStructure message. - * @function verify - * @memberof flyteidl.admin.WorkflowErrorExistsDifferentStructure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowErrorExistsDifferentStructure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return WorkflowErrorExistsDifferentStructure; - })(); - - admin.WorkflowErrorExistsIdenticalStructure = (function() { - - /** - * Properties of a WorkflowErrorExistsIdenticalStructure. - * @memberof flyteidl.admin - * @interface IWorkflowErrorExistsIdenticalStructure - * @property {flyteidl.core.IIdentifier|null} [id] WorkflowErrorExistsIdenticalStructure id - */ - - /** - * Constructs a new WorkflowErrorExistsIdenticalStructure. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowErrorExistsIdenticalStructure. - * @implements IWorkflowErrorExistsIdenticalStructure - * @constructor - * @param {flyteidl.admin.IWorkflowErrorExistsIdenticalStructure=} [properties] Properties to set - */ - function WorkflowErrorExistsIdenticalStructure(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowErrorExistsIdenticalStructure id. - * @member {flyteidl.core.IIdentifier|null|undefined} id - * @memberof flyteidl.admin.WorkflowErrorExistsIdenticalStructure - * @instance - */ - WorkflowErrorExistsIdenticalStructure.prototype.id = null; - - /** - * Creates a new WorkflowErrorExistsIdenticalStructure instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowErrorExistsIdenticalStructure - * @static - * @param {flyteidl.admin.IWorkflowErrorExistsIdenticalStructure=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowErrorExistsIdenticalStructure} WorkflowErrorExistsIdenticalStructure instance - */ - WorkflowErrorExistsIdenticalStructure.create = function create(properties) { - return new WorkflowErrorExistsIdenticalStructure(properties); - }; - - /** - * Encodes the specified WorkflowErrorExistsIdenticalStructure message. Does not implicitly {@link flyteidl.admin.WorkflowErrorExistsIdenticalStructure.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowErrorExistsIdenticalStructure - * @static - * @param {flyteidl.admin.IWorkflowErrorExistsIdenticalStructure} message WorkflowErrorExistsIdenticalStructure message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowErrorExistsIdenticalStructure.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.Identifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowErrorExistsIdenticalStructure message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowErrorExistsIdenticalStructure - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowErrorExistsIdenticalStructure} WorkflowErrorExistsIdenticalStructure - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowErrorExistsIdenticalStructure.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowErrorExistsIdenticalStructure(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.Identifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowErrorExistsIdenticalStructure message. - * @function verify - * @memberof flyteidl.admin.WorkflowErrorExistsIdenticalStructure - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowErrorExistsIdenticalStructure.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.Identifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return WorkflowErrorExistsIdenticalStructure; - })(); - - admin.CreateWorkflowFailureReason = (function() { - - /** - * Properties of a CreateWorkflowFailureReason. - * @memberof flyteidl.admin - * @interface ICreateWorkflowFailureReason - * @property {flyteidl.admin.IWorkflowErrorExistsDifferentStructure|null} [existsDifferentStructure] CreateWorkflowFailureReason existsDifferentStructure - * @property {flyteidl.admin.IWorkflowErrorExistsIdenticalStructure|null} [existsIdenticalStructure] CreateWorkflowFailureReason existsIdenticalStructure - */ - - /** - * Constructs a new CreateWorkflowFailureReason. - * @memberof flyteidl.admin - * @classdesc Represents a CreateWorkflowFailureReason. - * @implements ICreateWorkflowFailureReason - * @constructor - * @param {flyteidl.admin.ICreateWorkflowFailureReason=} [properties] Properties to set - */ - function CreateWorkflowFailureReason(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateWorkflowFailureReason existsDifferentStructure. - * @member {flyteidl.admin.IWorkflowErrorExistsDifferentStructure|null|undefined} existsDifferentStructure - * @memberof flyteidl.admin.CreateWorkflowFailureReason - * @instance - */ - CreateWorkflowFailureReason.prototype.existsDifferentStructure = null; - - /** - * CreateWorkflowFailureReason existsIdenticalStructure. - * @member {flyteidl.admin.IWorkflowErrorExistsIdenticalStructure|null|undefined} existsIdenticalStructure - * @memberof flyteidl.admin.CreateWorkflowFailureReason - * @instance - */ - CreateWorkflowFailureReason.prototype.existsIdenticalStructure = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * CreateWorkflowFailureReason reason. - * @member {"existsDifferentStructure"|"existsIdenticalStructure"|undefined} reason - * @memberof flyteidl.admin.CreateWorkflowFailureReason - * @instance - */ - Object.defineProperty(CreateWorkflowFailureReason.prototype, "reason", { - get: $util.oneOfGetter($oneOfFields = ["existsDifferentStructure", "existsIdenticalStructure"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new CreateWorkflowFailureReason instance using the specified properties. - * @function create - * @memberof flyteidl.admin.CreateWorkflowFailureReason - * @static - * @param {flyteidl.admin.ICreateWorkflowFailureReason=} [properties] Properties to set - * @returns {flyteidl.admin.CreateWorkflowFailureReason} CreateWorkflowFailureReason instance - */ - CreateWorkflowFailureReason.create = function create(properties) { - return new CreateWorkflowFailureReason(properties); - }; - - /** - * Encodes the specified CreateWorkflowFailureReason message. Does not implicitly {@link flyteidl.admin.CreateWorkflowFailureReason.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.CreateWorkflowFailureReason - * @static - * @param {flyteidl.admin.ICreateWorkflowFailureReason} message CreateWorkflowFailureReason message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateWorkflowFailureReason.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.existsDifferentStructure != null && message.hasOwnProperty("existsDifferentStructure")) - $root.flyteidl.admin.WorkflowErrorExistsDifferentStructure.encode(message.existsDifferentStructure, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.existsIdenticalStructure != null && message.hasOwnProperty("existsIdenticalStructure")) - $root.flyteidl.admin.WorkflowErrorExistsIdenticalStructure.encode(message.existsIdenticalStructure, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CreateWorkflowFailureReason message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.CreateWorkflowFailureReason - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.CreateWorkflowFailureReason} CreateWorkflowFailureReason - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateWorkflowFailureReason.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.CreateWorkflowFailureReason(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.existsDifferentStructure = $root.flyteidl.admin.WorkflowErrorExistsDifferentStructure.decode(reader, reader.uint32()); - break; - case 2: - message.existsIdenticalStructure = $root.flyteidl.admin.WorkflowErrorExistsIdenticalStructure.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateWorkflowFailureReason message. - * @function verify - * @memberof flyteidl.admin.CreateWorkflowFailureReason - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateWorkflowFailureReason.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.existsDifferentStructure != null && message.hasOwnProperty("existsDifferentStructure")) { - properties.reason = 1; - { - var error = $root.flyteidl.admin.WorkflowErrorExistsDifferentStructure.verify(message.existsDifferentStructure); - if (error) - return "existsDifferentStructure." + error; - } - } - if (message.existsIdenticalStructure != null && message.hasOwnProperty("existsIdenticalStructure")) { - if (properties.reason === 1) - return "reason: multiple values"; - properties.reason = 1; - { - var error = $root.flyteidl.admin.WorkflowErrorExistsIdenticalStructure.verify(message.existsIdenticalStructure); - if (error) - return "existsIdenticalStructure." + error; - } - } - return null; - }; - - return CreateWorkflowFailureReason; - })(); - - admin.GetDynamicNodeWorkflowRequest = (function() { - - /** - * Properties of a GetDynamicNodeWorkflowRequest. - * @memberof flyteidl.admin - * @interface IGetDynamicNodeWorkflowRequest - * @property {flyteidl.core.INodeExecutionIdentifier|null} [id] GetDynamicNodeWorkflowRequest id - */ - - /** - * Constructs a new GetDynamicNodeWorkflowRequest. - * @memberof flyteidl.admin - * @classdesc Represents a GetDynamicNodeWorkflowRequest. - * @implements IGetDynamicNodeWorkflowRequest - * @constructor - * @param {flyteidl.admin.IGetDynamicNodeWorkflowRequest=} [properties] Properties to set - */ - function GetDynamicNodeWorkflowRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetDynamicNodeWorkflowRequest id. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} id - * @memberof flyteidl.admin.GetDynamicNodeWorkflowRequest - * @instance - */ - GetDynamicNodeWorkflowRequest.prototype.id = null; - - /** - * Creates a new GetDynamicNodeWorkflowRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.GetDynamicNodeWorkflowRequest - * @static - * @param {flyteidl.admin.IGetDynamicNodeWorkflowRequest=} [properties] Properties to set - * @returns {flyteidl.admin.GetDynamicNodeWorkflowRequest} GetDynamicNodeWorkflowRequest instance - */ - GetDynamicNodeWorkflowRequest.create = function create(properties) { - return new GetDynamicNodeWorkflowRequest(properties); - }; - - /** - * Encodes the specified GetDynamicNodeWorkflowRequest message. Does not implicitly {@link flyteidl.admin.GetDynamicNodeWorkflowRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.GetDynamicNodeWorkflowRequest - * @static - * @param {flyteidl.admin.IGetDynamicNodeWorkflowRequest} message GetDynamicNodeWorkflowRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetDynamicNodeWorkflowRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.id, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GetDynamicNodeWorkflowRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.GetDynamicNodeWorkflowRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.GetDynamicNodeWorkflowRequest} GetDynamicNodeWorkflowRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetDynamicNodeWorkflowRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.GetDynamicNodeWorkflowRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.id = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetDynamicNodeWorkflowRequest message. - * @function verify - * @memberof flyteidl.admin.GetDynamicNodeWorkflowRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetDynamicNodeWorkflowRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.id != null && message.hasOwnProperty("id")) { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.id); - if (error) - return "id." + error; - } - return null; - }; - - return GetDynamicNodeWorkflowRequest; - })(); - - admin.DynamicNodeWorkflowResponse = (function() { - - /** - * Properties of a DynamicNodeWorkflowResponse. - * @memberof flyteidl.admin - * @interface IDynamicNodeWorkflowResponse - * @property {flyteidl.core.ICompiledWorkflowClosure|null} [compiledWorkflow] DynamicNodeWorkflowResponse compiledWorkflow - */ - - /** - * Constructs a new DynamicNodeWorkflowResponse. - * @memberof flyteidl.admin - * @classdesc Represents a DynamicNodeWorkflowResponse. - * @implements IDynamicNodeWorkflowResponse - * @constructor - * @param {flyteidl.admin.IDynamicNodeWorkflowResponse=} [properties] Properties to set - */ - function DynamicNodeWorkflowResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DynamicNodeWorkflowResponse compiledWorkflow. - * @member {flyteidl.core.ICompiledWorkflowClosure|null|undefined} compiledWorkflow - * @memberof flyteidl.admin.DynamicNodeWorkflowResponse - * @instance - */ - DynamicNodeWorkflowResponse.prototype.compiledWorkflow = null; - - /** - * Creates a new DynamicNodeWorkflowResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.DynamicNodeWorkflowResponse - * @static - * @param {flyteidl.admin.IDynamicNodeWorkflowResponse=} [properties] Properties to set - * @returns {flyteidl.admin.DynamicNodeWorkflowResponse} DynamicNodeWorkflowResponse instance - */ - DynamicNodeWorkflowResponse.create = function create(properties) { - return new DynamicNodeWorkflowResponse(properties); - }; - - /** - * Encodes the specified DynamicNodeWorkflowResponse message. Does not implicitly {@link flyteidl.admin.DynamicNodeWorkflowResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.DynamicNodeWorkflowResponse - * @static - * @param {flyteidl.admin.IDynamicNodeWorkflowResponse} message DynamicNodeWorkflowResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DynamicNodeWorkflowResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.compiledWorkflow != null && message.hasOwnProperty("compiledWorkflow")) - $root.flyteidl.core.CompiledWorkflowClosure.encode(message.compiledWorkflow, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a DynamicNodeWorkflowResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.DynamicNodeWorkflowResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.DynamicNodeWorkflowResponse} DynamicNodeWorkflowResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DynamicNodeWorkflowResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.DynamicNodeWorkflowResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.compiledWorkflow = $root.flyteidl.core.CompiledWorkflowClosure.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DynamicNodeWorkflowResponse message. - * @function verify - * @memberof flyteidl.admin.DynamicNodeWorkflowResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DynamicNodeWorkflowResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.compiledWorkflow != null && message.hasOwnProperty("compiledWorkflow")) { - var error = $root.flyteidl.core.CompiledWorkflowClosure.verify(message.compiledWorkflow); - if (error) - return "compiledWorkflow." + error; - } - return null; - }; - - return DynamicNodeWorkflowResponse; - })(); - - admin.WorkflowAttributes = (function() { - - /** - * Properties of a WorkflowAttributes. - * @memberof flyteidl.admin - * @interface IWorkflowAttributes - * @property {string|null} [project] WorkflowAttributes project - * @property {string|null} [domain] WorkflowAttributes domain - * @property {string|null} [workflow] WorkflowAttributes workflow - * @property {flyteidl.admin.IMatchingAttributes|null} [matchingAttributes] WorkflowAttributes matchingAttributes - * @property {string|null} [org] WorkflowAttributes org - */ - - /** - * Constructs a new WorkflowAttributes. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowAttributes. - * @implements IWorkflowAttributes - * @constructor - * @param {flyteidl.admin.IWorkflowAttributes=} [properties] Properties to set - */ - function WorkflowAttributes(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowAttributes project. - * @member {string} project - * @memberof flyteidl.admin.WorkflowAttributes - * @instance - */ - WorkflowAttributes.prototype.project = ""; - - /** - * WorkflowAttributes domain. - * @member {string} domain - * @memberof flyteidl.admin.WorkflowAttributes - * @instance - */ - WorkflowAttributes.prototype.domain = ""; - - /** - * WorkflowAttributes workflow. - * @member {string} workflow - * @memberof flyteidl.admin.WorkflowAttributes - * @instance - */ - WorkflowAttributes.prototype.workflow = ""; - - /** - * WorkflowAttributes matchingAttributes. - * @member {flyteidl.admin.IMatchingAttributes|null|undefined} matchingAttributes - * @memberof flyteidl.admin.WorkflowAttributes - * @instance - */ - WorkflowAttributes.prototype.matchingAttributes = null; - - /** - * WorkflowAttributes org. - * @member {string} org - * @memberof flyteidl.admin.WorkflowAttributes - * @instance - */ - WorkflowAttributes.prototype.org = ""; - - /** - * Creates a new WorkflowAttributes instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowAttributes - * @static - * @param {flyteidl.admin.IWorkflowAttributes=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowAttributes} WorkflowAttributes instance - */ - WorkflowAttributes.create = function create(properties) { - return new WorkflowAttributes(properties); - }; - - /** - * Encodes the specified WorkflowAttributes message. Does not implicitly {@link flyteidl.admin.WorkflowAttributes.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowAttributes - * @static - * @param {flyteidl.admin.IWorkflowAttributes} message WorkflowAttributes message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowAttributes.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.workflow != null && message.hasOwnProperty("workflow")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.workflow); - if (message.matchingAttributes != null && message.hasOwnProperty("matchingAttributes")) - $root.flyteidl.admin.MatchingAttributes.encode(message.matchingAttributes, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.org); - return writer; - }; - - /** - * Decodes a WorkflowAttributes message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowAttributes - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowAttributes} WorkflowAttributes - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowAttributes.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowAttributes(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.workflow = reader.string(); - break; - case 4: - message.matchingAttributes = $root.flyteidl.admin.MatchingAttributes.decode(reader, reader.uint32()); - break; - case 5: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowAttributes message. - * @function verify - * @memberof flyteidl.admin.WorkflowAttributes - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowAttributes.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.workflow != null && message.hasOwnProperty("workflow")) - if (!$util.isString(message.workflow)) - return "workflow: string expected"; - if (message.matchingAttributes != null && message.hasOwnProperty("matchingAttributes")) { - var error = $root.flyteidl.admin.MatchingAttributes.verify(message.matchingAttributes); - if (error) - return "matchingAttributes." + error; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return WorkflowAttributes; - })(); - - admin.WorkflowAttributesUpdateRequest = (function() { - - /** - * Properties of a WorkflowAttributesUpdateRequest. - * @memberof flyteidl.admin - * @interface IWorkflowAttributesUpdateRequest - * @property {flyteidl.admin.IWorkflowAttributes|null} [attributes] WorkflowAttributesUpdateRequest attributes - */ - - /** - * Constructs a new WorkflowAttributesUpdateRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowAttributesUpdateRequest. - * @implements IWorkflowAttributesUpdateRequest - * @constructor - * @param {flyteidl.admin.IWorkflowAttributesUpdateRequest=} [properties] Properties to set - */ - function WorkflowAttributesUpdateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowAttributesUpdateRequest attributes. - * @member {flyteidl.admin.IWorkflowAttributes|null|undefined} attributes - * @memberof flyteidl.admin.WorkflowAttributesUpdateRequest - * @instance - */ - WorkflowAttributesUpdateRequest.prototype.attributes = null; - - /** - * Creates a new WorkflowAttributesUpdateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowAttributesUpdateRequest - * @static - * @param {flyteidl.admin.IWorkflowAttributesUpdateRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowAttributesUpdateRequest} WorkflowAttributesUpdateRequest instance - */ - WorkflowAttributesUpdateRequest.create = function create(properties) { - return new WorkflowAttributesUpdateRequest(properties); - }; - - /** - * Encodes the specified WorkflowAttributesUpdateRequest message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesUpdateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowAttributesUpdateRequest - * @static - * @param {flyteidl.admin.IWorkflowAttributesUpdateRequest} message WorkflowAttributesUpdateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowAttributesUpdateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.attributes != null && message.hasOwnProperty("attributes")) - $root.flyteidl.admin.WorkflowAttributes.encode(message.attributes, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowAttributesUpdateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowAttributesUpdateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowAttributesUpdateRequest} WorkflowAttributesUpdateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowAttributesUpdateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowAttributesUpdateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.attributes = $root.flyteidl.admin.WorkflowAttributes.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowAttributesUpdateRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowAttributesUpdateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowAttributesUpdateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.attributes != null && message.hasOwnProperty("attributes")) { - var error = $root.flyteidl.admin.WorkflowAttributes.verify(message.attributes); - if (error) - return "attributes." + error; - } - return null; - }; - - return WorkflowAttributesUpdateRequest; - })(); - - admin.WorkflowAttributesUpdateResponse = (function() { - - /** - * Properties of a WorkflowAttributesUpdateResponse. - * @memberof flyteidl.admin - * @interface IWorkflowAttributesUpdateResponse - */ - - /** - * Constructs a new WorkflowAttributesUpdateResponse. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowAttributesUpdateResponse. - * @implements IWorkflowAttributesUpdateResponse - * @constructor - * @param {flyteidl.admin.IWorkflowAttributesUpdateResponse=} [properties] Properties to set - */ - function WorkflowAttributesUpdateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new WorkflowAttributesUpdateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowAttributesUpdateResponse - * @static - * @param {flyteidl.admin.IWorkflowAttributesUpdateResponse=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowAttributesUpdateResponse} WorkflowAttributesUpdateResponse instance - */ - WorkflowAttributesUpdateResponse.create = function create(properties) { - return new WorkflowAttributesUpdateResponse(properties); - }; - - /** - * Encodes the specified WorkflowAttributesUpdateResponse message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesUpdateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowAttributesUpdateResponse - * @static - * @param {flyteidl.admin.IWorkflowAttributesUpdateResponse} message WorkflowAttributesUpdateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowAttributesUpdateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a WorkflowAttributesUpdateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowAttributesUpdateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowAttributesUpdateResponse} WorkflowAttributesUpdateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowAttributesUpdateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowAttributesUpdateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowAttributesUpdateResponse message. - * @function verify - * @memberof flyteidl.admin.WorkflowAttributesUpdateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowAttributesUpdateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return WorkflowAttributesUpdateResponse; - })(); - - admin.WorkflowAttributesGetRequest = (function() { - - /** - * Properties of a WorkflowAttributesGetRequest. - * @memberof flyteidl.admin - * @interface IWorkflowAttributesGetRequest - * @property {string|null} [project] WorkflowAttributesGetRequest project - * @property {string|null} [domain] WorkflowAttributesGetRequest domain - * @property {string|null} [workflow] WorkflowAttributesGetRequest workflow - * @property {flyteidl.admin.MatchableResource|null} [resourceType] WorkflowAttributesGetRequest resourceType - * @property {string|null} [org] WorkflowAttributesGetRequest org - */ - - /** - * Constructs a new WorkflowAttributesGetRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowAttributesGetRequest. - * @implements IWorkflowAttributesGetRequest - * @constructor - * @param {flyteidl.admin.IWorkflowAttributesGetRequest=} [properties] Properties to set - */ - function WorkflowAttributesGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowAttributesGetRequest project. - * @member {string} project - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @instance - */ - WorkflowAttributesGetRequest.prototype.project = ""; - - /** - * WorkflowAttributesGetRequest domain. - * @member {string} domain - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @instance - */ - WorkflowAttributesGetRequest.prototype.domain = ""; - - /** - * WorkflowAttributesGetRequest workflow. - * @member {string} workflow - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @instance - */ - WorkflowAttributesGetRequest.prototype.workflow = ""; - - /** - * WorkflowAttributesGetRequest resourceType. - * @member {flyteidl.admin.MatchableResource} resourceType - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @instance - */ - WorkflowAttributesGetRequest.prototype.resourceType = 0; - - /** - * WorkflowAttributesGetRequest org. - * @member {string} org - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @instance - */ - WorkflowAttributesGetRequest.prototype.org = ""; - - /** - * Creates a new WorkflowAttributesGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @static - * @param {flyteidl.admin.IWorkflowAttributesGetRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowAttributesGetRequest} WorkflowAttributesGetRequest instance - */ - WorkflowAttributesGetRequest.create = function create(properties) { - return new WorkflowAttributesGetRequest(properties); - }; - - /** - * Encodes the specified WorkflowAttributesGetRequest message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @static - * @param {flyteidl.admin.IWorkflowAttributesGetRequest} message WorkflowAttributesGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowAttributesGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.workflow != null && message.hasOwnProperty("workflow")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.workflow); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.resourceType); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.org); - return writer; - }; - - /** - * Decodes a WorkflowAttributesGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowAttributesGetRequest} WorkflowAttributesGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowAttributesGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowAttributesGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.workflow = reader.string(); - break; - case 4: - message.resourceType = reader.int32(); - break; - case 5: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowAttributesGetRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowAttributesGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowAttributesGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.workflow != null && message.hasOwnProperty("workflow")) - if (!$util.isString(message.workflow)) - return "workflow: string expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return WorkflowAttributesGetRequest; - })(); - - admin.WorkflowAttributesGetResponse = (function() { - - /** - * Properties of a WorkflowAttributesGetResponse. - * @memberof flyteidl.admin - * @interface IWorkflowAttributesGetResponse - * @property {flyteidl.admin.IWorkflowAttributes|null} [attributes] WorkflowAttributesGetResponse attributes - */ - - /** - * Constructs a new WorkflowAttributesGetResponse. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowAttributesGetResponse. - * @implements IWorkflowAttributesGetResponse - * @constructor - * @param {flyteidl.admin.IWorkflowAttributesGetResponse=} [properties] Properties to set - */ - function WorkflowAttributesGetResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowAttributesGetResponse attributes. - * @member {flyteidl.admin.IWorkflowAttributes|null|undefined} attributes - * @memberof flyteidl.admin.WorkflowAttributesGetResponse - * @instance - */ - WorkflowAttributesGetResponse.prototype.attributes = null; - - /** - * Creates a new WorkflowAttributesGetResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowAttributesGetResponse - * @static - * @param {flyteidl.admin.IWorkflowAttributesGetResponse=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowAttributesGetResponse} WorkflowAttributesGetResponse instance - */ - WorkflowAttributesGetResponse.create = function create(properties) { - return new WorkflowAttributesGetResponse(properties); - }; - - /** - * Encodes the specified WorkflowAttributesGetResponse message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesGetResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowAttributesGetResponse - * @static - * @param {flyteidl.admin.IWorkflowAttributesGetResponse} message WorkflowAttributesGetResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowAttributesGetResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.attributes != null && message.hasOwnProperty("attributes")) - $root.flyteidl.admin.WorkflowAttributes.encode(message.attributes, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a WorkflowAttributesGetResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowAttributesGetResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowAttributesGetResponse} WorkflowAttributesGetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowAttributesGetResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowAttributesGetResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.attributes = $root.flyteidl.admin.WorkflowAttributes.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowAttributesGetResponse message. - * @function verify - * @memberof flyteidl.admin.WorkflowAttributesGetResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowAttributesGetResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.attributes != null && message.hasOwnProperty("attributes")) { - var error = $root.flyteidl.admin.WorkflowAttributes.verify(message.attributes); - if (error) - return "attributes." + error; - } - return null; - }; - - return WorkflowAttributesGetResponse; - })(); - - admin.WorkflowAttributesDeleteRequest = (function() { - - /** - * Properties of a WorkflowAttributesDeleteRequest. - * @memberof flyteidl.admin - * @interface IWorkflowAttributesDeleteRequest - * @property {string|null} [project] WorkflowAttributesDeleteRequest project - * @property {string|null} [domain] WorkflowAttributesDeleteRequest domain - * @property {string|null} [workflow] WorkflowAttributesDeleteRequest workflow - * @property {flyteidl.admin.MatchableResource|null} [resourceType] WorkflowAttributesDeleteRequest resourceType - * @property {string|null} [org] WorkflowAttributesDeleteRequest org - */ - - /** - * Constructs a new WorkflowAttributesDeleteRequest. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowAttributesDeleteRequest. - * @implements IWorkflowAttributesDeleteRequest - * @constructor - * @param {flyteidl.admin.IWorkflowAttributesDeleteRequest=} [properties] Properties to set - */ - function WorkflowAttributesDeleteRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * WorkflowAttributesDeleteRequest project. - * @member {string} project - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @instance - */ - WorkflowAttributesDeleteRequest.prototype.project = ""; - - /** - * WorkflowAttributesDeleteRequest domain. - * @member {string} domain - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @instance - */ - WorkflowAttributesDeleteRequest.prototype.domain = ""; - - /** - * WorkflowAttributesDeleteRequest workflow. - * @member {string} workflow - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @instance - */ - WorkflowAttributesDeleteRequest.prototype.workflow = ""; - - /** - * WorkflowAttributesDeleteRequest resourceType. - * @member {flyteidl.admin.MatchableResource} resourceType - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @instance - */ - WorkflowAttributesDeleteRequest.prototype.resourceType = 0; - - /** - * WorkflowAttributesDeleteRequest org. - * @member {string} org - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @instance - */ - WorkflowAttributesDeleteRequest.prototype.org = ""; - - /** - * Creates a new WorkflowAttributesDeleteRequest instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @static - * @param {flyteidl.admin.IWorkflowAttributesDeleteRequest=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowAttributesDeleteRequest} WorkflowAttributesDeleteRequest instance - */ - WorkflowAttributesDeleteRequest.create = function create(properties) { - return new WorkflowAttributesDeleteRequest(properties); - }; - - /** - * Encodes the specified WorkflowAttributesDeleteRequest message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesDeleteRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @static - * @param {flyteidl.admin.IWorkflowAttributesDeleteRequest} message WorkflowAttributesDeleteRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowAttributesDeleteRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.workflow != null && message.hasOwnProperty("workflow")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.workflow); - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.resourceType); - if (message.org != null && message.hasOwnProperty("org")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.org); - return writer; - }; - - /** - * Decodes a WorkflowAttributesDeleteRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowAttributesDeleteRequest} WorkflowAttributesDeleteRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowAttributesDeleteRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowAttributesDeleteRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.workflow = reader.string(); - break; - case 4: - message.resourceType = reader.int32(); - break; - case 5: - message.org = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowAttributesDeleteRequest message. - * @function verify - * @memberof flyteidl.admin.WorkflowAttributesDeleteRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowAttributesDeleteRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.workflow != null && message.hasOwnProperty("workflow")) - if (!$util.isString(message.workflow)) - return "workflow: string expected"; - if (message.resourceType != null && message.hasOwnProperty("resourceType")) - switch (message.resourceType) { - default: - return "resourceType: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - break; - } - if (message.org != null && message.hasOwnProperty("org")) - if (!$util.isString(message.org)) - return "org: string expected"; - return null; - }; - - return WorkflowAttributesDeleteRequest; - })(); - - admin.WorkflowAttributesDeleteResponse = (function() { - - /** - * Properties of a WorkflowAttributesDeleteResponse. - * @memberof flyteidl.admin - * @interface IWorkflowAttributesDeleteResponse - */ - - /** - * Constructs a new WorkflowAttributesDeleteResponse. - * @memberof flyteidl.admin - * @classdesc Represents a WorkflowAttributesDeleteResponse. - * @implements IWorkflowAttributesDeleteResponse - * @constructor - * @param {flyteidl.admin.IWorkflowAttributesDeleteResponse=} [properties] Properties to set - */ - function WorkflowAttributesDeleteResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new WorkflowAttributesDeleteResponse instance using the specified properties. - * @function create - * @memberof flyteidl.admin.WorkflowAttributesDeleteResponse - * @static - * @param {flyteidl.admin.IWorkflowAttributesDeleteResponse=} [properties] Properties to set - * @returns {flyteidl.admin.WorkflowAttributesDeleteResponse} WorkflowAttributesDeleteResponse instance - */ - WorkflowAttributesDeleteResponse.create = function create(properties) { - return new WorkflowAttributesDeleteResponse(properties); - }; - - /** - * Encodes the specified WorkflowAttributesDeleteResponse message. Does not implicitly {@link flyteidl.admin.WorkflowAttributesDeleteResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.admin.WorkflowAttributesDeleteResponse - * @static - * @param {flyteidl.admin.IWorkflowAttributesDeleteResponse} message WorkflowAttributesDeleteResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - WorkflowAttributesDeleteResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a WorkflowAttributesDeleteResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.admin.WorkflowAttributesDeleteResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.admin.WorkflowAttributesDeleteResponse} WorkflowAttributesDeleteResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - WorkflowAttributesDeleteResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.admin.WorkflowAttributesDeleteResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a WorkflowAttributesDeleteResponse message. - * @function verify - * @memberof flyteidl.admin.WorkflowAttributesDeleteResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - WorkflowAttributesDeleteResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return WorkflowAttributesDeleteResponse; - })(); - - return admin; - })(); - - flyteidl.service = (function() { - - /** - * Namespace service. - * @memberof flyteidl - * @namespace - */ - var service = {}; - - service.AdminService = (function() { - - /** - * Constructs a new AdminService service. - * @memberof flyteidl.service - * @classdesc Represents an AdminService - * @extends $protobuf.rpc.Service - * @constructor - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - */ - function AdminService(rpcImpl, requestDelimited, responseDelimited) { - $protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited); - } - - (AdminService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = AdminService; - - /** - * Creates new AdminService service using the specified rpc implementation. - * @function create - * @memberof flyteidl.service.AdminService - * @static - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - * @returns {AdminService} RPC service. Useful where requests and/or responses are streamed. - */ - AdminService.create = function create(rpcImpl, requestDelimited, responseDelimited) { - return new this(rpcImpl, requestDelimited, responseDelimited); - }; - - /** - * Callback as used by {@link flyteidl.service.AdminService#createTask}. - * @memberof flyteidl.service.AdminService - * @typedef CreateTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.TaskCreateResponse} [response] TaskCreateResponse - */ - - /** - * Calls CreateTask. - * @function createTask - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskCreateRequest} request TaskCreateRequest message or plain object - * @param {flyteidl.service.AdminService.CreateTaskCallback} callback Node-style callback called with the error, if any, and TaskCreateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.createTask = function createTask(request, callback) { - return this.rpcCall(createTask, $root.flyteidl.admin.TaskCreateRequest, $root.flyteidl.admin.TaskCreateResponse, request, callback); - }, "name", { value: "CreateTask" }); - - /** - * Calls CreateTask. - * @function createTask - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskCreateRequest} request TaskCreateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getTask}. - * @memberof flyteidl.service.AdminService - * @typedef GetTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.Task} [response] Task - */ - - /** - * Calls GetTask. - * @function getTask - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IObjectGetRequest} request ObjectGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetTaskCallback} callback Node-style callback called with the error, if any, and Task - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getTask = function getTask(request, callback) { - return this.rpcCall(getTask, $root.flyteidl.admin.ObjectGetRequest, $root.flyteidl.admin.Task, request, callback); - }, "name", { value: "GetTask" }); - - /** - * Calls GetTask. - * @function getTask - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IObjectGetRequest} request ObjectGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listTaskIds}. - * @memberof flyteidl.service.AdminService - * @typedef ListTaskIdsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NamedEntityIdentifierList} [response] NamedEntityIdentifierList - */ - - /** - * Calls ListTaskIds. - * @function listTaskIds - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityIdentifierListRequest} request NamedEntityIdentifierListRequest message or plain object - * @param {flyteidl.service.AdminService.ListTaskIdsCallback} callback Node-style callback called with the error, if any, and NamedEntityIdentifierList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listTaskIds = function listTaskIds(request, callback) { - return this.rpcCall(listTaskIds, $root.flyteidl.admin.NamedEntityIdentifierListRequest, $root.flyteidl.admin.NamedEntityIdentifierList, request, callback); - }, "name", { value: "ListTaskIds" }); - - /** - * Calls ListTaskIds. - * @function listTaskIds - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityIdentifierListRequest} request NamedEntityIdentifierListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listTasks}. - * @memberof flyteidl.service.AdminService - * @typedef ListTasksCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.TaskList} [response] TaskList - */ - - /** - * Calls ListTasks. - * @function listTasks - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IResourceListRequest} request ResourceListRequest message or plain object - * @param {flyteidl.service.AdminService.ListTasksCallback} callback Node-style callback called with the error, if any, and TaskList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listTasks = function listTasks(request, callback) { - return this.rpcCall(listTasks, $root.flyteidl.admin.ResourceListRequest, $root.flyteidl.admin.TaskList, request, callback); - }, "name", { value: "ListTasks" }); - - /** - * Calls ListTasks. - * @function listTasks - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IResourceListRequest} request ResourceListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#createWorkflow}. - * @memberof flyteidl.service.AdminService - * @typedef CreateWorkflowCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowCreateResponse} [response] WorkflowCreateResponse - */ - - /** - * Calls CreateWorkflow. - * @function createWorkflow - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowCreateRequest} request WorkflowCreateRequest message or plain object - * @param {flyteidl.service.AdminService.CreateWorkflowCallback} callback Node-style callback called with the error, if any, and WorkflowCreateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.createWorkflow = function createWorkflow(request, callback) { - return this.rpcCall(createWorkflow, $root.flyteidl.admin.WorkflowCreateRequest, $root.flyteidl.admin.WorkflowCreateResponse, request, callback); - }, "name", { value: "CreateWorkflow" }); - - /** - * Calls CreateWorkflow. - * @function createWorkflow - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowCreateRequest} request WorkflowCreateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getWorkflow}. - * @memberof flyteidl.service.AdminService - * @typedef GetWorkflowCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.Workflow} [response] Workflow - */ - - /** - * Calls GetWorkflow. - * @function getWorkflow - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IObjectGetRequest} request ObjectGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetWorkflowCallback} callback Node-style callback called with the error, if any, and Workflow - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getWorkflow = function getWorkflow(request, callback) { - return this.rpcCall(getWorkflow, $root.flyteidl.admin.ObjectGetRequest, $root.flyteidl.admin.Workflow, request, callback); - }, "name", { value: "GetWorkflow" }); - - /** - * Calls GetWorkflow. - * @function getWorkflow - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IObjectGetRequest} request ObjectGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getDynamicNodeWorkflow}. - * @memberof flyteidl.service.AdminService - * @typedef GetDynamicNodeWorkflowCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.DynamicNodeWorkflowResponse} [response] DynamicNodeWorkflowResponse - */ - - /** - * Calls GetDynamicNodeWorkflow. - * @function getDynamicNodeWorkflow - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IGetDynamicNodeWorkflowRequest} request GetDynamicNodeWorkflowRequest message or plain object - * @param {flyteidl.service.AdminService.GetDynamicNodeWorkflowCallback} callback Node-style callback called with the error, if any, and DynamicNodeWorkflowResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getDynamicNodeWorkflow = function getDynamicNodeWorkflow(request, callback) { - return this.rpcCall(getDynamicNodeWorkflow, $root.flyteidl.admin.GetDynamicNodeWorkflowRequest, $root.flyteidl.admin.DynamicNodeWorkflowResponse, request, callback); - }, "name", { value: "GetDynamicNodeWorkflow" }); - - /** - * Calls GetDynamicNodeWorkflow. - * @function getDynamicNodeWorkflow - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IGetDynamicNodeWorkflowRequest} request GetDynamicNodeWorkflowRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listWorkflowIds}. - * @memberof flyteidl.service.AdminService - * @typedef ListWorkflowIdsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NamedEntityIdentifierList} [response] NamedEntityIdentifierList - */ - - /** - * Calls ListWorkflowIds. - * @function listWorkflowIds - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityIdentifierListRequest} request NamedEntityIdentifierListRequest message or plain object - * @param {flyteidl.service.AdminService.ListWorkflowIdsCallback} callback Node-style callback called with the error, if any, and NamedEntityIdentifierList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listWorkflowIds = function listWorkflowIds(request, callback) { - return this.rpcCall(listWorkflowIds, $root.flyteidl.admin.NamedEntityIdentifierListRequest, $root.flyteidl.admin.NamedEntityIdentifierList, request, callback); - }, "name", { value: "ListWorkflowIds" }); - - /** - * Calls ListWorkflowIds. - * @function listWorkflowIds - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityIdentifierListRequest} request NamedEntityIdentifierListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listWorkflows}. - * @memberof flyteidl.service.AdminService - * @typedef ListWorkflowsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowList} [response] WorkflowList - */ - - /** - * Calls ListWorkflows. - * @function listWorkflows - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IResourceListRequest} request ResourceListRequest message or plain object - * @param {flyteidl.service.AdminService.ListWorkflowsCallback} callback Node-style callback called with the error, if any, and WorkflowList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listWorkflows = function listWorkflows(request, callback) { - return this.rpcCall(listWorkflows, $root.flyteidl.admin.ResourceListRequest, $root.flyteidl.admin.WorkflowList, request, callback); - }, "name", { value: "ListWorkflows" }); - - /** - * Calls ListWorkflows. - * @function listWorkflows - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IResourceListRequest} request ResourceListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#createLaunchPlan}. - * @memberof flyteidl.service.AdminService - * @typedef CreateLaunchPlanCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.LaunchPlanCreateResponse} [response] LaunchPlanCreateResponse - */ - - /** - * Calls CreateLaunchPlan. - * @function createLaunchPlan - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ILaunchPlanCreateRequest} request LaunchPlanCreateRequest message or plain object - * @param {flyteidl.service.AdminService.CreateLaunchPlanCallback} callback Node-style callback called with the error, if any, and LaunchPlanCreateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.createLaunchPlan = function createLaunchPlan(request, callback) { - return this.rpcCall(createLaunchPlan, $root.flyteidl.admin.LaunchPlanCreateRequest, $root.flyteidl.admin.LaunchPlanCreateResponse, request, callback); - }, "name", { value: "CreateLaunchPlan" }); - - /** - * Calls CreateLaunchPlan. - * @function createLaunchPlan - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ILaunchPlanCreateRequest} request LaunchPlanCreateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getLaunchPlan}. - * @memberof flyteidl.service.AdminService - * @typedef GetLaunchPlanCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.LaunchPlan} [response] LaunchPlan - */ - - /** - * Calls GetLaunchPlan. - * @function getLaunchPlan - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IObjectGetRequest} request ObjectGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetLaunchPlanCallback} callback Node-style callback called with the error, if any, and LaunchPlan - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getLaunchPlan = function getLaunchPlan(request, callback) { - return this.rpcCall(getLaunchPlan, $root.flyteidl.admin.ObjectGetRequest, $root.flyteidl.admin.LaunchPlan, request, callback); - }, "name", { value: "GetLaunchPlan" }); - - /** - * Calls GetLaunchPlan. - * @function getLaunchPlan - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IObjectGetRequest} request ObjectGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getActiveLaunchPlan}. - * @memberof flyteidl.service.AdminService - * @typedef GetActiveLaunchPlanCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.LaunchPlan} [response] LaunchPlan - */ - - /** - * Calls GetActiveLaunchPlan. - * @function getActiveLaunchPlan - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IActiveLaunchPlanRequest} request ActiveLaunchPlanRequest message or plain object - * @param {flyteidl.service.AdminService.GetActiveLaunchPlanCallback} callback Node-style callback called with the error, if any, and LaunchPlan - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getActiveLaunchPlan = function getActiveLaunchPlan(request, callback) { - return this.rpcCall(getActiveLaunchPlan, $root.flyteidl.admin.ActiveLaunchPlanRequest, $root.flyteidl.admin.LaunchPlan, request, callback); - }, "name", { value: "GetActiveLaunchPlan" }); - - /** - * Calls GetActiveLaunchPlan. - * @function getActiveLaunchPlan - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IActiveLaunchPlanRequest} request ActiveLaunchPlanRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listActiveLaunchPlans}. - * @memberof flyteidl.service.AdminService - * @typedef ListActiveLaunchPlansCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.LaunchPlanList} [response] LaunchPlanList - */ - - /** - * Calls ListActiveLaunchPlans. - * @function listActiveLaunchPlans - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IActiveLaunchPlanListRequest} request ActiveLaunchPlanListRequest message or plain object - * @param {flyteidl.service.AdminService.ListActiveLaunchPlansCallback} callback Node-style callback called with the error, if any, and LaunchPlanList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listActiveLaunchPlans = function listActiveLaunchPlans(request, callback) { - return this.rpcCall(listActiveLaunchPlans, $root.flyteidl.admin.ActiveLaunchPlanListRequest, $root.flyteidl.admin.LaunchPlanList, request, callback); - }, "name", { value: "ListActiveLaunchPlans" }); - - /** - * Calls ListActiveLaunchPlans. - * @function listActiveLaunchPlans - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IActiveLaunchPlanListRequest} request ActiveLaunchPlanListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listLaunchPlanIds}. - * @memberof flyteidl.service.AdminService - * @typedef ListLaunchPlanIdsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NamedEntityIdentifierList} [response] NamedEntityIdentifierList - */ - - /** - * Calls ListLaunchPlanIds. - * @function listLaunchPlanIds - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityIdentifierListRequest} request NamedEntityIdentifierListRequest message or plain object - * @param {flyteidl.service.AdminService.ListLaunchPlanIdsCallback} callback Node-style callback called with the error, if any, and NamedEntityIdentifierList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listLaunchPlanIds = function listLaunchPlanIds(request, callback) { - return this.rpcCall(listLaunchPlanIds, $root.flyteidl.admin.NamedEntityIdentifierListRequest, $root.flyteidl.admin.NamedEntityIdentifierList, request, callback); - }, "name", { value: "ListLaunchPlanIds" }); - - /** - * Calls ListLaunchPlanIds. - * @function listLaunchPlanIds - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityIdentifierListRequest} request NamedEntityIdentifierListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listLaunchPlans}. - * @memberof flyteidl.service.AdminService - * @typedef ListLaunchPlansCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.LaunchPlanList} [response] LaunchPlanList - */ - - /** - * Calls ListLaunchPlans. - * @function listLaunchPlans - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IResourceListRequest} request ResourceListRequest message or plain object - * @param {flyteidl.service.AdminService.ListLaunchPlansCallback} callback Node-style callback called with the error, if any, and LaunchPlanList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listLaunchPlans = function listLaunchPlans(request, callback) { - return this.rpcCall(listLaunchPlans, $root.flyteidl.admin.ResourceListRequest, $root.flyteidl.admin.LaunchPlanList, request, callback); - }, "name", { value: "ListLaunchPlans" }); - - /** - * Calls ListLaunchPlans. - * @function listLaunchPlans - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IResourceListRequest} request ResourceListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateLaunchPlan}. - * @memberof flyteidl.service.AdminService - * @typedef UpdateLaunchPlanCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.LaunchPlanUpdateResponse} [response] LaunchPlanUpdateResponse - */ - - /** - * Calls UpdateLaunchPlan. - * @function updateLaunchPlan - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ILaunchPlanUpdateRequest} request LaunchPlanUpdateRequest message or plain object - * @param {flyteidl.service.AdminService.UpdateLaunchPlanCallback} callback Node-style callback called with the error, if any, and LaunchPlanUpdateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.updateLaunchPlan = function updateLaunchPlan(request, callback) { - return this.rpcCall(updateLaunchPlan, $root.flyteidl.admin.LaunchPlanUpdateRequest, $root.flyteidl.admin.LaunchPlanUpdateResponse, request, callback); - }, "name", { value: "UpdateLaunchPlan" }); - - /** - * Calls UpdateLaunchPlan. - * @function updateLaunchPlan - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ILaunchPlanUpdateRequest} request LaunchPlanUpdateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#createExecution}. - * @memberof flyteidl.service.AdminService - * @typedef CreateExecutionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ExecutionCreateResponse} [response] ExecutionCreateResponse - */ - - /** - * Calls CreateExecution. - * @function createExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionCreateRequest} request ExecutionCreateRequest message or plain object - * @param {flyteidl.service.AdminService.CreateExecutionCallback} callback Node-style callback called with the error, if any, and ExecutionCreateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.createExecution = function createExecution(request, callback) { - return this.rpcCall(createExecution, $root.flyteidl.admin.ExecutionCreateRequest, $root.flyteidl.admin.ExecutionCreateResponse, request, callback); - }, "name", { value: "CreateExecution" }); - - /** - * Calls CreateExecution. - * @function createExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionCreateRequest} request ExecutionCreateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#relaunchExecution}. - * @memberof flyteidl.service.AdminService - * @typedef RelaunchExecutionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ExecutionCreateResponse} [response] ExecutionCreateResponse - */ - - /** - * Calls RelaunchExecution. - * @function relaunchExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionRelaunchRequest} request ExecutionRelaunchRequest message or plain object - * @param {flyteidl.service.AdminService.RelaunchExecutionCallback} callback Node-style callback called with the error, if any, and ExecutionCreateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.relaunchExecution = function relaunchExecution(request, callback) { - return this.rpcCall(relaunchExecution, $root.flyteidl.admin.ExecutionRelaunchRequest, $root.flyteidl.admin.ExecutionCreateResponse, request, callback); - }, "name", { value: "RelaunchExecution" }); - - /** - * Calls RelaunchExecution. - * @function relaunchExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionRelaunchRequest} request ExecutionRelaunchRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#recoverExecution}. - * @memberof flyteidl.service.AdminService - * @typedef RecoverExecutionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ExecutionCreateResponse} [response] ExecutionCreateResponse - */ - - /** - * Calls RecoverExecution. - * @function recoverExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionRecoverRequest} request ExecutionRecoverRequest message or plain object - * @param {flyteidl.service.AdminService.RecoverExecutionCallback} callback Node-style callback called with the error, if any, and ExecutionCreateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.recoverExecution = function recoverExecution(request, callback) { - return this.rpcCall(recoverExecution, $root.flyteidl.admin.ExecutionRecoverRequest, $root.flyteidl.admin.ExecutionCreateResponse, request, callback); - }, "name", { value: "RecoverExecution" }); - - /** - * Calls RecoverExecution. - * @function recoverExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionRecoverRequest} request ExecutionRecoverRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getExecution}. - * @memberof flyteidl.service.AdminService - * @typedef GetExecutionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.Execution} [response] Execution - */ - - /** - * Calls GetExecution. - * @function getExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowExecutionGetRequest} request WorkflowExecutionGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetExecutionCallback} callback Node-style callback called with the error, if any, and Execution - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getExecution = function getExecution(request, callback) { - return this.rpcCall(getExecution, $root.flyteidl.admin.WorkflowExecutionGetRequest, $root.flyteidl.admin.Execution, request, callback); - }, "name", { value: "GetExecution" }); - - /** - * Calls GetExecution. - * @function getExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowExecutionGetRequest} request WorkflowExecutionGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateExecution}. - * @memberof flyteidl.service.AdminService - * @typedef UpdateExecutionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ExecutionUpdateResponse} [response] ExecutionUpdateResponse - */ - - /** - * Calls UpdateExecution. - * @function updateExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionUpdateRequest} request ExecutionUpdateRequest message or plain object - * @param {flyteidl.service.AdminService.UpdateExecutionCallback} callback Node-style callback called with the error, if any, and ExecutionUpdateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.updateExecution = function updateExecution(request, callback) { - return this.rpcCall(updateExecution, $root.flyteidl.admin.ExecutionUpdateRequest, $root.flyteidl.admin.ExecutionUpdateResponse, request, callback); - }, "name", { value: "UpdateExecution" }); - - /** - * Calls UpdateExecution. - * @function updateExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionUpdateRequest} request ExecutionUpdateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getExecutionData}. - * @memberof flyteidl.service.AdminService - * @typedef GetExecutionDataCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowExecutionGetDataResponse} [response] WorkflowExecutionGetDataResponse - */ - - /** - * Calls GetExecutionData. - * @function getExecutionData - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowExecutionGetDataRequest} request WorkflowExecutionGetDataRequest message or plain object - * @param {flyteidl.service.AdminService.GetExecutionDataCallback} callback Node-style callback called with the error, if any, and WorkflowExecutionGetDataResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getExecutionData = function getExecutionData(request, callback) { - return this.rpcCall(getExecutionData, $root.flyteidl.admin.WorkflowExecutionGetDataRequest, $root.flyteidl.admin.WorkflowExecutionGetDataResponse, request, callback); - }, "name", { value: "GetExecutionData" }); - - /** - * Calls GetExecutionData. - * @function getExecutionData - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowExecutionGetDataRequest} request WorkflowExecutionGetDataRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listExecutions}. - * @memberof flyteidl.service.AdminService - * @typedef ListExecutionsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ExecutionList} [response] ExecutionList - */ - - /** - * Calls ListExecutions. - * @function listExecutions - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IResourceListRequest} request ResourceListRequest message or plain object - * @param {flyteidl.service.AdminService.ListExecutionsCallback} callback Node-style callback called with the error, if any, and ExecutionList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listExecutions = function listExecutions(request, callback) { - return this.rpcCall(listExecutions, $root.flyteidl.admin.ResourceListRequest, $root.flyteidl.admin.ExecutionList, request, callback); - }, "name", { value: "ListExecutions" }); - - /** - * Calls ListExecutions. - * @function listExecutions - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IResourceListRequest} request ResourceListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#terminateExecution}. - * @memberof flyteidl.service.AdminService - * @typedef TerminateExecutionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ExecutionTerminateResponse} [response] ExecutionTerminateResponse - */ - - /** - * Calls TerminateExecution. - * @function terminateExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionTerminateRequest} request ExecutionTerminateRequest message or plain object - * @param {flyteidl.service.AdminService.TerminateExecutionCallback} callback Node-style callback called with the error, if any, and ExecutionTerminateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.terminateExecution = function terminateExecution(request, callback) { - return this.rpcCall(terminateExecution, $root.flyteidl.admin.ExecutionTerminateRequest, $root.flyteidl.admin.ExecutionTerminateResponse, request, callback); - }, "name", { value: "TerminateExecution" }); - - /** - * Calls TerminateExecution. - * @function terminateExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IExecutionTerminateRequest} request ExecutionTerminateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getNodeExecution}. - * @memberof flyteidl.service.AdminService - * @typedef GetNodeExecutionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NodeExecution} [response] NodeExecution - */ - - /** - * Calls GetNodeExecution. - * @function getNodeExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionGetRequest} request NodeExecutionGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetNodeExecutionCallback} callback Node-style callback called with the error, if any, and NodeExecution - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getNodeExecution = function getNodeExecution(request, callback) { - return this.rpcCall(getNodeExecution, $root.flyteidl.admin.NodeExecutionGetRequest, $root.flyteidl.admin.NodeExecution, request, callback); - }, "name", { value: "GetNodeExecution" }); - - /** - * Calls GetNodeExecution. - * @function getNodeExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionGetRequest} request NodeExecutionGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listNodeExecutions}. - * @memberof flyteidl.service.AdminService - * @typedef ListNodeExecutionsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NodeExecutionList} [response] NodeExecutionList - */ - - /** - * Calls ListNodeExecutions. - * @function listNodeExecutions - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionListRequest} request NodeExecutionListRequest message or plain object - * @param {flyteidl.service.AdminService.ListNodeExecutionsCallback} callback Node-style callback called with the error, if any, and NodeExecutionList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listNodeExecutions = function listNodeExecutions(request, callback) { - return this.rpcCall(listNodeExecutions, $root.flyteidl.admin.NodeExecutionListRequest, $root.flyteidl.admin.NodeExecutionList, request, callback); - }, "name", { value: "ListNodeExecutions" }); - - /** - * Calls ListNodeExecutions. - * @function listNodeExecutions - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionListRequest} request NodeExecutionListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listNodeExecutionsForTask}. - * @memberof flyteidl.service.AdminService - * @typedef ListNodeExecutionsForTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NodeExecutionList} [response] NodeExecutionList - */ - - /** - * Calls ListNodeExecutionsForTask. - * @function listNodeExecutionsForTask - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionForTaskListRequest} request NodeExecutionForTaskListRequest message or plain object - * @param {flyteidl.service.AdminService.ListNodeExecutionsForTaskCallback} callback Node-style callback called with the error, if any, and NodeExecutionList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listNodeExecutionsForTask = function listNodeExecutionsForTask(request, callback) { - return this.rpcCall(listNodeExecutionsForTask, $root.flyteidl.admin.NodeExecutionForTaskListRequest, $root.flyteidl.admin.NodeExecutionList, request, callback); - }, "name", { value: "ListNodeExecutionsForTask" }); - - /** - * Calls ListNodeExecutionsForTask. - * @function listNodeExecutionsForTask - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionForTaskListRequest} request NodeExecutionForTaskListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getNodeExecutionData}. - * @memberof flyteidl.service.AdminService - * @typedef GetNodeExecutionDataCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NodeExecutionGetDataResponse} [response] NodeExecutionGetDataResponse - */ - - /** - * Calls GetNodeExecutionData. - * @function getNodeExecutionData - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionGetDataRequest} request NodeExecutionGetDataRequest message or plain object - * @param {flyteidl.service.AdminService.GetNodeExecutionDataCallback} callback Node-style callback called with the error, if any, and NodeExecutionGetDataResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getNodeExecutionData = function getNodeExecutionData(request, callback) { - return this.rpcCall(getNodeExecutionData, $root.flyteidl.admin.NodeExecutionGetDataRequest, $root.flyteidl.admin.NodeExecutionGetDataResponse, request, callback); - }, "name", { value: "GetNodeExecutionData" }); - - /** - * Calls GetNodeExecutionData. - * @function getNodeExecutionData - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionGetDataRequest} request NodeExecutionGetDataRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#registerProject}. - * @memberof flyteidl.service.AdminService - * @typedef RegisterProjectCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ProjectRegisterResponse} [response] ProjectRegisterResponse - */ - - /** - * Calls RegisterProject. - * @function registerProject - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectRegisterRequest} request ProjectRegisterRequest message or plain object - * @param {flyteidl.service.AdminService.RegisterProjectCallback} callback Node-style callback called with the error, if any, and ProjectRegisterResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.registerProject = function registerProject(request, callback) { - return this.rpcCall(registerProject, $root.flyteidl.admin.ProjectRegisterRequest, $root.flyteidl.admin.ProjectRegisterResponse, request, callback); - }, "name", { value: "RegisterProject" }); - - /** - * Calls RegisterProject. - * @function registerProject - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectRegisterRequest} request ProjectRegisterRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateProject}. - * @memberof flyteidl.service.AdminService - * @typedef UpdateProjectCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ProjectUpdateResponse} [response] ProjectUpdateResponse - */ - - /** - * Calls UpdateProject. - * @function updateProject - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProject} request Project message or plain object - * @param {flyteidl.service.AdminService.UpdateProjectCallback} callback Node-style callback called with the error, if any, and ProjectUpdateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.updateProject = function updateProject(request, callback) { - return this.rpcCall(updateProject, $root.flyteidl.admin.Project, $root.flyteidl.admin.ProjectUpdateResponse, request, callback); - }, "name", { value: "UpdateProject" }); - - /** - * Calls UpdateProject. - * @function updateProject - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProject} request Project message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listProjects}. - * @memberof flyteidl.service.AdminService - * @typedef ListProjectsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.Projects} [response] Projects - */ - - /** - * Calls ListProjects. - * @function listProjects - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectListRequest} request ProjectListRequest message or plain object - * @param {flyteidl.service.AdminService.ListProjectsCallback} callback Node-style callback called with the error, if any, and Projects - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listProjects = function listProjects(request, callback) { - return this.rpcCall(listProjects, $root.flyteidl.admin.ProjectListRequest, $root.flyteidl.admin.Projects, request, callback); - }, "name", { value: "ListProjects" }); - - /** - * Calls ListProjects. - * @function listProjects - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectListRequest} request ProjectListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#createWorkflowEvent}. - * @memberof flyteidl.service.AdminService - * @typedef CreateWorkflowEventCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowExecutionEventResponse} [response] WorkflowExecutionEventResponse - */ - - /** - * Calls CreateWorkflowEvent. - * @function createWorkflowEvent - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowExecutionEventRequest} request WorkflowExecutionEventRequest message or plain object - * @param {flyteidl.service.AdminService.CreateWorkflowEventCallback} callback Node-style callback called with the error, if any, and WorkflowExecutionEventResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.createWorkflowEvent = function createWorkflowEvent(request, callback) { - return this.rpcCall(createWorkflowEvent, $root.flyteidl.admin.WorkflowExecutionEventRequest, $root.flyteidl.admin.WorkflowExecutionEventResponse, request, callback); - }, "name", { value: "CreateWorkflowEvent" }); - - /** - * Calls CreateWorkflowEvent. - * @function createWorkflowEvent - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowExecutionEventRequest} request WorkflowExecutionEventRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#createNodeEvent}. - * @memberof flyteidl.service.AdminService - * @typedef CreateNodeEventCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NodeExecutionEventResponse} [response] NodeExecutionEventResponse - */ - - /** - * Calls CreateNodeEvent. - * @function createNodeEvent - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionEventRequest} request NodeExecutionEventRequest message or plain object - * @param {flyteidl.service.AdminService.CreateNodeEventCallback} callback Node-style callback called with the error, if any, and NodeExecutionEventResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.createNodeEvent = function createNodeEvent(request, callback) { - return this.rpcCall(createNodeEvent, $root.flyteidl.admin.NodeExecutionEventRequest, $root.flyteidl.admin.NodeExecutionEventResponse, request, callback); - }, "name", { value: "CreateNodeEvent" }); - - /** - * Calls CreateNodeEvent. - * @function createNodeEvent - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INodeExecutionEventRequest} request NodeExecutionEventRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#createTaskEvent}. - * @memberof flyteidl.service.AdminService - * @typedef CreateTaskEventCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.TaskExecutionEventResponse} [response] TaskExecutionEventResponse - */ - - /** - * Calls CreateTaskEvent. - * @function createTaskEvent - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskExecutionEventRequest} request TaskExecutionEventRequest message or plain object - * @param {flyteidl.service.AdminService.CreateTaskEventCallback} callback Node-style callback called with the error, if any, and TaskExecutionEventResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.createTaskEvent = function createTaskEvent(request, callback) { - return this.rpcCall(createTaskEvent, $root.flyteidl.admin.TaskExecutionEventRequest, $root.flyteidl.admin.TaskExecutionEventResponse, request, callback); - }, "name", { value: "CreateTaskEvent" }); - - /** - * Calls CreateTaskEvent. - * @function createTaskEvent - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskExecutionEventRequest} request TaskExecutionEventRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getTaskExecution}. - * @memberof flyteidl.service.AdminService - * @typedef GetTaskExecutionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.TaskExecution} [response] TaskExecution - */ - - /** - * Calls GetTaskExecution. - * @function getTaskExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskExecutionGetRequest} request TaskExecutionGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetTaskExecutionCallback} callback Node-style callback called with the error, if any, and TaskExecution - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getTaskExecution = function getTaskExecution(request, callback) { - return this.rpcCall(getTaskExecution, $root.flyteidl.admin.TaskExecutionGetRequest, $root.flyteidl.admin.TaskExecution, request, callback); - }, "name", { value: "GetTaskExecution" }); - - /** - * Calls GetTaskExecution. - * @function getTaskExecution - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskExecutionGetRequest} request TaskExecutionGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listTaskExecutions}. - * @memberof flyteidl.service.AdminService - * @typedef ListTaskExecutionsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.TaskExecutionList} [response] TaskExecutionList - */ - - /** - * Calls ListTaskExecutions. - * @function listTaskExecutions - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskExecutionListRequest} request TaskExecutionListRequest message or plain object - * @param {flyteidl.service.AdminService.ListTaskExecutionsCallback} callback Node-style callback called with the error, if any, and TaskExecutionList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listTaskExecutions = function listTaskExecutions(request, callback) { - return this.rpcCall(listTaskExecutions, $root.flyteidl.admin.TaskExecutionListRequest, $root.flyteidl.admin.TaskExecutionList, request, callback); - }, "name", { value: "ListTaskExecutions" }); - - /** - * Calls ListTaskExecutions. - * @function listTaskExecutions - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskExecutionListRequest} request TaskExecutionListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getTaskExecutionData}. - * @memberof flyteidl.service.AdminService - * @typedef GetTaskExecutionDataCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.TaskExecutionGetDataResponse} [response] TaskExecutionGetDataResponse - */ - - /** - * Calls GetTaskExecutionData. - * @function getTaskExecutionData - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskExecutionGetDataRequest} request TaskExecutionGetDataRequest message or plain object - * @param {flyteidl.service.AdminService.GetTaskExecutionDataCallback} callback Node-style callback called with the error, if any, and TaskExecutionGetDataResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getTaskExecutionData = function getTaskExecutionData(request, callback) { - return this.rpcCall(getTaskExecutionData, $root.flyteidl.admin.TaskExecutionGetDataRequest, $root.flyteidl.admin.TaskExecutionGetDataResponse, request, callback); - }, "name", { value: "GetTaskExecutionData" }); - - /** - * Calls GetTaskExecutionData. - * @function getTaskExecutionData - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.ITaskExecutionGetDataRequest} request TaskExecutionGetDataRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateProjectDomainAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef UpdateProjectDomainAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ProjectDomainAttributesUpdateResponse} [response] ProjectDomainAttributesUpdateResponse - */ - - /** - * Calls UpdateProjectDomainAttributes. - * @function updateProjectDomainAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectDomainAttributesUpdateRequest} request ProjectDomainAttributesUpdateRequest message or plain object - * @param {flyteidl.service.AdminService.UpdateProjectDomainAttributesCallback} callback Node-style callback called with the error, if any, and ProjectDomainAttributesUpdateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.updateProjectDomainAttributes = function updateProjectDomainAttributes(request, callback) { - return this.rpcCall(updateProjectDomainAttributes, $root.flyteidl.admin.ProjectDomainAttributesUpdateRequest, $root.flyteidl.admin.ProjectDomainAttributesUpdateResponse, request, callback); - }, "name", { value: "UpdateProjectDomainAttributes" }); - - /** - * Calls UpdateProjectDomainAttributes. - * @function updateProjectDomainAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectDomainAttributesUpdateRequest} request ProjectDomainAttributesUpdateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getProjectDomainAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef GetProjectDomainAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ProjectDomainAttributesGetResponse} [response] ProjectDomainAttributesGetResponse - */ - - /** - * Calls GetProjectDomainAttributes. - * @function getProjectDomainAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectDomainAttributesGetRequest} request ProjectDomainAttributesGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetProjectDomainAttributesCallback} callback Node-style callback called with the error, if any, and ProjectDomainAttributesGetResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getProjectDomainAttributes = function getProjectDomainAttributes(request, callback) { - return this.rpcCall(getProjectDomainAttributes, $root.flyteidl.admin.ProjectDomainAttributesGetRequest, $root.flyteidl.admin.ProjectDomainAttributesGetResponse, request, callback); - }, "name", { value: "GetProjectDomainAttributes" }); - - /** - * Calls GetProjectDomainAttributes. - * @function getProjectDomainAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectDomainAttributesGetRequest} request ProjectDomainAttributesGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#deleteProjectDomainAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef DeleteProjectDomainAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ProjectDomainAttributesDeleteResponse} [response] ProjectDomainAttributesDeleteResponse - */ - - /** - * Calls DeleteProjectDomainAttributes. - * @function deleteProjectDomainAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectDomainAttributesDeleteRequest} request ProjectDomainAttributesDeleteRequest message or plain object - * @param {flyteidl.service.AdminService.DeleteProjectDomainAttributesCallback} callback Node-style callback called with the error, if any, and ProjectDomainAttributesDeleteResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.deleteProjectDomainAttributes = function deleteProjectDomainAttributes(request, callback) { - return this.rpcCall(deleteProjectDomainAttributes, $root.flyteidl.admin.ProjectDomainAttributesDeleteRequest, $root.flyteidl.admin.ProjectDomainAttributesDeleteResponse, request, callback); - }, "name", { value: "DeleteProjectDomainAttributes" }); - - /** - * Calls DeleteProjectDomainAttributes. - * @function deleteProjectDomainAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectDomainAttributesDeleteRequest} request ProjectDomainAttributesDeleteRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateProjectAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef UpdateProjectAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ProjectAttributesUpdateResponse} [response] ProjectAttributesUpdateResponse - */ - - /** - * Calls UpdateProjectAttributes. - * @function updateProjectAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectAttributesUpdateRequest} request ProjectAttributesUpdateRequest message or plain object - * @param {flyteidl.service.AdminService.UpdateProjectAttributesCallback} callback Node-style callback called with the error, if any, and ProjectAttributesUpdateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.updateProjectAttributes = function updateProjectAttributes(request, callback) { - return this.rpcCall(updateProjectAttributes, $root.flyteidl.admin.ProjectAttributesUpdateRequest, $root.flyteidl.admin.ProjectAttributesUpdateResponse, request, callback); - }, "name", { value: "UpdateProjectAttributes" }); - - /** - * Calls UpdateProjectAttributes. - * @function updateProjectAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectAttributesUpdateRequest} request ProjectAttributesUpdateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getProjectAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef GetProjectAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ProjectAttributesGetResponse} [response] ProjectAttributesGetResponse - */ - - /** - * Calls GetProjectAttributes. - * @function getProjectAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectAttributesGetRequest} request ProjectAttributesGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetProjectAttributesCallback} callback Node-style callback called with the error, if any, and ProjectAttributesGetResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getProjectAttributes = function getProjectAttributes(request, callback) { - return this.rpcCall(getProjectAttributes, $root.flyteidl.admin.ProjectAttributesGetRequest, $root.flyteidl.admin.ProjectAttributesGetResponse, request, callback); - }, "name", { value: "GetProjectAttributes" }); - - /** - * Calls GetProjectAttributes. - * @function getProjectAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectAttributesGetRequest} request ProjectAttributesGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#deleteProjectAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef DeleteProjectAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ProjectAttributesDeleteResponse} [response] ProjectAttributesDeleteResponse - */ - - /** - * Calls DeleteProjectAttributes. - * @function deleteProjectAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectAttributesDeleteRequest} request ProjectAttributesDeleteRequest message or plain object - * @param {flyteidl.service.AdminService.DeleteProjectAttributesCallback} callback Node-style callback called with the error, if any, and ProjectAttributesDeleteResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.deleteProjectAttributes = function deleteProjectAttributes(request, callback) { - return this.rpcCall(deleteProjectAttributes, $root.flyteidl.admin.ProjectAttributesDeleteRequest, $root.flyteidl.admin.ProjectAttributesDeleteResponse, request, callback); - }, "name", { value: "DeleteProjectAttributes" }); - - /** - * Calls DeleteProjectAttributes. - * @function deleteProjectAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IProjectAttributesDeleteRequest} request ProjectAttributesDeleteRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateWorkflowAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef UpdateWorkflowAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowAttributesUpdateResponse} [response] WorkflowAttributesUpdateResponse - */ - - /** - * Calls UpdateWorkflowAttributes. - * @function updateWorkflowAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowAttributesUpdateRequest} request WorkflowAttributesUpdateRequest message or plain object - * @param {flyteidl.service.AdminService.UpdateWorkflowAttributesCallback} callback Node-style callback called with the error, if any, and WorkflowAttributesUpdateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.updateWorkflowAttributes = function updateWorkflowAttributes(request, callback) { - return this.rpcCall(updateWorkflowAttributes, $root.flyteidl.admin.WorkflowAttributesUpdateRequest, $root.flyteidl.admin.WorkflowAttributesUpdateResponse, request, callback); - }, "name", { value: "UpdateWorkflowAttributes" }); - - /** - * Calls UpdateWorkflowAttributes. - * @function updateWorkflowAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowAttributesUpdateRequest} request WorkflowAttributesUpdateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getWorkflowAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef GetWorkflowAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowAttributesGetResponse} [response] WorkflowAttributesGetResponse - */ - - /** - * Calls GetWorkflowAttributes. - * @function getWorkflowAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowAttributesGetRequest} request WorkflowAttributesGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetWorkflowAttributesCallback} callback Node-style callback called with the error, if any, and WorkflowAttributesGetResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getWorkflowAttributes = function getWorkflowAttributes(request, callback) { - return this.rpcCall(getWorkflowAttributes, $root.flyteidl.admin.WorkflowAttributesGetRequest, $root.flyteidl.admin.WorkflowAttributesGetResponse, request, callback); - }, "name", { value: "GetWorkflowAttributes" }); - - /** - * Calls GetWorkflowAttributes. - * @function getWorkflowAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowAttributesGetRequest} request WorkflowAttributesGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#deleteWorkflowAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef DeleteWorkflowAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowAttributesDeleteResponse} [response] WorkflowAttributesDeleteResponse - */ - - /** - * Calls DeleteWorkflowAttributes. - * @function deleteWorkflowAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowAttributesDeleteRequest} request WorkflowAttributesDeleteRequest message or plain object - * @param {flyteidl.service.AdminService.DeleteWorkflowAttributesCallback} callback Node-style callback called with the error, if any, and WorkflowAttributesDeleteResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.deleteWorkflowAttributes = function deleteWorkflowAttributes(request, callback) { - return this.rpcCall(deleteWorkflowAttributes, $root.flyteidl.admin.WorkflowAttributesDeleteRequest, $root.flyteidl.admin.WorkflowAttributesDeleteResponse, request, callback); - }, "name", { value: "DeleteWorkflowAttributes" }); - - /** - * Calls DeleteWorkflowAttributes. - * @function deleteWorkflowAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowAttributesDeleteRequest} request WorkflowAttributesDeleteRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listMatchableAttributes}. - * @memberof flyteidl.service.AdminService - * @typedef ListMatchableAttributesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ListMatchableAttributesResponse} [response] ListMatchableAttributesResponse - */ - - /** - * Calls ListMatchableAttributes. - * @function listMatchableAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IListMatchableAttributesRequest} request ListMatchableAttributesRequest message or plain object - * @param {flyteidl.service.AdminService.ListMatchableAttributesCallback} callback Node-style callback called with the error, if any, and ListMatchableAttributesResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listMatchableAttributes = function listMatchableAttributes(request, callback) { - return this.rpcCall(listMatchableAttributes, $root.flyteidl.admin.ListMatchableAttributesRequest, $root.flyteidl.admin.ListMatchableAttributesResponse, request, callback); - }, "name", { value: "ListMatchableAttributes" }); - - /** - * Calls ListMatchableAttributes. - * @function listMatchableAttributes - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IListMatchableAttributesRequest} request ListMatchableAttributesRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listNamedEntities}. - * @memberof flyteidl.service.AdminService - * @typedef ListNamedEntitiesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NamedEntityList} [response] NamedEntityList - */ - - /** - * Calls ListNamedEntities. - * @function listNamedEntities - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityListRequest} request NamedEntityListRequest message or plain object - * @param {flyteidl.service.AdminService.ListNamedEntitiesCallback} callback Node-style callback called with the error, if any, and NamedEntityList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listNamedEntities = function listNamedEntities(request, callback) { - return this.rpcCall(listNamedEntities, $root.flyteidl.admin.NamedEntityListRequest, $root.flyteidl.admin.NamedEntityList, request, callback); - }, "name", { value: "ListNamedEntities" }); - - /** - * Calls ListNamedEntities. - * @function listNamedEntities - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityListRequest} request NamedEntityListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getNamedEntity}. - * @memberof flyteidl.service.AdminService - * @typedef GetNamedEntityCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NamedEntity} [response] NamedEntity - */ - - /** - * Calls GetNamedEntity. - * @function getNamedEntity - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityGetRequest} request NamedEntityGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetNamedEntityCallback} callback Node-style callback called with the error, if any, and NamedEntity - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getNamedEntity = function getNamedEntity(request, callback) { - return this.rpcCall(getNamedEntity, $root.flyteidl.admin.NamedEntityGetRequest, $root.flyteidl.admin.NamedEntity, request, callback); - }, "name", { value: "GetNamedEntity" }); - - /** - * Calls GetNamedEntity. - * @function getNamedEntity - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityGetRequest} request NamedEntityGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#updateNamedEntity}. - * @memberof flyteidl.service.AdminService - * @typedef UpdateNamedEntityCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.NamedEntityUpdateResponse} [response] NamedEntityUpdateResponse - */ - - /** - * Calls UpdateNamedEntity. - * @function updateNamedEntity - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityUpdateRequest} request NamedEntityUpdateRequest message or plain object - * @param {flyteidl.service.AdminService.UpdateNamedEntityCallback} callback Node-style callback called with the error, if any, and NamedEntityUpdateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.updateNamedEntity = function updateNamedEntity(request, callback) { - return this.rpcCall(updateNamedEntity, $root.flyteidl.admin.NamedEntityUpdateRequest, $root.flyteidl.admin.NamedEntityUpdateResponse, request, callback); - }, "name", { value: "UpdateNamedEntity" }); - - /** - * Calls UpdateNamedEntity. - * @function updateNamedEntity - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.INamedEntityUpdateRequest} request NamedEntityUpdateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getVersion}. - * @memberof flyteidl.service.AdminService - * @typedef GetVersionCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.GetVersionResponse} [response] GetVersionResponse - */ - - /** - * Calls GetVersion. - * @function getVersion - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IGetVersionRequest} request GetVersionRequest message or plain object - * @param {flyteidl.service.AdminService.GetVersionCallback} callback Node-style callback called with the error, if any, and GetVersionResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getVersion = function getVersion(request, callback) { - return this.rpcCall(getVersion, $root.flyteidl.admin.GetVersionRequest, $root.flyteidl.admin.GetVersionResponse, request, callback); - }, "name", { value: "GetVersion" }); - - /** - * Calls GetVersion. - * @function getVersion - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IGetVersionRequest} request GetVersionRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getDescriptionEntity}. - * @memberof flyteidl.service.AdminService - * @typedef GetDescriptionEntityCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.DescriptionEntity} [response] DescriptionEntity - */ - - /** - * Calls GetDescriptionEntity. - * @function getDescriptionEntity - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IObjectGetRequest} request ObjectGetRequest message or plain object - * @param {flyteidl.service.AdminService.GetDescriptionEntityCallback} callback Node-style callback called with the error, if any, and DescriptionEntity - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getDescriptionEntity = function getDescriptionEntity(request, callback) { - return this.rpcCall(getDescriptionEntity, $root.flyteidl.admin.ObjectGetRequest, $root.flyteidl.admin.DescriptionEntity, request, callback); - }, "name", { value: "GetDescriptionEntity" }); - - /** - * Calls GetDescriptionEntity. - * @function getDescriptionEntity - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IObjectGetRequest} request ObjectGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#listDescriptionEntities}. - * @memberof flyteidl.service.AdminService - * @typedef ListDescriptionEntitiesCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.DescriptionEntityList} [response] DescriptionEntityList - */ - - /** - * Calls ListDescriptionEntities. - * @function listDescriptionEntities - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IDescriptionEntityListRequest} request DescriptionEntityListRequest message or plain object - * @param {flyteidl.service.AdminService.ListDescriptionEntitiesCallback} callback Node-style callback called with the error, if any, and DescriptionEntityList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.listDescriptionEntities = function listDescriptionEntities(request, callback) { - return this.rpcCall(listDescriptionEntities, $root.flyteidl.admin.DescriptionEntityListRequest, $root.flyteidl.admin.DescriptionEntityList, request, callback); - }, "name", { value: "ListDescriptionEntities" }); - - /** - * Calls ListDescriptionEntities. - * @function listDescriptionEntities - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IDescriptionEntityListRequest} request DescriptionEntityListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AdminService#getExecutionMetrics}. - * @memberof flyteidl.service.AdminService - * @typedef GetExecutionMetricsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.WorkflowExecutionGetMetricsResponse} [response] WorkflowExecutionGetMetricsResponse - */ - - /** - * Calls GetExecutionMetrics. - * @function getExecutionMetrics - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowExecutionGetMetricsRequest} request WorkflowExecutionGetMetricsRequest message or plain object - * @param {flyteidl.service.AdminService.GetExecutionMetricsCallback} callback Node-style callback called with the error, if any, and WorkflowExecutionGetMetricsResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AdminService.prototype.getExecutionMetrics = function getExecutionMetrics(request, callback) { - return this.rpcCall(getExecutionMetrics, $root.flyteidl.admin.WorkflowExecutionGetMetricsRequest, $root.flyteidl.admin.WorkflowExecutionGetMetricsResponse, request, callback); - }, "name", { value: "GetExecutionMetrics" }); - - /** - * Calls GetExecutionMetrics. - * @function getExecutionMetrics - * @memberof flyteidl.service.AdminService - * @instance - * @param {flyteidl.admin.IWorkflowExecutionGetMetricsRequest} request WorkflowExecutionGetMetricsRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - return AdminService; - })(); - - service.AsyncAgentService = (function() { - - /** - * Constructs a new AsyncAgentService service. - * @memberof flyteidl.service - * @classdesc Represents an AsyncAgentService - * @extends $protobuf.rpc.Service - * @constructor - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - */ - function AsyncAgentService(rpcImpl, requestDelimited, responseDelimited) { - $protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited); - } - - (AsyncAgentService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = AsyncAgentService; - - /** - * Creates new AsyncAgentService service using the specified rpc implementation. - * @function create - * @memberof flyteidl.service.AsyncAgentService - * @static - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - * @returns {AsyncAgentService} RPC service. Useful where requests and/or responses are streamed. - */ - AsyncAgentService.create = function create(rpcImpl, requestDelimited, responseDelimited) { - return new this(rpcImpl, requestDelimited, responseDelimited); - }; - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#createTask}. - * @memberof flyteidl.service.AsyncAgentService - * @typedef CreateTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.CreateTaskResponse} [response] CreateTaskResponse - */ - - /** - * Calls CreateTask. - * @function createTask - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.ICreateTaskRequest} request CreateTaskRequest message or plain object - * @param {flyteidl.service.AsyncAgentService.CreateTaskCallback} callback Node-style callback called with the error, if any, and CreateTaskResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AsyncAgentService.prototype.createTask = function createTask(request, callback) { - return this.rpcCall(createTask, $root.flyteidl.admin.CreateTaskRequest, $root.flyteidl.admin.CreateTaskResponse, request, callback); - }, "name", { value: "CreateTask" }); - - /** - * Calls CreateTask. - * @function createTask - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.ICreateTaskRequest} request CreateTaskRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#getTask}. - * @memberof flyteidl.service.AsyncAgentService - * @typedef GetTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.GetTaskResponse} [response] GetTaskResponse - */ - - /** - * Calls GetTask. - * @function getTask - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.IGetTaskRequest} request GetTaskRequest message or plain object - * @param {flyteidl.service.AsyncAgentService.GetTaskCallback} callback Node-style callback called with the error, if any, and GetTaskResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AsyncAgentService.prototype.getTask = function getTask(request, callback) { - return this.rpcCall(getTask, $root.flyteidl.admin.GetTaskRequest, $root.flyteidl.admin.GetTaskResponse, request, callback); - }, "name", { value: "GetTask" }); - - /** - * Calls GetTask. - * @function getTask - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.IGetTaskRequest} request GetTaskRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#deleteTask}. - * @memberof flyteidl.service.AsyncAgentService - * @typedef DeleteTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.DeleteTaskResponse} [response] DeleteTaskResponse - */ - - /** - * Calls DeleteTask. - * @function deleteTask - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.IDeleteTaskRequest} request DeleteTaskRequest message or plain object - * @param {flyteidl.service.AsyncAgentService.DeleteTaskCallback} callback Node-style callback called with the error, if any, and DeleteTaskResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AsyncAgentService.prototype.deleteTask = function deleteTask(request, callback) { - return this.rpcCall(deleteTask, $root.flyteidl.admin.DeleteTaskRequest, $root.flyteidl.admin.DeleteTaskResponse, request, callback); - }, "name", { value: "DeleteTask" }); - - /** - * Calls DeleteTask. - * @function deleteTask - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.IDeleteTaskRequest} request DeleteTaskRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#getTaskMetrics}. - * @memberof flyteidl.service.AsyncAgentService - * @typedef GetTaskMetricsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.GetTaskMetricsResponse} [response] GetTaskMetricsResponse - */ - - /** - * Calls GetTaskMetrics. - * @function getTaskMetrics - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.IGetTaskMetricsRequest} request GetTaskMetricsRequest message or plain object - * @param {flyteidl.service.AsyncAgentService.GetTaskMetricsCallback} callback Node-style callback called with the error, if any, and GetTaskMetricsResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AsyncAgentService.prototype.getTaskMetrics = function getTaskMetrics(request, callback) { - return this.rpcCall(getTaskMetrics, $root.flyteidl.admin.GetTaskMetricsRequest, $root.flyteidl.admin.GetTaskMetricsResponse, request, callback); - }, "name", { value: "GetTaskMetrics" }); - - /** - * Calls GetTaskMetrics. - * @function getTaskMetrics - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.IGetTaskMetricsRequest} request GetTaskMetricsRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AsyncAgentService#getTaskLogs}. - * @memberof flyteidl.service.AsyncAgentService - * @typedef GetTaskLogsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.GetTaskLogsResponse} [response] GetTaskLogsResponse - */ - - /** - * Calls GetTaskLogs. - * @function getTaskLogs - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.IGetTaskLogsRequest} request GetTaskLogsRequest message or plain object - * @param {flyteidl.service.AsyncAgentService.GetTaskLogsCallback} callback Node-style callback called with the error, if any, and GetTaskLogsResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AsyncAgentService.prototype.getTaskLogs = function getTaskLogs(request, callback) { - return this.rpcCall(getTaskLogs, $root.flyteidl.admin.GetTaskLogsRequest, $root.flyteidl.admin.GetTaskLogsResponse, request, callback); - }, "name", { value: "GetTaskLogs" }); - - /** - * Calls GetTaskLogs. - * @function getTaskLogs - * @memberof flyteidl.service.AsyncAgentService - * @instance - * @param {flyteidl.admin.IGetTaskLogsRequest} request GetTaskLogsRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - return AsyncAgentService; - })(); - - service.AgentMetadataService = (function() { - - /** - * Constructs a new AgentMetadataService service. - * @memberof flyteidl.service - * @classdesc Represents an AgentMetadataService - * @extends $protobuf.rpc.Service - * @constructor - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - */ - function AgentMetadataService(rpcImpl, requestDelimited, responseDelimited) { - $protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited); - } - - (AgentMetadataService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = AgentMetadataService; - - /** - * Creates new AgentMetadataService service using the specified rpc implementation. - * @function create - * @memberof flyteidl.service.AgentMetadataService - * @static - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - * @returns {AgentMetadataService} RPC service. Useful where requests and/or responses are streamed. - */ - AgentMetadataService.create = function create(rpcImpl, requestDelimited, responseDelimited) { - return new this(rpcImpl, requestDelimited, responseDelimited); - }; - - /** - * Callback as used by {@link flyteidl.service.AgentMetadataService#getAgent}. - * @memberof flyteidl.service.AgentMetadataService - * @typedef GetAgentCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.GetAgentResponse} [response] GetAgentResponse - */ - - /** - * Calls GetAgent. - * @function getAgent - * @memberof flyteidl.service.AgentMetadataService - * @instance - * @param {flyteidl.admin.IGetAgentRequest} request GetAgentRequest message or plain object - * @param {flyteidl.service.AgentMetadataService.GetAgentCallback} callback Node-style callback called with the error, if any, and GetAgentResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AgentMetadataService.prototype.getAgent = function getAgent(request, callback) { - return this.rpcCall(getAgent, $root.flyteidl.admin.GetAgentRequest, $root.flyteidl.admin.GetAgentResponse, request, callback); - }, "name", { value: "GetAgent" }); - - /** - * Calls GetAgent. - * @function getAgent - * @memberof flyteidl.service.AgentMetadataService - * @instance - * @param {flyteidl.admin.IGetAgentRequest} request GetAgentRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AgentMetadataService#listAgents}. - * @memberof flyteidl.service.AgentMetadataService - * @typedef ListAgentsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.ListAgentsResponse} [response] ListAgentsResponse - */ - - /** - * Calls ListAgents. - * @function listAgents - * @memberof flyteidl.service.AgentMetadataService - * @instance - * @param {flyteidl.admin.IListAgentsRequest} request ListAgentsRequest message or plain object - * @param {flyteidl.service.AgentMetadataService.ListAgentsCallback} callback Node-style callback called with the error, if any, and ListAgentsResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AgentMetadataService.prototype.listAgents = function listAgents(request, callback) { - return this.rpcCall(listAgents, $root.flyteidl.admin.ListAgentsRequest, $root.flyteidl.admin.ListAgentsResponse, request, callback); - }, "name", { value: "ListAgents" }); - - /** - * Calls ListAgents. - * @function listAgents - * @memberof flyteidl.service.AgentMetadataService - * @instance - * @param {flyteidl.admin.IListAgentsRequest} request ListAgentsRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - return AgentMetadataService; - })(); - - service.OAuth2MetadataRequest = (function() { - - /** - * Properties of a OAuth2MetadataRequest. - * @memberof flyteidl.service - * @interface IOAuth2MetadataRequest - */ - - /** - * Constructs a new OAuth2MetadataRequest. - * @memberof flyteidl.service - * @classdesc Represents a OAuth2MetadataRequest. - * @implements IOAuth2MetadataRequest - * @constructor - * @param {flyteidl.service.IOAuth2MetadataRequest=} [properties] Properties to set - */ - function OAuth2MetadataRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new OAuth2MetadataRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.OAuth2MetadataRequest - * @static - * @param {flyteidl.service.IOAuth2MetadataRequest=} [properties] Properties to set - * @returns {flyteidl.service.OAuth2MetadataRequest} OAuth2MetadataRequest instance - */ - OAuth2MetadataRequest.create = function create(properties) { - return new OAuth2MetadataRequest(properties); - }; - - /** - * Encodes the specified OAuth2MetadataRequest message. Does not implicitly {@link flyteidl.service.OAuth2MetadataRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.OAuth2MetadataRequest - * @static - * @param {flyteidl.service.IOAuth2MetadataRequest} message OAuth2MetadataRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - OAuth2MetadataRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a OAuth2MetadataRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.OAuth2MetadataRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.OAuth2MetadataRequest} OAuth2MetadataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - OAuth2MetadataRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.OAuth2MetadataRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a OAuth2MetadataRequest message. - * @function verify - * @memberof flyteidl.service.OAuth2MetadataRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - OAuth2MetadataRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return OAuth2MetadataRequest; - })(); - - service.OAuth2MetadataResponse = (function() { - - /** - * Properties of a OAuth2MetadataResponse. - * @memberof flyteidl.service - * @interface IOAuth2MetadataResponse - * @property {string|null} [issuer] OAuth2MetadataResponse issuer - * @property {string|null} [authorizationEndpoint] OAuth2MetadataResponse authorizationEndpoint - * @property {string|null} [tokenEndpoint] OAuth2MetadataResponse tokenEndpoint - * @property {Array.|null} [responseTypesSupported] OAuth2MetadataResponse responseTypesSupported - * @property {Array.|null} [scopesSupported] OAuth2MetadataResponse scopesSupported - * @property {Array.|null} [tokenEndpointAuthMethodsSupported] OAuth2MetadataResponse tokenEndpointAuthMethodsSupported - * @property {string|null} [jwksUri] OAuth2MetadataResponse jwksUri - * @property {Array.|null} [codeChallengeMethodsSupported] OAuth2MetadataResponse codeChallengeMethodsSupported - * @property {Array.|null} [grantTypesSupported] OAuth2MetadataResponse grantTypesSupported - * @property {string|null} [deviceAuthorizationEndpoint] OAuth2MetadataResponse deviceAuthorizationEndpoint - */ - - /** - * Constructs a new OAuth2MetadataResponse. - * @memberof flyteidl.service - * @classdesc Represents a OAuth2MetadataResponse. - * @implements IOAuth2MetadataResponse - * @constructor - * @param {flyteidl.service.IOAuth2MetadataResponse=} [properties] Properties to set - */ - function OAuth2MetadataResponse(properties) { - this.responseTypesSupported = []; - this.scopesSupported = []; - this.tokenEndpointAuthMethodsSupported = []; - this.codeChallengeMethodsSupported = []; - this.grantTypesSupported = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * OAuth2MetadataResponse issuer. - * @member {string} issuer - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.issuer = ""; - - /** - * OAuth2MetadataResponse authorizationEndpoint. - * @member {string} authorizationEndpoint - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.authorizationEndpoint = ""; - - /** - * OAuth2MetadataResponse tokenEndpoint. - * @member {string} tokenEndpoint - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.tokenEndpoint = ""; - - /** - * OAuth2MetadataResponse responseTypesSupported. - * @member {Array.} responseTypesSupported - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.responseTypesSupported = $util.emptyArray; - - /** - * OAuth2MetadataResponse scopesSupported. - * @member {Array.} scopesSupported - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.scopesSupported = $util.emptyArray; - - /** - * OAuth2MetadataResponse tokenEndpointAuthMethodsSupported. - * @member {Array.} tokenEndpointAuthMethodsSupported - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.tokenEndpointAuthMethodsSupported = $util.emptyArray; - - /** - * OAuth2MetadataResponse jwksUri. - * @member {string} jwksUri - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.jwksUri = ""; - - /** - * OAuth2MetadataResponse codeChallengeMethodsSupported. - * @member {Array.} codeChallengeMethodsSupported - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.codeChallengeMethodsSupported = $util.emptyArray; - - /** - * OAuth2MetadataResponse grantTypesSupported. - * @member {Array.} grantTypesSupported - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.grantTypesSupported = $util.emptyArray; - - /** - * OAuth2MetadataResponse deviceAuthorizationEndpoint. - * @member {string} deviceAuthorizationEndpoint - * @memberof flyteidl.service.OAuth2MetadataResponse - * @instance - */ - OAuth2MetadataResponse.prototype.deviceAuthorizationEndpoint = ""; - - /** - * Creates a new OAuth2MetadataResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.OAuth2MetadataResponse - * @static - * @param {flyteidl.service.IOAuth2MetadataResponse=} [properties] Properties to set - * @returns {flyteidl.service.OAuth2MetadataResponse} OAuth2MetadataResponse instance - */ - OAuth2MetadataResponse.create = function create(properties) { - return new OAuth2MetadataResponse(properties); - }; - - /** - * Encodes the specified OAuth2MetadataResponse message. Does not implicitly {@link flyteidl.service.OAuth2MetadataResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.OAuth2MetadataResponse - * @static - * @param {flyteidl.service.IOAuth2MetadataResponse} message OAuth2MetadataResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - OAuth2MetadataResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.issuer != null && message.hasOwnProperty("issuer")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.issuer); - if (message.authorizationEndpoint != null && message.hasOwnProperty("authorizationEndpoint")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.authorizationEndpoint); - if (message.tokenEndpoint != null && message.hasOwnProperty("tokenEndpoint")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.tokenEndpoint); - if (message.responseTypesSupported != null && message.responseTypesSupported.length) - for (var i = 0; i < message.responseTypesSupported.length; ++i) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.responseTypesSupported[i]); - if (message.scopesSupported != null && message.scopesSupported.length) - for (var i = 0; i < message.scopesSupported.length; ++i) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.scopesSupported[i]); - if (message.tokenEndpointAuthMethodsSupported != null && message.tokenEndpointAuthMethodsSupported.length) - for (var i = 0; i < message.tokenEndpointAuthMethodsSupported.length; ++i) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.tokenEndpointAuthMethodsSupported[i]); - if (message.jwksUri != null && message.hasOwnProperty("jwksUri")) - writer.uint32(/* id 7, wireType 2 =*/58).string(message.jwksUri); - if (message.codeChallengeMethodsSupported != null && message.codeChallengeMethodsSupported.length) - for (var i = 0; i < message.codeChallengeMethodsSupported.length; ++i) - writer.uint32(/* id 8, wireType 2 =*/66).string(message.codeChallengeMethodsSupported[i]); - if (message.grantTypesSupported != null && message.grantTypesSupported.length) - for (var i = 0; i < message.grantTypesSupported.length; ++i) - writer.uint32(/* id 9, wireType 2 =*/74).string(message.grantTypesSupported[i]); - if (message.deviceAuthorizationEndpoint != null && message.hasOwnProperty("deviceAuthorizationEndpoint")) - writer.uint32(/* id 10, wireType 2 =*/82).string(message.deviceAuthorizationEndpoint); - return writer; - }; - - /** - * Decodes a OAuth2MetadataResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.OAuth2MetadataResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.OAuth2MetadataResponse} OAuth2MetadataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - OAuth2MetadataResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.OAuth2MetadataResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.issuer = reader.string(); - break; - case 2: - message.authorizationEndpoint = reader.string(); - break; - case 3: - message.tokenEndpoint = reader.string(); - break; - case 4: - if (!(message.responseTypesSupported && message.responseTypesSupported.length)) - message.responseTypesSupported = []; - message.responseTypesSupported.push(reader.string()); - break; - case 5: - if (!(message.scopesSupported && message.scopesSupported.length)) - message.scopesSupported = []; - message.scopesSupported.push(reader.string()); - break; - case 6: - if (!(message.tokenEndpointAuthMethodsSupported && message.tokenEndpointAuthMethodsSupported.length)) - message.tokenEndpointAuthMethodsSupported = []; - message.tokenEndpointAuthMethodsSupported.push(reader.string()); - break; - case 7: - message.jwksUri = reader.string(); - break; - case 8: - if (!(message.codeChallengeMethodsSupported && message.codeChallengeMethodsSupported.length)) - message.codeChallengeMethodsSupported = []; - message.codeChallengeMethodsSupported.push(reader.string()); - break; - case 9: - if (!(message.grantTypesSupported && message.grantTypesSupported.length)) - message.grantTypesSupported = []; - message.grantTypesSupported.push(reader.string()); - break; - case 10: - message.deviceAuthorizationEndpoint = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a OAuth2MetadataResponse message. - * @function verify - * @memberof flyteidl.service.OAuth2MetadataResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - OAuth2MetadataResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.issuer != null && message.hasOwnProperty("issuer")) - if (!$util.isString(message.issuer)) - return "issuer: string expected"; - if (message.authorizationEndpoint != null && message.hasOwnProperty("authorizationEndpoint")) - if (!$util.isString(message.authorizationEndpoint)) - return "authorizationEndpoint: string expected"; - if (message.tokenEndpoint != null && message.hasOwnProperty("tokenEndpoint")) - if (!$util.isString(message.tokenEndpoint)) - return "tokenEndpoint: string expected"; - if (message.responseTypesSupported != null && message.hasOwnProperty("responseTypesSupported")) { - if (!Array.isArray(message.responseTypesSupported)) - return "responseTypesSupported: array expected"; - for (var i = 0; i < message.responseTypesSupported.length; ++i) - if (!$util.isString(message.responseTypesSupported[i])) - return "responseTypesSupported: string[] expected"; - } - if (message.scopesSupported != null && message.hasOwnProperty("scopesSupported")) { - if (!Array.isArray(message.scopesSupported)) - return "scopesSupported: array expected"; - for (var i = 0; i < message.scopesSupported.length; ++i) - if (!$util.isString(message.scopesSupported[i])) - return "scopesSupported: string[] expected"; - } - if (message.tokenEndpointAuthMethodsSupported != null && message.hasOwnProperty("tokenEndpointAuthMethodsSupported")) { - if (!Array.isArray(message.tokenEndpointAuthMethodsSupported)) - return "tokenEndpointAuthMethodsSupported: array expected"; - for (var i = 0; i < message.tokenEndpointAuthMethodsSupported.length; ++i) - if (!$util.isString(message.tokenEndpointAuthMethodsSupported[i])) - return "tokenEndpointAuthMethodsSupported: string[] expected"; - } - if (message.jwksUri != null && message.hasOwnProperty("jwksUri")) - if (!$util.isString(message.jwksUri)) - return "jwksUri: string expected"; - if (message.codeChallengeMethodsSupported != null && message.hasOwnProperty("codeChallengeMethodsSupported")) { - if (!Array.isArray(message.codeChallengeMethodsSupported)) - return "codeChallengeMethodsSupported: array expected"; - for (var i = 0; i < message.codeChallengeMethodsSupported.length; ++i) - if (!$util.isString(message.codeChallengeMethodsSupported[i])) - return "codeChallengeMethodsSupported: string[] expected"; - } - if (message.grantTypesSupported != null && message.hasOwnProperty("grantTypesSupported")) { - if (!Array.isArray(message.grantTypesSupported)) - return "grantTypesSupported: array expected"; - for (var i = 0; i < message.grantTypesSupported.length; ++i) - if (!$util.isString(message.grantTypesSupported[i])) - return "grantTypesSupported: string[] expected"; - } - if (message.deviceAuthorizationEndpoint != null && message.hasOwnProperty("deviceAuthorizationEndpoint")) - if (!$util.isString(message.deviceAuthorizationEndpoint)) - return "deviceAuthorizationEndpoint: string expected"; - return null; - }; - - return OAuth2MetadataResponse; - })(); - - service.PublicClientAuthConfigRequest = (function() { - - /** - * Properties of a PublicClientAuthConfigRequest. - * @memberof flyteidl.service - * @interface IPublicClientAuthConfigRequest - */ - - /** - * Constructs a new PublicClientAuthConfigRequest. - * @memberof flyteidl.service - * @classdesc Represents a PublicClientAuthConfigRequest. - * @implements IPublicClientAuthConfigRequest - * @constructor - * @param {flyteidl.service.IPublicClientAuthConfigRequest=} [properties] Properties to set - */ - function PublicClientAuthConfigRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new PublicClientAuthConfigRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.PublicClientAuthConfigRequest - * @static - * @param {flyteidl.service.IPublicClientAuthConfigRequest=} [properties] Properties to set - * @returns {flyteidl.service.PublicClientAuthConfigRequest} PublicClientAuthConfigRequest instance - */ - PublicClientAuthConfigRequest.create = function create(properties) { - return new PublicClientAuthConfigRequest(properties); - }; - - /** - * Encodes the specified PublicClientAuthConfigRequest message. Does not implicitly {@link flyteidl.service.PublicClientAuthConfigRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.PublicClientAuthConfigRequest - * @static - * @param {flyteidl.service.IPublicClientAuthConfigRequest} message PublicClientAuthConfigRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - PublicClientAuthConfigRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a PublicClientAuthConfigRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.PublicClientAuthConfigRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.PublicClientAuthConfigRequest} PublicClientAuthConfigRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - PublicClientAuthConfigRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.PublicClientAuthConfigRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a PublicClientAuthConfigRequest message. - * @function verify - * @memberof flyteidl.service.PublicClientAuthConfigRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - PublicClientAuthConfigRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return PublicClientAuthConfigRequest; - })(); - - service.PublicClientAuthConfigResponse = (function() { - - /** - * Properties of a PublicClientAuthConfigResponse. - * @memberof flyteidl.service - * @interface IPublicClientAuthConfigResponse - * @property {string|null} [clientId] PublicClientAuthConfigResponse clientId - * @property {string|null} [redirectUri] PublicClientAuthConfigResponse redirectUri - * @property {Array.|null} [scopes] PublicClientAuthConfigResponse scopes - * @property {string|null} [authorizationMetadataKey] PublicClientAuthConfigResponse authorizationMetadataKey - * @property {string|null} [serviceHttpEndpoint] PublicClientAuthConfigResponse serviceHttpEndpoint - * @property {string|null} [audience] PublicClientAuthConfigResponse audience - */ - - /** - * Constructs a new PublicClientAuthConfigResponse. - * @memberof flyteidl.service - * @classdesc Represents a PublicClientAuthConfigResponse. - * @implements IPublicClientAuthConfigResponse - * @constructor - * @param {flyteidl.service.IPublicClientAuthConfigResponse=} [properties] Properties to set - */ - function PublicClientAuthConfigResponse(properties) { - this.scopes = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * PublicClientAuthConfigResponse clientId. - * @member {string} clientId - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @instance - */ - PublicClientAuthConfigResponse.prototype.clientId = ""; - - /** - * PublicClientAuthConfigResponse redirectUri. - * @member {string} redirectUri - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @instance - */ - PublicClientAuthConfigResponse.prototype.redirectUri = ""; - - /** - * PublicClientAuthConfigResponse scopes. - * @member {Array.} scopes - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @instance - */ - PublicClientAuthConfigResponse.prototype.scopes = $util.emptyArray; - - /** - * PublicClientAuthConfigResponse authorizationMetadataKey. - * @member {string} authorizationMetadataKey - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @instance - */ - PublicClientAuthConfigResponse.prototype.authorizationMetadataKey = ""; - - /** - * PublicClientAuthConfigResponse serviceHttpEndpoint. - * @member {string} serviceHttpEndpoint - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @instance - */ - PublicClientAuthConfigResponse.prototype.serviceHttpEndpoint = ""; - - /** - * PublicClientAuthConfigResponse audience. - * @member {string} audience - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @instance - */ - PublicClientAuthConfigResponse.prototype.audience = ""; - - /** - * Creates a new PublicClientAuthConfigResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @static - * @param {flyteidl.service.IPublicClientAuthConfigResponse=} [properties] Properties to set - * @returns {flyteidl.service.PublicClientAuthConfigResponse} PublicClientAuthConfigResponse instance - */ - PublicClientAuthConfigResponse.create = function create(properties) { - return new PublicClientAuthConfigResponse(properties); - }; - - /** - * Encodes the specified PublicClientAuthConfigResponse message. Does not implicitly {@link flyteidl.service.PublicClientAuthConfigResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @static - * @param {flyteidl.service.IPublicClientAuthConfigResponse} message PublicClientAuthConfigResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - PublicClientAuthConfigResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.clientId != null && message.hasOwnProperty("clientId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.clientId); - if (message.redirectUri != null && message.hasOwnProperty("redirectUri")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.redirectUri); - if (message.scopes != null && message.scopes.length) - for (var i = 0; i < message.scopes.length; ++i) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.scopes[i]); - if (message.authorizationMetadataKey != null && message.hasOwnProperty("authorizationMetadataKey")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.authorizationMetadataKey); - if (message.serviceHttpEndpoint != null && message.hasOwnProperty("serviceHttpEndpoint")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.serviceHttpEndpoint); - if (message.audience != null && message.hasOwnProperty("audience")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.audience); - return writer; - }; - - /** - * Decodes a PublicClientAuthConfigResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.PublicClientAuthConfigResponse} PublicClientAuthConfigResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - PublicClientAuthConfigResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.PublicClientAuthConfigResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.clientId = reader.string(); - break; - case 2: - message.redirectUri = reader.string(); - break; - case 3: - if (!(message.scopes && message.scopes.length)) - message.scopes = []; - message.scopes.push(reader.string()); - break; - case 4: - message.authorizationMetadataKey = reader.string(); - break; - case 5: - message.serviceHttpEndpoint = reader.string(); - break; - case 6: - message.audience = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a PublicClientAuthConfigResponse message. - * @function verify - * @memberof flyteidl.service.PublicClientAuthConfigResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - PublicClientAuthConfigResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.clientId != null && message.hasOwnProperty("clientId")) - if (!$util.isString(message.clientId)) - return "clientId: string expected"; - if (message.redirectUri != null && message.hasOwnProperty("redirectUri")) - if (!$util.isString(message.redirectUri)) - return "redirectUri: string expected"; - if (message.scopes != null && message.hasOwnProperty("scopes")) { - if (!Array.isArray(message.scopes)) - return "scopes: array expected"; - for (var i = 0; i < message.scopes.length; ++i) - if (!$util.isString(message.scopes[i])) - return "scopes: string[] expected"; - } - if (message.authorizationMetadataKey != null && message.hasOwnProperty("authorizationMetadataKey")) - if (!$util.isString(message.authorizationMetadataKey)) - return "authorizationMetadataKey: string expected"; - if (message.serviceHttpEndpoint != null && message.hasOwnProperty("serviceHttpEndpoint")) - if (!$util.isString(message.serviceHttpEndpoint)) - return "serviceHttpEndpoint: string expected"; - if (message.audience != null && message.hasOwnProperty("audience")) - if (!$util.isString(message.audience)) - return "audience: string expected"; - return null; - }; - - return PublicClientAuthConfigResponse; - })(); - - service.AuthMetadataService = (function() { - - /** - * Constructs a new AuthMetadataService service. - * @memberof flyteidl.service - * @classdesc Represents an AuthMetadataService - * @extends $protobuf.rpc.Service - * @constructor - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - */ - function AuthMetadataService(rpcImpl, requestDelimited, responseDelimited) { - $protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited); - } - - (AuthMetadataService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = AuthMetadataService; - - /** - * Creates new AuthMetadataService service using the specified rpc implementation. - * @function create - * @memberof flyteidl.service.AuthMetadataService - * @static - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - * @returns {AuthMetadataService} RPC service. Useful where requests and/or responses are streamed. - */ - AuthMetadataService.create = function create(rpcImpl, requestDelimited, responseDelimited) { - return new this(rpcImpl, requestDelimited, responseDelimited); - }; - - /** - * Callback as used by {@link flyteidl.service.AuthMetadataService#getOAuth2Metadata}. - * @memberof flyteidl.service.AuthMetadataService - * @typedef GetOAuth2MetadataCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.OAuth2MetadataResponse} [response] OAuth2MetadataResponse - */ - - /** - * Calls GetOAuth2Metadata. - * @function getOAuth2Metadata - * @memberof flyteidl.service.AuthMetadataService - * @instance - * @param {flyteidl.service.IOAuth2MetadataRequest} request OAuth2MetadataRequest message or plain object - * @param {flyteidl.service.AuthMetadataService.GetOAuth2MetadataCallback} callback Node-style callback called with the error, if any, and OAuth2MetadataResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AuthMetadataService.prototype.getOAuth2Metadata = function getOAuth2Metadata(request, callback) { - return this.rpcCall(getOAuth2Metadata, $root.flyteidl.service.OAuth2MetadataRequest, $root.flyteidl.service.OAuth2MetadataResponse, request, callback); - }, "name", { value: "GetOAuth2Metadata" }); - - /** - * Calls GetOAuth2Metadata. - * @function getOAuth2Metadata - * @memberof flyteidl.service.AuthMetadataService - * @instance - * @param {flyteidl.service.IOAuth2MetadataRequest} request OAuth2MetadataRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.AuthMetadataService#getPublicClientConfig}. - * @memberof flyteidl.service.AuthMetadataService - * @typedef GetPublicClientConfigCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.PublicClientAuthConfigResponse} [response] PublicClientAuthConfigResponse - */ - - /** - * Calls GetPublicClientConfig. - * @function getPublicClientConfig - * @memberof flyteidl.service.AuthMetadataService - * @instance - * @param {flyteidl.service.IPublicClientAuthConfigRequest} request PublicClientAuthConfigRequest message or plain object - * @param {flyteidl.service.AuthMetadataService.GetPublicClientConfigCallback} callback Node-style callback called with the error, if any, and PublicClientAuthConfigResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(AuthMetadataService.prototype.getPublicClientConfig = function getPublicClientConfig(request, callback) { - return this.rpcCall(getPublicClientConfig, $root.flyteidl.service.PublicClientAuthConfigRequest, $root.flyteidl.service.PublicClientAuthConfigResponse, request, callback); - }, "name", { value: "GetPublicClientConfig" }); - - /** - * Calls GetPublicClientConfig. - * @function getPublicClientConfig - * @memberof flyteidl.service.AuthMetadataService - * @instance - * @param {flyteidl.service.IPublicClientAuthConfigRequest} request PublicClientAuthConfigRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - return AuthMetadataService; - })(); - - service.CreateUploadLocationResponse = (function() { - - /** - * Properties of a CreateUploadLocationResponse. - * @memberof flyteidl.service - * @interface ICreateUploadLocationResponse - * @property {string|null} [signedUrl] CreateUploadLocationResponse signedUrl - * @property {string|null} [nativeUrl] CreateUploadLocationResponse nativeUrl - * @property {google.protobuf.ITimestamp|null} [expiresAt] CreateUploadLocationResponse expiresAt - */ - - /** - * Constructs a new CreateUploadLocationResponse. - * @memberof flyteidl.service - * @classdesc Represents a CreateUploadLocationResponse. - * @implements ICreateUploadLocationResponse - * @constructor - * @param {flyteidl.service.ICreateUploadLocationResponse=} [properties] Properties to set - */ - function CreateUploadLocationResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateUploadLocationResponse signedUrl. - * @member {string} signedUrl - * @memberof flyteidl.service.CreateUploadLocationResponse - * @instance - */ - CreateUploadLocationResponse.prototype.signedUrl = ""; - - /** - * CreateUploadLocationResponse nativeUrl. - * @member {string} nativeUrl - * @memberof flyteidl.service.CreateUploadLocationResponse - * @instance - */ - CreateUploadLocationResponse.prototype.nativeUrl = ""; - - /** - * CreateUploadLocationResponse expiresAt. - * @member {google.protobuf.ITimestamp|null|undefined} expiresAt - * @memberof flyteidl.service.CreateUploadLocationResponse - * @instance - */ - CreateUploadLocationResponse.prototype.expiresAt = null; - - /** - * Creates a new CreateUploadLocationResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.CreateUploadLocationResponse - * @static - * @param {flyteidl.service.ICreateUploadLocationResponse=} [properties] Properties to set - * @returns {flyteidl.service.CreateUploadLocationResponse} CreateUploadLocationResponse instance - */ - CreateUploadLocationResponse.create = function create(properties) { - return new CreateUploadLocationResponse(properties); - }; - - /** - * Encodes the specified CreateUploadLocationResponse message. Does not implicitly {@link flyteidl.service.CreateUploadLocationResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.CreateUploadLocationResponse - * @static - * @param {flyteidl.service.ICreateUploadLocationResponse} message CreateUploadLocationResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateUploadLocationResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.signedUrl != null && message.hasOwnProperty("signedUrl")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.signedUrl); - if (message.nativeUrl != null && message.hasOwnProperty("nativeUrl")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.nativeUrl); - if (message.expiresAt != null && message.hasOwnProperty("expiresAt")) - $root.google.protobuf.Timestamp.encode(message.expiresAt, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CreateUploadLocationResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.CreateUploadLocationResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.CreateUploadLocationResponse} CreateUploadLocationResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateUploadLocationResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.CreateUploadLocationResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.signedUrl = reader.string(); - break; - case 2: - message.nativeUrl = reader.string(); - break; - case 3: - message.expiresAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateUploadLocationResponse message. - * @function verify - * @memberof flyteidl.service.CreateUploadLocationResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateUploadLocationResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.signedUrl != null && message.hasOwnProperty("signedUrl")) - if (!$util.isString(message.signedUrl)) - return "signedUrl: string expected"; - if (message.nativeUrl != null && message.hasOwnProperty("nativeUrl")) - if (!$util.isString(message.nativeUrl)) - return "nativeUrl: string expected"; - if (message.expiresAt != null && message.hasOwnProperty("expiresAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.expiresAt); - if (error) - return "expiresAt." + error; - } - return null; - }; - - return CreateUploadLocationResponse; - })(); - - service.CreateUploadLocationRequest = (function() { - - /** - * Properties of a CreateUploadLocationRequest. - * @memberof flyteidl.service - * @interface ICreateUploadLocationRequest - * @property {string|null} [project] CreateUploadLocationRequest project - * @property {string|null} [domain] CreateUploadLocationRequest domain - * @property {string|null} [filename] CreateUploadLocationRequest filename - * @property {google.protobuf.IDuration|null} [expiresIn] CreateUploadLocationRequest expiresIn - * @property {Uint8Array|null} [contentMd5] CreateUploadLocationRequest contentMd5 - * @property {string|null} [filenameRoot] CreateUploadLocationRequest filenameRoot - */ - - /** - * Constructs a new CreateUploadLocationRequest. - * @memberof flyteidl.service - * @classdesc Represents a CreateUploadLocationRequest. - * @implements ICreateUploadLocationRequest - * @constructor - * @param {flyteidl.service.ICreateUploadLocationRequest=} [properties] Properties to set - */ - function CreateUploadLocationRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateUploadLocationRequest project. - * @member {string} project - * @memberof flyteidl.service.CreateUploadLocationRequest - * @instance - */ - CreateUploadLocationRequest.prototype.project = ""; - - /** - * CreateUploadLocationRequest domain. - * @member {string} domain - * @memberof flyteidl.service.CreateUploadLocationRequest - * @instance - */ - CreateUploadLocationRequest.prototype.domain = ""; - - /** - * CreateUploadLocationRequest filename. - * @member {string} filename - * @memberof flyteidl.service.CreateUploadLocationRequest - * @instance - */ - CreateUploadLocationRequest.prototype.filename = ""; - - /** - * CreateUploadLocationRequest expiresIn. - * @member {google.protobuf.IDuration|null|undefined} expiresIn - * @memberof flyteidl.service.CreateUploadLocationRequest - * @instance - */ - CreateUploadLocationRequest.prototype.expiresIn = null; - - /** - * CreateUploadLocationRequest contentMd5. - * @member {Uint8Array} contentMd5 - * @memberof flyteidl.service.CreateUploadLocationRequest - * @instance - */ - CreateUploadLocationRequest.prototype.contentMd5 = $util.newBuffer([]); - - /** - * CreateUploadLocationRequest filenameRoot. - * @member {string} filenameRoot - * @memberof flyteidl.service.CreateUploadLocationRequest - * @instance - */ - CreateUploadLocationRequest.prototype.filenameRoot = ""; - - /** - * Creates a new CreateUploadLocationRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.CreateUploadLocationRequest - * @static - * @param {flyteidl.service.ICreateUploadLocationRequest=} [properties] Properties to set - * @returns {flyteidl.service.CreateUploadLocationRequest} CreateUploadLocationRequest instance - */ - CreateUploadLocationRequest.create = function create(properties) { - return new CreateUploadLocationRequest(properties); - }; - - /** - * Encodes the specified CreateUploadLocationRequest message. Does not implicitly {@link flyteidl.service.CreateUploadLocationRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.CreateUploadLocationRequest - * @static - * @param {flyteidl.service.ICreateUploadLocationRequest} message CreateUploadLocationRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateUploadLocationRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.project != null && message.hasOwnProperty("project")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.project); - if (message.domain != null && message.hasOwnProperty("domain")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.domain); - if (message.filename != null && message.hasOwnProperty("filename")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.filename); - if (message.expiresIn != null && message.hasOwnProperty("expiresIn")) - $root.google.protobuf.Duration.encode(message.expiresIn, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.contentMd5 != null && message.hasOwnProperty("contentMd5")) - writer.uint32(/* id 5, wireType 2 =*/42).bytes(message.contentMd5); - if (message.filenameRoot != null && message.hasOwnProperty("filenameRoot")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.filenameRoot); - return writer; - }; - - /** - * Decodes a CreateUploadLocationRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.CreateUploadLocationRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.CreateUploadLocationRequest} CreateUploadLocationRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateUploadLocationRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.CreateUploadLocationRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.project = reader.string(); - break; - case 2: - message.domain = reader.string(); - break; - case 3: - message.filename = reader.string(); - break; - case 4: - message.expiresIn = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - case 5: - message.contentMd5 = reader.bytes(); - break; - case 6: - message.filenameRoot = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateUploadLocationRequest message. - * @function verify - * @memberof flyteidl.service.CreateUploadLocationRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateUploadLocationRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.project != null && message.hasOwnProperty("project")) - if (!$util.isString(message.project)) - return "project: string expected"; - if (message.domain != null && message.hasOwnProperty("domain")) - if (!$util.isString(message.domain)) - return "domain: string expected"; - if (message.filename != null && message.hasOwnProperty("filename")) - if (!$util.isString(message.filename)) - return "filename: string expected"; - if (message.expiresIn != null && message.hasOwnProperty("expiresIn")) { - var error = $root.google.protobuf.Duration.verify(message.expiresIn); - if (error) - return "expiresIn." + error; - } - if (message.contentMd5 != null && message.hasOwnProperty("contentMd5")) - if (!(message.contentMd5 && typeof message.contentMd5.length === "number" || $util.isString(message.contentMd5))) - return "contentMd5: buffer expected"; - if (message.filenameRoot != null && message.hasOwnProperty("filenameRoot")) - if (!$util.isString(message.filenameRoot)) - return "filenameRoot: string expected"; - return null; - }; - - return CreateUploadLocationRequest; - })(); - - service.CreateDownloadLocationRequest = (function() { - - /** - * Properties of a CreateDownloadLocationRequest. - * @memberof flyteidl.service - * @interface ICreateDownloadLocationRequest - * @property {string|null} [nativeUrl] CreateDownloadLocationRequest nativeUrl - * @property {google.protobuf.IDuration|null} [expiresIn] CreateDownloadLocationRequest expiresIn - */ - - /** - * Constructs a new CreateDownloadLocationRequest. - * @memberof flyteidl.service - * @classdesc Represents a CreateDownloadLocationRequest. - * @implements ICreateDownloadLocationRequest - * @constructor - * @param {flyteidl.service.ICreateDownloadLocationRequest=} [properties] Properties to set - */ - function CreateDownloadLocationRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateDownloadLocationRequest nativeUrl. - * @member {string} nativeUrl - * @memberof flyteidl.service.CreateDownloadLocationRequest - * @instance - */ - CreateDownloadLocationRequest.prototype.nativeUrl = ""; - - /** - * CreateDownloadLocationRequest expiresIn. - * @member {google.protobuf.IDuration|null|undefined} expiresIn - * @memberof flyteidl.service.CreateDownloadLocationRequest - * @instance - */ - CreateDownloadLocationRequest.prototype.expiresIn = null; - - /** - * Creates a new CreateDownloadLocationRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.CreateDownloadLocationRequest - * @static - * @param {flyteidl.service.ICreateDownloadLocationRequest=} [properties] Properties to set - * @returns {flyteidl.service.CreateDownloadLocationRequest} CreateDownloadLocationRequest instance - */ - CreateDownloadLocationRequest.create = function create(properties) { - return new CreateDownloadLocationRequest(properties); - }; - - /** - * Encodes the specified CreateDownloadLocationRequest message. Does not implicitly {@link flyteidl.service.CreateDownloadLocationRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.CreateDownloadLocationRequest - * @static - * @param {flyteidl.service.ICreateDownloadLocationRequest} message CreateDownloadLocationRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateDownloadLocationRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.nativeUrl != null && message.hasOwnProperty("nativeUrl")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.nativeUrl); - if (message.expiresIn != null && message.hasOwnProperty("expiresIn")) - $root.google.protobuf.Duration.encode(message.expiresIn, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CreateDownloadLocationRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.CreateDownloadLocationRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.CreateDownloadLocationRequest} CreateDownloadLocationRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateDownloadLocationRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.CreateDownloadLocationRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.nativeUrl = reader.string(); - break; - case 2: - message.expiresIn = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateDownloadLocationRequest message. - * @function verify - * @memberof flyteidl.service.CreateDownloadLocationRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateDownloadLocationRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.nativeUrl != null && message.hasOwnProperty("nativeUrl")) - if (!$util.isString(message.nativeUrl)) - return "nativeUrl: string expected"; - if (message.expiresIn != null && message.hasOwnProperty("expiresIn")) { - var error = $root.google.protobuf.Duration.verify(message.expiresIn); - if (error) - return "expiresIn." + error; - } - return null; - }; - - return CreateDownloadLocationRequest; - })(); - - service.CreateDownloadLocationResponse = (function() { - - /** - * Properties of a CreateDownloadLocationResponse. - * @memberof flyteidl.service - * @interface ICreateDownloadLocationResponse - * @property {string|null} [signedUrl] CreateDownloadLocationResponse signedUrl - * @property {google.protobuf.ITimestamp|null} [expiresAt] CreateDownloadLocationResponse expiresAt - */ - - /** - * Constructs a new CreateDownloadLocationResponse. - * @memberof flyteidl.service - * @classdesc Represents a CreateDownloadLocationResponse. - * @implements ICreateDownloadLocationResponse - * @constructor - * @param {flyteidl.service.ICreateDownloadLocationResponse=} [properties] Properties to set - */ - function CreateDownloadLocationResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateDownloadLocationResponse signedUrl. - * @member {string} signedUrl - * @memberof flyteidl.service.CreateDownloadLocationResponse - * @instance - */ - CreateDownloadLocationResponse.prototype.signedUrl = ""; - - /** - * CreateDownloadLocationResponse expiresAt. - * @member {google.protobuf.ITimestamp|null|undefined} expiresAt - * @memberof flyteidl.service.CreateDownloadLocationResponse - * @instance - */ - CreateDownloadLocationResponse.prototype.expiresAt = null; - - /** - * Creates a new CreateDownloadLocationResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.CreateDownloadLocationResponse - * @static - * @param {flyteidl.service.ICreateDownloadLocationResponse=} [properties] Properties to set - * @returns {flyteidl.service.CreateDownloadLocationResponse} CreateDownloadLocationResponse instance - */ - CreateDownloadLocationResponse.create = function create(properties) { - return new CreateDownloadLocationResponse(properties); - }; - - /** - * Encodes the specified CreateDownloadLocationResponse message. Does not implicitly {@link flyteidl.service.CreateDownloadLocationResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.CreateDownloadLocationResponse - * @static - * @param {flyteidl.service.ICreateDownloadLocationResponse} message CreateDownloadLocationResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateDownloadLocationResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.signedUrl != null && message.hasOwnProperty("signedUrl")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.signedUrl); - if (message.expiresAt != null && message.hasOwnProperty("expiresAt")) - $root.google.protobuf.Timestamp.encode(message.expiresAt, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CreateDownloadLocationResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.CreateDownloadLocationResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.CreateDownloadLocationResponse} CreateDownloadLocationResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateDownloadLocationResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.CreateDownloadLocationResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.signedUrl = reader.string(); - break; - case 2: - message.expiresAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateDownloadLocationResponse message. - * @function verify - * @memberof flyteidl.service.CreateDownloadLocationResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateDownloadLocationResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.signedUrl != null && message.hasOwnProperty("signedUrl")) - if (!$util.isString(message.signedUrl)) - return "signedUrl: string expected"; - if (message.expiresAt != null && message.hasOwnProperty("expiresAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.expiresAt); - if (error) - return "expiresAt." + error; - } - return null; - }; - - return CreateDownloadLocationResponse; - })(); - - /** - * ArtifactType enum. - * @name flyteidl.service.ArtifactType - * @enum {string} - * @property {number} ARTIFACT_TYPE_UNDEFINED=0 ARTIFACT_TYPE_UNDEFINED value - * @property {number} ARTIFACT_TYPE_DECK=1 ARTIFACT_TYPE_DECK value - */ - service.ArtifactType = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "ARTIFACT_TYPE_UNDEFINED"] = 0; - values[valuesById[1] = "ARTIFACT_TYPE_DECK"] = 1; - return values; - })(); - - service.CreateDownloadLinkRequest = (function() { - - /** - * Properties of a CreateDownloadLinkRequest. - * @memberof flyteidl.service - * @interface ICreateDownloadLinkRequest - * @property {flyteidl.service.ArtifactType|null} [artifactType] CreateDownloadLinkRequest artifactType - * @property {google.protobuf.IDuration|null} [expiresIn] CreateDownloadLinkRequest expiresIn - * @property {flyteidl.core.INodeExecutionIdentifier|null} [nodeExecutionId] CreateDownloadLinkRequest nodeExecutionId - */ - - /** - * Constructs a new CreateDownloadLinkRequest. - * @memberof flyteidl.service - * @classdesc Represents a CreateDownloadLinkRequest. - * @implements ICreateDownloadLinkRequest - * @constructor - * @param {flyteidl.service.ICreateDownloadLinkRequest=} [properties] Properties to set - */ - function CreateDownloadLinkRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateDownloadLinkRequest artifactType. - * @member {flyteidl.service.ArtifactType} artifactType - * @memberof flyteidl.service.CreateDownloadLinkRequest - * @instance - */ - CreateDownloadLinkRequest.prototype.artifactType = 0; - - /** - * CreateDownloadLinkRequest expiresIn. - * @member {google.protobuf.IDuration|null|undefined} expiresIn - * @memberof flyteidl.service.CreateDownloadLinkRequest - * @instance - */ - CreateDownloadLinkRequest.prototype.expiresIn = null; - - /** - * CreateDownloadLinkRequest nodeExecutionId. - * @member {flyteidl.core.INodeExecutionIdentifier|null|undefined} nodeExecutionId - * @memberof flyteidl.service.CreateDownloadLinkRequest - * @instance - */ - CreateDownloadLinkRequest.prototype.nodeExecutionId = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * CreateDownloadLinkRequest source. - * @member {"nodeExecutionId"|undefined} source - * @memberof flyteidl.service.CreateDownloadLinkRequest - * @instance - */ - Object.defineProperty(CreateDownloadLinkRequest.prototype, "source", { - get: $util.oneOfGetter($oneOfFields = ["nodeExecutionId"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new CreateDownloadLinkRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.CreateDownloadLinkRequest - * @static - * @param {flyteidl.service.ICreateDownloadLinkRequest=} [properties] Properties to set - * @returns {flyteidl.service.CreateDownloadLinkRequest} CreateDownloadLinkRequest instance - */ - CreateDownloadLinkRequest.create = function create(properties) { - return new CreateDownloadLinkRequest(properties); - }; - - /** - * Encodes the specified CreateDownloadLinkRequest message. Does not implicitly {@link flyteidl.service.CreateDownloadLinkRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.CreateDownloadLinkRequest - * @static - * @param {flyteidl.service.ICreateDownloadLinkRequest} message CreateDownloadLinkRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateDownloadLinkRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.artifactType != null && message.hasOwnProperty("artifactType")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.artifactType); - if (message.expiresIn != null && message.hasOwnProperty("expiresIn")) - $root.google.protobuf.Duration.encode(message.expiresIn, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.nodeExecutionId != null && message.hasOwnProperty("nodeExecutionId")) - $root.flyteidl.core.NodeExecutionIdentifier.encode(message.nodeExecutionId, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CreateDownloadLinkRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.CreateDownloadLinkRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.CreateDownloadLinkRequest} CreateDownloadLinkRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateDownloadLinkRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.CreateDownloadLinkRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.artifactType = reader.int32(); - break; - case 2: - message.expiresIn = $root.google.protobuf.Duration.decode(reader, reader.uint32()); - break; - case 3: - message.nodeExecutionId = $root.flyteidl.core.NodeExecutionIdentifier.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateDownloadLinkRequest message. - * @function verify - * @memberof flyteidl.service.CreateDownloadLinkRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateDownloadLinkRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.artifactType != null && message.hasOwnProperty("artifactType")) - switch (message.artifactType) { - default: - return "artifactType: enum value expected"; - case 0: - case 1: - break; - } - if (message.expiresIn != null && message.hasOwnProperty("expiresIn")) { - var error = $root.google.protobuf.Duration.verify(message.expiresIn); - if (error) - return "expiresIn." + error; - } - if (message.nodeExecutionId != null && message.hasOwnProperty("nodeExecutionId")) { - properties.source = 1; - { - var error = $root.flyteidl.core.NodeExecutionIdentifier.verify(message.nodeExecutionId); - if (error) - return "nodeExecutionId." + error; - } - } - return null; - }; - - return CreateDownloadLinkRequest; - })(); - - service.CreateDownloadLinkResponse = (function() { - - /** - * Properties of a CreateDownloadLinkResponse. - * @memberof flyteidl.service - * @interface ICreateDownloadLinkResponse - * @property {Array.|null} [signedUrl] CreateDownloadLinkResponse signedUrl - * @property {google.protobuf.ITimestamp|null} [expiresAt] CreateDownloadLinkResponse expiresAt - * @property {flyteidl.service.IPreSignedURLs|null} [preSignedUrls] CreateDownloadLinkResponse preSignedUrls - */ - - /** - * Constructs a new CreateDownloadLinkResponse. - * @memberof flyteidl.service - * @classdesc Represents a CreateDownloadLinkResponse. - * @implements ICreateDownloadLinkResponse - * @constructor - * @param {flyteidl.service.ICreateDownloadLinkResponse=} [properties] Properties to set - */ - function CreateDownloadLinkResponse(properties) { - this.signedUrl = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CreateDownloadLinkResponse signedUrl. - * @member {Array.} signedUrl - * @memberof flyteidl.service.CreateDownloadLinkResponse - * @instance - */ - CreateDownloadLinkResponse.prototype.signedUrl = $util.emptyArray; - - /** - * CreateDownloadLinkResponse expiresAt. - * @member {google.protobuf.ITimestamp|null|undefined} expiresAt - * @memberof flyteidl.service.CreateDownloadLinkResponse - * @instance - */ - CreateDownloadLinkResponse.prototype.expiresAt = null; - - /** - * CreateDownloadLinkResponse preSignedUrls. - * @member {flyteidl.service.IPreSignedURLs|null|undefined} preSignedUrls - * @memberof flyteidl.service.CreateDownloadLinkResponse - * @instance - */ - CreateDownloadLinkResponse.prototype.preSignedUrls = null; - - /** - * Creates a new CreateDownloadLinkResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.CreateDownloadLinkResponse - * @static - * @param {flyteidl.service.ICreateDownloadLinkResponse=} [properties] Properties to set - * @returns {flyteidl.service.CreateDownloadLinkResponse} CreateDownloadLinkResponse instance - */ - CreateDownloadLinkResponse.create = function create(properties) { - return new CreateDownloadLinkResponse(properties); - }; - - /** - * Encodes the specified CreateDownloadLinkResponse message. Does not implicitly {@link flyteidl.service.CreateDownloadLinkResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.CreateDownloadLinkResponse - * @static - * @param {flyteidl.service.ICreateDownloadLinkResponse} message CreateDownloadLinkResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CreateDownloadLinkResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.signedUrl != null && message.signedUrl.length) - for (var i = 0; i < message.signedUrl.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.signedUrl[i]); - if (message.expiresAt != null && message.hasOwnProperty("expiresAt")) - $root.google.protobuf.Timestamp.encode(message.expiresAt, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.preSignedUrls != null && message.hasOwnProperty("preSignedUrls")) - $root.flyteidl.service.PreSignedURLs.encode(message.preSignedUrls, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a CreateDownloadLinkResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.CreateDownloadLinkResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.CreateDownloadLinkResponse} CreateDownloadLinkResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CreateDownloadLinkResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.CreateDownloadLinkResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.signedUrl && message.signedUrl.length)) - message.signedUrl = []; - message.signedUrl.push(reader.string()); - break; - case 2: - message.expiresAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - case 3: - message.preSignedUrls = $root.flyteidl.service.PreSignedURLs.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CreateDownloadLinkResponse message. - * @function verify - * @memberof flyteidl.service.CreateDownloadLinkResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CreateDownloadLinkResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.signedUrl != null && message.hasOwnProperty("signedUrl")) { - if (!Array.isArray(message.signedUrl)) - return "signedUrl: array expected"; - for (var i = 0; i < message.signedUrl.length; ++i) - if (!$util.isString(message.signedUrl[i])) - return "signedUrl: string[] expected"; - } - if (message.expiresAt != null && message.hasOwnProperty("expiresAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.expiresAt); - if (error) - return "expiresAt." + error; - } - if (message.preSignedUrls != null && message.hasOwnProperty("preSignedUrls")) { - var error = $root.flyteidl.service.PreSignedURLs.verify(message.preSignedUrls); - if (error) - return "preSignedUrls." + error; - } - return null; - }; - - return CreateDownloadLinkResponse; - })(); - - service.PreSignedURLs = (function() { - - /** - * Properties of a PreSignedURLs. - * @memberof flyteidl.service - * @interface IPreSignedURLs - * @property {Array.|null} [signedUrl] PreSignedURLs signedUrl - * @property {google.protobuf.ITimestamp|null} [expiresAt] PreSignedURLs expiresAt - */ - - /** - * Constructs a new PreSignedURLs. - * @memberof flyteidl.service - * @classdesc Represents a PreSignedURLs. - * @implements IPreSignedURLs - * @constructor - * @param {flyteidl.service.IPreSignedURLs=} [properties] Properties to set - */ - function PreSignedURLs(properties) { - this.signedUrl = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * PreSignedURLs signedUrl. - * @member {Array.} signedUrl - * @memberof flyteidl.service.PreSignedURLs - * @instance - */ - PreSignedURLs.prototype.signedUrl = $util.emptyArray; - - /** - * PreSignedURLs expiresAt. - * @member {google.protobuf.ITimestamp|null|undefined} expiresAt - * @memberof flyteidl.service.PreSignedURLs - * @instance - */ - PreSignedURLs.prototype.expiresAt = null; - - /** - * Creates a new PreSignedURLs instance using the specified properties. - * @function create - * @memberof flyteidl.service.PreSignedURLs - * @static - * @param {flyteidl.service.IPreSignedURLs=} [properties] Properties to set - * @returns {flyteidl.service.PreSignedURLs} PreSignedURLs instance - */ - PreSignedURLs.create = function create(properties) { - return new PreSignedURLs(properties); - }; - - /** - * Encodes the specified PreSignedURLs message. Does not implicitly {@link flyteidl.service.PreSignedURLs.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.PreSignedURLs - * @static - * @param {flyteidl.service.IPreSignedURLs} message PreSignedURLs message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - PreSignedURLs.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.signedUrl != null && message.signedUrl.length) - for (var i = 0; i < message.signedUrl.length; ++i) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.signedUrl[i]); - if (message.expiresAt != null && message.hasOwnProperty("expiresAt")) - $root.google.protobuf.Timestamp.encode(message.expiresAt, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a PreSignedURLs message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.PreSignedURLs - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.PreSignedURLs} PreSignedURLs - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - PreSignedURLs.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.PreSignedURLs(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.signedUrl && message.signedUrl.length)) - message.signedUrl = []; - message.signedUrl.push(reader.string()); - break; - case 2: - message.expiresAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a PreSignedURLs message. - * @function verify - * @memberof flyteidl.service.PreSignedURLs - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - PreSignedURLs.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.signedUrl != null && message.hasOwnProperty("signedUrl")) { - if (!Array.isArray(message.signedUrl)) - return "signedUrl: array expected"; - for (var i = 0; i < message.signedUrl.length; ++i) - if (!$util.isString(message.signedUrl[i])) - return "signedUrl: string[] expected"; - } - if (message.expiresAt != null && message.hasOwnProperty("expiresAt")) { - var error = $root.google.protobuf.Timestamp.verify(message.expiresAt); - if (error) - return "expiresAt." + error; - } - return null; - }; - - return PreSignedURLs; - })(); - - service.GetDataRequest = (function() { - - /** - * Properties of a GetDataRequest. - * @memberof flyteidl.service - * @interface IGetDataRequest - * @property {string|null} [flyteUrl] GetDataRequest flyteUrl - */ - - /** - * Constructs a new GetDataRequest. - * @memberof flyteidl.service - * @classdesc Represents a GetDataRequest. - * @implements IGetDataRequest - * @constructor - * @param {flyteidl.service.IGetDataRequest=} [properties] Properties to set - */ - function GetDataRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetDataRequest flyteUrl. - * @member {string} flyteUrl - * @memberof flyteidl.service.GetDataRequest - * @instance - */ - GetDataRequest.prototype.flyteUrl = ""; - - /** - * Creates a new GetDataRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.GetDataRequest - * @static - * @param {flyteidl.service.IGetDataRequest=} [properties] Properties to set - * @returns {flyteidl.service.GetDataRequest} GetDataRequest instance - */ - GetDataRequest.create = function create(properties) { - return new GetDataRequest(properties); - }; - - /** - * Encodes the specified GetDataRequest message. Does not implicitly {@link flyteidl.service.GetDataRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.GetDataRequest - * @static - * @param {flyteidl.service.IGetDataRequest} message GetDataRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetDataRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.flyteUrl != null && message.hasOwnProperty("flyteUrl")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.flyteUrl); - return writer; - }; - - /** - * Decodes a GetDataRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.GetDataRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.GetDataRequest} GetDataRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetDataRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.GetDataRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.flyteUrl = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetDataRequest message. - * @function verify - * @memberof flyteidl.service.GetDataRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetDataRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.flyteUrl != null && message.hasOwnProperty("flyteUrl")) - if (!$util.isString(message.flyteUrl)) - return "flyteUrl: string expected"; - return null; - }; - - return GetDataRequest; - })(); - - service.GetDataResponse = (function() { - - /** - * Properties of a GetDataResponse. - * @memberof flyteidl.service - * @interface IGetDataResponse - * @property {flyteidl.core.ILiteralMap|null} [literalMap] GetDataResponse literalMap - * @property {flyteidl.service.IPreSignedURLs|null} [preSignedUrls] GetDataResponse preSignedUrls - * @property {flyteidl.core.ILiteral|null} [literal] GetDataResponse literal - */ - - /** - * Constructs a new GetDataResponse. - * @memberof flyteidl.service - * @classdesc Represents a GetDataResponse. - * @implements IGetDataResponse - * @constructor - * @param {flyteidl.service.IGetDataResponse=} [properties] Properties to set - */ - function GetDataResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GetDataResponse literalMap. - * @member {flyteidl.core.ILiteralMap|null|undefined} literalMap - * @memberof flyteidl.service.GetDataResponse - * @instance - */ - GetDataResponse.prototype.literalMap = null; - - /** - * GetDataResponse preSignedUrls. - * @member {flyteidl.service.IPreSignedURLs|null|undefined} preSignedUrls - * @memberof flyteidl.service.GetDataResponse - * @instance - */ - GetDataResponse.prototype.preSignedUrls = null; - - /** - * GetDataResponse literal. - * @member {flyteidl.core.ILiteral|null|undefined} literal - * @memberof flyteidl.service.GetDataResponse - * @instance - */ - GetDataResponse.prototype.literal = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * GetDataResponse data. - * @member {"literalMap"|"preSignedUrls"|"literal"|undefined} data - * @memberof flyteidl.service.GetDataResponse - * @instance - */ - Object.defineProperty(GetDataResponse.prototype, "data", { - get: $util.oneOfGetter($oneOfFields = ["literalMap", "preSignedUrls", "literal"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new GetDataResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.GetDataResponse - * @static - * @param {flyteidl.service.IGetDataResponse=} [properties] Properties to set - * @returns {flyteidl.service.GetDataResponse} GetDataResponse instance - */ - GetDataResponse.create = function create(properties) { - return new GetDataResponse(properties); - }; - - /** - * Encodes the specified GetDataResponse message. Does not implicitly {@link flyteidl.service.GetDataResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.GetDataResponse - * @static - * @param {flyteidl.service.IGetDataResponse} message GetDataResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GetDataResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.literalMap != null && message.hasOwnProperty("literalMap")) - $root.flyteidl.core.LiteralMap.encode(message.literalMap, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.preSignedUrls != null && message.hasOwnProperty("preSignedUrls")) - $root.flyteidl.service.PreSignedURLs.encode(message.preSignedUrls, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.literal != null && message.hasOwnProperty("literal")) - $root.flyteidl.core.Literal.encode(message.literal, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GetDataResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.GetDataResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.GetDataResponse} GetDataResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GetDataResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.GetDataResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.literalMap = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 2: - message.preSignedUrls = $root.flyteidl.service.PreSignedURLs.decode(reader, reader.uint32()); - break; - case 3: - message.literal = $root.flyteidl.core.Literal.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GetDataResponse message. - * @function verify - * @memberof flyteidl.service.GetDataResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GetDataResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.literalMap != null && message.hasOwnProperty("literalMap")) { - properties.data = 1; - { - var error = $root.flyteidl.core.LiteralMap.verify(message.literalMap); - if (error) - return "literalMap." + error; - } - } - if (message.preSignedUrls != null && message.hasOwnProperty("preSignedUrls")) { - if (properties.data === 1) - return "data: multiple values"; - properties.data = 1; - { - var error = $root.flyteidl.service.PreSignedURLs.verify(message.preSignedUrls); - if (error) - return "preSignedUrls." + error; - } - } - if (message.literal != null && message.hasOwnProperty("literal")) { - if (properties.data === 1) - return "data: multiple values"; - properties.data = 1; - { - var error = $root.flyteidl.core.Literal.verify(message.literal); - if (error) - return "literal." + error; - } - } - return null; - }; - - return GetDataResponse; - })(); - - service.DataProxyService = (function() { - - /** - * Constructs a new DataProxyService service. - * @memberof flyteidl.service - * @classdesc Represents a DataProxyService - * @extends $protobuf.rpc.Service - * @constructor - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - */ - function DataProxyService(rpcImpl, requestDelimited, responseDelimited) { - $protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited); - } - - (DataProxyService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = DataProxyService; - - /** - * Creates new DataProxyService service using the specified rpc implementation. - * @function create - * @memberof flyteidl.service.DataProxyService - * @static - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - * @returns {DataProxyService} RPC service. Useful where requests and/or responses are streamed. - */ - DataProxyService.create = function create(rpcImpl, requestDelimited, responseDelimited) { - return new this(rpcImpl, requestDelimited, responseDelimited); - }; - - /** - * Callback as used by {@link flyteidl.service.DataProxyService#createUploadLocation}. - * @memberof flyteidl.service.DataProxyService - * @typedef CreateUploadLocationCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.CreateUploadLocationResponse} [response] CreateUploadLocationResponse - */ - - /** - * Calls CreateUploadLocation. - * @function createUploadLocation - * @memberof flyteidl.service.DataProxyService - * @instance - * @param {flyteidl.service.ICreateUploadLocationRequest} request CreateUploadLocationRequest message or plain object - * @param {flyteidl.service.DataProxyService.CreateUploadLocationCallback} callback Node-style callback called with the error, if any, and CreateUploadLocationResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(DataProxyService.prototype.createUploadLocation = function createUploadLocation(request, callback) { - return this.rpcCall(createUploadLocation, $root.flyteidl.service.CreateUploadLocationRequest, $root.flyteidl.service.CreateUploadLocationResponse, request, callback); - }, "name", { value: "CreateUploadLocation" }); - - /** - * Calls CreateUploadLocation. - * @function createUploadLocation - * @memberof flyteidl.service.DataProxyService - * @instance - * @param {flyteidl.service.ICreateUploadLocationRequest} request CreateUploadLocationRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.DataProxyService#createDownloadLocation}. - * @memberof flyteidl.service.DataProxyService - * @typedef CreateDownloadLocationCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.CreateDownloadLocationResponse} [response] CreateDownloadLocationResponse - */ - - /** - * Calls CreateDownloadLocation. - * @function createDownloadLocation - * @memberof flyteidl.service.DataProxyService - * @instance - * @param {flyteidl.service.ICreateDownloadLocationRequest} request CreateDownloadLocationRequest message or plain object - * @param {flyteidl.service.DataProxyService.CreateDownloadLocationCallback} callback Node-style callback called with the error, if any, and CreateDownloadLocationResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(DataProxyService.prototype.createDownloadLocation = function createDownloadLocation(request, callback) { - return this.rpcCall(createDownloadLocation, $root.flyteidl.service.CreateDownloadLocationRequest, $root.flyteidl.service.CreateDownloadLocationResponse, request, callback); - }, "name", { value: "CreateDownloadLocation" }); - - /** - * Calls CreateDownloadLocation. - * @function createDownloadLocation - * @memberof flyteidl.service.DataProxyService - * @instance - * @param {flyteidl.service.ICreateDownloadLocationRequest} request CreateDownloadLocationRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.DataProxyService#createDownloadLink}. - * @memberof flyteidl.service.DataProxyService - * @typedef CreateDownloadLinkCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.CreateDownloadLinkResponse} [response] CreateDownloadLinkResponse - */ - - /** - * Calls CreateDownloadLink. - * @function createDownloadLink - * @memberof flyteidl.service.DataProxyService - * @instance - * @param {flyteidl.service.ICreateDownloadLinkRequest} request CreateDownloadLinkRequest message or plain object - * @param {flyteidl.service.DataProxyService.CreateDownloadLinkCallback} callback Node-style callback called with the error, if any, and CreateDownloadLinkResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(DataProxyService.prototype.createDownloadLink = function createDownloadLink(request, callback) { - return this.rpcCall(createDownloadLink, $root.flyteidl.service.CreateDownloadLinkRequest, $root.flyteidl.service.CreateDownloadLinkResponse, request, callback); - }, "name", { value: "CreateDownloadLink" }); - - /** - * Calls CreateDownloadLink. - * @function createDownloadLink - * @memberof flyteidl.service.DataProxyService - * @instance - * @param {flyteidl.service.ICreateDownloadLinkRequest} request CreateDownloadLinkRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.DataProxyService#getData}. - * @memberof flyteidl.service.DataProxyService - * @typedef GetDataCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.GetDataResponse} [response] GetDataResponse - */ - - /** - * Calls GetData. - * @function getData - * @memberof flyteidl.service.DataProxyService - * @instance - * @param {flyteidl.service.IGetDataRequest} request GetDataRequest message or plain object - * @param {flyteidl.service.DataProxyService.GetDataCallback} callback Node-style callback called with the error, if any, and GetDataResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(DataProxyService.prototype.getData = function getData(request, callback) { - return this.rpcCall(getData, $root.flyteidl.service.GetDataRequest, $root.flyteidl.service.GetDataResponse, request, callback); - }, "name", { value: "GetData" }); - - /** - * Calls GetData. - * @function getData - * @memberof flyteidl.service.DataProxyService - * @instance - * @param {flyteidl.service.IGetDataRequest} request GetDataRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - return DataProxyService; - })(); - - service.ExternalPluginService = (function() { - - /** - * Constructs a new ExternalPluginService service. - * @memberof flyteidl.service - * @classdesc Represents an ExternalPluginService - * @extends $protobuf.rpc.Service - * @constructor - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - */ - function ExternalPluginService(rpcImpl, requestDelimited, responseDelimited) { - $protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited); - } - - (ExternalPluginService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = ExternalPluginService; - - /** - * Creates new ExternalPluginService service using the specified rpc implementation. - * @function create - * @memberof flyteidl.service.ExternalPluginService - * @static - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - * @returns {ExternalPluginService} RPC service. Useful where requests and/or responses are streamed. - */ - ExternalPluginService.create = function create(rpcImpl, requestDelimited, responseDelimited) { - return new this(rpcImpl, requestDelimited, responseDelimited); - }; - - /** - * Callback as used by {@link flyteidl.service.ExternalPluginService#createTask}. - * @memberof flyteidl.service.ExternalPluginService - * @typedef CreateTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.TaskCreateResponse} [response] TaskCreateResponse - */ - - /** - * Calls CreateTask. - * @function createTask - * @memberof flyteidl.service.ExternalPluginService - * @instance - * @param {flyteidl.service.ITaskCreateRequest} request TaskCreateRequest message or plain object - * @param {flyteidl.service.ExternalPluginService.CreateTaskCallback} callback Node-style callback called with the error, if any, and TaskCreateResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(ExternalPluginService.prototype.createTask = function createTask(request, callback) { - return this.rpcCall(createTask, $root.flyteidl.service.TaskCreateRequest, $root.flyteidl.service.TaskCreateResponse, request, callback); - }, "name", { value: "CreateTask" }); - - /** - * Calls CreateTask. - * @function createTask - * @memberof flyteidl.service.ExternalPluginService - * @instance - * @param {flyteidl.service.ITaskCreateRequest} request TaskCreateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.ExternalPluginService#getTask}. - * @memberof flyteidl.service.ExternalPluginService - * @typedef GetTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.TaskGetResponse} [response] TaskGetResponse - */ - - /** - * Calls GetTask. - * @function getTask - * @memberof flyteidl.service.ExternalPluginService - * @instance - * @param {flyteidl.service.ITaskGetRequest} request TaskGetRequest message or plain object - * @param {flyteidl.service.ExternalPluginService.GetTaskCallback} callback Node-style callback called with the error, if any, and TaskGetResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(ExternalPluginService.prototype.getTask = function getTask(request, callback) { - return this.rpcCall(getTask, $root.flyteidl.service.TaskGetRequest, $root.flyteidl.service.TaskGetResponse, request, callback); - }, "name", { value: "GetTask" }); - - /** - * Calls GetTask. - * @function getTask - * @memberof flyteidl.service.ExternalPluginService - * @instance - * @param {flyteidl.service.ITaskGetRequest} request TaskGetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.ExternalPluginService#deleteTask}. - * @memberof flyteidl.service.ExternalPluginService - * @typedef DeleteTaskCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.TaskDeleteResponse} [response] TaskDeleteResponse - */ - - /** - * Calls DeleteTask. - * @function deleteTask - * @memberof flyteidl.service.ExternalPluginService - * @instance - * @param {flyteidl.service.ITaskDeleteRequest} request TaskDeleteRequest message or plain object - * @param {flyteidl.service.ExternalPluginService.DeleteTaskCallback} callback Node-style callback called with the error, if any, and TaskDeleteResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(ExternalPluginService.prototype.deleteTask = function deleteTask(request, callback) { - return this.rpcCall(deleteTask, $root.flyteidl.service.TaskDeleteRequest, $root.flyteidl.service.TaskDeleteResponse, request, callback); - }, "name", { value: "DeleteTask" }); - - /** - * Calls DeleteTask. - * @function deleteTask - * @memberof flyteidl.service.ExternalPluginService - * @instance - * @param {flyteidl.service.ITaskDeleteRequest} request TaskDeleteRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - return ExternalPluginService; - })(); - - /** - * State enum. - * @name flyteidl.service.State - * @enum {string} - * @property {number} RETRYABLE_FAILURE=0 RETRYABLE_FAILURE value - * @property {number} PERMANENT_FAILURE=1 PERMANENT_FAILURE value - * @property {number} PENDING=2 PENDING value - * @property {number} RUNNING=3 RUNNING value - * @property {number} SUCCEEDED=4 SUCCEEDED value - */ - service.State = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "RETRYABLE_FAILURE"] = 0; - values[valuesById[1] = "PERMANENT_FAILURE"] = 1; - values[valuesById[2] = "PENDING"] = 2; - values[valuesById[3] = "RUNNING"] = 3; - values[valuesById[4] = "SUCCEEDED"] = 4; - return values; - })(); - - service.TaskCreateRequest = (function() { - - /** - * Properties of a TaskCreateRequest. - * @memberof flyteidl.service - * @interface ITaskCreateRequest - * @property {flyteidl.core.ILiteralMap|null} [inputs] TaskCreateRequest inputs - * @property {flyteidl.core.ITaskTemplate|null} [template] TaskCreateRequest template - * @property {string|null} [outputPrefix] TaskCreateRequest outputPrefix - */ - - /** - * Constructs a new TaskCreateRequest. - * @memberof flyteidl.service - * @classdesc Represents a TaskCreateRequest. - * @implements ITaskCreateRequest - * @constructor - * @param {flyteidl.service.ITaskCreateRequest=} [properties] Properties to set - */ - function TaskCreateRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskCreateRequest inputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} inputs - * @memberof flyteidl.service.TaskCreateRequest - * @instance - */ - TaskCreateRequest.prototype.inputs = null; - - /** - * TaskCreateRequest template. - * @member {flyteidl.core.ITaskTemplate|null|undefined} template - * @memberof flyteidl.service.TaskCreateRequest - * @instance - */ - TaskCreateRequest.prototype.template = null; - - /** - * TaskCreateRequest outputPrefix. - * @member {string} outputPrefix - * @memberof flyteidl.service.TaskCreateRequest - * @instance - */ - TaskCreateRequest.prototype.outputPrefix = ""; - - /** - * Creates a new TaskCreateRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.TaskCreateRequest - * @static - * @param {flyteidl.service.ITaskCreateRequest=} [properties] Properties to set - * @returns {flyteidl.service.TaskCreateRequest} TaskCreateRequest instance - */ - TaskCreateRequest.create = function create(properties) { - return new TaskCreateRequest(properties); - }; - - /** - * Encodes the specified TaskCreateRequest message. Does not implicitly {@link flyteidl.service.TaskCreateRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.TaskCreateRequest - * @static - * @param {flyteidl.service.ITaskCreateRequest} message TaskCreateRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskCreateRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.inputs != null && message.hasOwnProperty("inputs")) - $root.flyteidl.core.LiteralMap.encode(message.inputs, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - if (message.template != null && message.hasOwnProperty("template")) - $root.flyteidl.core.TaskTemplate.encode(message.template, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.outputPrefix != null && message.hasOwnProperty("outputPrefix")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.outputPrefix); - return writer; - }; - - /** - * Decodes a TaskCreateRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.TaskCreateRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.TaskCreateRequest} TaskCreateRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskCreateRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.TaskCreateRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.inputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - case 2: - message.template = $root.flyteidl.core.TaskTemplate.decode(reader, reader.uint32()); - break; - case 3: - message.outputPrefix = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskCreateRequest message. - * @function verify - * @memberof flyteidl.service.TaskCreateRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskCreateRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.inputs != null && message.hasOwnProperty("inputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.inputs); - if (error) - return "inputs." + error; - } - if (message.template != null && message.hasOwnProperty("template")) { - var error = $root.flyteidl.core.TaskTemplate.verify(message.template); - if (error) - return "template." + error; - } - if (message.outputPrefix != null && message.hasOwnProperty("outputPrefix")) - if (!$util.isString(message.outputPrefix)) - return "outputPrefix: string expected"; - return null; - }; - - return TaskCreateRequest; - })(); - - service.TaskCreateResponse = (function() { - - /** - * Properties of a TaskCreateResponse. - * @memberof flyteidl.service - * @interface ITaskCreateResponse - * @property {string|null} [jobId] TaskCreateResponse jobId - */ - - /** - * Constructs a new TaskCreateResponse. - * @memberof flyteidl.service - * @classdesc Represents a TaskCreateResponse. - * @implements ITaskCreateResponse - * @constructor - * @param {flyteidl.service.ITaskCreateResponse=} [properties] Properties to set - */ - function TaskCreateResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskCreateResponse jobId. - * @member {string} jobId - * @memberof flyteidl.service.TaskCreateResponse - * @instance - */ - TaskCreateResponse.prototype.jobId = ""; - - /** - * Creates a new TaskCreateResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.TaskCreateResponse - * @static - * @param {flyteidl.service.ITaskCreateResponse=} [properties] Properties to set - * @returns {flyteidl.service.TaskCreateResponse} TaskCreateResponse instance - */ - TaskCreateResponse.create = function create(properties) { - return new TaskCreateResponse(properties); - }; - - /** - * Encodes the specified TaskCreateResponse message. Does not implicitly {@link flyteidl.service.TaskCreateResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.TaskCreateResponse - * @static - * @param {flyteidl.service.ITaskCreateResponse} message TaskCreateResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskCreateResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.jobId != null && message.hasOwnProperty("jobId")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.jobId); - return writer; - }; - - /** - * Decodes a TaskCreateResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.TaskCreateResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.TaskCreateResponse} TaskCreateResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskCreateResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.TaskCreateResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.jobId = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskCreateResponse message. - * @function verify - * @memberof flyteidl.service.TaskCreateResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskCreateResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.jobId != null && message.hasOwnProperty("jobId")) - if (!$util.isString(message.jobId)) - return "jobId: string expected"; - return null; - }; - - return TaskCreateResponse; - })(); - - service.TaskGetRequest = (function() { - - /** - * Properties of a TaskGetRequest. - * @memberof flyteidl.service - * @interface ITaskGetRequest - * @property {string|null} [taskType] TaskGetRequest taskType - * @property {string|null} [jobId] TaskGetRequest jobId - */ - - /** - * Constructs a new TaskGetRequest. - * @memberof flyteidl.service - * @classdesc Represents a TaskGetRequest. - * @implements ITaskGetRequest - * @constructor - * @param {flyteidl.service.ITaskGetRequest=} [properties] Properties to set - */ - function TaskGetRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskGetRequest taskType. - * @member {string} taskType - * @memberof flyteidl.service.TaskGetRequest - * @instance - */ - TaskGetRequest.prototype.taskType = ""; - - /** - * TaskGetRequest jobId. - * @member {string} jobId - * @memberof flyteidl.service.TaskGetRequest - * @instance - */ - TaskGetRequest.prototype.jobId = ""; - - /** - * Creates a new TaskGetRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.TaskGetRequest - * @static - * @param {flyteidl.service.ITaskGetRequest=} [properties] Properties to set - * @returns {flyteidl.service.TaskGetRequest} TaskGetRequest instance - */ - TaskGetRequest.create = function create(properties) { - return new TaskGetRequest(properties); - }; - - /** - * Encodes the specified TaskGetRequest message. Does not implicitly {@link flyteidl.service.TaskGetRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.TaskGetRequest - * @static - * @param {flyteidl.service.ITaskGetRequest} message TaskGetRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskGetRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.taskType); - if (message.jobId != null && message.hasOwnProperty("jobId")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.jobId); - return writer; - }; - - /** - * Decodes a TaskGetRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.TaskGetRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.TaskGetRequest} TaskGetRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskGetRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.TaskGetRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskType = reader.string(); - break; - case 2: - message.jobId = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskGetRequest message. - * @function verify - * @memberof flyteidl.service.TaskGetRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskGetRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.jobId != null && message.hasOwnProperty("jobId")) - if (!$util.isString(message.jobId)) - return "jobId: string expected"; - return null; - }; - - return TaskGetRequest; - })(); - - service.TaskGetResponse = (function() { - - /** - * Properties of a TaskGetResponse. - * @memberof flyteidl.service - * @interface ITaskGetResponse - * @property {flyteidl.service.State|null} [state] TaskGetResponse state - * @property {flyteidl.core.ILiteralMap|null} [outputs] TaskGetResponse outputs - */ - - /** - * Constructs a new TaskGetResponse. - * @memberof flyteidl.service - * @classdesc Represents a TaskGetResponse. - * @implements ITaskGetResponse - * @constructor - * @param {flyteidl.service.ITaskGetResponse=} [properties] Properties to set - */ - function TaskGetResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskGetResponse state. - * @member {flyteidl.service.State} state - * @memberof flyteidl.service.TaskGetResponse - * @instance - */ - TaskGetResponse.prototype.state = 0; - - /** - * TaskGetResponse outputs. - * @member {flyteidl.core.ILiteralMap|null|undefined} outputs - * @memberof flyteidl.service.TaskGetResponse - * @instance - */ - TaskGetResponse.prototype.outputs = null; - - /** - * Creates a new TaskGetResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.TaskGetResponse - * @static - * @param {flyteidl.service.ITaskGetResponse=} [properties] Properties to set - * @returns {flyteidl.service.TaskGetResponse} TaskGetResponse instance - */ - TaskGetResponse.create = function create(properties) { - return new TaskGetResponse(properties); - }; - - /** - * Encodes the specified TaskGetResponse message. Does not implicitly {@link flyteidl.service.TaskGetResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.TaskGetResponse - * @static - * @param {flyteidl.service.ITaskGetResponse} message TaskGetResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskGetResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.state != null && message.hasOwnProperty("state")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.state); - if (message.outputs != null && message.hasOwnProperty("outputs")) - $root.flyteidl.core.LiteralMap.encode(message.outputs, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a TaskGetResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.TaskGetResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.TaskGetResponse} TaskGetResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskGetResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.TaskGetResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.state = reader.int32(); - break; - case 2: - message.outputs = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskGetResponse message. - * @function verify - * @memberof flyteidl.service.TaskGetResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskGetResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.state != null && message.hasOwnProperty("state")) - switch (message.state) { - default: - return "state: enum value expected"; - case 0: - case 1: - case 2: - case 3: - case 4: - break; - } - if (message.outputs != null && message.hasOwnProperty("outputs")) { - var error = $root.flyteidl.core.LiteralMap.verify(message.outputs); - if (error) - return "outputs." + error; - } - return null; - }; - - return TaskGetResponse; - })(); - - service.TaskDeleteRequest = (function() { - - /** - * Properties of a TaskDeleteRequest. - * @memberof flyteidl.service - * @interface ITaskDeleteRequest - * @property {string|null} [taskType] TaskDeleteRequest taskType - * @property {string|null} [jobId] TaskDeleteRequest jobId - */ - - /** - * Constructs a new TaskDeleteRequest. - * @memberof flyteidl.service - * @classdesc Represents a TaskDeleteRequest. - * @implements ITaskDeleteRequest - * @constructor - * @param {flyteidl.service.ITaskDeleteRequest=} [properties] Properties to set - */ - function TaskDeleteRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * TaskDeleteRequest taskType. - * @member {string} taskType - * @memberof flyteidl.service.TaskDeleteRequest - * @instance - */ - TaskDeleteRequest.prototype.taskType = ""; - - /** - * TaskDeleteRequest jobId. - * @member {string} jobId - * @memberof flyteidl.service.TaskDeleteRequest - * @instance - */ - TaskDeleteRequest.prototype.jobId = ""; - - /** - * Creates a new TaskDeleteRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.TaskDeleteRequest - * @static - * @param {flyteidl.service.ITaskDeleteRequest=} [properties] Properties to set - * @returns {flyteidl.service.TaskDeleteRequest} TaskDeleteRequest instance - */ - TaskDeleteRequest.create = function create(properties) { - return new TaskDeleteRequest(properties); - }; - - /** - * Encodes the specified TaskDeleteRequest message. Does not implicitly {@link flyteidl.service.TaskDeleteRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.TaskDeleteRequest - * @static - * @param {flyteidl.service.ITaskDeleteRequest} message TaskDeleteRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskDeleteRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.taskType != null && message.hasOwnProperty("taskType")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.taskType); - if (message.jobId != null && message.hasOwnProperty("jobId")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.jobId); - return writer; - }; - - /** - * Decodes a TaskDeleteRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.TaskDeleteRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.TaskDeleteRequest} TaskDeleteRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskDeleteRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.TaskDeleteRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.taskType = reader.string(); - break; - case 2: - message.jobId = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskDeleteRequest message. - * @function verify - * @memberof flyteidl.service.TaskDeleteRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskDeleteRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.taskType != null && message.hasOwnProperty("taskType")) - if (!$util.isString(message.taskType)) - return "taskType: string expected"; - if (message.jobId != null && message.hasOwnProperty("jobId")) - if (!$util.isString(message.jobId)) - return "jobId: string expected"; - return null; - }; - - return TaskDeleteRequest; - })(); - - service.TaskDeleteResponse = (function() { - - /** - * Properties of a TaskDeleteResponse. - * @memberof flyteidl.service - * @interface ITaskDeleteResponse - */ - - /** - * Constructs a new TaskDeleteResponse. - * @memberof flyteidl.service - * @classdesc Represents a TaskDeleteResponse. - * @implements ITaskDeleteResponse - * @constructor - * @param {flyteidl.service.ITaskDeleteResponse=} [properties] Properties to set - */ - function TaskDeleteResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new TaskDeleteResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.TaskDeleteResponse - * @static - * @param {flyteidl.service.ITaskDeleteResponse=} [properties] Properties to set - * @returns {flyteidl.service.TaskDeleteResponse} TaskDeleteResponse instance - */ - TaskDeleteResponse.create = function create(properties) { - return new TaskDeleteResponse(properties); - }; - - /** - * Encodes the specified TaskDeleteResponse message. Does not implicitly {@link flyteidl.service.TaskDeleteResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.TaskDeleteResponse - * @static - * @param {flyteidl.service.ITaskDeleteResponse} message TaskDeleteResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - TaskDeleteResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a TaskDeleteResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.TaskDeleteResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.TaskDeleteResponse} TaskDeleteResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - TaskDeleteResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.TaskDeleteResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a TaskDeleteResponse message. - * @function verify - * @memberof flyteidl.service.TaskDeleteResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - TaskDeleteResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return TaskDeleteResponse; - })(); - - service.UserInfoRequest = (function() { - - /** - * Properties of a UserInfoRequest. - * @memberof flyteidl.service - * @interface IUserInfoRequest - */ - - /** - * Constructs a new UserInfoRequest. - * @memberof flyteidl.service - * @classdesc Represents a UserInfoRequest. - * @implements IUserInfoRequest - * @constructor - * @param {flyteidl.service.IUserInfoRequest=} [properties] Properties to set - */ - function UserInfoRequest(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Creates a new UserInfoRequest instance using the specified properties. - * @function create - * @memberof flyteidl.service.UserInfoRequest - * @static - * @param {flyteidl.service.IUserInfoRequest=} [properties] Properties to set - * @returns {flyteidl.service.UserInfoRequest} UserInfoRequest instance - */ - UserInfoRequest.create = function create(properties) { - return new UserInfoRequest(properties); - }; - - /** - * Encodes the specified UserInfoRequest message. Does not implicitly {@link flyteidl.service.UserInfoRequest.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.UserInfoRequest - * @static - * @param {flyteidl.service.IUserInfoRequest} message UserInfoRequest message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - UserInfoRequest.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - return writer; - }; - - /** - * Decodes a UserInfoRequest message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.UserInfoRequest - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.UserInfoRequest} UserInfoRequest - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - UserInfoRequest.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.UserInfoRequest(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a UserInfoRequest message. - * @function verify - * @memberof flyteidl.service.UserInfoRequest - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - UserInfoRequest.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - return null; - }; - - return UserInfoRequest; - })(); - - service.UserInfoResponse = (function() { - - /** - * Properties of a UserInfoResponse. - * @memberof flyteidl.service - * @interface IUserInfoResponse - * @property {string|null} [subject] UserInfoResponse subject - * @property {string|null} [name] UserInfoResponse name - * @property {string|null} [preferredUsername] UserInfoResponse preferredUsername - * @property {string|null} [givenName] UserInfoResponse givenName - * @property {string|null} [familyName] UserInfoResponse familyName - * @property {string|null} [email] UserInfoResponse email - * @property {string|null} [picture] UserInfoResponse picture - * @property {google.protobuf.IStruct|null} [additionalClaims] UserInfoResponse additionalClaims - */ - - /** - * Constructs a new UserInfoResponse. - * @memberof flyteidl.service - * @classdesc Represents a UserInfoResponse. - * @implements IUserInfoResponse - * @constructor - * @param {flyteidl.service.IUserInfoResponse=} [properties] Properties to set - */ - function UserInfoResponse(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * UserInfoResponse subject. - * @member {string} subject - * @memberof flyteidl.service.UserInfoResponse - * @instance - */ - UserInfoResponse.prototype.subject = ""; - - /** - * UserInfoResponse name. - * @member {string} name - * @memberof flyteidl.service.UserInfoResponse - * @instance - */ - UserInfoResponse.prototype.name = ""; - - /** - * UserInfoResponse preferredUsername. - * @member {string} preferredUsername - * @memberof flyteidl.service.UserInfoResponse - * @instance - */ - UserInfoResponse.prototype.preferredUsername = ""; - - /** - * UserInfoResponse givenName. - * @member {string} givenName - * @memberof flyteidl.service.UserInfoResponse - * @instance - */ - UserInfoResponse.prototype.givenName = ""; - - /** - * UserInfoResponse familyName. - * @member {string} familyName - * @memberof flyteidl.service.UserInfoResponse - * @instance - */ - UserInfoResponse.prototype.familyName = ""; - - /** - * UserInfoResponse email. - * @member {string} email - * @memberof flyteidl.service.UserInfoResponse - * @instance - */ - UserInfoResponse.prototype.email = ""; - - /** - * UserInfoResponse picture. - * @member {string} picture - * @memberof flyteidl.service.UserInfoResponse - * @instance - */ - UserInfoResponse.prototype.picture = ""; - - /** - * UserInfoResponse additionalClaims. - * @member {google.protobuf.IStruct|null|undefined} additionalClaims - * @memberof flyteidl.service.UserInfoResponse - * @instance - */ - UserInfoResponse.prototype.additionalClaims = null; - - /** - * Creates a new UserInfoResponse instance using the specified properties. - * @function create - * @memberof flyteidl.service.UserInfoResponse - * @static - * @param {flyteidl.service.IUserInfoResponse=} [properties] Properties to set - * @returns {flyteidl.service.UserInfoResponse} UserInfoResponse instance - */ - UserInfoResponse.create = function create(properties) { - return new UserInfoResponse(properties); - }; - - /** - * Encodes the specified UserInfoResponse message. Does not implicitly {@link flyteidl.service.UserInfoResponse.verify|verify} messages. - * @function encode - * @memberof flyteidl.service.UserInfoResponse - * @static - * @param {flyteidl.service.IUserInfoResponse} message UserInfoResponse message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - UserInfoResponse.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.subject != null && message.hasOwnProperty("subject")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.subject); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.name); - if (message.preferredUsername != null && message.hasOwnProperty("preferredUsername")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.preferredUsername); - if (message.givenName != null && message.hasOwnProperty("givenName")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.givenName); - if (message.familyName != null && message.hasOwnProperty("familyName")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message.familyName); - if (message.email != null && message.hasOwnProperty("email")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.email); - if (message.picture != null && message.hasOwnProperty("picture")) - writer.uint32(/* id 7, wireType 2 =*/58).string(message.picture); - if (message.additionalClaims != null && message.hasOwnProperty("additionalClaims")) - $root.google.protobuf.Struct.encode(message.additionalClaims, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a UserInfoResponse message from the specified reader or buffer. - * @function decode - * @memberof flyteidl.service.UserInfoResponse - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {flyteidl.service.UserInfoResponse} UserInfoResponse - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - UserInfoResponse.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flyteidl.service.UserInfoResponse(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.subject = reader.string(); - break; - case 2: - message.name = reader.string(); - break; - case 3: - message.preferredUsername = reader.string(); - break; - case 4: - message.givenName = reader.string(); - break; - case 5: - message.familyName = reader.string(); - break; - case 6: - message.email = reader.string(); - break; - case 7: - message.picture = reader.string(); - break; - case 8: - message.additionalClaims = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a UserInfoResponse message. - * @function verify - * @memberof flyteidl.service.UserInfoResponse - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - UserInfoResponse.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.subject != null && message.hasOwnProperty("subject")) - if (!$util.isString(message.subject)) - return "subject: string expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.preferredUsername != null && message.hasOwnProperty("preferredUsername")) - if (!$util.isString(message.preferredUsername)) - return "preferredUsername: string expected"; - if (message.givenName != null && message.hasOwnProperty("givenName")) - if (!$util.isString(message.givenName)) - return "givenName: string expected"; - if (message.familyName != null && message.hasOwnProperty("familyName")) - if (!$util.isString(message.familyName)) - return "familyName: string expected"; - if (message.email != null && message.hasOwnProperty("email")) - if (!$util.isString(message.email)) - return "email: string expected"; - if (message.picture != null && message.hasOwnProperty("picture")) - if (!$util.isString(message.picture)) - return "picture: string expected"; - if (message.additionalClaims != null && message.hasOwnProperty("additionalClaims")) { - var error = $root.google.protobuf.Struct.verify(message.additionalClaims); - if (error) - return "additionalClaims." + error; - } - return null; - }; - - return UserInfoResponse; - })(); - - service.IdentityService = (function() { - - /** - * Constructs a new IdentityService service. - * @memberof flyteidl.service - * @classdesc Represents an IdentityService - * @extends $protobuf.rpc.Service - * @constructor - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - */ - function IdentityService(rpcImpl, requestDelimited, responseDelimited) { - $protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited); - } - - (IdentityService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = IdentityService; - - /** - * Creates new IdentityService service using the specified rpc implementation. - * @function create - * @memberof flyteidl.service.IdentityService - * @static - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - * @returns {IdentityService} RPC service. Useful where requests and/or responses are streamed. - */ - IdentityService.create = function create(rpcImpl, requestDelimited, responseDelimited) { - return new this(rpcImpl, requestDelimited, responseDelimited); - }; - - /** - * Callback as used by {@link flyteidl.service.IdentityService#userInfo}. - * @memberof flyteidl.service.IdentityService - * @typedef UserInfoCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.service.UserInfoResponse} [response] UserInfoResponse - */ - - /** - * Calls UserInfo. - * @function userInfo - * @memberof flyteidl.service.IdentityService - * @instance - * @param {flyteidl.service.IUserInfoRequest} request UserInfoRequest message or plain object - * @param {flyteidl.service.IdentityService.UserInfoCallback} callback Node-style callback called with the error, if any, and UserInfoResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(IdentityService.prototype.userInfo = function userInfo(request, callback) { - return this.rpcCall(userInfo, $root.flyteidl.service.UserInfoRequest, $root.flyteidl.service.UserInfoResponse, request, callback); - }, "name", { value: "UserInfo" }); - - /** - * Calls UserInfo. - * @function userInfo - * @memberof flyteidl.service.IdentityService - * @instance - * @param {flyteidl.service.IUserInfoRequest} request UserInfoRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - return IdentityService; - })(); - - service.SignalService = (function() { - - /** - * Constructs a new SignalService service. - * @memberof flyteidl.service - * @classdesc Represents a SignalService - * @extends $protobuf.rpc.Service - * @constructor - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - */ - function SignalService(rpcImpl, requestDelimited, responseDelimited) { - $protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited); - } - - (SignalService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = SignalService; - - /** - * Creates new SignalService service using the specified rpc implementation. - * @function create - * @memberof flyteidl.service.SignalService - * @static - * @param {$protobuf.RPCImpl} rpcImpl RPC implementation - * @param {boolean} [requestDelimited=false] Whether requests are length-delimited - * @param {boolean} [responseDelimited=false] Whether responses are length-delimited - * @returns {SignalService} RPC service. Useful where requests and/or responses are streamed. - */ - SignalService.create = function create(rpcImpl, requestDelimited, responseDelimited) { - return new this(rpcImpl, requestDelimited, responseDelimited); - }; - - /** - * Callback as used by {@link flyteidl.service.SignalService#getOrCreateSignal}. - * @memberof flyteidl.service.SignalService - * @typedef GetOrCreateSignalCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.Signal} [response] Signal - */ - - /** - * Calls GetOrCreateSignal. - * @function getOrCreateSignal - * @memberof flyteidl.service.SignalService - * @instance - * @param {flyteidl.admin.ISignalGetOrCreateRequest} request SignalGetOrCreateRequest message or plain object - * @param {flyteidl.service.SignalService.GetOrCreateSignalCallback} callback Node-style callback called with the error, if any, and Signal - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(SignalService.prototype.getOrCreateSignal = function getOrCreateSignal(request, callback) { - return this.rpcCall(getOrCreateSignal, $root.flyteidl.admin.SignalGetOrCreateRequest, $root.flyteidl.admin.Signal, request, callback); - }, "name", { value: "GetOrCreateSignal" }); - - /** - * Calls GetOrCreateSignal. - * @function getOrCreateSignal - * @memberof flyteidl.service.SignalService - * @instance - * @param {flyteidl.admin.ISignalGetOrCreateRequest} request SignalGetOrCreateRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.SignalService#listSignals}. - * @memberof flyteidl.service.SignalService - * @typedef ListSignalsCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.SignalList} [response] SignalList - */ - - /** - * Calls ListSignals. - * @function listSignals - * @memberof flyteidl.service.SignalService - * @instance - * @param {flyteidl.admin.ISignalListRequest} request SignalListRequest message or plain object - * @param {flyteidl.service.SignalService.ListSignalsCallback} callback Node-style callback called with the error, if any, and SignalList - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(SignalService.prototype.listSignals = function listSignals(request, callback) { - return this.rpcCall(listSignals, $root.flyteidl.admin.SignalListRequest, $root.flyteidl.admin.SignalList, request, callback); - }, "name", { value: "ListSignals" }); - - /** - * Calls ListSignals. - * @function listSignals - * @memberof flyteidl.service.SignalService - * @instance - * @param {flyteidl.admin.ISignalListRequest} request SignalListRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - /** - * Callback as used by {@link flyteidl.service.SignalService#setSignal}. - * @memberof flyteidl.service.SignalService - * @typedef SetSignalCallback - * @type {function} - * @param {Error|null} error Error, if any - * @param {flyteidl.admin.SignalSetResponse} [response] SignalSetResponse - */ - - /** - * Calls SetSignal. - * @function setSignal - * @memberof flyteidl.service.SignalService - * @instance - * @param {flyteidl.admin.ISignalSetRequest} request SignalSetRequest message or plain object - * @param {flyteidl.service.SignalService.SetSignalCallback} callback Node-style callback called with the error, if any, and SignalSetResponse - * @returns {undefined} - * @variation 1 - */ - Object.defineProperty(SignalService.prototype.setSignal = function setSignal(request, callback) { - return this.rpcCall(setSignal, $root.flyteidl.admin.SignalSetRequest, $root.flyteidl.admin.SignalSetResponse, request, callback); - }, "name", { value: "SetSignal" }); - - /** - * Calls SetSignal. - * @function setSignal - * @memberof flyteidl.service.SignalService - * @instance - * @param {flyteidl.admin.ISignalSetRequest} request SignalSetRequest message or plain object - * @returns {Promise} Promise - * @variation 2 - */ - - return SignalService; - })(); - - return service; - })(); - - return flyteidl; - })(); - - $root.google = (function() { - - /** - * Namespace google. - * @exports google - * @namespace - */ - var google = {}; - - google.protobuf = (function() { - - /** - * Namespace protobuf. - * @memberof google - * @namespace - */ - var protobuf = {}; - - protobuf.Timestamp = (function() { - - /** - * Properties of a Timestamp. - * @memberof google.protobuf - * @interface ITimestamp - * @property {Long|null} [seconds] Timestamp seconds - * @property {number|null} [nanos] Timestamp nanos - */ - - /** - * Constructs a new Timestamp. - * @memberof google.protobuf - * @classdesc Represents a Timestamp. - * @implements ITimestamp - * @constructor - * @param {google.protobuf.ITimestamp=} [properties] Properties to set - */ - function Timestamp(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Timestamp seconds. - * @member {Long} seconds - * @memberof google.protobuf.Timestamp - * @instance - */ - Timestamp.prototype.seconds = $util.Long ? $util.Long.fromBits(0,0,false) : 0; - - /** - * Timestamp nanos. - * @member {number} nanos - * @memberof google.protobuf.Timestamp - * @instance - */ - Timestamp.prototype.nanos = 0; - - /** - * Creates a new Timestamp instance using the specified properties. - * @function create - * @memberof google.protobuf.Timestamp - * @static - * @param {google.protobuf.ITimestamp=} [properties] Properties to set - * @returns {google.protobuf.Timestamp} Timestamp instance - */ - Timestamp.create = function create(properties) { - return new Timestamp(properties); - }; - - /** - * Encodes the specified Timestamp message. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages. - * @function encode - * @memberof google.protobuf.Timestamp - * @static - * @param {google.protobuf.ITimestamp} message Timestamp message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Timestamp.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.seconds != null && message.hasOwnProperty("seconds")) - writer.uint32(/* id 1, wireType 0 =*/8).int64(message.seconds); - if (message.nanos != null && message.hasOwnProperty("nanos")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.nanos); - return writer; - }; - - /** - * Decodes a Timestamp message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.Timestamp - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.Timestamp} Timestamp - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Timestamp.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.Timestamp(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.seconds = reader.int64(); - break; - case 2: - message.nanos = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Timestamp message. - * @function verify - * @memberof google.protobuf.Timestamp - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Timestamp.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.seconds != null && message.hasOwnProperty("seconds")) - if (!$util.isInteger(message.seconds) && !(message.seconds && $util.isInteger(message.seconds.low) && $util.isInteger(message.seconds.high))) - return "seconds: integer|Long expected"; - if (message.nanos != null && message.hasOwnProperty("nanos")) - if (!$util.isInteger(message.nanos)) - return "nanos: integer expected"; - return null; - }; - - return Timestamp; - })(); - - protobuf.Duration = (function() { - - /** - * Properties of a Duration. - * @memberof google.protobuf - * @interface IDuration - * @property {Long|null} [seconds] Duration seconds - * @property {number|null} [nanos] Duration nanos - */ - - /** - * Constructs a new Duration. - * @memberof google.protobuf - * @classdesc Represents a Duration. - * @implements IDuration - * @constructor - * @param {google.protobuf.IDuration=} [properties] Properties to set - */ - function Duration(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Duration seconds. - * @member {Long} seconds - * @memberof google.protobuf.Duration - * @instance - */ - Duration.prototype.seconds = $util.Long ? $util.Long.fromBits(0,0,false) : 0; - - /** - * Duration nanos. - * @member {number} nanos - * @memberof google.protobuf.Duration - * @instance - */ - Duration.prototype.nanos = 0; - - /** - * Creates a new Duration instance using the specified properties. - * @function create - * @memberof google.protobuf.Duration - * @static - * @param {google.protobuf.IDuration=} [properties] Properties to set - * @returns {google.protobuf.Duration} Duration instance - */ - Duration.create = function create(properties) { - return new Duration(properties); - }; - - /** - * Encodes the specified Duration message. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages. - * @function encode - * @memberof google.protobuf.Duration - * @static - * @param {google.protobuf.IDuration} message Duration message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Duration.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.seconds != null && message.hasOwnProperty("seconds")) - writer.uint32(/* id 1, wireType 0 =*/8).int64(message.seconds); - if (message.nanos != null && message.hasOwnProperty("nanos")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.nanos); - return writer; - }; - - /** - * Decodes a Duration message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.Duration - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.Duration} Duration - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Duration.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.Duration(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.seconds = reader.int64(); - break; - case 2: - message.nanos = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Duration message. - * @function verify - * @memberof google.protobuf.Duration - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Duration.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.seconds != null && message.hasOwnProperty("seconds")) - if (!$util.isInteger(message.seconds) && !(message.seconds && $util.isInteger(message.seconds.low) && $util.isInteger(message.seconds.high))) - return "seconds: integer|Long expected"; - if (message.nanos != null && message.hasOwnProperty("nanos")) - if (!$util.isInteger(message.nanos)) - return "nanos: integer expected"; - return null; - }; - - return Duration; - })(); - - protobuf.Struct = (function() { - - /** - * Properties of a Struct. - * @memberof google.protobuf - * @interface IStruct - * @property {Object.|null} [fields] Struct fields - */ - - /** - * Constructs a new Struct. - * @memberof google.protobuf - * @classdesc Represents a Struct. - * @implements IStruct - * @constructor - * @param {google.protobuf.IStruct=} [properties] Properties to set - */ - function Struct(properties) { - this.fields = {}; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Struct fields. - * @member {Object.} fields - * @memberof google.protobuf.Struct - * @instance - */ - Struct.prototype.fields = $util.emptyObject; - - /** - * Creates a new Struct instance using the specified properties. - * @function create - * @memberof google.protobuf.Struct - * @static - * @param {google.protobuf.IStruct=} [properties] Properties to set - * @returns {google.protobuf.Struct} Struct instance - */ - Struct.create = function create(properties) { - return new Struct(properties); - }; - - /** - * Encodes the specified Struct message. Does not implicitly {@link google.protobuf.Struct.verify|verify} messages. - * @function encode - * @memberof google.protobuf.Struct - * @static - * @param {google.protobuf.IStruct} message Struct message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Struct.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.fields != null && message.hasOwnProperty("fields")) - for (var keys = Object.keys(message.fields), i = 0; i < keys.length; ++i) { - writer.uint32(/* id 1, wireType 2 =*/10).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); - $root.google.protobuf.Value.encode(message.fields[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); - } - return writer; - }; - - /** - * Decodes a Struct message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.Struct - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.Struct} Struct - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Struct.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.Struct(), key; - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - reader.skip().pos++; - if (message.fields === $util.emptyObject) - message.fields = {}; - key = reader.string(); - reader.pos++; - message.fields[key] = $root.google.protobuf.Value.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Struct message. - * @function verify - * @memberof google.protobuf.Struct - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Struct.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.fields != null && message.hasOwnProperty("fields")) { - if (!$util.isObject(message.fields)) - return "fields: object expected"; - var key = Object.keys(message.fields); - for (var i = 0; i < key.length; ++i) { - var error = $root.google.protobuf.Value.verify(message.fields[key[i]]); - if (error) - return "fields." + error; - } - } - return null; - }; - - return Struct; - })(); - - protobuf.Value = (function() { - - /** - * Properties of a Value. - * @memberof google.protobuf - * @interface IValue - * @property {google.protobuf.NullValue|null} [nullValue] Value nullValue - * @property {number|null} [numberValue] Value numberValue - * @property {string|null} [stringValue] Value stringValue - * @property {boolean|null} [boolValue] Value boolValue - * @property {google.protobuf.IStruct|null} [structValue] Value structValue - * @property {google.protobuf.IListValue|null} [listValue] Value listValue - */ - - /** - * Constructs a new Value. - * @memberof google.protobuf - * @classdesc Represents a Value. - * @implements IValue - * @constructor - * @param {google.protobuf.IValue=} [properties] Properties to set - */ - function Value(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Value nullValue. - * @member {google.protobuf.NullValue} nullValue - * @memberof google.protobuf.Value - * @instance - */ - Value.prototype.nullValue = 0; - - /** - * Value numberValue. - * @member {number} numberValue - * @memberof google.protobuf.Value - * @instance - */ - Value.prototype.numberValue = 0; - - /** - * Value stringValue. - * @member {string} stringValue - * @memberof google.protobuf.Value - * @instance - */ - Value.prototype.stringValue = ""; - - /** - * Value boolValue. - * @member {boolean} boolValue - * @memberof google.protobuf.Value - * @instance - */ - Value.prototype.boolValue = false; - - /** - * Value structValue. - * @member {google.protobuf.IStruct|null|undefined} structValue - * @memberof google.protobuf.Value - * @instance - */ - Value.prototype.structValue = null; - - /** - * Value listValue. - * @member {google.protobuf.IListValue|null|undefined} listValue - * @memberof google.protobuf.Value - * @instance - */ - Value.prototype.listValue = null; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * Value kind. - * @member {"nullValue"|"numberValue"|"stringValue"|"boolValue"|"structValue"|"listValue"|undefined} kind - * @memberof google.protobuf.Value - * @instance - */ - Object.defineProperty(Value.prototype, "kind", { - get: $util.oneOfGetter($oneOfFields = ["nullValue", "numberValue", "stringValue", "boolValue", "structValue", "listValue"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new Value instance using the specified properties. - * @function create - * @memberof google.protobuf.Value - * @static - * @param {google.protobuf.IValue=} [properties] Properties to set - * @returns {google.protobuf.Value} Value instance - */ - Value.create = function create(properties) { - return new Value(properties); - }; - - /** - * Encodes the specified Value message. Does not implicitly {@link google.protobuf.Value.verify|verify} messages. - * @function encode - * @memberof google.protobuf.Value - * @static - * @param {google.protobuf.IValue} message Value message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Value.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.nullValue != null && message.hasOwnProperty("nullValue")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.nullValue); - if (message.numberValue != null && message.hasOwnProperty("numberValue")) - writer.uint32(/* id 2, wireType 1 =*/17).double(message.numberValue); - if (message.stringValue != null && message.hasOwnProperty("stringValue")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.stringValue); - if (message.boolValue != null && message.hasOwnProperty("boolValue")) - writer.uint32(/* id 4, wireType 0 =*/32).bool(message.boolValue); - if (message.structValue != null && message.hasOwnProperty("structValue")) - $root.google.protobuf.Struct.encode(message.structValue, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.listValue != null && message.hasOwnProperty("listValue")) - $root.google.protobuf.ListValue.encode(message.listValue, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Value message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.Value - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.Value} Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Value.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.Value(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.nullValue = reader.int32(); - break; - case 2: - message.numberValue = reader.double(); - break; - case 3: - message.stringValue = reader.string(); - break; - case 4: - message.boolValue = reader.bool(); - break; - case 5: - message.structValue = $root.google.protobuf.Struct.decode(reader, reader.uint32()); - break; - case 6: - message.listValue = $root.google.protobuf.ListValue.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Value message. - * @function verify - * @memberof google.protobuf.Value - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Value.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.nullValue != null && message.hasOwnProperty("nullValue")) { - properties.kind = 1; - switch (message.nullValue) { - default: - return "nullValue: enum value expected"; - case 0: - break; - } - } - if (message.numberValue != null && message.hasOwnProperty("numberValue")) { - if (properties.kind === 1) - return "kind: multiple values"; - properties.kind = 1; - if (typeof message.numberValue !== "number") - return "numberValue: number expected"; - } - if (message.stringValue != null && message.hasOwnProperty("stringValue")) { - if (properties.kind === 1) - return "kind: multiple values"; - properties.kind = 1; - if (!$util.isString(message.stringValue)) - return "stringValue: string expected"; - } - if (message.boolValue != null && message.hasOwnProperty("boolValue")) { - if (properties.kind === 1) - return "kind: multiple values"; - properties.kind = 1; - if (typeof message.boolValue !== "boolean") - return "boolValue: boolean expected"; - } - if (message.structValue != null && message.hasOwnProperty("structValue")) { - if (properties.kind === 1) - return "kind: multiple values"; - properties.kind = 1; - { - var error = $root.google.protobuf.Struct.verify(message.structValue); - if (error) - return "structValue." + error; - } - } - if (message.listValue != null && message.hasOwnProperty("listValue")) { - if (properties.kind === 1) - return "kind: multiple values"; - properties.kind = 1; - { - var error = $root.google.protobuf.ListValue.verify(message.listValue); - if (error) - return "listValue." + error; - } - } - return null; - }; - - return Value; - })(); - - /** - * NullValue enum. - * @name google.protobuf.NullValue - * @enum {string} - * @property {number} NULL_VALUE=0 NULL_VALUE value - */ - protobuf.NullValue = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "NULL_VALUE"] = 0; - return values; - })(); - - protobuf.ListValue = (function() { - - /** - * Properties of a ListValue. - * @memberof google.protobuf - * @interface IListValue - * @property {Array.|null} [values] ListValue values - */ - - /** - * Constructs a new ListValue. - * @memberof google.protobuf - * @classdesc Represents a ListValue. - * @implements IListValue - * @constructor - * @param {google.protobuf.IListValue=} [properties] Properties to set - */ - function ListValue(properties) { - this.values = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ListValue values. - * @member {Array.} values - * @memberof google.protobuf.ListValue - * @instance - */ - ListValue.prototype.values = $util.emptyArray; - - /** - * Creates a new ListValue instance using the specified properties. - * @function create - * @memberof google.protobuf.ListValue - * @static - * @param {google.protobuf.IListValue=} [properties] Properties to set - * @returns {google.protobuf.ListValue} ListValue instance - */ - ListValue.create = function create(properties) { - return new ListValue(properties); - }; - - /** - * Encodes the specified ListValue message. Does not implicitly {@link google.protobuf.ListValue.verify|verify} messages. - * @function encode - * @memberof google.protobuf.ListValue - * @static - * @param {google.protobuf.IListValue} message ListValue message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ListValue.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.values != null && message.values.length) - for (var i = 0; i < message.values.length; ++i) - $root.google.protobuf.Value.encode(message.values[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ListValue message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.ListValue - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.ListValue} ListValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ListValue.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.ListValue(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.values && message.values.length)) - message.values = []; - message.values.push($root.google.protobuf.Value.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ListValue message. - * @function verify - * @memberof google.protobuf.ListValue - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ListValue.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.values != null && message.hasOwnProperty("values")) { - if (!Array.isArray(message.values)) - return "values: array expected"; - for (var i = 0; i < message.values.length; ++i) { - var error = $root.google.protobuf.Value.verify(message.values[i]); - if (error) - return "values." + error; - } - } - return null; - }; - - return ListValue; - })(); - - protobuf.DoubleValue = (function() { - - /** - * Properties of a DoubleValue. - * @memberof google.protobuf - * @interface IDoubleValue - * @property {number|null} [value] DoubleValue value - */ - - /** - * Constructs a new DoubleValue. - * @memberof google.protobuf - * @classdesc Represents a DoubleValue. - * @implements IDoubleValue - * @constructor - * @param {google.protobuf.IDoubleValue=} [properties] Properties to set - */ - function DoubleValue(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DoubleValue value. - * @member {number} value - * @memberof google.protobuf.DoubleValue - * @instance - */ - DoubleValue.prototype.value = 0; - - /** - * Creates a new DoubleValue instance using the specified properties. - * @function create - * @memberof google.protobuf.DoubleValue - * @static - * @param {google.protobuf.IDoubleValue=} [properties] Properties to set - * @returns {google.protobuf.DoubleValue} DoubleValue instance - */ - DoubleValue.create = function create(properties) { - return new DoubleValue(properties); - }; - - /** - * Encodes the specified DoubleValue message. Does not implicitly {@link google.protobuf.DoubleValue.verify|verify} messages. - * @function encode - * @memberof google.protobuf.DoubleValue - * @static - * @param {google.protobuf.IDoubleValue} message DoubleValue message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DoubleValue.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 1 =*/9).double(message.value); - return writer; - }; - - /** - * Decodes a DoubleValue message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.DoubleValue - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.DoubleValue} DoubleValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DoubleValue.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.DoubleValue(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.double(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DoubleValue message. - * @function verify - * @memberof google.protobuf.DoubleValue - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DoubleValue.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (typeof message.value !== "number") - return "value: number expected"; - return null; - }; - - return DoubleValue; - })(); - - protobuf.FloatValue = (function() { - - /** - * Properties of a FloatValue. - * @memberof google.protobuf - * @interface IFloatValue - * @property {number|null} [value] FloatValue value - */ - - /** - * Constructs a new FloatValue. - * @memberof google.protobuf - * @classdesc Represents a FloatValue. - * @implements IFloatValue - * @constructor - * @param {google.protobuf.IFloatValue=} [properties] Properties to set - */ - function FloatValue(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * FloatValue value. - * @member {number} value - * @memberof google.protobuf.FloatValue - * @instance - */ - FloatValue.prototype.value = 0; - - /** - * Creates a new FloatValue instance using the specified properties. - * @function create - * @memberof google.protobuf.FloatValue - * @static - * @param {google.protobuf.IFloatValue=} [properties] Properties to set - * @returns {google.protobuf.FloatValue} FloatValue instance - */ - FloatValue.create = function create(properties) { - return new FloatValue(properties); - }; - - /** - * Encodes the specified FloatValue message. Does not implicitly {@link google.protobuf.FloatValue.verify|verify} messages. - * @function encode - * @memberof google.protobuf.FloatValue - * @static - * @param {google.protobuf.IFloatValue} message FloatValue message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - FloatValue.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 5 =*/13).float(message.value); - return writer; - }; - - /** - * Decodes a FloatValue message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.FloatValue - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.FloatValue} FloatValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - FloatValue.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.FloatValue(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.float(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a FloatValue message. - * @function verify - * @memberof google.protobuf.FloatValue - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - FloatValue.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (typeof message.value !== "number") - return "value: number expected"; - return null; - }; - - return FloatValue; - })(); - - protobuf.Int64Value = (function() { - - /** - * Properties of an Int64Value. - * @memberof google.protobuf - * @interface IInt64Value - * @property {Long|null} [value] Int64Value value - */ - - /** - * Constructs a new Int64Value. - * @memberof google.protobuf - * @classdesc Represents an Int64Value. - * @implements IInt64Value - * @constructor - * @param {google.protobuf.IInt64Value=} [properties] Properties to set - */ - function Int64Value(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Int64Value value. - * @member {Long} value - * @memberof google.protobuf.Int64Value - * @instance - */ - Int64Value.prototype.value = $util.Long ? $util.Long.fromBits(0,0,false) : 0; - - /** - * Creates a new Int64Value instance using the specified properties. - * @function create - * @memberof google.protobuf.Int64Value - * @static - * @param {google.protobuf.IInt64Value=} [properties] Properties to set - * @returns {google.protobuf.Int64Value} Int64Value instance - */ - Int64Value.create = function create(properties) { - return new Int64Value(properties); - }; - - /** - * Encodes the specified Int64Value message. Does not implicitly {@link google.protobuf.Int64Value.verify|verify} messages. - * @function encode - * @memberof google.protobuf.Int64Value - * @static - * @param {google.protobuf.IInt64Value} message Int64Value message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Int64Value.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 0 =*/8).int64(message.value); - return writer; - }; - - /** - * Decodes an Int64Value message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.Int64Value - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.Int64Value} Int64Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Int64Value.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.Int64Value(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.int64(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Int64Value message. - * @function verify - * @memberof google.protobuf.Int64Value - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Int64Value.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isInteger(message.value) && !(message.value && $util.isInteger(message.value.low) && $util.isInteger(message.value.high))) - return "value: integer|Long expected"; - return null; - }; - - return Int64Value; - })(); - - protobuf.UInt64Value = (function() { - - /** - * Properties of a UInt64Value. - * @memberof google.protobuf - * @interface IUInt64Value - * @property {Long|null} [value] UInt64Value value - */ - - /** - * Constructs a new UInt64Value. - * @memberof google.protobuf - * @classdesc Represents a UInt64Value. - * @implements IUInt64Value - * @constructor - * @param {google.protobuf.IUInt64Value=} [properties] Properties to set - */ - function UInt64Value(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * UInt64Value value. - * @member {Long} value - * @memberof google.protobuf.UInt64Value - * @instance - */ - UInt64Value.prototype.value = $util.Long ? $util.Long.fromBits(0,0,true) : 0; - - /** - * Creates a new UInt64Value instance using the specified properties. - * @function create - * @memberof google.protobuf.UInt64Value - * @static - * @param {google.protobuf.IUInt64Value=} [properties] Properties to set - * @returns {google.protobuf.UInt64Value} UInt64Value instance - */ - UInt64Value.create = function create(properties) { - return new UInt64Value(properties); - }; - - /** - * Encodes the specified UInt64Value message. Does not implicitly {@link google.protobuf.UInt64Value.verify|verify} messages. - * @function encode - * @memberof google.protobuf.UInt64Value - * @static - * @param {google.protobuf.IUInt64Value} message UInt64Value message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - UInt64Value.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 0 =*/8).uint64(message.value); - return writer; - }; - - /** - * Decodes a UInt64Value message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.UInt64Value - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.UInt64Value} UInt64Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - UInt64Value.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.UInt64Value(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.uint64(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a UInt64Value message. - * @function verify - * @memberof google.protobuf.UInt64Value - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - UInt64Value.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isInteger(message.value) && !(message.value && $util.isInteger(message.value.low) && $util.isInteger(message.value.high))) - return "value: integer|Long expected"; - return null; - }; - - return UInt64Value; - })(); - - protobuf.Int32Value = (function() { - - /** - * Properties of an Int32Value. - * @memberof google.protobuf - * @interface IInt32Value - * @property {number|null} [value] Int32Value value - */ - - /** - * Constructs a new Int32Value. - * @memberof google.protobuf - * @classdesc Represents an Int32Value. - * @implements IInt32Value - * @constructor - * @param {google.protobuf.IInt32Value=} [properties] Properties to set - */ - function Int32Value(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Int32Value value. - * @member {number} value - * @memberof google.protobuf.Int32Value - * @instance - */ - Int32Value.prototype.value = 0; - - /** - * Creates a new Int32Value instance using the specified properties. - * @function create - * @memberof google.protobuf.Int32Value - * @static - * @param {google.protobuf.IInt32Value=} [properties] Properties to set - * @returns {google.protobuf.Int32Value} Int32Value instance - */ - Int32Value.create = function create(properties) { - return new Int32Value(properties); - }; - - /** - * Encodes the specified Int32Value message. Does not implicitly {@link google.protobuf.Int32Value.verify|verify} messages. - * @function encode - * @memberof google.protobuf.Int32Value - * @static - * @param {google.protobuf.IInt32Value} message Int32Value message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Int32Value.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.value); - return writer; - }; - - /** - * Decodes an Int32Value message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.Int32Value - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.Int32Value} Int32Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Int32Value.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.Int32Value(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Int32Value message. - * @function verify - * @memberof google.protobuf.Int32Value - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Int32Value.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isInteger(message.value)) - return "value: integer expected"; - return null; - }; - - return Int32Value; - })(); - - protobuf.UInt32Value = (function() { - - /** - * Properties of a UInt32Value. - * @memberof google.protobuf - * @interface IUInt32Value - * @property {number|null} [value] UInt32Value value - */ - - /** - * Constructs a new UInt32Value. - * @memberof google.protobuf - * @classdesc Represents a UInt32Value. - * @implements IUInt32Value - * @constructor - * @param {google.protobuf.IUInt32Value=} [properties] Properties to set - */ - function UInt32Value(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * UInt32Value value. - * @member {number} value - * @memberof google.protobuf.UInt32Value - * @instance - */ - UInt32Value.prototype.value = 0; - - /** - * Creates a new UInt32Value instance using the specified properties. - * @function create - * @memberof google.protobuf.UInt32Value - * @static - * @param {google.protobuf.IUInt32Value=} [properties] Properties to set - * @returns {google.protobuf.UInt32Value} UInt32Value instance - */ - UInt32Value.create = function create(properties) { - return new UInt32Value(properties); - }; - - /** - * Encodes the specified UInt32Value message. Does not implicitly {@link google.protobuf.UInt32Value.verify|verify} messages. - * @function encode - * @memberof google.protobuf.UInt32Value - * @static - * @param {google.protobuf.IUInt32Value} message UInt32Value message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - UInt32Value.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 0 =*/8).uint32(message.value); - return writer; - }; - - /** - * Decodes a UInt32Value message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.UInt32Value - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.UInt32Value} UInt32Value - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - UInt32Value.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.UInt32Value(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.uint32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a UInt32Value message. - * @function verify - * @memberof google.protobuf.UInt32Value - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - UInt32Value.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isInteger(message.value)) - return "value: integer expected"; - return null; - }; - - return UInt32Value; - })(); - - protobuf.BoolValue = (function() { - - /** - * Properties of a BoolValue. - * @memberof google.protobuf - * @interface IBoolValue - * @property {boolean|null} [value] BoolValue value - */ - - /** - * Constructs a new BoolValue. - * @memberof google.protobuf - * @classdesc Represents a BoolValue. - * @implements IBoolValue - * @constructor - * @param {google.protobuf.IBoolValue=} [properties] Properties to set - */ - function BoolValue(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BoolValue value. - * @member {boolean} value - * @memberof google.protobuf.BoolValue - * @instance - */ - BoolValue.prototype.value = false; - - /** - * Creates a new BoolValue instance using the specified properties. - * @function create - * @memberof google.protobuf.BoolValue - * @static - * @param {google.protobuf.IBoolValue=} [properties] Properties to set - * @returns {google.protobuf.BoolValue} BoolValue instance - */ - BoolValue.create = function create(properties) { - return new BoolValue(properties); - }; - - /** - * Encodes the specified BoolValue message. Does not implicitly {@link google.protobuf.BoolValue.verify|verify} messages. - * @function encode - * @memberof google.protobuf.BoolValue - * @static - * @param {google.protobuf.IBoolValue} message BoolValue message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BoolValue.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 0 =*/8).bool(message.value); - return writer; - }; - - /** - * Decodes a BoolValue message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.BoolValue - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.BoolValue} BoolValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BoolValue.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.BoolValue(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BoolValue message. - * @function verify - * @memberof google.protobuf.BoolValue - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BoolValue.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (typeof message.value !== "boolean") - return "value: boolean expected"; - return null; - }; - - return BoolValue; - })(); - - protobuf.StringValue = (function() { - - /** - * Properties of a StringValue. - * @memberof google.protobuf - * @interface IStringValue - * @property {string|null} [value] StringValue value - */ - - /** - * Constructs a new StringValue. - * @memberof google.protobuf - * @classdesc Represents a StringValue. - * @implements IStringValue - * @constructor - * @param {google.protobuf.IStringValue=} [properties] Properties to set - */ - function StringValue(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * StringValue value. - * @member {string} value - * @memberof google.protobuf.StringValue - * @instance - */ - StringValue.prototype.value = ""; - - /** - * Creates a new StringValue instance using the specified properties. - * @function create - * @memberof google.protobuf.StringValue - * @static - * @param {google.protobuf.IStringValue=} [properties] Properties to set - * @returns {google.protobuf.StringValue} StringValue instance - */ - StringValue.create = function create(properties) { - return new StringValue(properties); - }; - - /** - * Encodes the specified StringValue message. Does not implicitly {@link google.protobuf.StringValue.verify|verify} messages. - * @function encode - * @memberof google.protobuf.StringValue - * @static - * @param {google.protobuf.IStringValue} message StringValue message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - StringValue.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.value); - return writer; - }; - - /** - * Decodes a StringValue message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.StringValue - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.StringValue} StringValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - StringValue.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.StringValue(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a StringValue message. - * @function verify - * @memberof google.protobuf.StringValue - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - StringValue.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!$util.isString(message.value)) - return "value: string expected"; - return null; - }; - - return StringValue; - })(); - - protobuf.BytesValue = (function() { - - /** - * Properties of a BytesValue. - * @memberof google.protobuf - * @interface IBytesValue - * @property {Uint8Array|null} [value] BytesValue value - */ - - /** - * Constructs a new BytesValue. - * @memberof google.protobuf - * @classdesc Represents a BytesValue. - * @implements IBytesValue - * @constructor - * @param {google.protobuf.IBytesValue=} [properties] Properties to set - */ - function BytesValue(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * BytesValue value. - * @member {Uint8Array} value - * @memberof google.protobuf.BytesValue - * @instance - */ - BytesValue.prototype.value = $util.newBuffer([]); - - /** - * Creates a new BytesValue instance using the specified properties. - * @function create - * @memberof google.protobuf.BytesValue - * @static - * @param {google.protobuf.IBytesValue=} [properties] Properties to set - * @returns {google.protobuf.BytesValue} BytesValue instance - */ - BytesValue.create = function create(properties) { - return new BytesValue(properties); - }; - - /** - * Encodes the specified BytesValue message. Does not implicitly {@link google.protobuf.BytesValue.verify|verify} messages. - * @function encode - * @memberof google.protobuf.BytesValue - * @static - * @param {google.protobuf.IBytesValue} message BytesValue message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - BytesValue.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 1, wireType 2 =*/10).bytes(message.value); - return writer; - }; - - /** - * Decodes a BytesValue message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.BytesValue - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.BytesValue} BytesValue - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - BytesValue.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.BytesValue(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.value = reader.bytes(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a BytesValue message. - * @function verify - * @memberof google.protobuf.BytesValue - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - BytesValue.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!(message.value && typeof message.value.length === "number" || $util.isString(message.value))) - return "value: buffer expected"; - return null; - }; - - return BytesValue; - })(); - - protobuf.Any = (function() { - - /** - * Properties of an Any. - * @memberof google.protobuf - * @interface IAny - * @property {string|null} [type_url] Any type_url - * @property {Uint8Array|null} [value] Any value - */ - - /** - * Constructs a new Any. - * @memberof google.protobuf - * @classdesc Represents an Any. - * @implements IAny - * @constructor - * @param {google.protobuf.IAny=} [properties] Properties to set - */ - function Any(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Any type_url. - * @member {string} type_url - * @memberof google.protobuf.Any - * @instance - */ - Any.prototype.type_url = ""; - - /** - * Any value. - * @member {Uint8Array} value - * @memberof google.protobuf.Any - * @instance - */ - Any.prototype.value = $util.newBuffer([]); - - /** - * Creates a new Any instance using the specified properties. - * @function create - * @memberof google.protobuf.Any - * @static - * @param {google.protobuf.IAny=} [properties] Properties to set - * @returns {google.protobuf.Any} Any instance - */ - Any.create = function create(properties) { - return new Any(properties); - }; - - /** - * Encodes the specified Any message. Does not implicitly {@link google.protobuf.Any.verify|verify} messages. - * @function encode - * @memberof google.protobuf.Any - * @static - * @param {google.protobuf.IAny} message Any message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Any.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.type_url != null && message.hasOwnProperty("type_url")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.type_url); - if (message.value != null && message.hasOwnProperty("value")) - writer.uint32(/* id 2, wireType 2 =*/18).bytes(message.value); - return writer; - }; - - /** - * Decodes an Any message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.Any - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.Any} Any - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Any.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.Any(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.type_url = reader.string(); - break; - case 2: - message.value = reader.bytes(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Any message. - * @function verify - * @memberof google.protobuf.Any - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Any.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.type_url != null && message.hasOwnProperty("type_url")) - if (!$util.isString(message.type_url)) - return "type_url: string expected"; - if (message.value != null && message.hasOwnProperty("value")) - if (!(message.value && typeof message.value.length === "number" || $util.isString(message.value))) - return "value: buffer expected"; - return null; - }; - - return Any; - })(); - - protobuf.FileDescriptorSet = (function() { - - /** - * Properties of a FileDescriptorSet. - * @memberof google.protobuf - * @interface IFileDescriptorSet - * @property {Array.|null} [file] FileDescriptorSet file - */ - - /** - * Constructs a new FileDescriptorSet. - * @memberof google.protobuf - * @classdesc Represents a FileDescriptorSet. - * @implements IFileDescriptorSet - * @constructor - * @param {google.protobuf.IFileDescriptorSet=} [properties] Properties to set - */ - function FileDescriptorSet(properties) { - this.file = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * FileDescriptorSet file. - * @member {Array.} file - * @memberof google.protobuf.FileDescriptorSet - * @instance - */ - FileDescriptorSet.prototype.file = $util.emptyArray; - - /** - * Creates a new FileDescriptorSet instance using the specified properties. - * @function create - * @memberof google.protobuf.FileDescriptorSet - * @static - * @param {google.protobuf.IFileDescriptorSet=} [properties] Properties to set - * @returns {google.protobuf.FileDescriptorSet} FileDescriptorSet instance - */ - FileDescriptorSet.create = function create(properties) { - return new FileDescriptorSet(properties); - }; - - /** - * Encodes the specified FileDescriptorSet message. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages. - * @function encode - * @memberof google.protobuf.FileDescriptorSet - * @static - * @param {google.protobuf.IFileDescriptorSet} message FileDescriptorSet message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - FileDescriptorSet.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.file != null && message.file.length) - for (var i = 0; i < message.file.length; ++i) - $root.google.protobuf.FileDescriptorProto.encode(message.file[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a FileDescriptorSet message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.FileDescriptorSet - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.FileDescriptorSet} FileDescriptorSet - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - FileDescriptorSet.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.FileDescriptorSet(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.file && message.file.length)) - message.file = []; - message.file.push($root.google.protobuf.FileDescriptorProto.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a FileDescriptorSet message. - * @function verify - * @memberof google.protobuf.FileDescriptorSet - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - FileDescriptorSet.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.file != null && message.hasOwnProperty("file")) { - if (!Array.isArray(message.file)) - return "file: array expected"; - for (var i = 0; i < message.file.length; ++i) { - var error = $root.google.protobuf.FileDescriptorProto.verify(message.file[i]); - if (error) - return "file." + error; - } - } - return null; - }; - - return FileDescriptorSet; - })(); - - protobuf.FileDescriptorProto = (function() { - - /** - * Properties of a FileDescriptorProto. - * @memberof google.protobuf - * @interface IFileDescriptorProto - * @property {string|null} [name] FileDescriptorProto name - * @property {string|null} ["package"] FileDescriptorProto package - * @property {Array.|null} [dependency] FileDescriptorProto dependency - * @property {Array.|null} [publicDependency] FileDescriptorProto publicDependency - * @property {Array.|null} [weakDependency] FileDescriptorProto weakDependency - * @property {Array.|null} [messageType] FileDescriptorProto messageType - * @property {Array.|null} [enumType] FileDescriptorProto enumType - * @property {Array.|null} [service] FileDescriptorProto service - * @property {Array.|null} [extension] FileDescriptorProto extension - * @property {google.protobuf.IFileOptions|null} [options] FileDescriptorProto options - * @property {google.protobuf.ISourceCodeInfo|null} [sourceCodeInfo] FileDescriptorProto sourceCodeInfo - * @property {string|null} [syntax] FileDescriptorProto syntax - */ - - /** - * Constructs a new FileDescriptorProto. - * @memberof google.protobuf - * @classdesc Represents a FileDescriptorProto. - * @implements IFileDescriptorProto - * @constructor - * @param {google.protobuf.IFileDescriptorProto=} [properties] Properties to set - */ - function FileDescriptorProto(properties) { - this.dependency = []; - this.publicDependency = []; - this.weakDependency = []; - this.messageType = []; - this.enumType = []; - this.service = []; - this.extension = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * FileDescriptorProto name. - * @member {string} name - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.name = ""; - - /** - * FileDescriptorProto package. - * @member {string} package - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype["package"] = ""; - - /** - * FileDescriptorProto dependency. - * @member {Array.} dependency - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.dependency = $util.emptyArray; - - /** - * FileDescriptorProto publicDependency. - * @member {Array.} publicDependency - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.publicDependency = $util.emptyArray; - - /** - * FileDescriptorProto weakDependency. - * @member {Array.} weakDependency - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.weakDependency = $util.emptyArray; - - /** - * FileDescriptorProto messageType. - * @member {Array.} messageType - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.messageType = $util.emptyArray; - - /** - * FileDescriptorProto enumType. - * @member {Array.} enumType - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.enumType = $util.emptyArray; - - /** - * FileDescriptorProto service. - * @member {Array.} service - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.service = $util.emptyArray; - - /** - * FileDescriptorProto extension. - * @member {Array.} extension - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.extension = $util.emptyArray; - - /** - * FileDescriptorProto options. - * @member {google.protobuf.IFileOptions|null|undefined} options - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.options = null; - - /** - * FileDescriptorProto sourceCodeInfo. - * @member {google.protobuf.ISourceCodeInfo|null|undefined} sourceCodeInfo - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.sourceCodeInfo = null; - - /** - * FileDescriptorProto syntax. - * @member {string} syntax - * @memberof google.protobuf.FileDescriptorProto - * @instance - */ - FileDescriptorProto.prototype.syntax = ""; - - /** - * Creates a new FileDescriptorProto instance using the specified properties. - * @function create - * @memberof google.protobuf.FileDescriptorProto - * @static - * @param {google.protobuf.IFileDescriptorProto=} [properties] Properties to set - * @returns {google.protobuf.FileDescriptorProto} FileDescriptorProto instance - */ - FileDescriptorProto.create = function create(properties) { - return new FileDescriptorProto(properties); - }; - - /** - * Encodes the specified FileDescriptorProto message. Does not implicitly {@link google.protobuf.FileDescriptorProto.verify|verify} messages. - * @function encode - * @memberof google.protobuf.FileDescriptorProto - * @static - * @param {google.protobuf.IFileDescriptorProto} message FileDescriptorProto message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - FileDescriptorProto.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message["package"] != null && message.hasOwnProperty("package")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message["package"]); - if (message.dependency != null && message.dependency.length) - for (var i = 0; i < message.dependency.length; ++i) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.dependency[i]); - if (message.messageType != null && message.messageType.length) - for (var i = 0; i < message.messageType.length; ++i) - $root.google.protobuf.DescriptorProto.encode(message.messageType[i], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.enumType != null && message.enumType.length) - for (var i = 0; i < message.enumType.length; ++i) - $root.google.protobuf.EnumDescriptorProto.encode(message.enumType[i], writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.service != null && message.service.length) - for (var i = 0; i < message.service.length; ++i) - $root.google.protobuf.ServiceDescriptorProto.encode(message.service[i], writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.extension != null && message.extension.length) - for (var i = 0; i < message.extension.length; ++i) - $root.google.protobuf.FieldDescriptorProto.encode(message.extension[i], writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.options != null && message.hasOwnProperty("options")) - $root.google.protobuf.FileOptions.encode(message.options, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.sourceCodeInfo != null && message.hasOwnProperty("sourceCodeInfo")) - $root.google.protobuf.SourceCodeInfo.encode(message.sourceCodeInfo, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.publicDependency != null && message.publicDependency.length) - for (var i = 0; i < message.publicDependency.length; ++i) - writer.uint32(/* id 10, wireType 0 =*/80).int32(message.publicDependency[i]); - if (message.weakDependency != null && message.weakDependency.length) - for (var i = 0; i < message.weakDependency.length; ++i) - writer.uint32(/* id 11, wireType 0 =*/88).int32(message.weakDependency[i]); - if (message.syntax != null && message.hasOwnProperty("syntax")) - writer.uint32(/* id 12, wireType 2 =*/98).string(message.syntax); - return writer; - }; - - /** - * Decodes a FileDescriptorProto message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.FileDescriptorProto - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.FileDescriptorProto} FileDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - FileDescriptorProto.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.FileDescriptorProto(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - message["package"] = reader.string(); - break; - case 3: - if (!(message.dependency && message.dependency.length)) - message.dependency = []; - message.dependency.push(reader.string()); - break; - case 10: - if (!(message.publicDependency && message.publicDependency.length)) - message.publicDependency = []; - if ((tag & 7) === 2) { - var end2 = reader.uint32() + reader.pos; - while (reader.pos < end2) - message.publicDependency.push(reader.int32()); - } else - message.publicDependency.push(reader.int32()); - break; - case 11: - if (!(message.weakDependency && message.weakDependency.length)) - message.weakDependency = []; - if ((tag & 7) === 2) { - var end2 = reader.uint32() + reader.pos; - while (reader.pos < end2) - message.weakDependency.push(reader.int32()); - } else - message.weakDependency.push(reader.int32()); - break; - case 4: - if (!(message.messageType && message.messageType.length)) - message.messageType = []; - message.messageType.push($root.google.protobuf.DescriptorProto.decode(reader, reader.uint32())); - break; - case 5: - if (!(message.enumType && message.enumType.length)) - message.enumType = []; - message.enumType.push($root.google.protobuf.EnumDescriptorProto.decode(reader, reader.uint32())); - break; - case 6: - if (!(message.service && message.service.length)) - message.service = []; - message.service.push($root.google.protobuf.ServiceDescriptorProto.decode(reader, reader.uint32())); - break; - case 7: - if (!(message.extension && message.extension.length)) - message.extension = []; - message.extension.push($root.google.protobuf.FieldDescriptorProto.decode(reader, reader.uint32())); - break; - case 8: - message.options = $root.google.protobuf.FileOptions.decode(reader, reader.uint32()); - break; - case 9: - message.sourceCodeInfo = $root.google.protobuf.SourceCodeInfo.decode(reader, reader.uint32()); - break; - case 12: - message.syntax = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a FileDescriptorProto message. - * @function verify - * @memberof google.protobuf.FileDescriptorProto - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - FileDescriptorProto.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message["package"] != null && message.hasOwnProperty("package")) - if (!$util.isString(message["package"])) - return "package: string expected"; - if (message.dependency != null && message.hasOwnProperty("dependency")) { - if (!Array.isArray(message.dependency)) - return "dependency: array expected"; - for (var i = 0; i < message.dependency.length; ++i) - if (!$util.isString(message.dependency[i])) - return "dependency: string[] expected"; - } - if (message.publicDependency != null && message.hasOwnProperty("publicDependency")) { - if (!Array.isArray(message.publicDependency)) - return "publicDependency: array expected"; - for (var i = 0; i < message.publicDependency.length; ++i) - if (!$util.isInteger(message.publicDependency[i])) - return "publicDependency: integer[] expected"; - } - if (message.weakDependency != null && message.hasOwnProperty("weakDependency")) { - if (!Array.isArray(message.weakDependency)) - return "weakDependency: array expected"; - for (var i = 0; i < message.weakDependency.length; ++i) - if (!$util.isInteger(message.weakDependency[i])) - return "weakDependency: integer[] expected"; - } - if (message.messageType != null && message.hasOwnProperty("messageType")) { - if (!Array.isArray(message.messageType)) - return "messageType: array expected"; - for (var i = 0; i < message.messageType.length; ++i) { - var error = $root.google.protobuf.DescriptorProto.verify(message.messageType[i]); - if (error) - return "messageType." + error; - } - } - if (message.enumType != null && message.hasOwnProperty("enumType")) { - if (!Array.isArray(message.enumType)) - return "enumType: array expected"; - for (var i = 0; i < message.enumType.length; ++i) { - var error = $root.google.protobuf.EnumDescriptorProto.verify(message.enumType[i]); - if (error) - return "enumType." + error; - } - } - if (message.service != null && message.hasOwnProperty("service")) { - if (!Array.isArray(message.service)) - return "service: array expected"; - for (var i = 0; i < message.service.length; ++i) { - var error = $root.google.protobuf.ServiceDescriptorProto.verify(message.service[i]); - if (error) - return "service." + error; - } - } - if (message.extension != null && message.hasOwnProperty("extension")) { - if (!Array.isArray(message.extension)) - return "extension: array expected"; - for (var i = 0; i < message.extension.length; ++i) { - var error = $root.google.protobuf.FieldDescriptorProto.verify(message.extension[i]); - if (error) - return "extension." + error; - } - } - if (message.options != null && message.hasOwnProperty("options")) { - var error = $root.google.protobuf.FileOptions.verify(message.options); - if (error) - return "options." + error; - } - if (message.sourceCodeInfo != null && message.hasOwnProperty("sourceCodeInfo")) { - var error = $root.google.protobuf.SourceCodeInfo.verify(message.sourceCodeInfo); - if (error) - return "sourceCodeInfo." + error; - } - if (message.syntax != null && message.hasOwnProperty("syntax")) - if (!$util.isString(message.syntax)) - return "syntax: string expected"; - return null; - }; - - return FileDescriptorProto; - })(); - - protobuf.DescriptorProto = (function() { - - /** - * Properties of a DescriptorProto. - * @memberof google.protobuf - * @interface IDescriptorProto - * @property {string|null} [name] DescriptorProto name - * @property {Array.|null} [field] DescriptorProto field - * @property {Array.|null} [extension] DescriptorProto extension - * @property {Array.|null} [nestedType] DescriptorProto nestedType - * @property {Array.|null} [enumType] DescriptorProto enumType - * @property {Array.|null} [extensionRange] DescriptorProto extensionRange - * @property {Array.|null} [oneofDecl] DescriptorProto oneofDecl - * @property {google.protobuf.IMessageOptions|null} [options] DescriptorProto options - * @property {Array.|null} [reservedRange] DescriptorProto reservedRange - * @property {Array.|null} [reservedName] DescriptorProto reservedName - */ - - /** - * Constructs a new DescriptorProto. - * @memberof google.protobuf - * @classdesc Represents a DescriptorProto. - * @implements IDescriptorProto - * @constructor - * @param {google.protobuf.IDescriptorProto=} [properties] Properties to set - */ - function DescriptorProto(properties) { - this.field = []; - this.extension = []; - this.nestedType = []; - this.enumType = []; - this.extensionRange = []; - this.oneofDecl = []; - this.reservedRange = []; - this.reservedName = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * DescriptorProto name. - * @member {string} name - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.name = ""; - - /** - * DescriptorProto field. - * @member {Array.} field - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.field = $util.emptyArray; - - /** - * DescriptorProto extension. - * @member {Array.} extension - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.extension = $util.emptyArray; - - /** - * DescriptorProto nestedType. - * @member {Array.} nestedType - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.nestedType = $util.emptyArray; - - /** - * DescriptorProto enumType. - * @member {Array.} enumType - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.enumType = $util.emptyArray; - - /** - * DescriptorProto extensionRange. - * @member {Array.} extensionRange - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.extensionRange = $util.emptyArray; - - /** - * DescriptorProto oneofDecl. - * @member {Array.} oneofDecl - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.oneofDecl = $util.emptyArray; - - /** - * DescriptorProto options. - * @member {google.protobuf.IMessageOptions|null|undefined} options - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.options = null; - - /** - * DescriptorProto reservedRange. - * @member {Array.} reservedRange - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.reservedRange = $util.emptyArray; - - /** - * DescriptorProto reservedName. - * @member {Array.} reservedName - * @memberof google.protobuf.DescriptorProto - * @instance - */ - DescriptorProto.prototype.reservedName = $util.emptyArray; - - /** - * Creates a new DescriptorProto instance using the specified properties. - * @function create - * @memberof google.protobuf.DescriptorProto - * @static - * @param {google.protobuf.IDescriptorProto=} [properties] Properties to set - * @returns {google.protobuf.DescriptorProto} DescriptorProto instance - */ - DescriptorProto.create = function create(properties) { - return new DescriptorProto(properties); - }; - - /** - * Encodes the specified DescriptorProto message. Does not implicitly {@link google.protobuf.DescriptorProto.verify|verify} messages. - * @function encode - * @memberof google.protobuf.DescriptorProto - * @static - * @param {google.protobuf.IDescriptorProto} message DescriptorProto message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - DescriptorProto.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.field != null && message.field.length) - for (var i = 0; i < message.field.length; ++i) - $root.google.protobuf.FieldDescriptorProto.encode(message.field[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.nestedType != null && message.nestedType.length) - for (var i = 0; i < message.nestedType.length; ++i) - $root.google.protobuf.DescriptorProto.encode(message.nestedType[i], writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - if (message.enumType != null && message.enumType.length) - for (var i = 0; i < message.enumType.length; ++i) - $root.google.protobuf.EnumDescriptorProto.encode(message.enumType[i], writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.extensionRange != null && message.extensionRange.length) - for (var i = 0; i < message.extensionRange.length; ++i) - $root.google.protobuf.DescriptorProto.ExtensionRange.encode(message.extensionRange[i], writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.extension != null && message.extension.length) - for (var i = 0; i < message.extension.length; ++i) - $root.google.protobuf.FieldDescriptorProto.encode(message.extension[i], writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); - if (message.options != null && message.hasOwnProperty("options")) - $root.google.protobuf.MessageOptions.encode(message.options, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.oneofDecl != null && message.oneofDecl.length) - for (var i = 0; i < message.oneofDecl.length; ++i) - $root.google.protobuf.OneofDescriptorProto.encode(message.oneofDecl[i], writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.reservedRange != null && message.reservedRange.length) - for (var i = 0; i < message.reservedRange.length; ++i) - $root.google.protobuf.DescriptorProto.ReservedRange.encode(message.reservedRange[i], writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim(); - if (message.reservedName != null && message.reservedName.length) - for (var i = 0; i < message.reservedName.length; ++i) - writer.uint32(/* id 10, wireType 2 =*/82).string(message.reservedName[i]); - return writer; - }; - - /** - * Decodes a DescriptorProto message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.DescriptorProto - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.DescriptorProto} DescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - DescriptorProto.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.DescriptorProto(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - if (!(message.field && message.field.length)) - message.field = []; - message.field.push($root.google.protobuf.FieldDescriptorProto.decode(reader, reader.uint32())); - break; - case 6: - if (!(message.extension && message.extension.length)) - message.extension = []; - message.extension.push($root.google.protobuf.FieldDescriptorProto.decode(reader, reader.uint32())); - break; - case 3: - if (!(message.nestedType && message.nestedType.length)) - message.nestedType = []; - message.nestedType.push($root.google.protobuf.DescriptorProto.decode(reader, reader.uint32())); - break; - case 4: - if (!(message.enumType && message.enumType.length)) - message.enumType = []; - message.enumType.push($root.google.protobuf.EnumDescriptorProto.decode(reader, reader.uint32())); - break; - case 5: - if (!(message.extensionRange && message.extensionRange.length)) - message.extensionRange = []; - message.extensionRange.push($root.google.protobuf.DescriptorProto.ExtensionRange.decode(reader, reader.uint32())); - break; - case 8: - if (!(message.oneofDecl && message.oneofDecl.length)) - message.oneofDecl = []; - message.oneofDecl.push($root.google.protobuf.OneofDescriptorProto.decode(reader, reader.uint32())); - break; - case 7: - message.options = $root.google.protobuf.MessageOptions.decode(reader, reader.uint32()); - break; - case 9: - if (!(message.reservedRange && message.reservedRange.length)) - message.reservedRange = []; - message.reservedRange.push($root.google.protobuf.DescriptorProto.ReservedRange.decode(reader, reader.uint32())); - break; - case 10: - if (!(message.reservedName && message.reservedName.length)) - message.reservedName = []; - message.reservedName.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a DescriptorProto message. - * @function verify - * @memberof google.protobuf.DescriptorProto - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - DescriptorProto.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.field != null && message.hasOwnProperty("field")) { - if (!Array.isArray(message.field)) - return "field: array expected"; - for (var i = 0; i < message.field.length; ++i) { - var error = $root.google.protobuf.FieldDescriptorProto.verify(message.field[i]); - if (error) - return "field." + error; - } - } - if (message.extension != null && message.hasOwnProperty("extension")) { - if (!Array.isArray(message.extension)) - return "extension: array expected"; - for (var i = 0; i < message.extension.length; ++i) { - var error = $root.google.protobuf.FieldDescriptorProto.verify(message.extension[i]); - if (error) - return "extension." + error; - } - } - if (message.nestedType != null && message.hasOwnProperty("nestedType")) { - if (!Array.isArray(message.nestedType)) - return "nestedType: array expected"; - for (var i = 0; i < message.nestedType.length; ++i) { - var error = $root.google.protobuf.DescriptorProto.verify(message.nestedType[i]); - if (error) - return "nestedType." + error; - } - } - if (message.enumType != null && message.hasOwnProperty("enumType")) { - if (!Array.isArray(message.enumType)) - return "enumType: array expected"; - for (var i = 0; i < message.enumType.length; ++i) { - var error = $root.google.protobuf.EnumDescriptorProto.verify(message.enumType[i]); - if (error) - return "enumType." + error; - } - } - if (message.extensionRange != null && message.hasOwnProperty("extensionRange")) { - if (!Array.isArray(message.extensionRange)) - return "extensionRange: array expected"; - for (var i = 0; i < message.extensionRange.length; ++i) { - var error = $root.google.protobuf.DescriptorProto.ExtensionRange.verify(message.extensionRange[i]); - if (error) - return "extensionRange." + error; - } - } - if (message.oneofDecl != null && message.hasOwnProperty("oneofDecl")) { - if (!Array.isArray(message.oneofDecl)) - return "oneofDecl: array expected"; - for (var i = 0; i < message.oneofDecl.length; ++i) { - var error = $root.google.protobuf.OneofDescriptorProto.verify(message.oneofDecl[i]); - if (error) - return "oneofDecl." + error; - } - } - if (message.options != null && message.hasOwnProperty("options")) { - var error = $root.google.protobuf.MessageOptions.verify(message.options); - if (error) - return "options." + error; - } - if (message.reservedRange != null && message.hasOwnProperty("reservedRange")) { - if (!Array.isArray(message.reservedRange)) - return "reservedRange: array expected"; - for (var i = 0; i < message.reservedRange.length; ++i) { - var error = $root.google.protobuf.DescriptorProto.ReservedRange.verify(message.reservedRange[i]); - if (error) - return "reservedRange." + error; - } - } - if (message.reservedName != null && message.hasOwnProperty("reservedName")) { - if (!Array.isArray(message.reservedName)) - return "reservedName: array expected"; - for (var i = 0; i < message.reservedName.length; ++i) - if (!$util.isString(message.reservedName[i])) - return "reservedName: string[] expected"; - } - return null; - }; - - DescriptorProto.ExtensionRange = (function() { - - /** - * Properties of an ExtensionRange. - * @memberof google.protobuf.DescriptorProto - * @interface IExtensionRange - * @property {number|null} [start] ExtensionRange start - * @property {number|null} [end] ExtensionRange end - */ - - /** - * Constructs a new ExtensionRange. - * @memberof google.protobuf.DescriptorProto - * @classdesc Represents an ExtensionRange. - * @implements IExtensionRange - * @constructor - * @param {google.protobuf.DescriptorProto.IExtensionRange=} [properties] Properties to set - */ - function ExtensionRange(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ExtensionRange start. - * @member {number} start - * @memberof google.protobuf.DescriptorProto.ExtensionRange - * @instance - */ - ExtensionRange.prototype.start = 0; - - /** - * ExtensionRange end. - * @member {number} end - * @memberof google.protobuf.DescriptorProto.ExtensionRange - * @instance - */ - ExtensionRange.prototype.end = 0; - - /** - * Creates a new ExtensionRange instance using the specified properties. - * @function create - * @memberof google.protobuf.DescriptorProto.ExtensionRange - * @static - * @param {google.protobuf.DescriptorProto.IExtensionRange=} [properties] Properties to set - * @returns {google.protobuf.DescriptorProto.ExtensionRange} ExtensionRange instance - */ - ExtensionRange.create = function create(properties) { - return new ExtensionRange(properties); - }; - - /** - * Encodes the specified ExtensionRange message. Does not implicitly {@link google.protobuf.DescriptorProto.ExtensionRange.verify|verify} messages. - * @function encode - * @memberof google.protobuf.DescriptorProto.ExtensionRange - * @static - * @param {google.protobuf.DescriptorProto.IExtensionRange} message ExtensionRange message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ExtensionRange.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.start != null && message.hasOwnProperty("start")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.start); - if (message.end != null && message.hasOwnProperty("end")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.end); - return writer; - }; - - /** - * Decodes an ExtensionRange message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.DescriptorProto.ExtensionRange - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.DescriptorProto.ExtensionRange} ExtensionRange - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ExtensionRange.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.DescriptorProto.ExtensionRange(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.start = reader.int32(); - break; - case 2: - message.end = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an ExtensionRange message. - * @function verify - * @memberof google.protobuf.DescriptorProto.ExtensionRange - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ExtensionRange.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.start != null && message.hasOwnProperty("start")) - if (!$util.isInteger(message.start)) - return "start: integer expected"; - if (message.end != null && message.hasOwnProperty("end")) - if (!$util.isInteger(message.end)) - return "end: integer expected"; - return null; - }; - - return ExtensionRange; - })(); - - DescriptorProto.ReservedRange = (function() { - - /** - * Properties of a ReservedRange. - * @memberof google.protobuf.DescriptorProto - * @interface IReservedRange - * @property {number|null} [start] ReservedRange start - * @property {number|null} [end] ReservedRange end - */ - - /** - * Constructs a new ReservedRange. - * @memberof google.protobuf.DescriptorProto - * @classdesc Represents a ReservedRange. - * @implements IReservedRange - * @constructor - * @param {google.protobuf.DescriptorProto.IReservedRange=} [properties] Properties to set - */ - function ReservedRange(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ReservedRange start. - * @member {number} start - * @memberof google.protobuf.DescriptorProto.ReservedRange - * @instance - */ - ReservedRange.prototype.start = 0; - - /** - * ReservedRange end. - * @member {number} end - * @memberof google.protobuf.DescriptorProto.ReservedRange - * @instance - */ - ReservedRange.prototype.end = 0; - - /** - * Creates a new ReservedRange instance using the specified properties. - * @function create - * @memberof google.protobuf.DescriptorProto.ReservedRange - * @static - * @param {google.protobuf.DescriptorProto.IReservedRange=} [properties] Properties to set - * @returns {google.protobuf.DescriptorProto.ReservedRange} ReservedRange instance - */ - ReservedRange.create = function create(properties) { - return new ReservedRange(properties); - }; - - /** - * Encodes the specified ReservedRange message. Does not implicitly {@link google.protobuf.DescriptorProto.ReservedRange.verify|verify} messages. - * @function encode - * @memberof google.protobuf.DescriptorProto.ReservedRange - * @static - * @param {google.protobuf.DescriptorProto.IReservedRange} message ReservedRange message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ReservedRange.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.start != null && message.hasOwnProperty("start")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.start); - if (message.end != null && message.hasOwnProperty("end")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.end); - return writer; - }; - - /** - * Decodes a ReservedRange message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.DescriptorProto.ReservedRange - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.DescriptorProto.ReservedRange} ReservedRange - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ReservedRange.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.DescriptorProto.ReservedRange(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.start = reader.int32(); - break; - case 2: - message.end = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ReservedRange message. - * @function verify - * @memberof google.protobuf.DescriptorProto.ReservedRange - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ReservedRange.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.start != null && message.hasOwnProperty("start")) - if (!$util.isInteger(message.start)) - return "start: integer expected"; - if (message.end != null && message.hasOwnProperty("end")) - if (!$util.isInteger(message.end)) - return "end: integer expected"; - return null; - }; - - return ReservedRange; - })(); - - return DescriptorProto; - })(); - - protobuf.FieldDescriptorProto = (function() { - - /** - * Properties of a FieldDescriptorProto. - * @memberof google.protobuf - * @interface IFieldDescriptorProto - * @property {string|null} [name] FieldDescriptorProto name - * @property {number|null} [number] FieldDescriptorProto number - * @property {google.protobuf.FieldDescriptorProto.Label|null} [label] FieldDescriptorProto label - * @property {google.protobuf.FieldDescriptorProto.Type|null} [type] FieldDescriptorProto type - * @property {string|null} [typeName] FieldDescriptorProto typeName - * @property {string|null} [extendee] FieldDescriptorProto extendee - * @property {string|null} [defaultValue] FieldDescriptorProto defaultValue - * @property {number|null} [oneofIndex] FieldDescriptorProto oneofIndex - * @property {string|null} [jsonName] FieldDescriptorProto jsonName - * @property {google.protobuf.IFieldOptions|null} [options] FieldDescriptorProto options - */ - - /** - * Constructs a new FieldDescriptorProto. - * @memberof google.protobuf - * @classdesc Represents a FieldDescriptorProto. - * @implements IFieldDescriptorProto - * @constructor - * @param {google.protobuf.IFieldDescriptorProto=} [properties] Properties to set - */ - function FieldDescriptorProto(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * FieldDescriptorProto name. - * @member {string} name - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.name = ""; - - /** - * FieldDescriptorProto number. - * @member {number} number - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.number = 0; - - /** - * FieldDescriptorProto label. - * @member {google.protobuf.FieldDescriptorProto.Label} label - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.label = 1; - - /** - * FieldDescriptorProto type. - * @member {google.protobuf.FieldDescriptorProto.Type} type - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.type = 1; - - /** - * FieldDescriptorProto typeName. - * @member {string} typeName - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.typeName = ""; - - /** - * FieldDescriptorProto extendee. - * @member {string} extendee - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.extendee = ""; - - /** - * FieldDescriptorProto defaultValue. - * @member {string} defaultValue - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.defaultValue = ""; - - /** - * FieldDescriptorProto oneofIndex. - * @member {number} oneofIndex - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.oneofIndex = 0; - - /** - * FieldDescriptorProto jsonName. - * @member {string} jsonName - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.jsonName = ""; - - /** - * FieldDescriptorProto options. - * @member {google.protobuf.IFieldOptions|null|undefined} options - * @memberof google.protobuf.FieldDescriptorProto - * @instance - */ - FieldDescriptorProto.prototype.options = null; - - /** - * Creates a new FieldDescriptorProto instance using the specified properties. - * @function create - * @memberof google.protobuf.FieldDescriptorProto - * @static - * @param {google.protobuf.IFieldDescriptorProto=} [properties] Properties to set - * @returns {google.protobuf.FieldDescriptorProto} FieldDescriptorProto instance - */ - FieldDescriptorProto.create = function create(properties) { - return new FieldDescriptorProto(properties); - }; - - /** - * Encodes the specified FieldDescriptorProto message. Does not implicitly {@link google.protobuf.FieldDescriptorProto.verify|verify} messages. - * @function encode - * @memberof google.protobuf.FieldDescriptorProto - * @static - * @param {google.protobuf.IFieldDescriptorProto} message FieldDescriptorProto message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - FieldDescriptorProto.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.extendee != null && message.hasOwnProperty("extendee")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.extendee); - if (message.number != null && message.hasOwnProperty("number")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.number); - if (message.label != null && message.hasOwnProperty("label")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.label); - if (message.type != null && message.hasOwnProperty("type")) - writer.uint32(/* id 5, wireType 0 =*/40).int32(message.type); - if (message.typeName != null && message.hasOwnProperty("typeName")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.typeName); - if (message.defaultValue != null && message.hasOwnProperty("defaultValue")) - writer.uint32(/* id 7, wireType 2 =*/58).string(message.defaultValue); - if (message.options != null && message.hasOwnProperty("options")) - $root.google.protobuf.FieldOptions.encode(message.options, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.oneofIndex != null && message.hasOwnProperty("oneofIndex")) - writer.uint32(/* id 9, wireType 0 =*/72).int32(message.oneofIndex); - if (message.jsonName != null && message.hasOwnProperty("jsonName")) - writer.uint32(/* id 10, wireType 2 =*/82).string(message.jsonName); - return writer; - }; - - /** - * Decodes a FieldDescriptorProto message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.FieldDescriptorProto - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.FieldDescriptorProto} FieldDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - FieldDescriptorProto.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.FieldDescriptorProto(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 3: - message.number = reader.int32(); - break; - case 4: - message.label = reader.int32(); - break; - case 5: - message.type = reader.int32(); - break; - case 6: - message.typeName = reader.string(); - break; - case 2: - message.extendee = reader.string(); - break; - case 7: - message.defaultValue = reader.string(); - break; - case 9: - message.oneofIndex = reader.int32(); - break; - case 10: - message.jsonName = reader.string(); - break; - case 8: - message.options = $root.google.protobuf.FieldOptions.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a FieldDescriptorProto message. - * @function verify - * @memberof google.protobuf.FieldDescriptorProto - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - FieldDescriptorProto.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.number != null && message.hasOwnProperty("number")) - if (!$util.isInteger(message.number)) - return "number: integer expected"; - if (message.label != null && message.hasOwnProperty("label")) - switch (message.label) { - default: - return "label: enum value expected"; - case 1: - case 2: - case 3: - break; - } - if (message.type != null && message.hasOwnProperty("type")) - switch (message.type) { - default: - return "type: enum value expected"; - case 1: - case 2: - case 3: - case 4: - case 5: - case 6: - case 7: - case 8: - case 9: - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - break; - } - if (message.typeName != null && message.hasOwnProperty("typeName")) - if (!$util.isString(message.typeName)) - return "typeName: string expected"; - if (message.extendee != null && message.hasOwnProperty("extendee")) - if (!$util.isString(message.extendee)) - return "extendee: string expected"; - if (message.defaultValue != null && message.hasOwnProperty("defaultValue")) - if (!$util.isString(message.defaultValue)) - return "defaultValue: string expected"; - if (message.oneofIndex != null && message.hasOwnProperty("oneofIndex")) - if (!$util.isInteger(message.oneofIndex)) - return "oneofIndex: integer expected"; - if (message.jsonName != null && message.hasOwnProperty("jsonName")) - if (!$util.isString(message.jsonName)) - return "jsonName: string expected"; - if (message.options != null && message.hasOwnProperty("options")) { - var error = $root.google.protobuf.FieldOptions.verify(message.options); - if (error) - return "options." + error; - } - return null; - }; - - /** - * Type enum. - * @name google.protobuf.FieldDescriptorProto.Type - * @enum {string} - * @property {number} TYPE_DOUBLE=1 TYPE_DOUBLE value - * @property {number} TYPE_FLOAT=2 TYPE_FLOAT value - * @property {number} TYPE_INT64=3 TYPE_INT64 value - * @property {number} TYPE_UINT64=4 TYPE_UINT64 value - * @property {number} TYPE_INT32=5 TYPE_INT32 value - * @property {number} TYPE_FIXED64=6 TYPE_FIXED64 value - * @property {number} TYPE_FIXED32=7 TYPE_FIXED32 value - * @property {number} TYPE_BOOL=8 TYPE_BOOL value - * @property {number} TYPE_STRING=9 TYPE_STRING value - * @property {number} TYPE_GROUP=10 TYPE_GROUP value - * @property {number} TYPE_MESSAGE=11 TYPE_MESSAGE value - * @property {number} TYPE_BYTES=12 TYPE_BYTES value - * @property {number} TYPE_UINT32=13 TYPE_UINT32 value - * @property {number} TYPE_ENUM=14 TYPE_ENUM value - * @property {number} TYPE_SFIXED32=15 TYPE_SFIXED32 value - * @property {number} TYPE_SFIXED64=16 TYPE_SFIXED64 value - * @property {number} TYPE_SINT32=17 TYPE_SINT32 value - * @property {number} TYPE_SINT64=18 TYPE_SINT64 value - */ - FieldDescriptorProto.Type = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[1] = "TYPE_DOUBLE"] = 1; - values[valuesById[2] = "TYPE_FLOAT"] = 2; - values[valuesById[3] = "TYPE_INT64"] = 3; - values[valuesById[4] = "TYPE_UINT64"] = 4; - values[valuesById[5] = "TYPE_INT32"] = 5; - values[valuesById[6] = "TYPE_FIXED64"] = 6; - values[valuesById[7] = "TYPE_FIXED32"] = 7; - values[valuesById[8] = "TYPE_BOOL"] = 8; - values[valuesById[9] = "TYPE_STRING"] = 9; - values[valuesById[10] = "TYPE_GROUP"] = 10; - values[valuesById[11] = "TYPE_MESSAGE"] = 11; - values[valuesById[12] = "TYPE_BYTES"] = 12; - values[valuesById[13] = "TYPE_UINT32"] = 13; - values[valuesById[14] = "TYPE_ENUM"] = 14; - values[valuesById[15] = "TYPE_SFIXED32"] = 15; - values[valuesById[16] = "TYPE_SFIXED64"] = 16; - values[valuesById[17] = "TYPE_SINT32"] = 17; - values[valuesById[18] = "TYPE_SINT64"] = 18; - return values; - })(); - - /** - * Label enum. - * @name google.protobuf.FieldDescriptorProto.Label - * @enum {string} - * @property {number} LABEL_OPTIONAL=1 LABEL_OPTIONAL value - * @property {number} LABEL_REQUIRED=2 LABEL_REQUIRED value - * @property {number} LABEL_REPEATED=3 LABEL_REPEATED value - */ - FieldDescriptorProto.Label = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[1] = "LABEL_OPTIONAL"] = 1; - values[valuesById[2] = "LABEL_REQUIRED"] = 2; - values[valuesById[3] = "LABEL_REPEATED"] = 3; - return values; - })(); - - return FieldDescriptorProto; - })(); - - protobuf.OneofDescriptorProto = (function() { - - /** - * Properties of an OneofDescriptorProto. - * @memberof google.protobuf - * @interface IOneofDescriptorProto - * @property {string|null} [name] OneofDescriptorProto name - * @property {google.protobuf.IOneofOptions|null} [options] OneofDescriptorProto options - */ - - /** - * Constructs a new OneofDescriptorProto. - * @memberof google.protobuf - * @classdesc Represents an OneofDescriptorProto. - * @implements IOneofDescriptorProto - * @constructor - * @param {google.protobuf.IOneofDescriptorProto=} [properties] Properties to set - */ - function OneofDescriptorProto(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * OneofDescriptorProto name. - * @member {string} name - * @memberof google.protobuf.OneofDescriptorProto - * @instance - */ - OneofDescriptorProto.prototype.name = ""; - - /** - * OneofDescriptorProto options. - * @member {google.protobuf.IOneofOptions|null|undefined} options - * @memberof google.protobuf.OneofDescriptorProto - * @instance - */ - OneofDescriptorProto.prototype.options = null; - - /** - * Creates a new OneofDescriptorProto instance using the specified properties. - * @function create - * @memberof google.protobuf.OneofDescriptorProto - * @static - * @param {google.protobuf.IOneofDescriptorProto=} [properties] Properties to set - * @returns {google.protobuf.OneofDescriptorProto} OneofDescriptorProto instance - */ - OneofDescriptorProto.create = function create(properties) { - return new OneofDescriptorProto(properties); - }; - - /** - * Encodes the specified OneofDescriptorProto message. Does not implicitly {@link google.protobuf.OneofDescriptorProto.verify|verify} messages. - * @function encode - * @memberof google.protobuf.OneofDescriptorProto - * @static - * @param {google.protobuf.IOneofDescriptorProto} message OneofDescriptorProto message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - OneofDescriptorProto.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.options != null && message.hasOwnProperty("options")) - $root.google.protobuf.OneofOptions.encode(message.options, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an OneofDescriptorProto message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.OneofDescriptorProto - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.OneofDescriptorProto} OneofDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - OneofDescriptorProto.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.OneofDescriptorProto(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - message.options = $root.google.protobuf.OneofOptions.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an OneofDescriptorProto message. - * @function verify - * @memberof google.protobuf.OneofDescriptorProto - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - OneofDescriptorProto.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.options != null && message.hasOwnProperty("options")) { - var error = $root.google.protobuf.OneofOptions.verify(message.options); - if (error) - return "options." + error; - } - return null; - }; - - return OneofDescriptorProto; - })(); - - protobuf.EnumDescriptorProto = (function() { - - /** - * Properties of an EnumDescriptorProto. - * @memberof google.protobuf - * @interface IEnumDescriptorProto - * @property {string|null} [name] EnumDescriptorProto name - * @property {Array.|null} [value] EnumDescriptorProto value - * @property {google.protobuf.IEnumOptions|null} [options] EnumDescriptorProto options - */ - - /** - * Constructs a new EnumDescriptorProto. - * @memberof google.protobuf - * @classdesc Represents an EnumDescriptorProto. - * @implements IEnumDescriptorProto - * @constructor - * @param {google.protobuf.IEnumDescriptorProto=} [properties] Properties to set - */ - function EnumDescriptorProto(properties) { - this.value = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EnumDescriptorProto name. - * @member {string} name - * @memberof google.protobuf.EnumDescriptorProto - * @instance - */ - EnumDescriptorProto.prototype.name = ""; - - /** - * EnumDescriptorProto value. - * @member {Array.} value - * @memberof google.protobuf.EnumDescriptorProto - * @instance - */ - EnumDescriptorProto.prototype.value = $util.emptyArray; - - /** - * EnumDescriptorProto options. - * @member {google.protobuf.IEnumOptions|null|undefined} options - * @memberof google.protobuf.EnumDescriptorProto - * @instance - */ - EnumDescriptorProto.prototype.options = null; - - /** - * Creates a new EnumDescriptorProto instance using the specified properties. - * @function create - * @memberof google.protobuf.EnumDescriptorProto - * @static - * @param {google.protobuf.IEnumDescriptorProto=} [properties] Properties to set - * @returns {google.protobuf.EnumDescriptorProto} EnumDescriptorProto instance - */ - EnumDescriptorProto.create = function create(properties) { - return new EnumDescriptorProto(properties); - }; - - /** - * Encodes the specified EnumDescriptorProto message. Does not implicitly {@link google.protobuf.EnumDescriptorProto.verify|verify} messages. - * @function encode - * @memberof google.protobuf.EnumDescriptorProto - * @static - * @param {google.protobuf.IEnumDescriptorProto} message EnumDescriptorProto message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EnumDescriptorProto.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.value != null && message.value.length) - for (var i = 0; i < message.value.length; ++i) - $root.google.protobuf.EnumValueDescriptorProto.encode(message.value[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.options != null && message.hasOwnProperty("options")) - $root.google.protobuf.EnumOptions.encode(message.options, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an EnumDescriptorProto message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.EnumDescriptorProto - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.EnumDescriptorProto} EnumDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EnumDescriptorProto.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.EnumDescriptorProto(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - if (!(message.value && message.value.length)) - message.value = []; - message.value.push($root.google.protobuf.EnumValueDescriptorProto.decode(reader, reader.uint32())); - break; - case 3: - message.options = $root.google.protobuf.EnumOptions.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EnumDescriptorProto message. - * @function verify - * @memberof google.protobuf.EnumDescriptorProto - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EnumDescriptorProto.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.value != null && message.hasOwnProperty("value")) { - if (!Array.isArray(message.value)) - return "value: array expected"; - for (var i = 0; i < message.value.length; ++i) { - var error = $root.google.protobuf.EnumValueDescriptorProto.verify(message.value[i]); - if (error) - return "value." + error; - } - } - if (message.options != null && message.hasOwnProperty("options")) { - var error = $root.google.protobuf.EnumOptions.verify(message.options); - if (error) - return "options." + error; - } - return null; - }; - - return EnumDescriptorProto; - })(); - - protobuf.EnumValueDescriptorProto = (function() { - - /** - * Properties of an EnumValueDescriptorProto. - * @memberof google.protobuf - * @interface IEnumValueDescriptorProto - * @property {string|null} [name] EnumValueDescriptorProto name - * @property {number|null} [number] EnumValueDescriptorProto number - * @property {google.protobuf.IEnumValueOptions|null} [options] EnumValueDescriptorProto options - */ - - /** - * Constructs a new EnumValueDescriptorProto. - * @memberof google.protobuf - * @classdesc Represents an EnumValueDescriptorProto. - * @implements IEnumValueDescriptorProto - * @constructor - * @param {google.protobuf.IEnumValueDescriptorProto=} [properties] Properties to set - */ - function EnumValueDescriptorProto(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EnumValueDescriptorProto name. - * @member {string} name - * @memberof google.protobuf.EnumValueDescriptorProto - * @instance - */ - EnumValueDescriptorProto.prototype.name = ""; - - /** - * EnumValueDescriptorProto number. - * @member {number} number - * @memberof google.protobuf.EnumValueDescriptorProto - * @instance - */ - EnumValueDescriptorProto.prototype.number = 0; - - /** - * EnumValueDescriptorProto options. - * @member {google.protobuf.IEnumValueOptions|null|undefined} options - * @memberof google.protobuf.EnumValueDescriptorProto - * @instance - */ - EnumValueDescriptorProto.prototype.options = null; - - /** - * Creates a new EnumValueDescriptorProto instance using the specified properties. - * @function create - * @memberof google.protobuf.EnumValueDescriptorProto - * @static - * @param {google.protobuf.IEnumValueDescriptorProto=} [properties] Properties to set - * @returns {google.protobuf.EnumValueDescriptorProto} EnumValueDescriptorProto instance - */ - EnumValueDescriptorProto.create = function create(properties) { - return new EnumValueDescriptorProto(properties); - }; - - /** - * Encodes the specified EnumValueDescriptorProto message. Does not implicitly {@link google.protobuf.EnumValueDescriptorProto.verify|verify} messages. - * @function encode - * @memberof google.protobuf.EnumValueDescriptorProto - * @static - * @param {google.protobuf.IEnumValueDescriptorProto} message EnumValueDescriptorProto message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EnumValueDescriptorProto.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.number != null && message.hasOwnProperty("number")) - writer.uint32(/* id 2, wireType 0 =*/16).int32(message.number); - if (message.options != null && message.hasOwnProperty("options")) - $root.google.protobuf.EnumValueOptions.encode(message.options, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an EnumValueDescriptorProto message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.EnumValueDescriptorProto - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.EnumValueDescriptorProto} EnumValueDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EnumValueDescriptorProto.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.EnumValueDescriptorProto(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - message.number = reader.int32(); - break; - case 3: - message.options = $root.google.protobuf.EnumValueOptions.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EnumValueDescriptorProto message. - * @function verify - * @memberof google.protobuf.EnumValueDescriptorProto - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EnumValueDescriptorProto.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.number != null && message.hasOwnProperty("number")) - if (!$util.isInteger(message.number)) - return "number: integer expected"; - if (message.options != null && message.hasOwnProperty("options")) { - var error = $root.google.protobuf.EnumValueOptions.verify(message.options); - if (error) - return "options." + error; - } - return null; - }; - - return EnumValueDescriptorProto; - })(); - - protobuf.ServiceDescriptorProto = (function() { - - /** - * Properties of a ServiceDescriptorProto. - * @memberof google.protobuf - * @interface IServiceDescriptorProto - * @property {string|null} [name] ServiceDescriptorProto name - * @property {Array.|null} [method] ServiceDescriptorProto method - * @property {google.protobuf.IServiceOptions|null} [options] ServiceDescriptorProto options - */ - - /** - * Constructs a new ServiceDescriptorProto. - * @memberof google.protobuf - * @classdesc Represents a ServiceDescriptorProto. - * @implements IServiceDescriptorProto - * @constructor - * @param {google.protobuf.IServiceDescriptorProto=} [properties] Properties to set - */ - function ServiceDescriptorProto(properties) { - this.method = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ServiceDescriptorProto name. - * @member {string} name - * @memberof google.protobuf.ServiceDescriptorProto - * @instance - */ - ServiceDescriptorProto.prototype.name = ""; - - /** - * ServiceDescriptorProto method. - * @member {Array.} method - * @memberof google.protobuf.ServiceDescriptorProto - * @instance - */ - ServiceDescriptorProto.prototype.method = $util.emptyArray; - - /** - * ServiceDescriptorProto options. - * @member {google.protobuf.IServiceOptions|null|undefined} options - * @memberof google.protobuf.ServiceDescriptorProto - * @instance - */ - ServiceDescriptorProto.prototype.options = null; - - /** - * Creates a new ServiceDescriptorProto instance using the specified properties. - * @function create - * @memberof google.protobuf.ServiceDescriptorProto - * @static - * @param {google.protobuf.IServiceDescriptorProto=} [properties] Properties to set - * @returns {google.protobuf.ServiceDescriptorProto} ServiceDescriptorProto instance - */ - ServiceDescriptorProto.create = function create(properties) { - return new ServiceDescriptorProto(properties); - }; - - /** - * Encodes the specified ServiceDescriptorProto message. Does not implicitly {@link google.protobuf.ServiceDescriptorProto.verify|verify} messages. - * @function encode - * @memberof google.protobuf.ServiceDescriptorProto - * @static - * @param {google.protobuf.IServiceDescriptorProto} message ServiceDescriptorProto message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ServiceDescriptorProto.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.method != null && message.method.length) - for (var i = 0; i < message.method.length; ++i) - $root.google.protobuf.MethodDescriptorProto.encode(message.method[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.options != null && message.hasOwnProperty("options")) - $root.google.protobuf.ServiceOptions.encode(message.options, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ServiceDescriptorProto message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.ServiceDescriptorProto - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.ServiceDescriptorProto} ServiceDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ServiceDescriptorProto.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.ServiceDescriptorProto(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - if (!(message.method && message.method.length)) - message.method = []; - message.method.push($root.google.protobuf.MethodDescriptorProto.decode(reader, reader.uint32())); - break; - case 3: - message.options = $root.google.protobuf.ServiceOptions.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ServiceDescriptorProto message. - * @function verify - * @memberof google.protobuf.ServiceDescriptorProto - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ServiceDescriptorProto.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.method != null && message.hasOwnProperty("method")) { - if (!Array.isArray(message.method)) - return "method: array expected"; - for (var i = 0; i < message.method.length; ++i) { - var error = $root.google.protobuf.MethodDescriptorProto.verify(message.method[i]); - if (error) - return "method." + error; - } - } - if (message.options != null && message.hasOwnProperty("options")) { - var error = $root.google.protobuf.ServiceOptions.verify(message.options); - if (error) - return "options." + error; - } - return null; - }; - - return ServiceDescriptorProto; - })(); - - protobuf.MethodDescriptorProto = (function() { - - /** - * Properties of a MethodDescriptorProto. - * @memberof google.protobuf - * @interface IMethodDescriptorProto - * @property {string|null} [name] MethodDescriptorProto name - * @property {string|null} [inputType] MethodDescriptorProto inputType - * @property {string|null} [outputType] MethodDescriptorProto outputType - * @property {google.protobuf.IMethodOptions|null} [options] MethodDescriptorProto options - * @property {boolean|null} [clientStreaming] MethodDescriptorProto clientStreaming - * @property {boolean|null} [serverStreaming] MethodDescriptorProto serverStreaming - */ - - /** - * Constructs a new MethodDescriptorProto. - * @memberof google.protobuf - * @classdesc Represents a MethodDescriptorProto. - * @implements IMethodDescriptorProto - * @constructor - * @param {google.protobuf.IMethodDescriptorProto=} [properties] Properties to set - */ - function MethodDescriptorProto(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * MethodDescriptorProto name. - * @member {string} name - * @memberof google.protobuf.MethodDescriptorProto - * @instance - */ - MethodDescriptorProto.prototype.name = ""; - - /** - * MethodDescriptorProto inputType. - * @member {string} inputType - * @memberof google.protobuf.MethodDescriptorProto - * @instance - */ - MethodDescriptorProto.prototype.inputType = ""; - - /** - * MethodDescriptorProto outputType. - * @member {string} outputType - * @memberof google.protobuf.MethodDescriptorProto - * @instance - */ - MethodDescriptorProto.prototype.outputType = ""; - - /** - * MethodDescriptorProto options. - * @member {google.protobuf.IMethodOptions|null|undefined} options - * @memberof google.protobuf.MethodDescriptorProto - * @instance - */ - MethodDescriptorProto.prototype.options = null; - - /** - * MethodDescriptorProto clientStreaming. - * @member {boolean} clientStreaming - * @memberof google.protobuf.MethodDescriptorProto - * @instance - */ - MethodDescriptorProto.prototype.clientStreaming = false; - - /** - * MethodDescriptorProto serverStreaming. - * @member {boolean} serverStreaming - * @memberof google.protobuf.MethodDescriptorProto - * @instance - */ - MethodDescriptorProto.prototype.serverStreaming = false; - - /** - * Creates a new MethodDescriptorProto instance using the specified properties. - * @function create - * @memberof google.protobuf.MethodDescriptorProto - * @static - * @param {google.protobuf.IMethodDescriptorProto=} [properties] Properties to set - * @returns {google.protobuf.MethodDescriptorProto} MethodDescriptorProto instance - */ - MethodDescriptorProto.create = function create(properties) { - return new MethodDescriptorProto(properties); - }; - - /** - * Encodes the specified MethodDescriptorProto message. Does not implicitly {@link google.protobuf.MethodDescriptorProto.verify|verify} messages. - * @function encode - * @memberof google.protobuf.MethodDescriptorProto - * @static - * @param {google.protobuf.IMethodDescriptorProto} message MethodDescriptorProto message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - MethodDescriptorProto.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.hasOwnProperty("name")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.name); - if (message.inputType != null && message.hasOwnProperty("inputType")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.inputType); - if (message.outputType != null && message.hasOwnProperty("outputType")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.outputType); - if (message.options != null && message.hasOwnProperty("options")) - $root.google.protobuf.MethodOptions.encode(message.options, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.clientStreaming != null && message.hasOwnProperty("clientStreaming")) - writer.uint32(/* id 5, wireType 0 =*/40).bool(message.clientStreaming); - if (message.serverStreaming != null && message.hasOwnProperty("serverStreaming")) - writer.uint32(/* id 6, wireType 0 =*/48).bool(message.serverStreaming); - return writer; - }; - - /** - * Decodes a MethodDescriptorProto message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.MethodDescriptorProto - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.MethodDescriptorProto} MethodDescriptorProto - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - MethodDescriptorProto.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.MethodDescriptorProto(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.name = reader.string(); - break; - case 2: - message.inputType = reader.string(); - break; - case 3: - message.outputType = reader.string(); - break; - case 4: - message.options = $root.google.protobuf.MethodOptions.decode(reader, reader.uint32()); - break; - case 5: - message.clientStreaming = reader.bool(); - break; - case 6: - message.serverStreaming = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a MethodDescriptorProto message. - * @function verify - * @memberof google.protobuf.MethodDescriptorProto - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - MethodDescriptorProto.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) - if (!$util.isString(message.name)) - return "name: string expected"; - if (message.inputType != null && message.hasOwnProperty("inputType")) - if (!$util.isString(message.inputType)) - return "inputType: string expected"; - if (message.outputType != null && message.hasOwnProperty("outputType")) - if (!$util.isString(message.outputType)) - return "outputType: string expected"; - if (message.options != null && message.hasOwnProperty("options")) { - var error = $root.google.protobuf.MethodOptions.verify(message.options); - if (error) - return "options." + error; - } - if (message.clientStreaming != null && message.hasOwnProperty("clientStreaming")) - if (typeof message.clientStreaming !== "boolean") - return "clientStreaming: boolean expected"; - if (message.serverStreaming != null && message.hasOwnProperty("serverStreaming")) - if (typeof message.serverStreaming !== "boolean") - return "serverStreaming: boolean expected"; - return null; - }; - - return MethodDescriptorProto; - })(); - - protobuf.FileOptions = (function() { - - /** - * Properties of a FileOptions. - * @memberof google.protobuf - * @interface IFileOptions - * @property {string|null} [javaPackage] FileOptions javaPackage - * @property {string|null} [javaOuterClassname] FileOptions javaOuterClassname - * @property {boolean|null} [javaMultipleFiles] FileOptions javaMultipleFiles - * @property {boolean|null} [javaGenerateEqualsAndHash] FileOptions javaGenerateEqualsAndHash - * @property {boolean|null} [javaStringCheckUtf8] FileOptions javaStringCheckUtf8 - * @property {google.protobuf.FileOptions.OptimizeMode|null} [optimizeFor] FileOptions optimizeFor - * @property {string|null} [goPackage] FileOptions goPackage - * @property {boolean|null} [ccGenericServices] FileOptions ccGenericServices - * @property {boolean|null} [javaGenericServices] FileOptions javaGenericServices - * @property {boolean|null} [pyGenericServices] FileOptions pyGenericServices - * @property {boolean|null} [deprecated] FileOptions deprecated - * @property {boolean|null} [ccEnableArenas] FileOptions ccEnableArenas - * @property {string|null} [objcClassPrefix] FileOptions objcClassPrefix - * @property {string|null} [csharpNamespace] FileOptions csharpNamespace - * @property {Array.|null} [uninterpretedOption] FileOptions uninterpretedOption - */ - - /** - * Constructs a new FileOptions. - * @memberof google.protobuf - * @classdesc Represents a FileOptions. - * @implements IFileOptions - * @constructor - * @param {google.protobuf.IFileOptions=} [properties] Properties to set - */ - function FileOptions(properties) { - this.uninterpretedOption = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * FileOptions javaPackage. - * @member {string} javaPackage - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.javaPackage = ""; - - /** - * FileOptions javaOuterClassname. - * @member {string} javaOuterClassname - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.javaOuterClassname = ""; - - /** - * FileOptions javaMultipleFiles. - * @member {boolean} javaMultipleFiles - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.javaMultipleFiles = false; - - /** - * FileOptions javaGenerateEqualsAndHash. - * @member {boolean} javaGenerateEqualsAndHash - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.javaGenerateEqualsAndHash = false; - - /** - * FileOptions javaStringCheckUtf8. - * @member {boolean} javaStringCheckUtf8 - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.javaStringCheckUtf8 = false; - - /** - * FileOptions optimizeFor. - * @member {google.protobuf.FileOptions.OptimizeMode} optimizeFor - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.optimizeFor = 1; - - /** - * FileOptions goPackage. - * @member {string} goPackage - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.goPackage = ""; - - /** - * FileOptions ccGenericServices. - * @member {boolean} ccGenericServices - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.ccGenericServices = false; - - /** - * FileOptions javaGenericServices. - * @member {boolean} javaGenericServices - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.javaGenericServices = false; - - /** - * FileOptions pyGenericServices. - * @member {boolean} pyGenericServices - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.pyGenericServices = false; - - /** - * FileOptions deprecated. - * @member {boolean} deprecated - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.deprecated = false; - - /** - * FileOptions ccEnableArenas. - * @member {boolean} ccEnableArenas - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.ccEnableArenas = false; - - /** - * FileOptions objcClassPrefix. - * @member {string} objcClassPrefix - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.objcClassPrefix = ""; - - /** - * FileOptions csharpNamespace. - * @member {string} csharpNamespace - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.csharpNamespace = ""; - - /** - * FileOptions uninterpretedOption. - * @member {Array.} uninterpretedOption - * @memberof google.protobuf.FileOptions - * @instance - */ - FileOptions.prototype.uninterpretedOption = $util.emptyArray; - - /** - * Creates a new FileOptions instance using the specified properties. - * @function create - * @memberof google.protobuf.FileOptions - * @static - * @param {google.protobuf.IFileOptions=} [properties] Properties to set - * @returns {google.protobuf.FileOptions} FileOptions instance - */ - FileOptions.create = function create(properties) { - return new FileOptions(properties); - }; - - /** - * Encodes the specified FileOptions message. Does not implicitly {@link google.protobuf.FileOptions.verify|verify} messages. - * @function encode - * @memberof google.protobuf.FileOptions - * @static - * @param {google.protobuf.IFileOptions} message FileOptions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - FileOptions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.javaPackage != null && message.hasOwnProperty("javaPackage")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.javaPackage); - if (message.javaOuterClassname != null && message.hasOwnProperty("javaOuterClassname")) - writer.uint32(/* id 8, wireType 2 =*/66).string(message.javaOuterClassname); - if (message.optimizeFor != null && message.hasOwnProperty("optimizeFor")) - writer.uint32(/* id 9, wireType 0 =*/72).int32(message.optimizeFor); - if (message.javaMultipleFiles != null && message.hasOwnProperty("javaMultipleFiles")) - writer.uint32(/* id 10, wireType 0 =*/80).bool(message.javaMultipleFiles); - if (message.goPackage != null && message.hasOwnProperty("goPackage")) - writer.uint32(/* id 11, wireType 2 =*/90).string(message.goPackage); - if (message.ccGenericServices != null && message.hasOwnProperty("ccGenericServices")) - writer.uint32(/* id 16, wireType 0 =*/128).bool(message.ccGenericServices); - if (message.javaGenericServices != null && message.hasOwnProperty("javaGenericServices")) - writer.uint32(/* id 17, wireType 0 =*/136).bool(message.javaGenericServices); - if (message.pyGenericServices != null && message.hasOwnProperty("pyGenericServices")) - writer.uint32(/* id 18, wireType 0 =*/144).bool(message.pyGenericServices); - if (message.javaGenerateEqualsAndHash != null && message.hasOwnProperty("javaGenerateEqualsAndHash")) - writer.uint32(/* id 20, wireType 0 =*/160).bool(message.javaGenerateEqualsAndHash); - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - writer.uint32(/* id 23, wireType 0 =*/184).bool(message.deprecated); - if (message.javaStringCheckUtf8 != null && message.hasOwnProperty("javaStringCheckUtf8")) - writer.uint32(/* id 27, wireType 0 =*/216).bool(message.javaStringCheckUtf8); - if (message.ccEnableArenas != null && message.hasOwnProperty("ccEnableArenas")) - writer.uint32(/* id 31, wireType 0 =*/248).bool(message.ccEnableArenas); - if (message.objcClassPrefix != null && message.hasOwnProperty("objcClassPrefix")) - writer.uint32(/* id 36, wireType 2 =*/290).string(message.objcClassPrefix); - if (message.csharpNamespace != null && message.hasOwnProperty("csharpNamespace")) - writer.uint32(/* id 37, wireType 2 =*/298).string(message.csharpNamespace); - if (message.uninterpretedOption != null && message.uninterpretedOption.length) - for (var i = 0; i < message.uninterpretedOption.length; ++i) - $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a FileOptions message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.FileOptions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.FileOptions} FileOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - FileOptions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.FileOptions(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.javaPackage = reader.string(); - break; - case 8: - message.javaOuterClassname = reader.string(); - break; - case 10: - message.javaMultipleFiles = reader.bool(); - break; - case 20: - message.javaGenerateEqualsAndHash = reader.bool(); - break; - case 27: - message.javaStringCheckUtf8 = reader.bool(); - break; - case 9: - message.optimizeFor = reader.int32(); - break; - case 11: - message.goPackage = reader.string(); - break; - case 16: - message.ccGenericServices = reader.bool(); - break; - case 17: - message.javaGenericServices = reader.bool(); - break; - case 18: - message.pyGenericServices = reader.bool(); - break; - case 23: - message.deprecated = reader.bool(); - break; - case 31: - message.ccEnableArenas = reader.bool(); - break; - case 36: - message.objcClassPrefix = reader.string(); - break; - case 37: - message.csharpNamespace = reader.string(); - break; - case 999: - if (!(message.uninterpretedOption && message.uninterpretedOption.length)) - message.uninterpretedOption = []; - message.uninterpretedOption.push($root.google.protobuf.UninterpretedOption.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a FileOptions message. - * @function verify - * @memberof google.protobuf.FileOptions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - FileOptions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.javaPackage != null && message.hasOwnProperty("javaPackage")) - if (!$util.isString(message.javaPackage)) - return "javaPackage: string expected"; - if (message.javaOuterClassname != null && message.hasOwnProperty("javaOuterClassname")) - if (!$util.isString(message.javaOuterClassname)) - return "javaOuterClassname: string expected"; - if (message.javaMultipleFiles != null && message.hasOwnProperty("javaMultipleFiles")) - if (typeof message.javaMultipleFiles !== "boolean") - return "javaMultipleFiles: boolean expected"; - if (message.javaGenerateEqualsAndHash != null && message.hasOwnProperty("javaGenerateEqualsAndHash")) - if (typeof message.javaGenerateEqualsAndHash !== "boolean") - return "javaGenerateEqualsAndHash: boolean expected"; - if (message.javaStringCheckUtf8 != null && message.hasOwnProperty("javaStringCheckUtf8")) - if (typeof message.javaStringCheckUtf8 !== "boolean") - return "javaStringCheckUtf8: boolean expected"; - if (message.optimizeFor != null && message.hasOwnProperty("optimizeFor")) - switch (message.optimizeFor) { - default: - return "optimizeFor: enum value expected"; - case 1: - case 2: - case 3: - break; - } - if (message.goPackage != null && message.hasOwnProperty("goPackage")) - if (!$util.isString(message.goPackage)) - return "goPackage: string expected"; - if (message.ccGenericServices != null && message.hasOwnProperty("ccGenericServices")) - if (typeof message.ccGenericServices !== "boolean") - return "ccGenericServices: boolean expected"; - if (message.javaGenericServices != null && message.hasOwnProperty("javaGenericServices")) - if (typeof message.javaGenericServices !== "boolean") - return "javaGenericServices: boolean expected"; - if (message.pyGenericServices != null && message.hasOwnProperty("pyGenericServices")) - if (typeof message.pyGenericServices !== "boolean") - return "pyGenericServices: boolean expected"; - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - if (typeof message.deprecated !== "boolean") - return "deprecated: boolean expected"; - if (message.ccEnableArenas != null && message.hasOwnProperty("ccEnableArenas")) - if (typeof message.ccEnableArenas !== "boolean") - return "ccEnableArenas: boolean expected"; - if (message.objcClassPrefix != null && message.hasOwnProperty("objcClassPrefix")) - if (!$util.isString(message.objcClassPrefix)) - return "objcClassPrefix: string expected"; - if (message.csharpNamespace != null && message.hasOwnProperty("csharpNamespace")) - if (!$util.isString(message.csharpNamespace)) - return "csharpNamespace: string expected"; - if (message.uninterpretedOption != null && message.hasOwnProperty("uninterpretedOption")) { - if (!Array.isArray(message.uninterpretedOption)) - return "uninterpretedOption: array expected"; - for (var i = 0; i < message.uninterpretedOption.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.verify(message.uninterpretedOption[i]); - if (error) - return "uninterpretedOption." + error; - } - } - return null; - }; - - /** - * OptimizeMode enum. - * @name google.protobuf.FileOptions.OptimizeMode - * @enum {string} - * @property {number} SPEED=1 SPEED value - * @property {number} CODE_SIZE=2 CODE_SIZE value - * @property {number} LITE_RUNTIME=3 LITE_RUNTIME value - */ - FileOptions.OptimizeMode = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[1] = "SPEED"] = 1; - values[valuesById[2] = "CODE_SIZE"] = 2; - values[valuesById[3] = "LITE_RUNTIME"] = 3; - return values; - })(); - - return FileOptions; - })(); - - protobuf.MessageOptions = (function() { - - /** - * Properties of a MessageOptions. - * @memberof google.protobuf - * @interface IMessageOptions - * @property {boolean|null} [messageSetWireFormat] MessageOptions messageSetWireFormat - * @property {boolean|null} [noStandardDescriptorAccessor] MessageOptions noStandardDescriptorAccessor - * @property {boolean|null} [deprecated] MessageOptions deprecated - * @property {boolean|null} [mapEntry] MessageOptions mapEntry - * @property {Array.|null} [uninterpretedOption] MessageOptions uninterpretedOption - */ - - /** - * Constructs a new MessageOptions. - * @memberof google.protobuf - * @classdesc Represents a MessageOptions. - * @implements IMessageOptions - * @constructor - * @param {google.protobuf.IMessageOptions=} [properties] Properties to set - */ - function MessageOptions(properties) { - this.uninterpretedOption = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * MessageOptions messageSetWireFormat. - * @member {boolean} messageSetWireFormat - * @memberof google.protobuf.MessageOptions - * @instance - */ - MessageOptions.prototype.messageSetWireFormat = false; - - /** - * MessageOptions noStandardDescriptorAccessor. - * @member {boolean} noStandardDescriptorAccessor - * @memberof google.protobuf.MessageOptions - * @instance - */ - MessageOptions.prototype.noStandardDescriptorAccessor = false; - - /** - * MessageOptions deprecated. - * @member {boolean} deprecated - * @memberof google.protobuf.MessageOptions - * @instance - */ - MessageOptions.prototype.deprecated = false; - - /** - * MessageOptions mapEntry. - * @member {boolean} mapEntry - * @memberof google.protobuf.MessageOptions - * @instance - */ - MessageOptions.prototype.mapEntry = false; - - /** - * MessageOptions uninterpretedOption. - * @member {Array.} uninterpretedOption - * @memberof google.protobuf.MessageOptions - * @instance - */ - MessageOptions.prototype.uninterpretedOption = $util.emptyArray; - - /** - * Creates a new MessageOptions instance using the specified properties. - * @function create - * @memberof google.protobuf.MessageOptions - * @static - * @param {google.protobuf.IMessageOptions=} [properties] Properties to set - * @returns {google.protobuf.MessageOptions} MessageOptions instance - */ - MessageOptions.create = function create(properties) { - return new MessageOptions(properties); - }; - - /** - * Encodes the specified MessageOptions message. Does not implicitly {@link google.protobuf.MessageOptions.verify|verify} messages. - * @function encode - * @memberof google.protobuf.MessageOptions - * @static - * @param {google.protobuf.IMessageOptions} message MessageOptions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - MessageOptions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.messageSetWireFormat != null && message.hasOwnProperty("messageSetWireFormat")) - writer.uint32(/* id 1, wireType 0 =*/8).bool(message.messageSetWireFormat); - if (message.noStandardDescriptorAccessor != null && message.hasOwnProperty("noStandardDescriptorAccessor")) - writer.uint32(/* id 2, wireType 0 =*/16).bool(message.noStandardDescriptorAccessor); - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - writer.uint32(/* id 3, wireType 0 =*/24).bool(message.deprecated); - if (message.mapEntry != null && message.hasOwnProperty("mapEntry")) - writer.uint32(/* id 7, wireType 0 =*/56).bool(message.mapEntry); - if (message.uninterpretedOption != null && message.uninterpretedOption.length) - for (var i = 0; i < message.uninterpretedOption.length; ++i) - $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a MessageOptions message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.MessageOptions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.MessageOptions} MessageOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - MessageOptions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.MessageOptions(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.messageSetWireFormat = reader.bool(); - break; - case 2: - message.noStandardDescriptorAccessor = reader.bool(); - break; - case 3: - message.deprecated = reader.bool(); - break; - case 7: - message.mapEntry = reader.bool(); - break; - case 999: - if (!(message.uninterpretedOption && message.uninterpretedOption.length)) - message.uninterpretedOption = []; - message.uninterpretedOption.push($root.google.protobuf.UninterpretedOption.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a MessageOptions message. - * @function verify - * @memberof google.protobuf.MessageOptions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - MessageOptions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.messageSetWireFormat != null && message.hasOwnProperty("messageSetWireFormat")) - if (typeof message.messageSetWireFormat !== "boolean") - return "messageSetWireFormat: boolean expected"; - if (message.noStandardDescriptorAccessor != null && message.hasOwnProperty("noStandardDescriptorAccessor")) - if (typeof message.noStandardDescriptorAccessor !== "boolean") - return "noStandardDescriptorAccessor: boolean expected"; - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - if (typeof message.deprecated !== "boolean") - return "deprecated: boolean expected"; - if (message.mapEntry != null && message.hasOwnProperty("mapEntry")) - if (typeof message.mapEntry !== "boolean") - return "mapEntry: boolean expected"; - if (message.uninterpretedOption != null && message.hasOwnProperty("uninterpretedOption")) { - if (!Array.isArray(message.uninterpretedOption)) - return "uninterpretedOption: array expected"; - for (var i = 0; i < message.uninterpretedOption.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.verify(message.uninterpretedOption[i]); - if (error) - return "uninterpretedOption." + error; - } - } - return null; - }; - - return MessageOptions; - })(); - - protobuf.FieldOptions = (function() { - - /** - * Properties of a FieldOptions. - * @memberof google.protobuf - * @interface IFieldOptions - * @property {google.protobuf.FieldOptions.CType|null} [ctype] FieldOptions ctype - * @property {boolean|null} [packed] FieldOptions packed - * @property {google.protobuf.FieldOptions.JSType|null} [jstype] FieldOptions jstype - * @property {boolean|null} [lazy] FieldOptions lazy - * @property {boolean|null} [deprecated] FieldOptions deprecated - * @property {boolean|null} [weak] FieldOptions weak - * @property {Array.|null} [uninterpretedOption] FieldOptions uninterpretedOption - */ - - /** - * Constructs a new FieldOptions. - * @memberof google.protobuf - * @classdesc Represents a FieldOptions. - * @implements IFieldOptions - * @constructor - * @param {google.protobuf.IFieldOptions=} [properties] Properties to set - */ - function FieldOptions(properties) { - this.uninterpretedOption = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * FieldOptions ctype. - * @member {google.protobuf.FieldOptions.CType} ctype - * @memberof google.protobuf.FieldOptions - * @instance - */ - FieldOptions.prototype.ctype = 0; - - /** - * FieldOptions packed. - * @member {boolean} packed - * @memberof google.protobuf.FieldOptions - * @instance - */ - FieldOptions.prototype.packed = false; - - /** - * FieldOptions jstype. - * @member {google.protobuf.FieldOptions.JSType} jstype - * @memberof google.protobuf.FieldOptions - * @instance - */ - FieldOptions.prototype.jstype = 0; - - /** - * FieldOptions lazy. - * @member {boolean} lazy - * @memberof google.protobuf.FieldOptions - * @instance - */ - FieldOptions.prototype.lazy = false; - - /** - * FieldOptions deprecated. - * @member {boolean} deprecated - * @memberof google.protobuf.FieldOptions - * @instance - */ - FieldOptions.prototype.deprecated = false; - - /** - * FieldOptions weak. - * @member {boolean} weak - * @memberof google.protobuf.FieldOptions - * @instance - */ - FieldOptions.prototype.weak = false; - - /** - * FieldOptions uninterpretedOption. - * @member {Array.} uninterpretedOption - * @memberof google.protobuf.FieldOptions - * @instance - */ - FieldOptions.prototype.uninterpretedOption = $util.emptyArray; - - /** - * Creates a new FieldOptions instance using the specified properties. - * @function create - * @memberof google.protobuf.FieldOptions - * @static - * @param {google.protobuf.IFieldOptions=} [properties] Properties to set - * @returns {google.protobuf.FieldOptions} FieldOptions instance - */ - FieldOptions.create = function create(properties) { - return new FieldOptions(properties); - }; - - /** - * Encodes the specified FieldOptions message. Does not implicitly {@link google.protobuf.FieldOptions.verify|verify} messages. - * @function encode - * @memberof google.protobuf.FieldOptions - * @static - * @param {google.protobuf.IFieldOptions} message FieldOptions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - FieldOptions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.ctype != null && message.hasOwnProperty("ctype")) - writer.uint32(/* id 1, wireType 0 =*/8).int32(message.ctype); - if (message.packed != null && message.hasOwnProperty("packed")) - writer.uint32(/* id 2, wireType 0 =*/16).bool(message.packed); - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - writer.uint32(/* id 3, wireType 0 =*/24).bool(message.deprecated); - if (message.lazy != null && message.hasOwnProperty("lazy")) - writer.uint32(/* id 5, wireType 0 =*/40).bool(message.lazy); - if (message.jstype != null && message.hasOwnProperty("jstype")) - writer.uint32(/* id 6, wireType 0 =*/48).int32(message.jstype); - if (message.weak != null && message.hasOwnProperty("weak")) - writer.uint32(/* id 10, wireType 0 =*/80).bool(message.weak); - if (message.uninterpretedOption != null && message.uninterpretedOption.length) - for (var i = 0; i < message.uninterpretedOption.length; ++i) - $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a FieldOptions message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.FieldOptions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.FieldOptions} FieldOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - FieldOptions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.FieldOptions(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.ctype = reader.int32(); - break; - case 2: - message.packed = reader.bool(); - break; - case 6: - message.jstype = reader.int32(); - break; - case 5: - message.lazy = reader.bool(); - break; - case 3: - message.deprecated = reader.bool(); - break; - case 10: - message.weak = reader.bool(); - break; - case 999: - if (!(message.uninterpretedOption && message.uninterpretedOption.length)) - message.uninterpretedOption = []; - message.uninterpretedOption.push($root.google.protobuf.UninterpretedOption.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a FieldOptions message. - * @function verify - * @memberof google.protobuf.FieldOptions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - FieldOptions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.ctype != null && message.hasOwnProperty("ctype")) - switch (message.ctype) { - default: - return "ctype: enum value expected"; - case 0: - case 1: - case 2: - break; - } - if (message.packed != null && message.hasOwnProperty("packed")) - if (typeof message.packed !== "boolean") - return "packed: boolean expected"; - if (message.jstype != null && message.hasOwnProperty("jstype")) - switch (message.jstype) { - default: - return "jstype: enum value expected"; - case 0: - case 1: - case 2: - break; - } - if (message.lazy != null && message.hasOwnProperty("lazy")) - if (typeof message.lazy !== "boolean") - return "lazy: boolean expected"; - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - if (typeof message.deprecated !== "boolean") - return "deprecated: boolean expected"; - if (message.weak != null && message.hasOwnProperty("weak")) - if (typeof message.weak !== "boolean") - return "weak: boolean expected"; - if (message.uninterpretedOption != null && message.hasOwnProperty("uninterpretedOption")) { - if (!Array.isArray(message.uninterpretedOption)) - return "uninterpretedOption: array expected"; - for (var i = 0; i < message.uninterpretedOption.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.verify(message.uninterpretedOption[i]); - if (error) - return "uninterpretedOption." + error; - } - } - return null; - }; - - /** - * CType enum. - * @name google.protobuf.FieldOptions.CType - * @enum {string} - * @property {number} STRING=0 STRING value - * @property {number} CORD=1 CORD value - * @property {number} STRING_PIECE=2 STRING_PIECE value - */ - FieldOptions.CType = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "STRING"] = 0; - values[valuesById[1] = "CORD"] = 1; - values[valuesById[2] = "STRING_PIECE"] = 2; - return values; - })(); - - /** - * JSType enum. - * @name google.protobuf.FieldOptions.JSType - * @enum {string} - * @property {number} JS_NORMAL=0 JS_NORMAL value - * @property {number} JS_STRING=1 JS_STRING value - * @property {number} JS_NUMBER=2 JS_NUMBER value - */ - FieldOptions.JSType = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "JS_NORMAL"] = 0; - values[valuesById[1] = "JS_STRING"] = 1; - values[valuesById[2] = "JS_NUMBER"] = 2; - return values; - })(); - - return FieldOptions; - })(); - - protobuf.OneofOptions = (function() { - - /** - * Properties of an OneofOptions. - * @memberof google.protobuf - * @interface IOneofOptions - * @property {Array.|null} [uninterpretedOption] OneofOptions uninterpretedOption - */ - - /** - * Constructs a new OneofOptions. - * @memberof google.protobuf - * @classdesc Represents an OneofOptions. - * @implements IOneofOptions - * @constructor - * @param {google.protobuf.IOneofOptions=} [properties] Properties to set - */ - function OneofOptions(properties) { - this.uninterpretedOption = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * OneofOptions uninterpretedOption. - * @member {Array.} uninterpretedOption - * @memberof google.protobuf.OneofOptions - * @instance - */ - OneofOptions.prototype.uninterpretedOption = $util.emptyArray; - - /** - * Creates a new OneofOptions instance using the specified properties. - * @function create - * @memberof google.protobuf.OneofOptions - * @static - * @param {google.protobuf.IOneofOptions=} [properties] Properties to set - * @returns {google.protobuf.OneofOptions} OneofOptions instance - */ - OneofOptions.create = function create(properties) { - return new OneofOptions(properties); - }; - - /** - * Encodes the specified OneofOptions message. Does not implicitly {@link google.protobuf.OneofOptions.verify|verify} messages. - * @function encode - * @memberof google.protobuf.OneofOptions - * @static - * @param {google.protobuf.IOneofOptions} message OneofOptions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - OneofOptions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.uninterpretedOption != null && message.uninterpretedOption.length) - for (var i = 0; i < message.uninterpretedOption.length; ++i) - $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an OneofOptions message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.OneofOptions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.OneofOptions} OneofOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - OneofOptions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.OneofOptions(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 999: - if (!(message.uninterpretedOption && message.uninterpretedOption.length)) - message.uninterpretedOption = []; - message.uninterpretedOption.push($root.google.protobuf.UninterpretedOption.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an OneofOptions message. - * @function verify - * @memberof google.protobuf.OneofOptions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - OneofOptions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.uninterpretedOption != null && message.hasOwnProperty("uninterpretedOption")) { - if (!Array.isArray(message.uninterpretedOption)) - return "uninterpretedOption: array expected"; - for (var i = 0; i < message.uninterpretedOption.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.verify(message.uninterpretedOption[i]); - if (error) - return "uninterpretedOption." + error; - } - } - return null; - }; - - return OneofOptions; - })(); - - protobuf.EnumOptions = (function() { - - /** - * Properties of an EnumOptions. - * @memberof google.protobuf - * @interface IEnumOptions - * @property {boolean|null} [allowAlias] EnumOptions allowAlias - * @property {boolean|null} [deprecated] EnumOptions deprecated - * @property {Array.|null} [uninterpretedOption] EnumOptions uninterpretedOption - */ - - /** - * Constructs a new EnumOptions. - * @memberof google.protobuf - * @classdesc Represents an EnumOptions. - * @implements IEnumOptions - * @constructor - * @param {google.protobuf.IEnumOptions=} [properties] Properties to set - */ - function EnumOptions(properties) { - this.uninterpretedOption = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EnumOptions allowAlias. - * @member {boolean} allowAlias - * @memberof google.protobuf.EnumOptions - * @instance - */ - EnumOptions.prototype.allowAlias = false; - - /** - * EnumOptions deprecated. - * @member {boolean} deprecated - * @memberof google.protobuf.EnumOptions - * @instance - */ - EnumOptions.prototype.deprecated = false; - - /** - * EnumOptions uninterpretedOption. - * @member {Array.} uninterpretedOption - * @memberof google.protobuf.EnumOptions - * @instance - */ - EnumOptions.prototype.uninterpretedOption = $util.emptyArray; - - /** - * Creates a new EnumOptions instance using the specified properties. - * @function create - * @memberof google.protobuf.EnumOptions - * @static - * @param {google.protobuf.IEnumOptions=} [properties] Properties to set - * @returns {google.protobuf.EnumOptions} EnumOptions instance - */ - EnumOptions.create = function create(properties) { - return new EnumOptions(properties); - }; - - /** - * Encodes the specified EnumOptions message. Does not implicitly {@link google.protobuf.EnumOptions.verify|verify} messages. - * @function encode - * @memberof google.protobuf.EnumOptions - * @static - * @param {google.protobuf.IEnumOptions} message EnumOptions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EnumOptions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.allowAlias != null && message.hasOwnProperty("allowAlias")) - writer.uint32(/* id 2, wireType 0 =*/16).bool(message.allowAlias); - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - writer.uint32(/* id 3, wireType 0 =*/24).bool(message.deprecated); - if (message.uninterpretedOption != null && message.uninterpretedOption.length) - for (var i = 0; i < message.uninterpretedOption.length; ++i) - $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an EnumOptions message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.EnumOptions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.EnumOptions} EnumOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EnumOptions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.EnumOptions(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 2: - message.allowAlias = reader.bool(); - break; - case 3: - message.deprecated = reader.bool(); - break; - case 999: - if (!(message.uninterpretedOption && message.uninterpretedOption.length)) - message.uninterpretedOption = []; - message.uninterpretedOption.push($root.google.protobuf.UninterpretedOption.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EnumOptions message. - * @function verify - * @memberof google.protobuf.EnumOptions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EnumOptions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.allowAlias != null && message.hasOwnProperty("allowAlias")) - if (typeof message.allowAlias !== "boolean") - return "allowAlias: boolean expected"; - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - if (typeof message.deprecated !== "boolean") - return "deprecated: boolean expected"; - if (message.uninterpretedOption != null && message.hasOwnProperty("uninterpretedOption")) { - if (!Array.isArray(message.uninterpretedOption)) - return "uninterpretedOption: array expected"; - for (var i = 0; i < message.uninterpretedOption.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.verify(message.uninterpretedOption[i]); - if (error) - return "uninterpretedOption." + error; - } - } - return null; - }; - - return EnumOptions; - })(); - - protobuf.EnumValueOptions = (function() { - - /** - * Properties of an EnumValueOptions. - * @memberof google.protobuf - * @interface IEnumValueOptions - * @property {boolean|null} [deprecated] EnumValueOptions deprecated - * @property {Array.|null} [uninterpretedOption] EnumValueOptions uninterpretedOption - */ - - /** - * Constructs a new EnumValueOptions. - * @memberof google.protobuf - * @classdesc Represents an EnumValueOptions. - * @implements IEnumValueOptions - * @constructor - * @param {google.protobuf.IEnumValueOptions=} [properties] Properties to set - */ - function EnumValueOptions(properties) { - this.uninterpretedOption = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * EnumValueOptions deprecated. - * @member {boolean} deprecated - * @memberof google.protobuf.EnumValueOptions - * @instance - */ - EnumValueOptions.prototype.deprecated = false; - - /** - * EnumValueOptions uninterpretedOption. - * @member {Array.} uninterpretedOption - * @memberof google.protobuf.EnumValueOptions - * @instance - */ - EnumValueOptions.prototype.uninterpretedOption = $util.emptyArray; - - /** - * Creates a new EnumValueOptions instance using the specified properties. - * @function create - * @memberof google.protobuf.EnumValueOptions - * @static - * @param {google.protobuf.IEnumValueOptions=} [properties] Properties to set - * @returns {google.protobuf.EnumValueOptions} EnumValueOptions instance - */ - EnumValueOptions.create = function create(properties) { - return new EnumValueOptions(properties); - }; - - /** - * Encodes the specified EnumValueOptions message. Does not implicitly {@link google.protobuf.EnumValueOptions.verify|verify} messages. - * @function encode - * @memberof google.protobuf.EnumValueOptions - * @static - * @param {google.protobuf.IEnumValueOptions} message EnumValueOptions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - EnumValueOptions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - writer.uint32(/* id 1, wireType 0 =*/8).bool(message.deprecated); - if (message.uninterpretedOption != null && message.uninterpretedOption.length) - for (var i = 0; i < message.uninterpretedOption.length; ++i) - $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); - return writer; - }; - - /** - * Decodes an EnumValueOptions message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.EnumValueOptions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.EnumValueOptions} EnumValueOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - EnumValueOptions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.EnumValueOptions(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.deprecated = reader.bool(); - break; - case 999: - if (!(message.uninterpretedOption && message.uninterpretedOption.length)) - message.uninterpretedOption = []; - message.uninterpretedOption.push($root.google.protobuf.UninterpretedOption.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an EnumValueOptions message. - * @function verify - * @memberof google.protobuf.EnumValueOptions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - EnumValueOptions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - if (typeof message.deprecated !== "boolean") - return "deprecated: boolean expected"; - if (message.uninterpretedOption != null && message.hasOwnProperty("uninterpretedOption")) { - if (!Array.isArray(message.uninterpretedOption)) - return "uninterpretedOption: array expected"; - for (var i = 0; i < message.uninterpretedOption.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.verify(message.uninterpretedOption[i]); - if (error) - return "uninterpretedOption." + error; - } - } - return null; - }; - - return EnumValueOptions; - })(); - - protobuf.ServiceOptions = (function() { - - /** - * Properties of a ServiceOptions. - * @memberof google.protobuf - * @interface IServiceOptions - * @property {boolean|null} [deprecated] ServiceOptions deprecated - * @property {Array.|null} [uninterpretedOption] ServiceOptions uninterpretedOption - */ - - /** - * Constructs a new ServiceOptions. - * @memberof google.protobuf - * @classdesc Represents a ServiceOptions. - * @implements IServiceOptions - * @constructor - * @param {google.protobuf.IServiceOptions=} [properties] Properties to set - */ - function ServiceOptions(properties) { - this.uninterpretedOption = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * ServiceOptions deprecated. - * @member {boolean} deprecated - * @memberof google.protobuf.ServiceOptions - * @instance - */ - ServiceOptions.prototype.deprecated = false; - - /** - * ServiceOptions uninterpretedOption. - * @member {Array.} uninterpretedOption - * @memberof google.protobuf.ServiceOptions - * @instance - */ - ServiceOptions.prototype.uninterpretedOption = $util.emptyArray; - - /** - * Creates a new ServiceOptions instance using the specified properties. - * @function create - * @memberof google.protobuf.ServiceOptions - * @static - * @param {google.protobuf.IServiceOptions=} [properties] Properties to set - * @returns {google.protobuf.ServiceOptions} ServiceOptions instance - */ - ServiceOptions.create = function create(properties) { - return new ServiceOptions(properties); - }; - - /** - * Encodes the specified ServiceOptions message. Does not implicitly {@link google.protobuf.ServiceOptions.verify|verify} messages. - * @function encode - * @memberof google.protobuf.ServiceOptions - * @static - * @param {google.protobuf.IServiceOptions} message ServiceOptions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - ServiceOptions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - writer.uint32(/* id 33, wireType 0 =*/264).bool(message.deprecated); - if (message.uninterpretedOption != null && message.uninterpretedOption.length) - for (var i = 0; i < message.uninterpretedOption.length; ++i) - $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a ServiceOptions message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.ServiceOptions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.ServiceOptions} ServiceOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - ServiceOptions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.ServiceOptions(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 33: - message.deprecated = reader.bool(); - break; - case 999: - if (!(message.uninterpretedOption && message.uninterpretedOption.length)) - message.uninterpretedOption = []; - message.uninterpretedOption.push($root.google.protobuf.UninterpretedOption.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a ServiceOptions message. - * @function verify - * @memberof google.protobuf.ServiceOptions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - ServiceOptions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - if (typeof message.deprecated !== "boolean") - return "deprecated: boolean expected"; - if (message.uninterpretedOption != null && message.hasOwnProperty("uninterpretedOption")) { - if (!Array.isArray(message.uninterpretedOption)) - return "uninterpretedOption: array expected"; - for (var i = 0; i < message.uninterpretedOption.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.verify(message.uninterpretedOption[i]); - if (error) - return "uninterpretedOption." + error; - } - } - return null; - }; - - return ServiceOptions; - })(); - - protobuf.MethodOptions = (function() { - - /** - * Properties of a MethodOptions. - * @memberof google.protobuf - * @interface IMethodOptions - * @property {boolean|null} [deprecated] MethodOptions deprecated - * @property {Array.|null} [uninterpretedOption] MethodOptions uninterpretedOption - * @property {google.api.IHttpRule|null} [".google.api.http"] MethodOptions .google.api.http - */ - - /** - * Constructs a new MethodOptions. - * @memberof google.protobuf - * @classdesc Represents a MethodOptions. - * @implements IMethodOptions - * @constructor - * @param {google.protobuf.IMethodOptions=} [properties] Properties to set - */ - function MethodOptions(properties) { - this.uninterpretedOption = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * MethodOptions deprecated. - * @member {boolean} deprecated - * @memberof google.protobuf.MethodOptions - * @instance - */ - MethodOptions.prototype.deprecated = false; - - /** - * MethodOptions uninterpretedOption. - * @member {Array.} uninterpretedOption - * @memberof google.protobuf.MethodOptions - * @instance - */ - MethodOptions.prototype.uninterpretedOption = $util.emptyArray; - - /** - * MethodOptions .google.api.http. - * @member {google.api.IHttpRule|null|undefined} .google.api.http - * @memberof google.protobuf.MethodOptions - * @instance - */ - MethodOptions.prototype[".google.api.http"] = null; - - /** - * Creates a new MethodOptions instance using the specified properties. - * @function create - * @memberof google.protobuf.MethodOptions - * @static - * @param {google.protobuf.IMethodOptions=} [properties] Properties to set - * @returns {google.protobuf.MethodOptions} MethodOptions instance - */ - MethodOptions.create = function create(properties) { - return new MethodOptions(properties); - }; - - /** - * Encodes the specified MethodOptions message. Does not implicitly {@link google.protobuf.MethodOptions.verify|verify} messages. - * @function encode - * @memberof google.protobuf.MethodOptions - * @static - * @param {google.protobuf.IMethodOptions} message MethodOptions message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - MethodOptions.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - writer.uint32(/* id 33, wireType 0 =*/264).bool(message.deprecated); - if (message.uninterpretedOption != null && message.uninterpretedOption.length) - for (var i = 0; i < message.uninterpretedOption.length; ++i) - $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); - if (message[".google.api.http"] != null && message.hasOwnProperty(".google.api.http")) - $root.google.api.HttpRule.encode(message[".google.api.http"], writer.uint32(/* id 72295728, wireType 2 =*/578365826).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a MethodOptions message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.MethodOptions - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.MethodOptions} MethodOptions - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - MethodOptions.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.MethodOptions(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 33: - message.deprecated = reader.bool(); - break; - case 999: - if (!(message.uninterpretedOption && message.uninterpretedOption.length)) - message.uninterpretedOption = []; - message.uninterpretedOption.push($root.google.protobuf.UninterpretedOption.decode(reader, reader.uint32())); - break; - case 72295728: - message[".google.api.http"] = $root.google.api.HttpRule.decode(reader, reader.uint32()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a MethodOptions message. - * @function verify - * @memberof google.protobuf.MethodOptions - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - MethodOptions.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.deprecated != null && message.hasOwnProperty("deprecated")) - if (typeof message.deprecated !== "boolean") - return "deprecated: boolean expected"; - if (message.uninterpretedOption != null && message.hasOwnProperty("uninterpretedOption")) { - if (!Array.isArray(message.uninterpretedOption)) - return "uninterpretedOption: array expected"; - for (var i = 0; i < message.uninterpretedOption.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.verify(message.uninterpretedOption[i]); - if (error) - return "uninterpretedOption." + error; - } - } - if (message[".google.api.http"] != null && message.hasOwnProperty(".google.api.http")) { - var error = $root.google.api.HttpRule.verify(message[".google.api.http"]); - if (error) - return ".google.api.http." + error; - } - return null; - }; - - return MethodOptions; - })(); - - protobuf.UninterpretedOption = (function() { - - /** - * Properties of an UninterpretedOption. - * @memberof google.protobuf - * @interface IUninterpretedOption - * @property {Array.|null} [name] UninterpretedOption name - * @property {string|null} [identifierValue] UninterpretedOption identifierValue - * @property {Long|null} [positiveIntValue] UninterpretedOption positiveIntValue - * @property {Long|null} [negativeIntValue] UninterpretedOption negativeIntValue - * @property {number|null} [doubleValue] UninterpretedOption doubleValue - * @property {Uint8Array|null} [stringValue] UninterpretedOption stringValue - * @property {string|null} [aggregateValue] UninterpretedOption aggregateValue - */ - - /** - * Constructs a new UninterpretedOption. - * @memberof google.protobuf - * @classdesc Represents an UninterpretedOption. - * @implements IUninterpretedOption - * @constructor - * @param {google.protobuf.IUninterpretedOption=} [properties] Properties to set - */ - function UninterpretedOption(properties) { - this.name = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * UninterpretedOption name. - * @member {Array.} name - * @memberof google.protobuf.UninterpretedOption - * @instance - */ - UninterpretedOption.prototype.name = $util.emptyArray; - - /** - * UninterpretedOption identifierValue. - * @member {string} identifierValue - * @memberof google.protobuf.UninterpretedOption - * @instance - */ - UninterpretedOption.prototype.identifierValue = ""; - - /** - * UninterpretedOption positiveIntValue. - * @member {Long} positiveIntValue - * @memberof google.protobuf.UninterpretedOption - * @instance - */ - UninterpretedOption.prototype.positiveIntValue = $util.Long ? $util.Long.fromBits(0,0,true) : 0; - - /** - * UninterpretedOption negativeIntValue. - * @member {Long} negativeIntValue - * @memberof google.protobuf.UninterpretedOption - * @instance - */ - UninterpretedOption.prototype.negativeIntValue = $util.Long ? $util.Long.fromBits(0,0,false) : 0; - - /** - * UninterpretedOption doubleValue. - * @member {number} doubleValue - * @memberof google.protobuf.UninterpretedOption - * @instance - */ - UninterpretedOption.prototype.doubleValue = 0; - - /** - * UninterpretedOption stringValue. - * @member {Uint8Array} stringValue - * @memberof google.protobuf.UninterpretedOption - * @instance - */ - UninterpretedOption.prototype.stringValue = $util.newBuffer([]); - - /** - * UninterpretedOption aggregateValue. - * @member {string} aggregateValue - * @memberof google.protobuf.UninterpretedOption - * @instance - */ - UninterpretedOption.prototype.aggregateValue = ""; - - /** - * Creates a new UninterpretedOption instance using the specified properties. - * @function create - * @memberof google.protobuf.UninterpretedOption - * @static - * @param {google.protobuf.IUninterpretedOption=} [properties] Properties to set - * @returns {google.protobuf.UninterpretedOption} UninterpretedOption instance - */ - UninterpretedOption.create = function create(properties) { - return new UninterpretedOption(properties); - }; - - /** - * Encodes the specified UninterpretedOption message. Does not implicitly {@link google.protobuf.UninterpretedOption.verify|verify} messages. - * @function encode - * @memberof google.protobuf.UninterpretedOption - * @static - * @param {google.protobuf.IUninterpretedOption} message UninterpretedOption message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - UninterpretedOption.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.name != null && message.name.length) - for (var i = 0; i < message.name.length; ++i) - $root.google.protobuf.UninterpretedOption.NamePart.encode(message.name[i], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); - if (message.identifierValue != null && message.hasOwnProperty("identifierValue")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.identifierValue); - if (message.positiveIntValue != null && message.hasOwnProperty("positiveIntValue")) - writer.uint32(/* id 4, wireType 0 =*/32).uint64(message.positiveIntValue); - if (message.negativeIntValue != null && message.hasOwnProperty("negativeIntValue")) - writer.uint32(/* id 5, wireType 0 =*/40).int64(message.negativeIntValue); - if (message.doubleValue != null && message.hasOwnProperty("doubleValue")) - writer.uint32(/* id 6, wireType 1 =*/49).double(message.doubleValue); - if (message.stringValue != null && message.hasOwnProperty("stringValue")) - writer.uint32(/* id 7, wireType 2 =*/58).bytes(message.stringValue); - if (message.aggregateValue != null && message.hasOwnProperty("aggregateValue")) - writer.uint32(/* id 8, wireType 2 =*/66).string(message.aggregateValue); - return writer; - }; - - /** - * Decodes an UninterpretedOption message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.UninterpretedOption - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.UninterpretedOption} UninterpretedOption - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - UninterpretedOption.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.UninterpretedOption(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 2: - if (!(message.name && message.name.length)) - message.name = []; - message.name.push($root.google.protobuf.UninterpretedOption.NamePart.decode(reader, reader.uint32())); - break; - case 3: - message.identifierValue = reader.string(); - break; - case 4: - message.positiveIntValue = reader.uint64(); - break; - case 5: - message.negativeIntValue = reader.int64(); - break; - case 6: - message.doubleValue = reader.double(); - break; - case 7: - message.stringValue = reader.bytes(); - break; - case 8: - message.aggregateValue = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an UninterpretedOption message. - * @function verify - * @memberof google.protobuf.UninterpretedOption - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - UninterpretedOption.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.name != null && message.hasOwnProperty("name")) { - if (!Array.isArray(message.name)) - return "name: array expected"; - for (var i = 0; i < message.name.length; ++i) { - var error = $root.google.protobuf.UninterpretedOption.NamePart.verify(message.name[i]); - if (error) - return "name." + error; - } - } - if (message.identifierValue != null && message.hasOwnProperty("identifierValue")) - if (!$util.isString(message.identifierValue)) - return "identifierValue: string expected"; - if (message.positiveIntValue != null && message.hasOwnProperty("positiveIntValue")) - if (!$util.isInteger(message.positiveIntValue) && !(message.positiveIntValue && $util.isInteger(message.positiveIntValue.low) && $util.isInteger(message.positiveIntValue.high))) - return "positiveIntValue: integer|Long expected"; - if (message.negativeIntValue != null && message.hasOwnProperty("negativeIntValue")) - if (!$util.isInteger(message.negativeIntValue) && !(message.negativeIntValue && $util.isInteger(message.negativeIntValue.low) && $util.isInteger(message.negativeIntValue.high))) - return "negativeIntValue: integer|Long expected"; - if (message.doubleValue != null && message.hasOwnProperty("doubleValue")) - if (typeof message.doubleValue !== "number") - return "doubleValue: number expected"; - if (message.stringValue != null && message.hasOwnProperty("stringValue")) - if (!(message.stringValue && typeof message.stringValue.length === "number" || $util.isString(message.stringValue))) - return "stringValue: buffer expected"; - if (message.aggregateValue != null && message.hasOwnProperty("aggregateValue")) - if (!$util.isString(message.aggregateValue)) - return "aggregateValue: string expected"; - return null; - }; - - UninterpretedOption.NamePart = (function() { - - /** - * Properties of a NamePart. - * @memberof google.protobuf.UninterpretedOption - * @interface INamePart - * @property {string} namePart NamePart namePart - * @property {boolean} isExtension NamePart isExtension - */ - - /** - * Constructs a new NamePart. - * @memberof google.protobuf.UninterpretedOption - * @classdesc Represents a NamePart. - * @implements INamePart - * @constructor - * @param {google.protobuf.UninterpretedOption.INamePart=} [properties] Properties to set - */ - function NamePart(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * NamePart namePart. - * @member {string} namePart - * @memberof google.protobuf.UninterpretedOption.NamePart - * @instance - */ - NamePart.prototype.namePart = ""; - - /** - * NamePart isExtension. - * @member {boolean} isExtension - * @memberof google.protobuf.UninterpretedOption.NamePart - * @instance - */ - NamePart.prototype.isExtension = false; - - /** - * Creates a new NamePart instance using the specified properties. - * @function create - * @memberof google.protobuf.UninterpretedOption.NamePart - * @static - * @param {google.protobuf.UninterpretedOption.INamePart=} [properties] Properties to set - * @returns {google.protobuf.UninterpretedOption.NamePart} NamePart instance - */ - NamePart.create = function create(properties) { - return new NamePart(properties); - }; - - /** - * Encodes the specified NamePart message. Does not implicitly {@link google.protobuf.UninterpretedOption.NamePart.verify|verify} messages. - * @function encode - * @memberof google.protobuf.UninterpretedOption.NamePart - * @static - * @param {google.protobuf.UninterpretedOption.INamePart} message NamePart message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - NamePart.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - writer.uint32(/* id 1, wireType 2 =*/10).string(message.namePart); - writer.uint32(/* id 2, wireType 0 =*/16).bool(message.isExtension); - return writer; - }; - - /** - * Decodes a NamePart message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.UninterpretedOption.NamePart - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.UninterpretedOption.NamePart} NamePart - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - NamePart.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.UninterpretedOption.NamePart(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.namePart = reader.string(); - break; - case 2: - message.isExtension = reader.bool(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - if (!message.hasOwnProperty("namePart")) - throw $util.ProtocolError("missing required 'namePart'", { instance: message }); - if (!message.hasOwnProperty("isExtension")) - throw $util.ProtocolError("missing required 'isExtension'", { instance: message }); - return message; - }; - - /** - * Verifies a NamePart message. - * @function verify - * @memberof google.protobuf.UninterpretedOption.NamePart - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - NamePart.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (!$util.isString(message.namePart)) - return "namePart: string expected"; - if (typeof message.isExtension !== "boolean") - return "isExtension: boolean expected"; - return null; - }; - - return NamePart; - })(); - - return UninterpretedOption; - })(); - - protobuf.SourceCodeInfo = (function() { - - /** - * Properties of a SourceCodeInfo. - * @memberof google.protobuf - * @interface ISourceCodeInfo - * @property {Array.|null} [location] SourceCodeInfo location - */ - - /** - * Constructs a new SourceCodeInfo. - * @memberof google.protobuf - * @classdesc Represents a SourceCodeInfo. - * @implements ISourceCodeInfo - * @constructor - * @param {google.protobuf.ISourceCodeInfo=} [properties] Properties to set - */ - function SourceCodeInfo(properties) { - this.location = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * SourceCodeInfo location. - * @member {Array.} location - * @memberof google.protobuf.SourceCodeInfo - * @instance - */ - SourceCodeInfo.prototype.location = $util.emptyArray; - - /** - * Creates a new SourceCodeInfo instance using the specified properties. - * @function create - * @memberof google.protobuf.SourceCodeInfo - * @static - * @param {google.protobuf.ISourceCodeInfo=} [properties] Properties to set - * @returns {google.protobuf.SourceCodeInfo} SourceCodeInfo instance - */ - SourceCodeInfo.create = function create(properties) { - return new SourceCodeInfo(properties); - }; - - /** - * Encodes the specified SourceCodeInfo message. Does not implicitly {@link google.protobuf.SourceCodeInfo.verify|verify} messages. - * @function encode - * @memberof google.protobuf.SourceCodeInfo - * @static - * @param {google.protobuf.ISourceCodeInfo} message SourceCodeInfo message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - SourceCodeInfo.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.location != null && message.location.length) - for (var i = 0; i < message.location.length; ++i) - $root.google.protobuf.SourceCodeInfo.Location.encode(message.location[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a SourceCodeInfo message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.SourceCodeInfo - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.SourceCodeInfo} SourceCodeInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - SourceCodeInfo.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.SourceCodeInfo(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.location && message.location.length)) - message.location = []; - message.location.push($root.google.protobuf.SourceCodeInfo.Location.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a SourceCodeInfo message. - * @function verify - * @memberof google.protobuf.SourceCodeInfo - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - SourceCodeInfo.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.location != null && message.hasOwnProperty("location")) { - if (!Array.isArray(message.location)) - return "location: array expected"; - for (var i = 0; i < message.location.length; ++i) { - var error = $root.google.protobuf.SourceCodeInfo.Location.verify(message.location[i]); - if (error) - return "location." + error; - } - } - return null; - }; - - SourceCodeInfo.Location = (function() { - - /** - * Properties of a Location. - * @memberof google.protobuf.SourceCodeInfo - * @interface ILocation - * @property {Array.|null} [path] Location path - * @property {Array.|null} [span] Location span - * @property {string|null} [leadingComments] Location leadingComments - * @property {string|null} [trailingComments] Location trailingComments - * @property {Array.|null} [leadingDetachedComments] Location leadingDetachedComments - */ - - /** - * Constructs a new Location. - * @memberof google.protobuf.SourceCodeInfo - * @classdesc Represents a Location. - * @implements ILocation - * @constructor - * @param {google.protobuf.SourceCodeInfo.ILocation=} [properties] Properties to set - */ - function Location(properties) { - this.path = []; - this.span = []; - this.leadingDetachedComments = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Location path. - * @member {Array.} path - * @memberof google.protobuf.SourceCodeInfo.Location - * @instance - */ - Location.prototype.path = $util.emptyArray; - - /** - * Location span. - * @member {Array.} span - * @memberof google.protobuf.SourceCodeInfo.Location - * @instance - */ - Location.prototype.span = $util.emptyArray; - - /** - * Location leadingComments. - * @member {string} leadingComments - * @memberof google.protobuf.SourceCodeInfo.Location - * @instance - */ - Location.prototype.leadingComments = ""; - - /** - * Location trailingComments. - * @member {string} trailingComments - * @memberof google.protobuf.SourceCodeInfo.Location - * @instance - */ - Location.prototype.trailingComments = ""; - - /** - * Location leadingDetachedComments. - * @member {Array.} leadingDetachedComments - * @memberof google.protobuf.SourceCodeInfo.Location - * @instance - */ - Location.prototype.leadingDetachedComments = $util.emptyArray; - - /** - * Creates a new Location instance using the specified properties. - * @function create - * @memberof google.protobuf.SourceCodeInfo.Location - * @static - * @param {google.protobuf.SourceCodeInfo.ILocation=} [properties] Properties to set - * @returns {google.protobuf.SourceCodeInfo.Location} Location instance - */ - Location.create = function create(properties) { - return new Location(properties); - }; - - /** - * Encodes the specified Location message. Does not implicitly {@link google.protobuf.SourceCodeInfo.Location.verify|verify} messages. - * @function encode - * @memberof google.protobuf.SourceCodeInfo.Location - * @static - * @param {google.protobuf.SourceCodeInfo.ILocation} message Location message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Location.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.path != null && message.path.length) { - writer.uint32(/* id 1, wireType 2 =*/10).fork(); - for (var i = 0; i < message.path.length; ++i) - writer.int32(message.path[i]); - writer.ldelim(); - } - if (message.span != null && message.span.length) { - writer.uint32(/* id 2, wireType 2 =*/18).fork(); - for (var i = 0; i < message.span.length; ++i) - writer.int32(message.span[i]); - writer.ldelim(); - } - if (message.leadingComments != null && message.hasOwnProperty("leadingComments")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.leadingComments); - if (message.trailingComments != null && message.hasOwnProperty("trailingComments")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.trailingComments); - if (message.leadingDetachedComments != null && message.leadingDetachedComments.length) - for (var i = 0; i < message.leadingDetachedComments.length; ++i) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.leadingDetachedComments[i]); - return writer; - }; - - /** - * Decodes a Location message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.SourceCodeInfo.Location - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.SourceCodeInfo.Location} Location - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Location.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.SourceCodeInfo.Location(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.path && message.path.length)) - message.path = []; - if ((tag & 7) === 2) { - var end2 = reader.uint32() + reader.pos; - while (reader.pos < end2) - message.path.push(reader.int32()); - } else - message.path.push(reader.int32()); - break; - case 2: - if (!(message.span && message.span.length)) - message.span = []; - if ((tag & 7) === 2) { - var end2 = reader.uint32() + reader.pos; - while (reader.pos < end2) - message.span.push(reader.int32()); - } else - message.span.push(reader.int32()); - break; - case 3: - message.leadingComments = reader.string(); - break; - case 4: - message.trailingComments = reader.string(); - break; - case 6: - if (!(message.leadingDetachedComments && message.leadingDetachedComments.length)) - message.leadingDetachedComments = []; - message.leadingDetachedComments.push(reader.string()); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Location message. - * @function verify - * @memberof google.protobuf.SourceCodeInfo.Location - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Location.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.path != null && message.hasOwnProperty("path")) { - if (!Array.isArray(message.path)) - return "path: array expected"; - for (var i = 0; i < message.path.length; ++i) - if (!$util.isInteger(message.path[i])) - return "path: integer[] expected"; - } - if (message.span != null && message.hasOwnProperty("span")) { - if (!Array.isArray(message.span)) - return "span: array expected"; - for (var i = 0; i < message.span.length; ++i) - if (!$util.isInteger(message.span[i])) - return "span: integer[] expected"; - } - if (message.leadingComments != null && message.hasOwnProperty("leadingComments")) - if (!$util.isString(message.leadingComments)) - return "leadingComments: string expected"; - if (message.trailingComments != null && message.hasOwnProperty("trailingComments")) - if (!$util.isString(message.trailingComments)) - return "trailingComments: string expected"; - if (message.leadingDetachedComments != null && message.hasOwnProperty("leadingDetachedComments")) { - if (!Array.isArray(message.leadingDetachedComments)) - return "leadingDetachedComments: array expected"; - for (var i = 0; i < message.leadingDetachedComments.length; ++i) - if (!$util.isString(message.leadingDetachedComments[i])) - return "leadingDetachedComments: string[] expected"; - } - return null; - }; - - return Location; - })(); - - return SourceCodeInfo; - })(); - - protobuf.GeneratedCodeInfo = (function() { - - /** - * Properties of a GeneratedCodeInfo. - * @memberof google.protobuf - * @interface IGeneratedCodeInfo - * @property {Array.|null} [annotation] GeneratedCodeInfo annotation - */ - - /** - * Constructs a new GeneratedCodeInfo. - * @memberof google.protobuf - * @classdesc Represents a GeneratedCodeInfo. - * @implements IGeneratedCodeInfo - * @constructor - * @param {google.protobuf.IGeneratedCodeInfo=} [properties] Properties to set - */ - function GeneratedCodeInfo(properties) { - this.annotation = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * GeneratedCodeInfo annotation. - * @member {Array.} annotation - * @memberof google.protobuf.GeneratedCodeInfo - * @instance - */ - GeneratedCodeInfo.prototype.annotation = $util.emptyArray; - - /** - * Creates a new GeneratedCodeInfo instance using the specified properties. - * @function create - * @memberof google.protobuf.GeneratedCodeInfo - * @static - * @param {google.protobuf.IGeneratedCodeInfo=} [properties] Properties to set - * @returns {google.protobuf.GeneratedCodeInfo} GeneratedCodeInfo instance - */ - GeneratedCodeInfo.create = function create(properties) { - return new GeneratedCodeInfo(properties); - }; - - /** - * Encodes the specified GeneratedCodeInfo message. Does not implicitly {@link google.protobuf.GeneratedCodeInfo.verify|verify} messages. - * @function encode - * @memberof google.protobuf.GeneratedCodeInfo - * @static - * @param {google.protobuf.IGeneratedCodeInfo} message GeneratedCodeInfo message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - GeneratedCodeInfo.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.annotation != null && message.annotation.length) - for (var i = 0; i < message.annotation.length; ++i) - $root.google.protobuf.GeneratedCodeInfo.Annotation.encode(message.annotation[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a GeneratedCodeInfo message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.GeneratedCodeInfo - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.GeneratedCodeInfo} GeneratedCodeInfo - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - GeneratedCodeInfo.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.GeneratedCodeInfo(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.annotation && message.annotation.length)) - message.annotation = []; - message.annotation.push($root.google.protobuf.GeneratedCodeInfo.Annotation.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a GeneratedCodeInfo message. - * @function verify - * @memberof google.protobuf.GeneratedCodeInfo - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - GeneratedCodeInfo.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.annotation != null && message.hasOwnProperty("annotation")) { - if (!Array.isArray(message.annotation)) - return "annotation: array expected"; - for (var i = 0; i < message.annotation.length; ++i) { - var error = $root.google.protobuf.GeneratedCodeInfo.Annotation.verify(message.annotation[i]); - if (error) - return "annotation." + error; - } - } - return null; - }; - - GeneratedCodeInfo.Annotation = (function() { - - /** - * Properties of an Annotation. - * @memberof google.protobuf.GeneratedCodeInfo - * @interface IAnnotation - * @property {Array.|null} [path] Annotation path - * @property {string|null} [sourceFile] Annotation sourceFile - * @property {number|null} [begin] Annotation begin - * @property {number|null} [end] Annotation end - */ - - /** - * Constructs a new Annotation. - * @memberof google.protobuf.GeneratedCodeInfo - * @classdesc Represents an Annotation. - * @implements IAnnotation - * @constructor - * @param {google.protobuf.GeneratedCodeInfo.IAnnotation=} [properties] Properties to set - */ - function Annotation(properties) { - this.path = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Annotation path. - * @member {Array.} path - * @memberof google.protobuf.GeneratedCodeInfo.Annotation - * @instance - */ - Annotation.prototype.path = $util.emptyArray; - - /** - * Annotation sourceFile. - * @member {string} sourceFile - * @memberof google.protobuf.GeneratedCodeInfo.Annotation - * @instance - */ - Annotation.prototype.sourceFile = ""; - - /** - * Annotation begin. - * @member {number} begin - * @memberof google.protobuf.GeneratedCodeInfo.Annotation - * @instance - */ - Annotation.prototype.begin = 0; - - /** - * Annotation end. - * @member {number} end - * @memberof google.protobuf.GeneratedCodeInfo.Annotation - * @instance - */ - Annotation.prototype.end = 0; - - /** - * Creates a new Annotation instance using the specified properties. - * @function create - * @memberof google.protobuf.GeneratedCodeInfo.Annotation - * @static - * @param {google.protobuf.GeneratedCodeInfo.IAnnotation=} [properties] Properties to set - * @returns {google.protobuf.GeneratedCodeInfo.Annotation} Annotation instance - */ - Annotation.create = function create(properties) { - return new Annotation(properties); - }; - - /** - * Encodes the specified Annotation message. Does not implicitly {@link google.protobuf.GeneratedCodeInfo.Annotation.verify|verify} messages. - * @function encode - * @memberof google.protobuf.GeneratedCodeInfo.Annotation - * @static - * @param {google.protobuf.GeneratedCodeInfo.IAnnotation} message Annotation message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Annotation.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.path != null && message.path.length) { - writer.uint32(/* id 1, wireType 2 =*/10).fork(); - for (var i = 0; i < message.path.length; ++i) - writer.int32(message.path[i]); - writer.ldelim(); - } - if (message.sourceFile != null && message.hasOwnProperty("sourceFile")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.sourceFile); - if (message.begin != null && message.hasOwnProperty("begin")) - writer.uint32(/* id 3, wireType 0 =*/24).int32(message.begin); - if (message.end != null && message.hasOwnProperty("end")) - writer.uint32(/* id 4, wireType 0 =*/32).int32(message.end); - return writer; - }; - - /** - * Decodes an Annotation message from the specified reader or buffer. - * @function decode - * @memberof google.protobuf.GeneratedCodeInfo.Annotation - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.protobuf.GeneratedCodeInfo.Annotation} Annotation - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Annotation.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.protobuf.GeneratedCodeInfo.Annotation(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.path && message.path.length)) - message.path = []; - if ((tag & 7) === 2) { - var end2 = reader.uint32() + reader.pos; - while (reader.pos < end2) - message.path.push(reader.int32()); - } else - message.path.push(reader.int32()); - break; - case 2: - message.sourceFile = reader.string(); - break; - case 3: - message.begin = reader.int32(); - break; - case 4: - message.end = reader.int32(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies an Annotation message. - * @function verify - * @memberof google.protobuf.GeneratedCodeInfo.Annotation - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Annotation.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.path != null && message.hasOwnProperty("path")) { - if (!Array.isArray(message.path)) - return "path: array expected"; - for (var i = 0; i < message.path.length; ++i) - if (!$util.isInteger(message.path[i])) - return "path: integer[] expected"; - } - if (message.sourceFile != null && message.hasOwnProperty("sourceFile")) - if (!$util.isString(message.sourceFile)) - return "sourceFile: string expected"; - if (message.begin != null && message.hasOwnProperty("begin")) - if (!$util.isInteger(message.begin)) - return "begin: integer expected"; - if (message.end != null && message.hasOwnProperty("end")) - if (!$util.isInteger(message.end)) - return "end: integer expected"; - return null; - }; - - return Annotation; - })(); - - return GeneratedCodeInfo; - })(); - - return protobuf; - })(); - - google.api = (function() { - - /** - * Namespace api. - * @memberof google - * @namespace - */ - var api = {}; - - api.Http = (function() { - - /** - * Properties of a Http. - * @memberof google.api - * @interface IHttp - * @property {Array.|null} [rules] Http rules - */ - - /** - * Constructs a new Http. - * @memberof google.api - * @classdesc Represents a Http. - * @implements IHttp - * @constructor - * @param {google.api.IHttp=} [properties] Properties to set - */ - function Http(properties) { - this.rules = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * Http rules. - * @member {Array.} rules - * @memberof google.api.Http - * @instance - */ - Http.prototype.rules = $util.emptyArray; - - /** - * Creates a new Http instance using the specified properties. - * @function create - * @memberof google.api.Http - * @static - * @param {google.api.IHttp=} [properties] Properties to set - * @returns {google.api.Http} Http instance - */ - Http.create = function create(properties) { - return new Http(properties); - }; - - /** - * Encodes the specified Http message. Does not implicitly {@link google.api.Http.verify|verify} messages. - * @function encode - * @memberof google.api.Http - * @static - * @param {google.api.IHttp} message Http message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - Http.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.rules != null && message.rules.length) - for (var i = 0; i < message.rules.length; ++i) - $root.google.api.HttpRule.encode(message.rules[i], writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a Http message from the specified reader or buffer. - * @function decode - * @memberof google.api.Http - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.api.Http} Http - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - Http.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.api.Http(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - if (!(message.rules && message.rules.length)) - message.rules = []; - message.rules.push($root.google.api.HttpRule.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a Http message. - * @function verify - * @memberof google.api.Http - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - Http.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.rules != null && message.hasOwnProperty("rules")) { - if (!Array.isArray(message.rules)) - return "rules: array expected"; - for (var i = 0; i < message.rules.length; ++i) { - var error = $root.google.api.HttpRule.verify(message.rules[i]); - if (error) - return "rules." + error; - } - } - return null; - }; - - return Http; - })(); - - api.HttpRule = (function() { - - /** - * Properties of a HttpRule. - * @memberof google.api - * @interface IHttpRule - * @property {string|null} [get] HttpRule get - * @property {string|null} [put] HttpRule put - * @property {string|null} [post] HttpRule post - * @property {string|null} ["delete"] HttpRule delete - * @property {string|null} [patch] HttpRule patch - * @property {google.api.ICustomHttpPattern|null} [custom] HttpRule custom - * @property {string|null} [selector] HttpRule selector - * @property {string|null} [body] HttpRule body - * @property {Array.|null} [additionalBindings] HttpRule additionalBindings - */ - - /** - * Constructs a new HttpRule. - * @memberof google.api - * @classdesc Represents a HttpRule. - * @implements IHttpRule - * @constructor - * @param {google.api.IHttpRule=} [properties] Properties to set - */ - function HttpRule(properties) { - this.additionalBindings = []; - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * HttpRule get. - * @member {string} get - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype.get = ""; - - /** - * HttpRule put. - * @member {string} put - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype.put = ""; - - /** - * HttpRule post. - * @member {string} post - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype.post = ""; - - /** - * HttpRule delete. - * @member {string} delete - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype["delete"] = ""; - - /** - * HttpRule patch. - * @member {string} patch - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype.patch = ""; - - /** - * HttpRule custom. - * @member {google.api.ICustomHttpPattern|null|undefined} custom - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype.custom = null; - - /** - * HttpRule selector. - * @member {string} selector - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype.selector = ""; - - /** - * HttpRule body. - * @member {string} body - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype.body = ""; - - /** - * HttpRule additionalBindings. - * @member {Array.} additionalBindings - * @memberof google.api.HttpRule - * @instance - */ - HttpRule.prototype.additionalBindings = $util.emptyArray; - - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - - /** - * HttpRule pattern. - * @member {"get"|"put"|"post"|"delete"|"patch"|"custom"|undefined} pattern - * @memberof google.api.HttpRule - * @instance - */ - Object.defineProperty(HttpRule.prototype, "pattern", { - get: $util.oneOfGetter($oneOfFields = ["get", "put", "post", "delete", "patch", "custom"]), - set: $util.oneOfSetter($oneOfFields) - }); - - /** - * Creates a new HttpRule instance using the specified properties. - * @function create - * @memberof google.api.HttpRule - * @static - * @param {google.api.IHttpRule=} [properties] Properties to set - * @returns {google.api.HttpRule} HttpRule instance - */ - HttpRule.create = function create(properties) { - return new HttpRule(properties); - }; - - /** - * Encodes the specified HttpRule message. Does not implicitly {@link google.api.HttpRule.verify|verify} messages. - * @function encode - * @memberof google.api.HttpRule - * @static - * @param {google.api.IHttpRule} message HttpRule message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - HttpRule.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.selector != null && message.hasOwnProperty("selector")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.selector); - if (message.get != null && message.hasOwnProperty("get")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.get); - if (message.put != null && message.hasOwnProperty("put")) - writer.uint32(/* id 3, wireType 2 =*/26).string(message.put); - if (message.post != null && message.hasOwnProperty("post")) - writer.uint32(/* id 4, wireType 2 =*/34).string(message.post); - if (message["delete"] != null && message.hasOwnProperty("delete")) - writer.uint32(/* id 5, wireType 2 =*/42).string(message["delete"]); - if (message.patch != null && message.hasOwnProperty("patch")) - writer.uint32(/* id 6, wireType 2 =*/50).string(message.patch); - if (message.body != null && message.hasOwnProperty("body")) - writer.uint32(/* id 7, wireType 2 =*/58).string(message.body); - if (message.custom != null && message.hasOwnProperty("custom")) - $root.google.api.CustomHttpPattern.encode(message.custom, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); - if (message.additionalBindings != null && message.additionalBindings.length) - for (var i = 0; i < message.additionalBindings.length; ++i) - $root.google.api.HttpRule.encode(message.additionalBindings[i], writer.uint32(/* id 11, wireType 2 =*/90).fork()).ldelim(); - return writer; - }; - - /** - * Decodes a HttpRule message from the specified reader or buffer. - * @function decode - * @memberof google.api.HttpRule - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.api.HttpRule} HttpRule - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - HttpRule.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.api.HttpRule(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 2: - message.get = reader.string(); - break; - case 3: - message.put = reader.string(); - break; - case 4: - message.post = reader.string(); - break; - case 5: - message["delete"] = reader.string(); - break; - case 6: - message.patch = reader.string(); - break; - case 8: - message.custom = $root.google.api.CustomHttpPattern.decode(reader, reader.uint32()); - break; - case 1: - message.selector = reader.string(); - break; - case 7: - message.body = reader.string(); - break; - case 11: - if (!(message.additionalBindings && message.additionalBindings.length)) - message.additionalBindings = []; - message.additionalBindings.push($root.google.api.HttpRule.decode(reader, reader.uint32())); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a HttpRule message. - * @function verify - * @memberof google.api.HttpRule - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - HttpRule.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - var properties = {}; - if (message.get != null && message.hasOwnProperty("get")) { - properties.pattern = 1; - if (!$util.isString(message.get)) - return "get: string expected"; - } - if (message.put != null && message.hasOwnProperty("put")) { - if (properties.pattern === 1) - return "pattern: multiple values"; - properties.pattern = 1; - if (!$util.isString(message.put)) - return "put: string expected"; - } - if (message.post != null && message.hasOwnProperty("post")) { - if (properties.pattern === 1) - return "pattern: multiple values"; - properties.pattern = 1; - if (!$util.isString(message.post)) - return "post: string expected"; - } - if (message["delete"] != null && message.hasOwnProperty("delete")) { - if (properties.pattern === 1) - return "pattern: multiple values"; - properties.pattern = 1; - if (!$util.isString(message["delete"])) - return "delete: string expected"; - } - if (message.patch != null && message.hasOwnProperty("patch")) { - if (properties.pattern === 1) - return "pattern: multiple values"; - properties.pattern = 1; - if (!$util.isString(message.patch)) - return "patch: string expected"; - } - if (message.custom != null && message.hasOwnProperty("custom")) { - if (properties.pattern === 1) - return "pattern: multiple values"; - properties.pattern = 1; - { - var error = $root.google.api.CustomHttpPattern.verify(message.custom); - if (error) - return "custom." + error; - } - } - if (message.selector != null && message.hasOwnProperty("selector")) - if (!$util.isString(message.selector)) - return "selector: string expected"; - if (message.body != null && message.hasOwnProperty("body")) - if (!$util.isString(message.body)) - return "body: string expected"; - if (message.additionalBindings != null && message.hasOwnProperty("additionalBindings")) { - if (!Array.isArray(message.additionalBindings)) - return "additionalBindings: array expected"; - for (var i = 0; i < message.additionalBindings.length; ++i) { - var error = $root.google.api.HttpRule.verify(message.additionalBindings[i]); - if (error) - return "additionalBindings." + error; - } - } - return null; - }; - - return HttpRule; - })(); - - api.CustomHttpPattern = (function() { - - /** - * Properties of a CustomHttpPattern. - * @memberof google.api - * @interface ICustomHttpPattern - * @property {string|null} [kind] CustomHttpPattern kind - * @property {string|null} [path] CustomHttpPattern path - */ - - /** - * Constructs a new CustomHttpPattern. - * @memberof google.api - * @classdesc Represents a CustomHttpPattern. - * @implements ICustomHttpPattern - * @constructor - * @param {google.api.ICustomHttpPattern=} [properties] Properties to set - */ - function CustomHttpPattern(properties) { - if (properties) - for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) - if (properties[keys[i]] != null) - this[keys[i]] = properties[keys[i]]; - } - - /** - * CustomHttpPattern kind. - * @member {string} kind - * @memberof google.api.CustomHttpPattern - * @instance - */ - CustomHttpPattern.prototype.kind = ""; - - /** - * CustomHttpPattern path. - * @member {string} path - * @memberof google.api.CustomHttpPattern - * @instance - */ - CustomHttpPattern.prototype.path = ""; - - /** - * Creates a new CustomHttpPattern instance using the specified properties. - * @function create - * @memberof google.api.CustomHttpPattern - * @static - * @param {google.api.ICustomHttpPattern=} [properties] Properties to set - * @returns {google.api.CustomHttpPattern} CustomHttpPattern instance - */ - CustomHttpPattern.create = function create(properties) { - return new CustomHttpPattern(properties); - }; - - /** - * Encodes the specified CustomHttpPattern message. Does not implicitly {@link google.api.CustomHttpPattern.verify|verify} messages. - * @function encode - * @memberof google.api.CustomHttpPattern - * @static - * @param {google.api.ICustomHttpPattern} message CustomHttpPattern message or plain object to encode - * @param {$protobuf.Writer} [writer] Writer to encode to - * @returns {$protobuf.Writer} Writer - */ - CustomHttpPattern.encode = function encode(message, writer) { - if (!writer) - writer = $Writer.create(); - if (message.kind != null && message.hasOwnProperty("kind")) - writer.uint32(/* id 1, wireType 2 =*/10).string(message.kind); - if (message.path != null && message.hasOwnProperty("path")) - writer.uint32(/* id 2, wireType 2 =*/18).string(message.path); - return writer; - }; - - /** - * Decodes a CustomHttpPattern message from the specified reader or buffer. - * @function decode - * @memberof google.api.CustomHttpPattern - * @static - * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from - * @param {number} [length] Message length if known beforehand - * @returns {google.api.CustomHttpPattern} CustomHttpPattern - * @throws {Error} If the payload is not a reader or valid buffer - * @throws {$protobuf.util.ProtocolError} If required fields are missing - */ - CustomHttpPattern.decode = function decode(reader, length) { - if (!(reader instanceof $Reader)) - reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.api.CustomHttpPattern(); - while (reader.pos < end) { - var tag = reader.uint32(); - switch (tag >>> 3) { - case 1: - message.kind = reader.string(); - break; - case 2: - message.path = reader.string(); - break; - default: - reader.skipType(tag & 7); - break; - } - } - return message; - }; - - /** - * Verifies a CustomHttpPattern message. - * @function verify - * @memberof google.api.CustomHttpPattern - * @static - * @param {Object.} message Plain object to verify - * @returns {string|null} `null` if valid, otherwise the reason why it is not - */ - CustomHttpPattern.verify = function verify(message) { - if (typeof message !== "object" || message === null) - return "object expected"; - if (message.kind != null && message.hasOwnProperty("kind")) - if (!$util.isString(message.kind)) - return "kind: string expected"; - if (message.path != null && message.hasOwnProperty("path")) - if (!$util.isString(message.path)) - return "path: string expected"; - return null; - }; - - return CustomHttpPattern; - })(); - - return api; - })(); - - return google; - })(); - - return $root; -}); diff --git a/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py index c7b34e85c6b..978ec98f19c 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py @@ -29,7 +29,7 @@ from flyteidl.admin import description_entity_pb2 as flyteidl_dot_admin_dot_description__entity__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/service/admin.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1c\x66lyteidl/admin/project.proto\x1a.flyteidl/admin/project_domain_attributes.proto\x1a\'flyteidl/admin/project_attributes.proto\x1a\x19\x66lyteidl/admin/task.proto\x1a\x1d\x66lyteidl/admin/workflow.proto\x1a(flyteidl/admin/workflow_attributes.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1a\x66lyteidl/admin/event.proto\x1a\x1e\x66lyteidl/admin/execution.proto\x1a\'flyteidl/admin/matchable_resource.proto\x1a#flyteidl/admin/node_execution.proto\x1a#flyteidl/admin/task_execution.proto\x1a\x1c\x66lyteidl/admin/version.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/description_entity.proto2\x97v\n\x0c\x41\x64minService\x12\x8e\x01\n\nCreateTask\x12!.flyteidl.admin.TaskCreateRequest\x1a\".flyteidl.admin.TaskCreateResponse\"9\x82\xd3\xe4\x93\x02\x33:\x01*Z\x1f:\x01*\"\x1a/api/v1/tasks/org/{id.org}\"\r/api/v1/tasks\x12\xd8\x01\n\x07GetTask\x12 .flyteidl.admin.ObjectGetRequest\x1a\x14.flyteidl.admin.Task\"\x94\x01\x82\xd3\xe4\x93\x02\x8d\x01ZL\x12J/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12=/api/v1/tasks/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xc5\x01\n\x0bListTaskIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"Y\x82\xd3\xe4\x93\x02SZ,\x12*/api/v1/tasks/org/{org}/{project}/{domain}\x12#/api/v1/task_ids/{project}/{domain}\x12\xa8\x02\n\tListTasks\x12#.flyteidl.admin.ResourceListRequest\x1a\x18.flyteidl.admin.TaskList\"\xdb\x01\x82\xd3\xe4\x93\x02\xd4\x01Z?\x12=/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}/{id.name}Z(\x12&/api/v1/tasks/{id.project}/{id.domain}Z5\x12\x33/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}\x12\x30/api/v1/tasks/{id.project}/{id.domain}/{id.name}\x12\xa2\x01\n\x0e\x43reateWorkflow\x12%.flyteidl.admin.WorkflowCreateRequest\x1a&.flyteidl.admin.WorkflowCreateResponse\"A\x82\xd3\xe4\x93\x02;:\x01*Z#:\x01*\"\x1e/api/v1/workflows/org/{id.org}\"\x11/api/v1/workflows\x12\xe8\x01\n\x0bGetWorkflow\x12 .flyteidl.admin.ObjectGetRequest\x1a\x18.flyteidl.admin.Workflow\"\x9c\x01\x82\xd3\xe4\x93\x02\x95\x01ZP\x12N/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xd1\x01\n\x0fListWorkflowIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"a\x82\xd3\xe4\x93\x02[Z0\x12./api/v1/workflows/org/{org}/{project}/{domain}\x12\'/api/v1/workflow_ids/{project}/{domain}\x12\xc0\x02\n\rListWorkflows\x12#.flyteidl.admin.ResourceListRequest\x1a\x1c.flyteidl.admin.WorkflowList\"\xeb\x01\x82\xd3\xe4\x93\x02\xe4\x01ZC\x12\x41/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}Z,\x12*/api/v1/workflows/{id.project}/{id.domain}Z9\x12\x37/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}\x12\x34/api/v1/workflows/{id.project}/{id.domain}/{id.name}\x12\xae\x01\n\x10\x43reateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanCreateRequest\x1a(.flyteidl.admin.LaunchPlanCreateResponse\"G\x82\xd3\xe4\x93\x02\x41:\x01*Z&:\x01*\"!/api/v1/launch_plans/org/{id.org}\"\x14/api/v1/launch_plans\x12\xf2\x01\n\rGetLaunchPlan\x12 .flyteidl.admin.ObjectGetRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\xa2\x01\x82\xd3\xe4\x93\x02\x9b\x01ZS\x12Q/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xf3\x01\n\x13GetActiveLaunchPlan\x12\'.flyteidl.admin.ActiveLaunchPlanRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\x96\x01\x82\xd3\xe4\x93\x02\x8f\x01ZM\x12K/api/v1/active_launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12>/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x12\xd8\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"r\x82\xd3\xe4\x93\x02lZ:\x12\x38/api/v1/active_launch_plans/org/{org}/{project}/{domain}\x12./api/v1/active_launch_plans/{project}/{domain}\x12\xdc\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"j\x82\xd3\xe4\x93\x02\x64Z6\x12\x34/api/v1/launch_plan_ids/org/{org}/{project}/{domain}\x12*/api/v1/launch_plan_ids/{project}/{domain}\x12\xd0\x02\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\xf7\x01\x82\xd3\xe4\x93\x02\xf0\x01ZF\x12\x44/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}Z/\x12-/api/v1/launch_plans/{id.project}/{id.domain}Z<\x12:/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}\x12\x8d\x02\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"\xa5\x01\x82\xd3\xe4\x93\x02\x9e\x01:\x01*ZS\x1aQ/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xa4\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"@\x82\xd3\xe4\x93\x02::\x01*Z!:\x01*\x1a\x1c/api/v1/executions/org/{org}\"\x12/api/v1/executions\x12\xbd\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"U\x82\xd3\xe4\x93\x02O:\x01*Z-:\x01*\"(/api/v1/executions/org/{id.org}/relaunch\"\x1b/api/v1/executions/relaunch\x12\xb9\x01\n\x10RecoverExecution\x12\'.flyteidl.admin.ExecutionRecoverRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"S\x82\xd3\xe4\x93\x02M:\x01*Z,:\x01*\"\'/api/v1/executions/org/{id.org}/recover\"\x1a/api/v1/executions/recover\x12\xdc\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"\x83\x01\x82\xd3\xe4\x93\x02}ZD\x12\x42/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xef\x01\n\x0fUpdateExecution\x12&.flyteidl.admin.ExecutionUpdateRequest\x1a\'.flyteidl.admin.ExecutionUpdateResponse\"\x8a\x01\x82\xd3\xe4\x93\x02\x83\x01:\x01*ZG:\x01*\x1a\x42/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x1a\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\x86\x02\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"\x8e\x01\x82\xd3\xe4\x93\x02\x87\x01ZI\x12G/api/v1/data/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x12\xc5\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"o\x82\xd3\xe4\x93\x02iZ:\x12\x38/api/v1/executions/org/{id.org}/{id.project}/{id.domain}\x12+/api/v1/executions/{id.project}/{id.domain}\x12\xf8\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"\x8a\x01\x82\xd3\xe4\x93\x02\x83\x01:\x01*ZG:\x01**B/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}*5/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xe2\x02\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"\x85\x02\x82\xd3\xe4\x93\x02\xfe\x01Z\x8b\x01\x12\x88\x01/api/v1/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12n/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\xf9\x02\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\x95\x02\x82\xd3\xe4\x93\x02\x8e\x02Z\x96\x01\x12\x93\x01/api/v1/node_executions/org/{workflow_execution_id.org}/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12\x8f\x08\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\x9d\x07\x82\xd3\xe4\x93\x02\x96\x07Z\xe7\x03\x12\xe4\x03/api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x12\xa9\x03/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x12\x83\x03\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"\x8f\x02\x82\xd3\xe4\x93\x02\x88\x02Z\x90\x01\x12\x8d\x01/api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\xa8\x01\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"D\x82\xd3\xe4\x93\x02>:\x01*Z\':\x01*\"\"/api/v1/projects/org/{project.org}\"\x10/api/v1/projects\x12\x97\x01\n\rUpdateProject\x12\x17.flyteidl.admin.Project\x1a%.flyteidl.admin.ProjectUpdateResponse\"F\x82\xd3\xe4\x93\x02@:\x01*Z$:\x01*\x1a\x1f/api/v1/projects/org/{org}/{id}\x1a\x15/api/v1/projects/{id}\x12\x84\x01\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"6\x82\xd3\xe4\x93\x02\x30Z\x1c\x12\x1a/api/v1/projects/org/{org}\x12\x10/api/v1/projects\x12\xd5\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"_\x82\xd3\xe4\x93\x02Y:\x01*Z::\x01*\"5/api/v1/events/org/{event.execution_id.org}/workflows\"\x18/api/v1/events/workflows\x12\xc4\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"Z\x82\xd3\xe4\x93\x02T:\x01*Z9:\x01*\"4/api/v1/events/org/{event.id.execution_id.org}/nodes\"\x14/api/v1/events/nodes\x12\xda\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"p\x82\xd3\xe4\x93\x02j:\x01*ZO:\x01*\"J/api/v1/events/org/{event.parent_node_execution_id.execution_id.org}/tasks\"\x14/api/v1/events/tasks\x12\xcb\x05\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xee\x04\x82\xd3\xe4\x93\x02\xe7\x04Z\xc8\x02\x12\xc5\x02/api/v1/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\x99\x02/api/v1/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\xf1\x03\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\x8d\x03\x82\xd3\xe4\x93\x02\x86\x03Z\xd6\x01\x12\xd3\x01/api/v1/task_executions/org/{node_execution_id.execution_id.org}/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x12\xaa\x01/api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x12\xec\x05\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xf8\x04\x82\xd3\xe4\x93\x02\xf1\x04Z\xcd\x02\x12\xca\x02/api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\x9e\x02/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\xcb\x02\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"\xbc\x01\x82\xd3\xe4\x93\x02\xb5\x01:\x01*Zd:\x01*\x1a_/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}\x12\x83\x02\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"~\x82\xd3\xe4\x93\x02xZ@\x12>/api/v1/project_domain_attributes/org/{org}/{project}/{domain}\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x12\x93\x02\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"\x84\x01\x82\xd3\xe4\x93\x02~:\x01*ZC:\x01**>/api/v1/project_domain_attributes/org/{org}/{project}/{domain}*4/api/v1/project_domain_attributes/{project}/{domain}\x12\x8a\x02\n\x17UpdateProjectAttributes\x12..flyteidl.admin.ProjectAttributesUpdateRequest\x1a/.flyteidl.admin.ProjectAttributesUpdateResponse\"\x8d\x01\x82\xd3\xe4\x93\x02\x86\x01:\x01*ZP:\x01*\x1aK/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}\x1a//api/v1/project_attributes/{attributes.project}\x12\xd8\x01\n\x14GetProjectAttributes\x12+.flyteidl.admin.ProjectAttributesGetRequest\x1a,.flyteidl.admin.ProjectAttributesGetResponse\"e\x82\xd3\xe4\x93\x02_Z7\x12\x35/api/v1/project_domain_attributes/org/{org}/{project}\x12$/api/v1/project_attributes/{project}\x12\xe7\x01\n\x17\x44\x65leteProjectAttributes\x12..flyteidl.admin.ProjectAttributesDeleteRequest\x1a/.flyteidl.admin.ProjectAttributesDeleteResponse\"k\x82\xd3\xe4\x93\x02\x65:\x01*Z::\x01**5/api/v1/project_domain_attributes/org/{org}/{project}*$/api/v1/project_attributes/{project}\x12\xdc\x02\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"\xdc\x01\x82\xd3\xe4\x93\x02\xd5\x01:\x01*Zt:\x01*\x1ao/api/v1/workflow_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}/{attributes.workflow}\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}\x12\x80\x02\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"\x89\x01\x82\xd3\xe4\x93\x02\x82\x01ZE\x12\x43/api/v1/workflow_attributes/org/{org}/{project}/{domain}/{workflow}\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\x8f\x02\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"\x8f\x01\x82\xd3\xe4\x93\x02\x88\x01:\x01*ZH:\x01**C/api/v1/workflow_attributes/org/{org}/{project}/{domain}/{workflow}*9/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\xca\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"N\x82\xd3\xe4\x93\x02HZ(\x12&/api/v1/matchable_attributes/org/{org}\x12\x1c/api/v1/matchable_attributes\x12\xe8\x01\n\x11ListNamedEntities\x12&.flyteidl.admin.NamedEntityListRequest\x1a\x1f.flyteidl.admin.NamedEntityList\"\x89\x01\x82\xd3\xe4\x93\x02\x82\x01ZE\x12\x43/api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}\x12\x39/api/v1/named_entities/{resource_type}/{project}/{domain}\x12\x83\x02\n\x0eGetNamedEntity\x12%.flyteidl.admin.NamedEntityGetRequest\x1a\x1b.flyteidl.admin.NamedEntity\"\xac\x01\x82\xd3\xe4\x93\x02\xa5\x01ZX\x12V/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\x9d\x02\n\x11UpdateNamedEntity\x12(.flyteidl.admin.NamedEntityUpdateRequest\x1a).flyteidl.admin.NamedEntityUpdateResponse\"\xb2\x01\x82\xd3\xe4\x93\x02\xab\x01:\x01*Z[:\x01*\x1aV/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}\x1aI/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12l\n\nGetVersion\x12!.flyteidl.admin.GetVersionRequest\x1a\".flyteidl.admin.GetVersionResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/api/v1/version\x12\xb6\x02\n\x14GetDescriptionEntity\x12 .flyteidl.admin.ObjectGetRequest\x1a!.flyteidl.admin.DescriptionEntity\"\xd8\x01\x82\xd3\xe4\x93\x02\xd1\x01Zn\x12l/api/v1/description_entities/org/{id.org}/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12_/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xc8\x03\n\x17ListDescriptionEntities\x12,.flyteidl.admin.DescriptionEntityListRequest\x1a%.flyteidl.admin.DescriptionEntityList\"\xd7\x02\x82\xd3\xe4\x93\x02\xd0\x02Z^\x12\\/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}ZG\x12\x45/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}ZT\x12R/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}\x12O/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\x95\x02\n\x13GetExecutionMetrics\x12\x32.flyteidl.admin.WorkflowExecutionGetMetricsRequest\x1a\x33.flyteidl.admin.WorkflowExecutionGetMetricsResponse\"\x94\x01\x82\xd3\xe4\x93\x02\x8d\x01ZL\x12J/api/v1/metrics/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12=/api/v1/metrics/executions/{id.project}/{id.domain}/{id.name}B\xc2\x01\n\x14\x63om.flyteidl.serviceB\nAdminProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/service/admin.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1c\x66lyteidl/admin/project.proto\x1a.flyteidl/admin/project_domain_attributes.proto\x1a\'flyteidl/admin/project_attributes.proto\x1a\x19\x66lyteidl/admin/task.proto\x1a\x1d\x66lyteidl/admin/workflow.proto\x1a(flyteidl/admin/workflow_attributes.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1a\x66lyteidl/admin/event.proto\x1a\x1e\x66lyteidl/admin/execution.proto\x1a\'flyteidl/admin/matchable_resource.proto\x1a#flyteidl/admin/node_execution.proto\x1a#flyteidl/admin/task_execution.proto\x1a\x1c\x66lyteidl/admin/version.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/description_entity.proto2\x8cx\n\x0c\x41\x64minService\x12\x8e\x01\n\nCreateTask\x12!.flyteidl.admin.TaskCreateRequest\x1a\".flyteidl.admin.TaskCreateResponse\"9\x82\xd3\xe4\x93\x02\x33:\x01*Z\x1f:\x01*\"\x1a/api/v1/tasks/org/{id.org}\"\r/api/v1/tasks\x12\xd8\x01\n\x07GetTask\x12 .flyteidl.admin.ObjectGetRequest\x1a\x14.flyteidl.admin.Task\"\x94\x01\x82\xd3\xe4\x93\x02\x8d\x01ZL\x12J/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12=/api/v1/tasks/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xc5\x01\n\x0bListTaskIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"Y\x82\xd3\xe4\x93\x02SZ,\x12*/api/v1/tasks/org/{org}/{project}/{domain}\x12#/api/v1/task_ids/{project}/{domain}\x12\xa8\x02\n\tListTasks\x12#.flyteidl.admin.ResourceListRequest\x1a\x18.flyteidl.admin.TaskList\"\xdb\x01\x82\xd3\xe4\x93\x02\xd4\x01Z?\x12=/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}/{id.name}Z(\x12&/api/v1/tasks/{id.project}/{id.domain}Z5\x12\x33/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}\x12\x30/api/v1/tasks/{id.project}/{id.domain}/{id.name}\x12\xa2\x01\n\x0e\x43reateWorkflow\x12%.flyteidl.admin.WorkflowCreateRequest\x1a&.flyteidl.admin.WorkflowCreateResponse\"A\x82\xd3\xe4\x93\x02;:\x01*Z#:\x01*\"\x1e/api/v1/workflows/org/{id.org}\"\x11/api/v1/workflows\x12\xe8\x01\n\x0bGetWorkflow\x12 .flyteidl.admin.ObjectGetRequest\x1a\x18.flyteidl.admin.Workflow\"\x9c\x01\x82\xd3\xe4\x93\x02\x95\x01ZP\x12N/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xf2\x01\n\x16GetDynamicNodeWorkflow\x12-.flyteidl.admin.GetDynamicNodeWorkflowRequest\x1a+.flyteidl.admin.DynamicNodeWorkflowResponse\"|\x82\xd3\xe4\x93\x02v\x12t/api/v1/dynamic_node_workflow/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\xd1\x01\n\x0fListWorkflowIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"a\x82\xd3\xe4\x93\x02[Z0\x12./api/v1/workflows/org/{org}/{project}/{domain}\x12\'/api/v1/workflow_ids/{project}/{domain}\x12\xc0\x02\n\rListWorkflows\x12#.flyteidl.admin.ResourceListRequest\x1a\x1c.flyteidl.admin.WorkflowList\"\xeb\x01\x82\xd3\xe4\x93\x02\xe4\x01ZC\x12\x41/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}Z,\x12*/api/v1/workflows/{id.project}/{id.domain}Z9\x12\x37/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}\x12\x34/api/v1/workflows/{id.project}/{id.domain}/{id.name}\x12\xae\x01\n\x10\x43reateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanCreateRequest\x1a(.flyteidl.admin.LaunchPlanCreateResponse\"G\x82\xd3\xe4\x93\x02\x41:\x01*Z&:\x01*\"!/api/v1/launch_plans/org/{id.org}\"\x14/api/v1/launch_plans\x12\xf2\x01\n\rGetLaunchPlan\x12 .flyteidl.admin.ObjectGetRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\xa2\x01\x82\xd3\xe4\x93\x02\x9b\x01ZS\x12Q/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xf3\x01\n\x13GetActiveLaunchPlan\x12\'.flyteidl.admin.ActiveLaunchPlanRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\x96\x01\x82\xd3\xe4\x93\x02\x8f\x01ZM\x12K/api/v1/active_launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12>/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x12\xd8\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"r\x82\xd3\xe4\x93\x02lZ:\x12\x38/api/v1/active_launch_plans/org/{org}/{project}/{domain}\x12./api/v1/active_launch_plans/{project}/{domain}\x12\xdc\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"j\x82\xd3\xe4\x93\x02\x64Z6\x12\x34/api/v1/launch_plan_ids/org/{org}/{project}/{domain}\x12*/api/v1/launch_plan_ids/{project}/{domain}\x12\xd0\x02\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\xf7\x01\x82\xd3\xe4\x93\x02\xf0\x01ZF\x12\x44/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}Z/\x12-/api/v1/launch_plans/{id.project}/{id.domain}Z<\x12:/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}\x12\x8d\x02\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"\xa5\x01\x82\xd3\xe4\x93\x02\x9e\x01:\x01*ZS\x1aQ/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xa4\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"@\x82\xd3\xe4\x93\x02::\x01*Z!:\x01*\x1a\x1c/api/v1/executions/org/{org}\"\x12/api/v1/executions\x12\xbd\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"U\x82\xd3\xe4\x93\x02O:\x01*Z-:\x01*\"(/api/v1/executions/org/{id.org}/relaunch\"\x1b/api/v1/executions/relaunch\x12\xb9\x01\n\x10RecoverExecution\x12\'.flyteidl.admin.ExecutionRecoverRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"S\x82\xd3\xe4\x93\x02M:\x01*Z,:\x01*\"\'/api/v1/executions/org/{id.org}/recover\"\x1a/api/v1/executions/recover\x12\xdc\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"\x83\x01\x82\xd3\xe4\x93\x02}ZD\x12\x42/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xef\x01\n\x0fUpdateExecution\x12&.flyteidl.admin.ExecutionUpdateRequest\x1a\'.flyteidl.admin.ExecutionUpdateResponse\"\x8a\x01\x82\xd3\xe4\x93\x02\x83\x01:\x01*ZG:\x01*\x1a\x42/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x1a\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\x86\x02\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"\x8e\x01\x82\xd3\xe4\x93\x02\x87\x01ZI\x12G/api/v1/data/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x12\xc5\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"o\x82\xd3\xe4\x93\x02iZ:\x12\x38/api/v1/executions/org/{id.org}/{id.project}/{id.domain}\x12+/api/v1/executions/{id.project}/{id.domain}\x12\xf8\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"\x8a\x01\x82\xd3\xe4\x93\x02\x83\x01:\x01*ZG:\x01**B/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}*5/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xe2\x02\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"\x85\x02\x82\xd3\xe4\x93\x02\xfe\x01Z\x8b\x01\x12\x88\x01/api/v1/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12n/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\xf9\x02\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\x95\x02\x82\xd3\xe4\x93\x02\x8e\x02Z\x96\x01\x12\x93\x01/api/v1/node_executions/org/{workflow_execution_id.org}/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12\x8f\x08\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\x9d\x07\x82\xd3\xe4\x93\x02\x96\x07Z\xe7\x03\x12\xe4\x03/api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x12\xa9\x03/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x12\x83\x03\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"\x8f\x02\x82\xd3\xe4\x93\x02\x88\x02Z\x90\x01\x12\x8d\x01/api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\xa8\x01\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"D\x82\xd3\xe4\x93\x02>:\x01*Z\':\x01*\"\"/api/v1/projects/org/{project.org}\"\x10/api/v1/projects\x12\x97\x01\n\rUpdateProject\x12\x17.flyteidl.admin.Project\x1a%.flyteidl.admin.ProjectUpdateResponse\"F\x82\xd3\xe4\x93\x02@:\x01*Z$:\x01*\x1a\x1f/api/v1/projects/org/{org}/{id}\x1a\x15/api/v1/projects/{id}\x12\x84\x01\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"6\x82\xd3\xe4\x93\x02\x30Z\x1c\x12\x1a/api/v1/projects/org/{org}\x12\x10/api/v1/projects\x12\xd5\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"_\x82\xd3\xe4\x93\x02Y:\x01*Z::\x01*\"5/api/v1/events/org/{event.execution_id.org}/workflows\"\x18/api/v1/events/workflows\x12\xc4\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"Z\x82\xd3\xe4\x93\x02T:\x01*Z9:\x01*\"4/api/v1/events/org/{event.id.execution_id.org}/nodes\"\x14/api/v1/events/nodes\x12\xda\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"p\x82\xd3\xe4\x93\x02j:\x01*ZO:\x01*\"J/api/v1/events/org/{event.parent_node_execution_id.execution_id.org}/tasks\"\x14/api/v1/events/tasks\x12\xcb\x05\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xee\x04\x82\xd3\xe4\x93\x02\xe7\x04Z\xc8\x02\x12\xc5\x02/api/v1/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\x99\x02/api/v1/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\xf1\x03\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\x8d\x03\x82\xd3\xe4\x93\x02\x86\x03Z\xd6\x01\x12\xd3\x01/api/v1/task_executions/org/{node_execution_id.execution_id.org}/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x12\xaa\x01/api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x12\xec\x05\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xf8\x04\x82\xd3\xe4\x93\x02\xf1\x04Z\xcd\x02\x12\xca\x02/api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\x9e\x02/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\xcb\x02\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"\xbc\x01\x82\xd3\xe4\x93\x02\xb5\x01:\x01*Zd:\x01*\x1a_/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}\x12\x83\x02\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"~\x82\xd3\xe4\x93\x02xZ@\x12>/api/v1/project_domain_attributes/org/{org}/{project}/{domain}\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x12\x93\x02\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"\x84\x01\x82\xd3\xe4\x93\x02~:\x01*ZC:\x01**>/api/v1/project_domain_attributes/org/{org}/{project}/{domain}*4/api/v1/project_domain_attributes/{project}/{domain}\x12\x8a\x02\n\x17UpdateProjectAttributes\x12..flyteidl.admin.ProjectAttributesUpdateRequest\x1a/.flyteidl.admin.ProjectAttributesUpdateResponse\"\x8d\x01\x82\xd3\xe4\x93\x02\x86\x01:\x01*ZP:\x01*\x1aK/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}\x1a//api/v1/project_attributes/{attributes.project}\x12\xd8\x01\n\x14GetProjectAttributes\x12+.flyteidl.admin.ProjectAttributesGetRequest\x1a,.flyteidl.admin.ProjectAttributesGetResponse\"e\x82\xd3\xe4\x93\x02_Z7\x12\x35/api/v1/project_domain_attributes/org/{org}/{project}\x12$/api/v1/project_attributes/{project}\x12\xe7\x01\n\x17\x44\x65leteProjectAttributes\x12..flyteidl.admin.ProjectAttributesDeleteRequest\x1a/.flyteidl.admin.ProjectAttributesDeleteResponse\"k\x82\xd3\xe4\x93\x02\x65:\x01*Z::\x01**5/api/v1/project_domain_attributes/org/{org}/{project}*$/api/v1/project_attributes/{project}\x12\xdc\x02\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"\xdc\x01\x82\xd3\xe4\x93\x02\xd5\x01:\x01*Zt:\x01*\x1ao/api/v1/workflow_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}/{attributes.workflow}\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}\x12\x80\x02\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"\x89\x01\x82\xd3\xe4\x93\x02\x82\x01ZE\x12\x43/api/v1/workflow_attributes/org/{org}/{project}/{domain}/{workflow}\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\x8f\x02\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"\x8f\x01\x82\xd3\xe4\x93\x02\x88\x01:\x01*ZH:\x01**C/api/v1/workflow_attributes/org/{org}/{project}/{domain}/{workflow}*9/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\xca\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"N\x82\xd3\xe4\x93\x02HZ(\x12&/api/v1/matchable_attributes/org/{org}\x12\x1c/api/v1/matchable_attributes\x12\xe8\x01\n\x11ListNamedEntities\x12&.flyteidl.admin.NamedEntityListRequest\x1a\x1f.flyteidl.admin.NamedEntityList\"\x89\x01\x82\xd3\xe4\x93\x02\x82\x01ZE\x12\x43/api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}\x12\x39/api/v1/named_entities/{resource_type}/{project}/{domain}\x12\x83\x02\n\x0eGetNamedEntity\x12%.flyteidl.admin.NamedEntityGetRequest\x1a\x1b.flyteidl.admin.NamedEntity\"\xac\x01\x82\xd3\xe4\x93\x02\xa5\x01ZX\x12V/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\x9d\x02\n\x11UpdateNamedEntity\x12(.flyteidl.admin.NamedEntityUpdateRequest\x1a).flyteidl.admin.NamedEntityUpdateResponse\"\xb2\x01\x82\xd3\xe4\x93\x02\xab\x01:\x01*Z[:\x01*\x1aV/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}\x1aI/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12l\n\nGetVersion\x12!.flyteidl.admin.GetVersionRequest\x1a\".flyteidl.admin.GetVersionResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/api/v1/version\x12\xb6\x02\n\x14GetDescriptionEntity\x12 .flyteidl.admin.ObjectGetRequest\x1a!.flyteidl.admin.DescriptionEntity\"\xd8\x01\x82\xd3\xe4\x93\x02\xd1\x01Zn\x12l/api/v1/description_entities/org/{id.org}/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12_/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xc8\x03\n\x17ListDescriptionEntities\x12,.flyteidl.admin.DescriptionEntityListRequest\x1a%.flyteidl.admin.DescriptionEntityList\"\xd7\x02\x82\xd3\xe4\x93\x02\xd0\x02Z^\x12\\/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}ZG\x12\x45/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}ZT\x12R/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}\x12O/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\x95\x02\n\x13GetExecutionMetrics\x12\x32.flyteidl.admin.WorkflowExecutionGetMetricsRequest\x1a\x33.flyteidl.admin.WorkflowExecutionGetMetricsResponse\"\x94\x01\x82\xd3\xe4\x93\x02\x8d\x01ZL\x12J/api/v1/metrics/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12=/api/v1/metrics/executions/{id.project}/{id.domain}/{id.name}B\xc2\x01\n\x14\x63om.flyteidl.serviceB\nAdminProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -50,6 +50,8 @@ _ADMINSERVICE.methods_by_name['CreateWorkflow']._serialized_options = b'\202\323\344\223\002;:\001*Z#:\001*\"\036/api/v1/workflows/org/{id.org}\"\021/api/v1/workflows' _ADMINSERVICE.methods_by_name['GetWorkflow']._options = None _ADMINSERVICE.methods_by_name['GetWorkflow']._serialized_options = b'\202\323\344\223\002\225\001ZP\022N/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\022A/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}' + _ADMINSERVICE.methods_by_name['GetDynamicNodeWorkflow']._options = None + _ADMINSERVICE.methods_by_name['GetDynamicNodeWorkflow']._serialized_options = b'\202\323\344\223\002v\022t/api/v1/dynamic_node_workflow/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}' _ADMINSERVICE.methods_by_name['ListWorkflowIds']._options = None _ADMINSERVICE.methods_by_name['ListWorkflowIds']._serialized_options = b'\202\323\344\223\002[Z0\022./api/v1/workflows/org/{org}/{project}/{domain}\022\'/api/v1/workflow_ids/{project}/{domain}' _ADMINSERVICE.methods_by_name['ListWorkflows']._options = None @@ -145,5 +147,5 @@ _ADMINSERVICE.methods_by_name['GetExecutionMetrics']._options = None _ADMINSERVICE.methods_by_name['GetExecutionMetrics']._serialized_options = b'\202\323\344\223\002\215\001ZL\022J/api/v1/metrics/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\022=/api/v1/metrics/executions/{id.project}/{id.domain}/{id.name}' _globals['_ADMINSERVICE']._serialized_start=609 - _globals['_ADMINSERVICE']._serialized_end=15736 + _globals['_ADMINSERVICE']._serialized_end=15981 # @@protoc_insertion_point(module_scope) diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md index 6490f1b9a87..d72b06a69d6 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md @@ -94,6 +94,7 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**get_active_launch_plan2**](docs/AdminServiceApi.md#get_active_launch_plan2) | **GET** /api/v1/active_launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name} | Fetch the active version of a :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**get_description_entity**](docs/AdminServiceApi.md#get_description_entity) | **GET** /api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object. *AdminServiceApi* | [**get_description_entity2**](docs/AdminServiceApi.md#get_description_entity2) | **GET** /api/v1/description_entities/org/{id.org}/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object. +*AdminServiceApi* | [**get_dynamic_node_workflow**](docs/AdminServiceApi.md#get_dynamic_node_workflow) | **GET** /api/v1/dynamic_node_workflow/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches a :ref:`ref_flyteidl.admin.DynamicNodeWorkflowResponse`. *AdminServiceApi* | [**get_execution**](docs/AdminServiceApi.md#get_execution) | **GET** /api/v1/executions/{id.project}/{id.domain}/{id.name} | Fetches a :ref:`ref_flyteidl.admin.Execution`. *AdminServiceApi* | [**get_execution2**](docs/AdminServiceApi.md#get_execution2) | **GET** /api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name} | Fetches a :ref:`ref_flyteidl.admin.Execution`. *AdminServiceApi* | [**get_execution_data**](docs/AdminServiceApi.md#get_execution_data) | **GET** /api/v1/data/executions/{id.project}/{id.domain}/{id.name} | Fetches input and output data for a :ref:`ref_flyteidl.admin.Execution`. @@ -199,6 +200,7 @@ Class | Method | HTTP request | Description - [AdminDescriptionEntityList](docs/AdminDescriptionEntityList.md) - [AdminDescriptionFormat](docs/AdminDescriptionFormat.md) - [AdminDomain](docs/AdminDomain.md) + - [AdminDynamicNodeWorkflowResponse](docs/AdminDynamicNodeWorkflowResponse.md) - [AdminEmailNotification](docs/AdminEmailNotification.md) - [AdminEnvs](docs/AdminEnvs.md) - [AdminExecution](docs/AdminExecution.md) diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py index ee0e11ddb3b..05880ae8660 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py @@ -2657,6 +2657,131 @@ def get_description_entity2_with_http_info(self, id_org, id_resource_type, id_pr _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) + def get_dynamic_node_workflow(self, id_execution_id_project, id_execution_id_domain, id_execution_id_name, id_node_id, **kwargs): # noqa: E501 + """Fetches a :ref:`ref_flyteidl.admin.DynamicNodeWorkflowResponse`. # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.get_dynamic_node_workflow(id_execution_id_project, id_execution_id_domain, id_execution_id_name, id_node_id, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str id_execution_id_project: Name of the project the resource belongs to. (required) + :param str id_execution_id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) + :param str id_execution_id_name: User or system provided value for the resource. (required) + :param str id_node_id: (required) + :param str id_execution_id_org: Optional, org key applied to the resource. + :return: AdminDynamicNodeWorkflowResponse + If the method is called asynchronously, + returns the request thread. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('async_req'): + return self.get_dynamic_node_workflow_with_http_info(id_execution_id_project, id_execution_id_domain, id_execution_id_name, id_node_id, **kwargs) # noqa: E501 + else: + (data) = self.get_dynamic_node_workflow_with_http_info(id_execution_id_project, id_execution_id_domain, id_execution_id_name, id_node_id, **kwargs) # noqa: E501 + return data + + def get_dynamic_node_workflow_with_http_info(self, id_execution_id_project, id_execution_id_domain, id_execution_id_name, id_node_id, **kwargs): # noqa: E501 + """Fetches a :ref:`ref_flyteidl.admin.DynamicNodeWorkflowResponse`. # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.get_dynamic_node_workflow_with_http_info(id_execution_id_project, id_execution_id_domain, id_execution_id_name, id_node_id, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str id_execution_id_project: Name of the project the resource belongs to. (required) + :param str id_execution_id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) + :param str id_execution_id_name: User or system provided value for the resource. (required) + :param str id_node_id: (required) + :param str id_execution_id_org: Optional, org key applied to the resource. + :return: AdminDynamicNodeWorkflowResponse + If the method is called asynchronously, + returns the request thread. + """ + + all_params = ['id_execution_id_project', 'id_execution_id_domain', 'id_execution_id_name', 'id_node_id', 'id_execution_id_org'] # noqa: E501 + all_params.append('async_req') + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + params = locals() + for key, val in six.iteritems(params['kwargs']): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method get_dynamic_node_workflow" % key + ) + params[key] = val + del params['kwargs'] + # verify the required parameter 'id_execution_id_project' is set + if ('id_execution_id_project' not in params or + params['id_execution_id_project'] is None): + raise ValueError("Missing the required parameter `id_execution_id_project` when calling `get_dynamic_node_workflow`") # noqa: E501 + # verify the required parameter 'id_execution_id_domain' is set + if ('id_execution_id_domain' not in params or + params['id_execution_id_domain'] is None): + raise ValueError("Missing the required parameter `id_execution_id_domain` when calling `get_dynamic_node_workflow`") # noqa: E501 + # verify the required parameter 'id_execution_id_name' is set + if ('id_execution_id_name' not in params or + params['id_execution_id_name'] is None): + raise ValueError("Missing the required parameter `id_execution_id_name` when calling `get_dynamic_node_workflow`") # noqa: E501 + # verify the required parameter 'id_node_id' is set + if ('id_node_id' not in params or + params['id_node_id'] is None): + raise ValueError("Missing the required parameter `id_node_id` when calling `get_dynamic_node_workflow`") # noqa: E501 + + collection_formats = {} + + path_params = {} + if 'id_execution_id_project' in params: + path_params['id.execution_id.project'] = params['id_execution_id_project'] # noqa: E501 + if 'id_execution_id_domain' in params: + path_params['id.execution_id.domain'] = params['id_execution_id_domain'] # noqa: E501 + if 'id_execution_id_name' in params: + path_params['id.execution_id.name'] = params['id_execution_id_name'] # noqa: E501 + if 'id_node_id' in params: + path_params['id.node_id'] = params['id_node_id'] # noqa: E501 + + query_params = [] + if 'id_execution_id_org' in params: + query_params.append(('id.execution_id.org', params['id_execution_id_org'])) # noqa: E501 + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + # HTTP header `Accept` + header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 + ['application/json']) # noqa: E501 + + # Authentication setting + auth_settings = [] # noqa: E501 + + return self.api_client.call_api( + '/api/v1/dynamic_node_workflow/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}', 'GET', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type='AdminDynamicNodeWorkflowResponse', # noqa: E501 + auth_settings=auth_settings, + async_req=params.get('async_req'), + _return_http_data_only=params.get('_return_http_data_only'), + _preload_content=params.get('_preload_content', True), + _request_timeout=params.get('_request_timeout'), + collection_formats=collection_formats) + def get_execution(self, id_project, id_domain, id_name, **kwargs): # noqa: E501 """Fetches a :ref:`ref_flyteidl.admin.Execution`. # noqa: E501 diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_service_api.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_service_api.py index 573c16b8d3b..55c3371e3af 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_service_api.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_admin_service_api.py @@ -197,6 +197,13 @@ def test_get_description_entity2(self): """ pass + def test_get_dynamic_node_workflow(self): + """Test case for get_dynamic_node_workflow + + Fetches a :ref:`ref_flyteidl.admin.DynamicNodeWorkflowResponse`. # noqa: E501 + """ + pass + def test_get_execution(self): """Test case for get_execution diff --git a/flyteidl/generate_protos.sh b/flyteidl/generate_protos.sh index 7955536737e..d72a25e3874 100755 --- a/flyteidl/generate_protos.sh +++ b/flyteidl/generate_protos.sh @@ -73,7 +73,7 @@ find gen/pb_python -type d -exec touch {}/__init__.py \; docker run --rm -u $(id -u):$(id -g) -v $DIR/gen/pb-go/flyteidl/service:/service --entrypoint go-bindata $LYFT_IMAGE -pkg service -o /service/openapi.go -prefix /service/ -modtime 1562572800 /service/admin.swagger.json # Generate JS code -docker run --rm -u $(id -u):$(id -g) -v $DIR:/defs schottra/docker-protobufjs:v0.0.2 --module-name flyteidl -d protos/flyteidl/core -d protos/flyteidl/event -d protos/flyteidl/admin -d protos/flyteidl/service -- --root flyteidl -t static-module -w default --no-delimited --force-long --no-convert -p /defs/protos +#docker run --rm -u $(id -u):$(id -g) -v $DIR:/defs schottra/docker-protobufjs:v0.0.2 --module-name flyteidl -d protos/flyteidl/core -d protos/flyteidl/event -d protos/flyteidl/admin -d protos/flyteidl/service -- --root flyteidl -t static-module -w default --no-delimited --force-long --no-convert -p /defs/protos # Generate GO API client code docker run --rm -u $(id -u):$(id -g) --rm -v $DIR:/defs $SWAGGER_CLI_IMAGE generate -i /defs/gen/pb-go/flyteidl/service/admin.swagger.json -l go -o /defs/gen/pb-go/flyteidl/service/flyteadmin --additional-properties=packageName=flyteadmin